summaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
authorPaul-Christian Volkmer2024-06-25 16:16:13 +0200
committerPaul-Christian Volkmer2024-06-25 16:16:13 +0200
commit6e0ec6b95a3bc32b1eaef2b5956677b3ee1eee44 (patch)
tree46662bc48a72169d7e3e42c6c6edd0fda5dd2614 /src/main
parent0ff56416ddbaabd0676a5d137e7abb85155955c5 (diff)
style: use sans-serif font everywhere
Diffstat (limited to 'src/main')
-rw-r--r--src/main/resources/static/style.css5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/main/resources/static/style.css b/src/main/resources/static/style.css
index 892b020..7066e2b 100644
--- a/src/main/resources/static/style.css
+++ b/src/main/resources/static/style.css
@@ -22,6 +22,10 @@
--bg-gray-op: rgba(112, 128, 144, .35);
}
+* {
+ font-family: sans-serif;
+}
+
html {
background: linear-gradient(-5deg, var(--bg-blue-op), transparent 10em);
min-height: 100vh;
@@ -30,7 +34,6 @@ html {
body {
margin: 0 0 5em 0;
- font-family: sans-serif;
font-size: .8rem;
color: var(--text);