-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
101 lines (90 loc) · 1.62 KB
/
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
text-decoration: none;
font-size:62.5%
}
.centralizar{
margin: 50px auto;
width:144rem;
height:100vh;
border: red;
}
.header {
background-color:#F9F9FA ;
max-width: 1440px;
height: 10rem;
display: flex;
align-items: center;
justify-content: space-between;
font-family: 'roboto', 'sans-serif';
box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
border-radius: 0 0 10px 10px;
}
.menu ul {
display: flex;
list-style: none;
font-size: 3.4em;
font-weight: 500;
gap: 60px;
}
.menu {
font-size: 1rem;
color: #01456D;
display: flex;
align-items: center;
justify-content: end;
gap: 50px;
}
.menu .agenda img{
margin-left: 84px;
margin-right: 30px;
}
.logo img{
max-width: 196px;
margin-left: 115px;
}
@media only screen and (max-width: 1440px) {
.centralizar{
width: 100%;
}
}
@media only screen and (max-width: 1100px){
.header{
justify-content: center;
}
.logo{
margin-right: 50px;
margin-left: 0;
}
.agenda img{
display: none;
}
}
}
/* @media (max-width:1145px){
.logo{
display: none;
}
.header {
height: 100vh;
background-image: url(assets/bg3.jpg) ;
background-size: cover;
flex-direction: row;
align-items: baseline;
justify-content: center;
}
.header ul{
color: #F9F9FA;
margin-top: 60px;
}
.agenda img{
margin-top: 60px;
margin-left: 50px;
}
.centralizar{
margin: 0;
}
} */