From 9fda600148e4420fdcf651c4a168c15c14ec5b7a Mon Sep 17 00:00:00 2001 From: Xevion Date: Sun, 27 Feb 2022 01:31:03 -0600 Subject: [PATCH] Improve global site SCSS - Change background of selected elements to white/gray - Change browser text rendering for legibility - Increase width of site body - Fix black top/bottom borders of date blocks --- _sass/main.scss | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/_sass/main.scss b/_sass/main.scss index b4f8d40..7f091dd 100644 --- a/_sass/main.scss +++ b/_sass/main.scss @@ -1,10 +1,10 @@ - ::selection { - background: black; +::selection { + background: #606060; color: white; } ::-moz-selection { - background: black; + background: #606060; color: white; } @@ -20,10 +20,11 @@ img { html { overflow-y: scroll; font-size: 16pt; + text-rendering: optimizeLegibility; } body { - max-width: 42em; + max-width: 46em; margin: 1em auto 2em auto; padding: 0 1em; font-family: CMU Serif, serif; @@ -197,7 +198,7 @@ nav a { line-height: 1; text-align: center; text-transform: uppercase; - border: thin solid black; + border: thin solid white; border-width: thin 0; padding: 0.25em 0; }