-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
77 lines (69 loc) · 1.34 KB
/
style.css
File metadata and controls
77 lines (69 loc) · 1.34 KB
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
body{
height: 700px;
background-color: hsl(0, 0%, 8%);
display: flex;
justify-content: center;
align-items: center;
font-family: 'Inter',sans-serif;
}
.container{
width: 350px;
height: 550px;
display: flex;
flex-direction: column;
align-items: center;
border: 2px solid rgba(0, 0, 0, 0.432);
background-color: hsl(0, 0%, 12%);
border-radius: 20px;
}
.container .perfil img{
width: 100px;
margin-top: 30px;
border-radius: 100%;
}
.info{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.info .nome{
color: white;
padding-top: 20px;
font-weight: 400;
}
.info p{
font-size: 13px;
color: hsl(75, 94%, 57%);
padding: 10px 0;
}
.info .profissional{
color: white;
font-size: 13px;
padding: 10px 0;
font-weight: 400;
}
.redes .lista li {
color: white;
text-align: center;
padding: 10px 40px;
border-radius: 10px;
list-style-type: none;
margin: 10px;
background-color: hsl(0, 0%, 20%);
}
.redes .lista li a{
text-decoration: none;
color: #fff;
}
.redes .lista li a:hover{
color: black;
font-weight: 700;
}
@media(max-width: 375px){
.container{
display: flex;
flex-direction: column;
align-items: center;
}
}