-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
100 lines (84 loc) · 1.76 KB
/
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
*{
padding: 0%;
margin: 0%;
box-sizing: 0%;
font-family: 'Inter';
}
:root{
--background-color: hsl(0, 0%, 8%); /*cinza mais escuro*/
--corFundo-card: hsl(0, 0%, 12%);
--corTextoCinza: hsl(0, 0%, 20%);
}
body{
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: var(--background-color);
}
main{
margin:10px;
max-width: 417px;
background-color: var(--corFundo-card);
border-radius: 1rem;
box-shadow: 1px 1px 10px hsla(0, 0%, 20%, 0.235);
}
.card{
display: flex;
flex-direction: column;
padding: 1.5rem;
}
.card > figure{
display: flex;
justify-content: center;
margin-bottom: 1.6rem;
}
figure > img{
max-width: 36%;
border-radius: 50%;
box-shadow: 0px 0px 10px hsla(75, 94%, 57%, 0.563); ;
}
.informacao_perfil{
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
gap: 10px;
}
.informacao_perfil > h1{
color: white;
font-weight: 700;
}
.informacao_perfil > p{
color: hsl(75, 94%, 57%);
font-size: 0.69rem;
font-weight: 600;
}
span{
color: hsl(0, 0%, 75%);
font-size: 0.7rem;
font-weight: 500;
margin: 15px 0px 10px 0px;
}
ul > li{
padding: 10px;
border-radius: 0.5rem;
list-style: none;
margin: 15px auto;
cursor: pointer;
/* estilos paras os nomes dos links */
text-align: center;
text-decoration: none;
font-size: 0.68rem;
font-weight: 500;
color: white;
background-color:var(--corTextoCinza);
}
ul li:last-child{
margin-bottom: 0px;
}
li:hover{
background-color:hsla(75, 94%, 57%, 0.563);
box-shadow: 1.8px 1.8px 10px hsla(75, 94%, 57%, 0.563);
transition: all 0.3s;
}