static/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
:root {
font-size: 1rem;
--medium-gray: #ddd;
--gray: #6a6a6a;
}
/* make sure the scrollbar is always shown so
the width doesnt change between pages */
html {
overflow-y: scroll
}
img {
border-bottom: none;
}
a:hover {
border-bottom: 1.5px solid var(--gray);
}
a {
text-decoration: none;
border-bottom: 1.5px solid var(--medium-gray);
}
#main,
#header,
aside,
img {
max-width: 500px;
margin: 0 auto;
padding: 0;
}
#header {
font-family: monospace;
text-align: center;
}
.grayscale {
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
filter: grayscale(100%);
}