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
@font-face {
2
font-family: "Recursive Variable";
3
font-weight: 100 700;
4
-
font-style: -5deg 5deg;
5
src: url(/fonts/Recursive_VF_1.085.woff2) format('woff2');
6
}
7
8
:root {
9
/* Color overrides, edit to whatever you want */
10
--primary-h: 260; /* Hue */
···
34
min-width: 320px;
35
min-height: 100vh;
36
background-color: var(--background-color);
37
-
font-family: "Recursive Variable";
38
font-size: var(--base-font-size);
39
color: var(--text-color);
40
border-color: var(--border-color);
···
55
}
56
57
h1 {
58
font-size: 2em;
59
line-height: 1.1;
60
margin-bottom: 0;
···
1
@font-face {
2
font-family: "Recursive Variable";
3
font-weight: 100 700;
4
src: url(/fonts/Recursive_VF_1.085.woff2) format('woff2');
5
}
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
+
35
:root {
36
/* Color overrides, edit to whatever you want */
37
--primary-h: 260; /* Hue */
···
61
min-width: 320px;
62
min-height: 100vh;
63
background-color: var(--background-color);
64
+
font-family: "Recursive Variable", monospace;
65
font-size: var(--base-font-size);
66
color: var(--text-color);
67
border-color: var(--border-color);
···
82
}
83
84
h1 {
85
+
font-family: "Space Mono", monospace;
86
font-size: 2em;
87
line-height: 1.1;
88
margin-bottom: 0;