From e821d43c778732ffe8fcd23a013cb276d03b1953 Mon Sep 17 00:00:00 2001 From: Yuki Joou Date: Mon, 4 Sep 2023 11:29:26 +0200 Subject: [PATCH] style: A bunch of general improvements to the CSS --- static/style.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/static/style.css b/static/style.css index c0458f5..c28a348 100644 --- a/static/style.css +++ b/static/style.css @@ -27,6 +27,7 @@ body { color: var(--foreground-color); font-family: sans-serif, sans; + line-height: 150%; } header { @@ -85,6 +86,16 @@ a { color: var(--link-color); } +sup { + /* Hack I don't totally understand to make superscripts look better */ + /* Stolen partially from https://gist.github.com/unruthless/413930 */ + font-size: 50%; + vertical-align: baseline; + line-height: 0; + position: relative; + top: -0.8em; +} + ul#menubar { width: 100%; margin: 0;