-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
60 lines (51 loc) · 930 Bytes
/
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
:root {
background-color: #333;
color: #eee;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
padding-bottom: 3rem;
}
main, footer {
margin: auto;
max-width: 42rem;
}
a:link { color: #f6753a; }
a:visited { color: #f6753a; }
a:hover { color: #eee; }
a:active { color: #eca72c; }
footer {
font-size: .6rem;
margin: auto;
border-top: 1px solid #eee;
}
nav {
background-color: #2a2a2d;
position: fixed;
bottom: 0;
left: 0;
right: 0;
}
nav ul {
list-style: none;
margin: 0;
padding: 0;
text-align: center;
}
nav li {
display: inline-block;
height: 3rem;
padding: 0 0.5rem;
}
nav svg {
height: 2rem;
width: 2rem;
fill: currentColor;
vertical-align: middle;
}
nav a {
display: block;
padding: 0.5em 0;
text-decoration: none;
color: #eee;
}
nav a:link, nav a:visited { color: #eee; }
nav a:hover, nav a:active { color: #f6753a; }