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
This commit is contained in:
Xevion
2022-02-27 01:31:03 -06:00
parent e83cb67d73
commit 9fda600148

View File

@@ -1,10 +1,10 @@
::selection { ::selection {
background: black; background: #606060;
color: white; color: white;
} }
::-moz-selection { ::-moz-selection {
background: black; background: #606060;
color: white; color: white;
} }
@@ -20,10 +20,11 @@ img {
html { html {
overflow-y: scroll; overflow-y: scroll;
font-size: 16pt; font-size: 16pt;
text-rendering: optimizeLegibility;
} }
body { body {
max-width: 42em; max-width: 46em;
margin: 1em auto 2em auto; margin: 1em auto 2em auto;
padding: 0 1em; padding: 0 1em;
font-family: CMU Serif, serif; font-family: CMU Serif, serif;
@@ -197,7 +198,7 @@ nav a {
line-height: 1; line-height: 1;
text-align: center; text-align: center;
text-transform: uppercase; text-transform: uppercase;
border: thin solid black; border: thin solid white;
border-width: thin 0; border-width: thin 0;
padding: 0.25em 0; padding: 0.25em 0;
} }