aboutsummaryrefslogtreecommitdiff
path: root/src/assets/stylesheet.css
diff options
context:
space:
mode:
Diffstat (limited to 'src/assets/stylesheet.css')
-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);