-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathheader.css
123 lines (113 loc) · 2.06 KB
/
header.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
.cabecalho-menu-hamburguer{
width: 24px;
height: 24px;
background-image: url("./img/image.png");
background-repeat: no-repeat;
background-position: center;
display: inline-block;
}
.cabecalho{
background-color: var(--branco);
display: flex;
justify-content: space-between;
align-items: center;
position: relative;
}
.container {
display: flex;
align-items: center;
}
.container-imagem {
padding: 1em;
}
.lista-menu{
display: none;
position: absolute;
top: 100%;
width: 60vw;
}
.container-botao:checked .lista-menu{
display: block;
}
.lista-menu-titulo{
color: var(--laranja);
font-weight: 700;
}
.lista-menu-titulo,
.lista-menu-item{
padding: 1em;
background-color: var(--branco);
}
.lista-menu-link{
background: var(--azul-degrade);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-transform: uppercase;
}
.container-botao{
display: none;
}
@media screen and (min-width: 1024px) {
.container-titulo,
.container-titulo-negrito{
font-family: var(--fonte-secundaria);
font-size: 30px;
}
.container-titulo{
font-weight: 400;
display: block;
}
.container-titulo-negrito{
font-weight: 700;
}
}
.container-titulo{
display: none;
}
.container-texto{
display: none;
}
@media screen and (min-width: 1728px) {
.container-link {
display: flex;
align-items: center ;
text-decoration: none;
color: var (--preto) ;
}
.container-texto {
display: block;
}}
.cabecalho{
padding: 0 2em ;
}
.opcoes{
margin-right: auto;
}
.container-titulo-negrito{
font-weight:700;
}
.opcoes{
display: flex;
}
.opcoes-item {
padding: 0 1em;
text-transform: uppercase;
}
.opcoes-link {
text-decoration: none;
color: var(--preto);
}
.container-imagem-transparente{
display: none;
}
.cabecalho-menu-hamburguer{
display: none;
}
.opcoes-botao:checked~.lista-menu{
display: block;
width: auto;
}
ul{
list-style-type: none;
}