blob: c3c236cf607587b589f34f028dbe320102908acb (
plain)
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
|
:root {
box-sizing: border-box;
}
*,
*::before,
*::after {
box-sizing: inherit;
}
body {
background-color: black;
color: white;
font-family: monospace;
}
input {
font-family: inherit;
}
a:link {
color: lightskyblue;
}
a:visited {
color: mediumpurple;
}
@font-face {
font-family: "FontAwesomeSolid";
src: url("/static/vendored/fontawesome-free-6.6.0-web/webfonts/fa-solid-900.woff2")
format("woff2");
}
.icon-users {
font-family: "FontAwesomeSolid";
}
.icon-users::before {
content: "\f0c0";
}
#source-footer {
text-align: right;
}
|