public/fonts/spacemono-bold-webfont.woff2
public/fonts/spacemono-bold-webfont.woff2
This is a binary file and will not be displayed.
public/fonts/spacemono-bolditalic-webfont.woff2
public/fonts/spacemono-bolditalic-webfont.woff2
This is a binary file and will not be displayed.
public/fonts/spacemono-italic-webfont.woff2
public/fonts/spacemono-italic-webfont.woff2
This is a binary file and will not be displayed.
public/fonts/spacemono-regular-webfont.woff2
public/fonts/spacemono-regular-webfont.woff2
This is a binary file and will not be displayed.
+30
-2
themes/birdrights/theme.css
+30
-2
themes/birdrights/theme.css
···
1
1
@font-face {
2
2
font-family: "Recursive Variable";
3
3
font-weight: 100 700;
4
-
font-style: -5deg 5deg;
5
4
src: url(/fonts/Recursive_VF_1.085.woff2) format('woff2');
6
5
}
7
6
7
+
@font-face {
8
+
font-family: "Space Mono";
9
+
font-weight: normal;
10
+
font-style: normal;
11
+
src: url(/fonts/spacemono-regular-webfont.woff2) format('woff2');
12
+
}
13
+
14
+
@font-face {
15
+
font-family: "Space Mono";
16
+
font-weight: bold;
17
+
font-style: normal;
18
+
src: url(/fonts/spacemono-bold-webfont.woff2) format('woff2');
19
+
}
20
+
21
+
@font-face {
22
+
font-family: "Space Mono";
23
+
font-weight: normal;
24
+
font-style: italic;
25
+
src: url(/fonts/spacemono-italic-webfont.woff2) format('woff2');
26
+
}
27
+
28
+
@font-face {
29
+
font-family: "Space Mono";
30
+
font-weight: bold;
31
+
font-style: italic;
32
+
src: url(/fonts/spacemono-bolditalic-webfont.woff2) format('woff2');
33
+
}
34
+
8
35
:root {
9
36
/* Color overrides, edit to whatever you want */
10
37
--primary-h: 260; /* Hue */
···
34
61
min-width: 320px;
35
62
min-height: 100vh;
36
63
background-color: var(--background-color);
37
-
font-family: "Recursive Variable";
64
+
font-family: "Recursive Variable", monospace;
38
65
font-size: var(--base-font-size);
39
66
color: var(--text-color);
40
67
border-color: var(--border-color);
···
55
82
}
56
83
57
84
h1 {
85
+
font-family: "Space Mono", monospace;
58
86
font-size: 2em;
59
87
line-height: 1.1;
60
88
margin-bottom: 0;