-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
82 lines (70 loc) · 1.17 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--body-bg-color: #faf7fd;
--purple: #bb99dd;
}
body {
background-color: var(--body-bg-color);
color: var(--purple);
font-family: 'Poppins', sans-serif;
-webkit-font-smoothing: antialiased;
}
a {
text-decoration: none;
color: inherit;
}
li {
list-style: none;
}
img {
width: 100%;
}
.container {
width: 300px;
text-align: center;
margin: 60px auto;
}
.avatar {
width: 200px;
height: 200px;
border-radius: 50%;
border: 2px solid var(--purple);
padding: 4px;
}
.username {
margin-top: 16px;
display: block;
font-weight: 300;
}
.links-wrapper {
margin-top: 32px;
display: flex;
flex-direction: column;
gap: 16px;
}
.links-wrapper li a {
height: 48px;
display: flex;
justify-content: center;
align-items: center;
color: var(--purple);
border: 2px solid var(--purple);
border-radius: 4px;
text-transform: uppercase;
transition: all 0.2s;
}
.links-wrapper li a:hover {
background-color: var(--purple);
color: var(--body-bg-color);
}
.icons-wrapper {
margin-top: 68px;
display: flex;
align-items: center;
justify-content: center;
gap: 32px;
}