From 8627738357101eb1216697c94bb00b403c46019d4890358ea96a54f4a4fec305 Mon Sep 17 00:00:00 2001 From: Nicholas Johnson <> Date: Sun, 27 Jul 2025 00:00:00 +0000 Subject: Ensure body is always at least viewport height The page content area's background color should always fill the height of the viewport, even if there is not enough page content. --- assets/static/css/style.css | 2 ++ 1 file changed, 2 insertions(+) (limited to 'assets') diff --git a/assets/static/css/style.css b/assets/static/css/style.css index 755e05f..2e6686b 100644 --- a/assets/static/css/style.css +++ b/assets/static/css/style.css @@ -89,9 +89,11 @@ blockquote, ol, p, pre, ul, .highlight { .body { background-color: black; + box-sizing: border-box; color: lightgray; font-family: Arial, Helvetica, sans-serif; font-size: 1.8rem; + min-height: 100vh; line-height: 1.4; margin: 0 auto; padding: 1.4em; -- cgit v1.2.3