blob: 2a5d4b65c034f43755867b23c6e6be18948991f5 (
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
|
: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/vendored/fontawesome-free-6.6.0-web/webfonts/fa-solid-900.woff2")
format("woff2");
}
.icon-users {
font-family: "FontAwesomeSolid";
}
.icon-users::before {
content: "\f0c0";
}
|