summaryrefslogtreecommitdiff
path: root/extras/html
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2024-04-03 23:54:40 +0300
committerPaul Buetow <paul@buetow.org>2024-04-03 23:54:40 +0300
commit68d1ccf6095024847f003e282f0f6036c5255e54 (patch)
tree98a99d2f3fc2db6b3f01dcc7a3b653228299b332 /extras/html
parent488d627875f10b14d5cebe5de9cef9ddf0ccaa8e (diff)
add fallback to monospace font
Diffstat (limited to 'extras/html')
-rw-r--r--extras/html/style.css6
1 files changed, 3 insertions, 3 deletions
diff --git a/extras/html/style.css b/extras/html/style.css
index 0001a3a..a81995e 100644
--- a/extras/html/style.css
+++ b/extras/html/style.css
@@ -19,7 +19,7 @@
}
body {
- font-family: text;
+ font-family: text, monospace;
max-width: 1024px;
padding: 20px 20px;
margin: 20px auto;
@@ -87,7 +87,7 @@ img {
}
pre {
- font-family: code;
+ font-family: code, monospace;
padding: 0;
overflow-x: auto;
scrollbar-width: none;
@@ -101,7 +101,7 @@ pre {
}
span.inlinecode {
- font-family: code;
+ font-family: code, monospace;
border: 1px solid #000000;
padding: 1px;
color: grey;