-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.css
More file actions
76 lines (67 loc) · 1.35 KB
/
header.css
File metadata and controls
76 lines (67 loc) · 1.35 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
.cabecalho-menu-hamburguer {
width: 24px;
height: 24px;
display: inline-block;
background-image: url("./img/Menu\ Aberto.png");
background-repeat: no-repeat;
background-position: center;
}
.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,
.lista-menu-item {
padding: 1em;
background-color: var(--branco);
}
.lista-menu-titulo {
color: var(--laranja);
font-weight: 700;
}
.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;
}