-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
111 lines (108 loc) · 2.24 KB
/
styles.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Inter", sans-serif;
font-weight: 400;
font-size: 1rem;
background-color: hsl(0, 0%, 8%);
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.container {
margin: 60px auto 50px auto;
background-color: hsl(0, 0%, 12%);
border-radius: 0.8rem;
max-width: 460px;
width: 100%;
}
@media (max-width: 500px) {
.container {
width: 90%;
}
}
.container .profile {
padding: 45px;
text-align: center;
}
.container .profile .profile-image img {
-o-object-fit: cover;
object-fit: cover;
border-radius: 50%;
height: 80px;
width: 80px;
}
.container .profile .profile-info {
margin-bottom: 0.5rem;
}
.container .profile .profile-info h2 {
color: hsl(0, 0%, 100%);
margin-top: 1rem;
font-weight: 700;
font-size: 1.8rem;
}
.container .profile .profile-info .user-location {
display: block;
margin-top: 0.7rem;
color: hsl(75, 94%, 57%);
font-weight: 600;
}
.container .profile .profile-info .passion {
display: block;
margin-top: 1.8rem;
color: hsl(0, 0%, 100%);
}
.container .social-links {
text-align: center;
margin: -1rem auto 1rem auto;
}
.container .social-links ul {
list-style: none;
display: flex;
flex-direction: column;
align-items: center;
}
.container .social-links ul li {
background-color: hsl(0, 0%, 20%);
padding: 20px;
border-radius: 0.8rem;
cursor: pointer;
margin-bottom: 1rem;
max-width: 380px;
width: 100%;
transition: all 0.3s ease;
}
@media (max-width: 500px) {
.container .social-links ul li {
width: 90%;
}
}
.container .social-links ul li:hover {
background-color: hsl(75, 94%, 57%);
transform: scale(1.05);
}
.container .social-links ul li:hover a {
color: hsl(0, 0%, 8%);
}
.container .social-links ul li a,
.container .social-links ul li a:visited {
text-decoration: none;
color: hsl(0, 0%, 100%);
font-weight: 700;
}
footer {
text-align: center;
font-size: 0.8rem;
color: hsl(0, 0%, 100%);
margin: -1rem auto 0.8rem auto;
}
footer a,
footer a:visited {
color: hsl(75, 94%, 57%);
text-decoration: none;
}/*# sourceMappingURL=styles.css.map */