-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.css
54 lines (48 loc) · 1.01 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
.cabeçalho_menu-hamburguer{
width: 24px;
height: 24px;
display: inline-block;
background-image: url("../img/Menu.svg");
background-repeat: no-repeat;
}
.cabeçalho{
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;
}
.container_botao{
display: none;;
}
.lista-menu {
display: none;
position: absolute;
top: 100%;
width: 60vw;
border-radius: 0 0 20px 20px;
background-color: var(--branco);
}
.container_botao:checked ~ .lista-menu {
display: block;
}
.lista-menu_item, .lista-menu_titulo{
padding: 1em;
}
.lista-menu__titulo{
color: var(--laranja);
}
.lista-menu__link {
background: var(--azul-degrade);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-transform: uppercase;
}