-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
55 lines (43 loc) · 847 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
body{
background-color: rgb(183, 176, 176);/*coloca uma cor de fundo*/
}
.cabecalho{
display: flex;/*muda a disposição do elementos para horizontal*/
align-items: center;
justify-content: space-between;
}
.cabecalho-imagem{
width: 200px;
height: 200px;
border-radius: 50%;
padding: 20px;
}
.cabecalho-menu-listaitem{
display: inline;
text-transform: uppercase;
margin: 30px;
}
.sobre{
display: flex;
justify-content: center;
align-items: center;
}
.sobre_texto{
padding: 40px;
}
.elementos{
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
gap: 20px;
padding: 20px;
}
.elementos__div{
text-align: center;
}
.elementos__imagem{
width: 300px;
height: 300px;
border-radius: 10px;
}