blob: 9841b35af2a71894e2e61b8575fa67ab4ae39c3e (
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
46
47
48
49
50
51
52
|
:root {
box-sizing: border-box;
}
*,
*::before,
*::after {
box-sizing: inherit;
}
body {
background-color: black;
color: white;
font-family: monospace;
}
input {
font-family: inherit;
}
@font-face {
font-family: "FontAwesomeSolid";
src: url("/static/fontawesome-free-6.6.0-web/webfonts/fa-solid-900.woff2") format("woff2");
}
.icon-home,
.icon-users,
.icon-left,
.icon-right,
.icon-left-right {
font-family: "FontAwesomeSolid";
}
.icon-home::before {
content: "\f015";
}
.icon-users::before {
content: "\f0c0";
}
.icon-left::before {
content: "\f30a";
}
.icon-right::before {
content: "\f30b";
}
.icon-left-right::before {
content: "\f337";
}
|