From 0fa266ecbde54c065146472f7c8ff2b1af83c138 Mon Sep 17 00:00:00 2001 From: azureazure Date: Wed, 24 Dec 2025 01:27:00 +0100 Subject: rss feed + more cancerous colors --- src/assets/stylesheet.css | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) (limited to 'src/assets/stylesheet.css') diff --git a/src/assets/stylesheet.css b/src/assets/stylesheet.css index 6aa41e0..3cd8431 100644 --- a/src/assets/stylesheet.css +++ b/src/assets/stylesheet.css @@ -1,9 +1,9 @@ :root { - --bg: #101010; + --bg: black; --text: white; - --main: palevioletred; - --accent: hotpink; + --main: lime; + --accent: white; } .footpara @@ -11,17 +11,18 @@ display: inline; } -#content +/* i don't want to display the date but it needs to exist for rss generation */ +#postamble { - max-width: 80ch; - margin: auto; - font-family: serif; + visibility: hidden; } body { background-color: var(--bg); color: var(--text); + max-width: 80ch; + margin: auto; } .logo @@ -34,6 +35,12 @@ body font-family: monospace; } +.buttons +{ + display: grid; + place-items: center; +} + .logo:hover { color: var(--accent); @@ -67,11 +74,6 @@ ul list-style-type: circle; } -ol -{ - list-style-type: upper-roman; -} - hr { border-color: var(--main); -- cgit v1.2.3