From 28af488e934347ea8d28ee2527171ceb86a6e6a7 Mon Sep 17 00:00:00 2001 From: joss Date: Tue, 18 Mar 2025 06:18:58 +0100 Subject: [PATCH 1/2] Changed font to sans serif --- static/style.rcss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/style.rcss b/static/style.rcss index 9f331b6..7d2dabf 100644 --- a/static/style.rcss +++ b/static/style.rcss @@ -5,7 +5,7 @@ #define COL5 #FEC89A body { - font-family: serif; + font-family: sans-serif; max-width: 600px; margin: auto; } From 3ef4a45253ddf1405483af4a7a0d93d4b507251d Mon Sep 17 00:00:00 2001 From: joss Date: Tue, 18 Mar 2025 06:48:10 +0100 Subject: [PATCH 2/2] Changed link color --- static/style.rcss | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/static/style.rcss b/static/style.rcss index 7d2dabf..deaf4d5 100644 --- a/static/style.rcss +++ b/static/style.rcss @@ -10,6 +10,18 @@ body { margin: auto; } +a { + color: gray; +} + +a:hover { + color: #101010; +} + +a:visited { + color: dimgray; +} + .content { color: #101010; overflow: auto;