-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
95 lines (88 loc) · 1.82 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
@import url('https://fonts.googleapis.com/css?family=Roboto');
:root {
--bgColor: white;
--accentColor:#009688;
--accentHoverColor:#005a4f;
--font: 'Roboto', sans-serif;
}
body{
background-color: var(--bgColor);
font-family: var(--font);
padding-bottom: 10px;
}
#userPhoto{
width: 102px;
height: 102px;
display: block;
margin: 35px auto 20px;
border-radius: 50%;
}
#bio {
display: block;
width: 100%;
text-align: center;
color: #000000de;
}
#bio h2{
font-size: 1.5rem;
font-weight: 600;
line-height: 1.25;
}
#socialLinks, #links {
width: auto;
display: block;
margin: 27px auto;
}
#socialLinks {
max-width: 360px;
font-size: 24px;
text-align: center;
margin-bottom: 18px;
font-weight: 100;
}
#socialLinks a {
color: var(--accentColor);
transition: all .25s cubic-bezier(.08,.59,.29,.99);
margin-right: 18px;
}
#socialLinks a:last-child {
margin-right: 0;
}
#socialLinks a:hover {
color: var(--accentHoverColor);
}
#links {
max-width: 675px;
}
.link{
display: block;
background-color: var(--accentColor);
color: var(--bgColor);
text-align: center;
margin-bottom: 12px;
padding: 17px;
text-decoration: none;
font-size: 1rem;
transition: all .25s cubic-bezier(.08,.59,.29,.99);
border: solid var(--accentColor) 2px;
}
.link:hover{
background-color: var(--bgColor);
color: var(--accentColor);
}
footer {
text-align: center;
}
footer a {
font-size: medium;
color: var(--accentColor);
text-decoration: none;
text-decoration: none;
opacity: 0.8;
transition: all .25s cubic-bezier(.08,.59,.29,.99);
}
footer a:hover, footer a:visited {
color: var(--accentHoverColor);
border-bottom: 1px dashed var(--accentHoverColor);
padding-bottom: 2px;
}