Start on CSS, but we are barely even getting started

This commit is contained in:
Starbeamrainbowlabs 2020-05-09 00:00:40 +01:00
parent 001aa1d611
commit 3eb60ae8ab
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 19 additions and 0 deletions

View File

@ -1,5 +1,24 @@
@charset "UTF-8";
:root {
--bg-back: #eee8f2;
--text-main: #111111;
}
@media (prefers-color-scheme: dark) {
:root {
--bg-back: hsl(270, 29%, 28%);
--text-main: hsl(277, 38%, 89%);
}
}
html, body { font-size: 100%; }
body {
background: var(--bg-back);
color: var(--text-main);
font-family: sans-serif;
}