diff options
Diffstat (limited to 'assets/style.css')
-rw-r--r-- | assets/style.css | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/assets/style.css b/assets/style.css index 16ca7f0..49e832e 100644 --- a/assets/style.css +++ b/assets/style.css @@ -15,10 +15,6 @@ top: 0px; left: 0px; } -.cent { - width: 80vw; - margin: 0 auto; -} body { font-family: vt323, monospace; @@ -50,17 +46,16 @@ body { line-height: initial; } -#rlist a, #rlist span { +a { text-decoration: none; - color: #dfdfff; - background-color: #3c3c3c; + color: #8b8be8; } #miscinfo { flex-grow: 1; } -#statusline { +.statusline { display: flex; position: sticky; background-color: black; @@ -69,10 +64,17 @@ body { bottom: 0px; left: 0px; } -#statusline * { +.statusline * { margin: 0.5em 2em 0 0; } +/* i was today years old when i learned that css selector declaration order matters */ +/* cent should come after statusline, so it overwrites statusline's props */ +.cent { + width: 80vw; + margin: 0 auto; +} + span, h1, h4 { margin: 0 auto; } |