-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
39 lines (33 loc) · 994 Bytes
/
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
@import url("style/header.css");/*menu hamburguer será exibido corretamente.*/
:root {
--cor-de-fundo: #EBECEE;
--branco: hwb(49 60% 8%);
--azul-degrade: linear-gradient(97.54deg, #002f52 35.49%, #326589 165.37%);
}
/**/
*{
padding: 0;
margin: 0;
}
.cabeçalho__menu-hamburguer {
width: 24px; /*Largura: 24px;*/
height: 24px; /*Altura: 24px;*/
display: inline-block; /*Disposição dos elementos: inline-block (em linha);*/
background-image: url("img/Menu.svg");/**/
background-repeat: no-repeat;/*Sem repetições;*/
background-position: center;/*Posicionamento: centro;*/
}
/**/
.cabeçalho {
background-color: var(--branco);
display: flex;/*distribuiu os elementos igualmente*/
justify-content: space-between;/* separou cada item com o mesmo espaço entre eles.*/
align-items: center;
}
.container {
display: flex;
align-items: center;
}
.container__imagem {
padding: 1em;
}