diff options
| author | Jack Jamison <jackqjamison@gmail.com> | 2025-12-21 23:49:40 -0500 |
|---|---|---|
| committer | Jack Jamison <jackqjamison@gmail.com> | 2025-12-21 23:49:40 -0500 |
| commit | bd6bc98539d7d256b372fe393a4a040724ac2544 (patch) | |
| tree | 3662d700288fe4facef88d08f9ea4a6a8b9924cd /zola-static/sass | |
| parent | 388f1645f25f9ec02ce36773a15a8fc1b12fbbf0 (diff) | |
improve styling
Diffstat (limited to 'zola-static/sass')
| -rw-r--r-- | zola-static/sass/base.scss | 28 |
1 files changed, 25 insertions, 3 deletions
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; } |
