-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
57 lines (47 loc) · 831 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
56
body{
color: rgb(251, 252, 255);
background-color: rgb(0, 0, 0);
}
.cabecalho{
display: flex;
align-items: center;
justify-content: space-between;
background-color: rgb(254, 255, 255);
}
.cabecalho-imagem{
width: 120px;
height: 120px;
border-radius: 70%;
padding: 30px;
}
.cabecalho-menu-listaitem{
color:rgb(0, 0, 0);
display: inline;
text-transform: uppercase;
margin: 10px;
}
.sobre{
display: flex;
justify-content: center;
align-items: center;
}
.sobre_texto{
background-color: rgb(0, 0, 0);
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: 320px;
height: 320px;
border-radius: 60px;
}