-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
107 lines (93 loc) · 1.73 KB
/
style.css
File metadata and controls
107 lines (93 loc) · 1.73 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
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
html {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
background-color: hsl(0, 0%, 8%);
display: flex;
justify-content: center;
align-items: center;
}
body {
padding: 1rem;
}
.card {
background-color: hsl(0, 0%, 12%);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-top: 200px;
width: 360px;
border-radius: 20px;
padding: 24px 24px 48px 24px;
gap: 14px;
}
img {
border-radius: 50%;
width: 100px;
margin-bottom: -8px;
}
h1 {
color: hsl(0, 0%, 100%);
font-size: 1.5rem;
font-weight: 700;
text-align: center;
margin-bottom: 0;
}
.profile-name {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 4px;
}
.profile-location {
color: hsl(75, 94%, 57%);
font-size: 0.9rem;
font-weight: 600;
text-align: center;
margin-top: 0;
}
.profile-about {
color: hsl(0, 0%, 100%);
font-size: 0.8rem;
font-weight: 400;
}
.profile-links {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
list-style: none;
gap: 16px;
margin: 0;
padding: 0;
}
a {
text-decoration: none;
color: hsl(0, 0%, 100%);
}
li {
background-color: hsl(0, 0%, 20%);
padding: 15px 24px;
width: 160%;
text-align: center;
border-radius: 10px;
font-size: 1rem;
font-weight: 600;
}
li a:hover {
color: hsl(75, 94%, 57%);
}
.attribution {
margin-top: 150px;
color: hsl(0, 0%, 40%);
font-size: 0.8rem;
text-align: center;
}
.attribution a {
font-size: 0.7rem;
color: hsl(75, 94%, 57%);
margin: 0 4px;
}