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
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
: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
-moz-filter: grayscale(100%);
-webkit-filter: grayscale(100%);
filter: gray; /* IE6-9 */
filter: grayscale(100%);
}
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;
}
li {
list-style: none;
padding-left: 1em;
text-indent: -1em;
}
li:before {
content: "ඞ";
padding-right: 5px;
}
#header {
font-family: monospace;
text-align: center;
}
.grayscale {
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
filter: grayscale(100%);
}
.abyss {
color: gray;
text-shadow:
1px 1px 3px black,
-1px -1px 3px black,
1px -1px 3px black,
-1px 1px 3px black,
0 0 2em black,
0 0 0.8em black,
0 0 5px black,
0 0 10px black,
0 0 15px black;
}