-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
104 lines (86 loc) · 1.74 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
97
98
99
100
101
102
103
104
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
*{
font-family: "Inter", sans-serif;
margin: 0;
padding: 0;
color: hsl(0, 0%, 100%);
}
body{
background-color: hsl(0, 0%, 8%);
height: 100vh;
width: 100%;
display: flex;
flex-flow: column wrap;
align-items: center;
justify-content: center;
font-size: 14px;
}
.container{
background-color: hsl(0, 0%, 12%);
height: 550px;
width: 350px;
display: flex;
flex-flow: column wrap;
justify-content: center;
align-items:center;
border-radius: 10px;
overflow: hidden;
}
.container .profile-image{
height: 100px;
width: 100px;
border-radius: 100%;
overflow: hidden;
}
.container .profile-image img{
width: 100px;
}
.text{
display: flex;
flex-flow: column wrap ;
justify-content: center;
align-items: center;
gap: 10px;
}
.text h3{
color: hsl(75, 94%, 57%);
font-size: 14px;
}
.text p{
margin: 25px 0;
}
.text h2{
font-size: 24px;
}
.links{
width: 80%;
}
.links ul{
list-style: none;
}
.links ul li{
display: flex;
}
.links ul li a{
text-decoration: none;
text-align: center;
display: block;
background-color: hsl(0, 0%, 20%);
padding: 10px;
margin: 5px 0;
width: 100%;
border-radius: 10px;
transition: .5s;
}
.links ul li a:hover{
color: hsl(0, 0%, 8%);
background-color: hsl(75, 94%, 57%);
cursor: pointer;
}
.attribution {
margin: 15px 0;
font-size: 11px; text-align: center;
}
.attribution a {
color: hsl(75, 94%, 57%);
}