-
Notifications
You must be signed in to change notification settings - Fork 1
/
ranking-style.css
81 lines (69 loc) · 1.25 KB
/
ranking-style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
body{
margin: 0;
}
.navbar{
background-color: #facb14;
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
height: 100px;
position: fixed;
top: 0;
transition: .5s;
z-index: 1000;
}
.logo a{
margin:60px;
font-family: 'Archivo', sans-serif;
text-decoration: none;
color: white;
font-size: 30pt;
}
.menu{
display: flex;
align-items: center;
justify-content: space-around;
width: 50%;
}
.menu a{
font-family: 'Montserrat', sans-serif;
text-decoration: none;
color: #070b32;
font-size: 14pt;
}
p{
font-family: 'Montserrat', sans-serif;
}
main{
margin: 0;
background-color: white;
background-attachment: fixed;
background-size: cover;
width: 100%;
height: 670px;
display: flex;
align-items: center;
justify-content: center;
}
.boxContent{
height: 60%;
width: 80%;
}
.hospital{
display: flex;
align-items: center;
}
.hospital p{
text-align: left;
}
footer{
background-image: url("./images/fundo2.png");
background-attachment: fixed;
background-size: cover;
width: 100%;
height: 630px;
display: flex;
flex-direction: column;
position: relative;
}