aboutsummaryrefslogtreecommitdiff
path: root/src/assets
diff options
context:
space:
mode:
authorazureazure <azureazure@disroot.org>2025-12-24 01:27:00 +0100
committerazureazure <azureazure@disroot.org>2025-12-24 01:27:00 +0100
commit0fa266ecbde54c065146472f7c8ff2b1af83c138 (patch)
tree8661a45d172d2dcef3bfbea375bbec6cc07c8545 /src/assets
parent6a81e64b64fc1afdc028b4c7d7cdb4addf72ecc4 (diff)
downloadslimegirl.nexus-0fa266ecbde54c065146472f7c8ff2b1af83c138.tar.gz
rss feed + more cancerous colors
Diffstat (limited to 'src/assets')
-rw-r--r--src/assets/stylesheet.css26
1 files changed, 14 insertions, 12 deletions
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);