From bd6bc98539d7d256b372fe393a4a040724ac2544 Mon Sep 17 00:00:00 2001 From: Jack Jamison Date: Sun, 21 Dec 2025 23:49:40 -0500 Subject: improve styling --- zola-static/sass/base.scss | 28 +++++++++++++++++++++++++--- 1 file changed, 25 insertions(+), 3 deletions(-) (limited to 'zola-static/sass') diff --git a/zola-static/sass/base.scss b/zola-static/sass/base.scss index 0afdfc6..bb23005 100644 --- a/zola-static/sass/base.scss +++ b/zola-static/sass/base.scss @@ -1,4 +1,8 @@ // Main styles and centering +html { + color-scheme: dark; +} + body { margin: 3rem auto; max-width: 55rem; @@ -8,7 +12,7 @@ body { background-color: #252422; color: #DCE1DE; - font-family: arial; + font-family: "Courier New", Courier, monospace; } // more compact margins @@ -27,6 +31,17 @@ h1 a { text-decoration: none; } +hr { + height: 0.25rem; + border-radius: 0.2rem; + border: none; + background-color: #2e2d2c; +} + +.header-separator { + margin-top: -0.2rem; +} + // Blog titles .header-title { margin: 0; @@ -86,18 +101,25 @@ img { .footer-text { text-align: center; + color: #2e2d2c; } .footer-text a { text-decoration: none; + padding: 0rem 0.5rem; } .index-section { background-color: #2e2d2c; - padding: 0.5rem; + padding: 0.7rem; margin-top: 0.6rem; + border-radius: 0.4rem; } .index-section h2 { - margin-top: 0.1rem; + margin-top: -0.3rem; +} + +.index-section ul { + margin-bottom: 0.3rem; } -- cgit v1.2.3