-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.css
More file actions
103 lines (102 loc) · 1.99 KB
/
header.css
File metadata and controls
103 lines (102 loc) · 1.99 KB
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
.cabecalho{
display: flex;
justify-content: space-between;
background-color: var(--branco);
align-items: center ;
position: relative;
}
.cabecalho__menu{
display: inline-block;
background-image: url("../img/Menu.svg");
background-repeat: no-repeat;
background-position: center;
width: 24px;
height: 24px;
}
.conteiner{
display: flex;
justify-content: space-between;
align-items: center;
}
.conteiner__imagem{
padding: 1em;
}
.lista__menu{
background-color: var(--branco);
display: none;
position: absolute;
top:100%;
width:60vw;
}
.conteiner__botao{
display: none;
}
.conteiner__botao:checked~.lista__menu{
display: block;
}
.lista__menu-titulo,.lista-menu__item{
color: var(--amarelo);
font-weight: 700;
padding: 1em;
}
.lista-menu__link{
color: var(--roxo);
text-decoration: none;
text-transform: uppercase;
}
.conteiner__texto{
display: none;
}
@media screen and (min-width:1024px){
.container__titulo{
display: block;
font-family: var(--fonte-secundaria);
font-size: 30px;
font-weight: 300;
}
.conteiner__titulo--negrito{
font-weight: 400;
}
.opcoes {
display: flex;
}
.opcoes__item {
padding: 0 1em;
text-transform: uppercase;
color: var(--preto);
}
.opcoes__link {
color: var(--preto);
text-decoration: none;
}
.conteiner__imagem-transparente{
display: none;
}
.cabecalho__menu{
display:none;
}
.opcoes:checked~.lista__menu{
display: block;
width: auto;
}
.opcoes__botao{
display: none;
}
}
@media screen and (min-width: 1728px) {
.conteiner__link{
display: flex;
align-items: center;
text-decoration: none;
color: var(--preto);
.conteiner__texto{
display: block;
}
}
.cabeçalho{
padding: 0 2em;
}
.opções{
margin-right: auto;
}
}