aboutsummaryrefslogtreecommitdiff
path: root/static/stylesheet.css
diff options
context:
space:
mode:
authorlemurianmage <azureazure@disroot.org>2026-06-12 23:35:20 +0200
committerlemurianmage <azureazure@disroot.org>2026-06-12 23:35:20 +0200
commit7da42c6e577f49ad4981f24c833b2e1d86357e0b (patch)
treeb1921f453b86cd5062adbd34b5e1b8dccc8f32ef /static/stylesheet.css
parentcf102ad6c7d171dd500cae8b419b7f5c1e796ab4 (diff)
downloadslimegirl.nexus-7da42c6e577f49ad4981f24c833b2e1d86357e0b.tar.gz
redesign and move to markdown with a perl+make build system
Diffstat (limited to 'static/stylesheet.css')
-rw-r--r--static/stylesheet.css36
1 files changed, 36 insertions, 0 deletions
diff --git a/static/stylesheet.css b/static/stylesheet.css
new file mode 100644
index 0000000..df916fb
--- /dev/null
+++ b/static/stylesheet.css
@@ -0,0 +1,36 @@
+body
+{
+ background-color: white;
+ color: black;
+ max-width: 80ch;
+ margin: auto;
+ font-family: 'Comic Sans MS', 'Chalkboard SE', 'Comic Neue', sans-serif;
+ font-size: 1.2em;
+}
+
+nav { text-align: center; }
+
+hr
+{
+ border: 0;
+ border-bottom: 1px dashed;
+}
+
+img
+{
+ display: block;
+ margin: auto;
+ margin-top: 1em;
+ margin-bottom: 1em;
+}
+
+@media (prefers-color-scheme: dark)
+{
+ body
+ {
+ background-color: #1e1f21;
+ color: #eeeff1;
+ }
+ :link { color: #bad7ff; }
+ :visited { color: #f6baff; }
+}