-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
61 lines (56 loc) · 1.27 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
/* Style Settings */
@import url('https://fonts.googleapis.com/css?family=Karla:400,700&display=swap');
:root {
--bgColor: #282A36;
--fgColor: #fff;
--accentColor: #614D9F;
/* --hoverBtnColor: #fff; */
--hoverBtnColor: #50fa7b;
--font: 'Inter', sans-serif;
}
body{
background-color: var(--bgColor);
}
#userPhoto{
width: 150px;
height: 150px;
display: block;
margin: 35px auto 20px;
border-radius: 50%;
}
#userName{
color: var(--fgColor);
font-size: 1rem;
font-weight: 600;
line-height: 1.25;
display: block;
font-family: var(--font);
width: 100%;
text-align: center;
text-decoration: none;
}
#links{
max-width: 675px;
width: auto;
display: block;
margin: 27px auto;
padding: 0 10px;
}
.link{
font-weight: bold;
display: block;
background-color: var(--accentColor);
color: var(--fgColor);
font-family: var(--font);
text-align: center;
margin-bottom: 20px;
padding: 17px;
text-decoration: none;
font-size: 1rem;
transition: all .25s cubic-bezier(.08,.59,.29,.99);
border: solid var(--accentColor) 2px;
border-radius: 10px;
}
.link:hover{
box-shadow: 4px 4px 0px var(--hoverBtnColor);
}