summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2024-04-03 23:45:51 +0300
committerPaul Buetow <paul@buetow.org>2024-04-03 23:45:51 +0300
commit4ba29d61a3f7eb6367a0edca26e4812be7bafb39 (patch)
treeb0190e0cf26b323e3a42d180008edc6438a87c69
parentcd12ce7f9c785c9bb5d53dc7d1da070a7bd40b9b (diff)
add monospace fallback
-rw-r--r--extras/html/style.css8
1 files changed, 4 insertions, 4 deletions
diff --git a/extras/html/style.css b/extras/html/style.css
index 0001a3a..9a74645 100644
--- a/extras/html/style.css
+++ b/extras/html/style.css
@@ -1,20 +1,20 @@
@font-face {
- font-family: 'text';
+ font-family: 'text', monospace;
src: url("./text.ttf") format("truetype");
}
@font-face {
- font-family: 'code';
+ font-family: 'code', monospace;
src: url("./code.ttf") format("truetype");
}
@font-face {
- font-family: 'handnotes';
+ font-family: 'handnotes', monospace;
src: url("./handnotes.ttf") format("truetype");
}
@font-face {
- font-family: 'typewriter';
+ font-family: 'typewriter', monospace;
src: url("./typewriter.ttf") format("truetype");
}