From 7da42c6e577f49ad4981f24c833b2e1d86357e0b Mon Sep 17 00:00:00 2001 From: lemurianmage Date: Fri, 12 Jun 2026 23:35:20 +0200 Subject: redesign and move to markdown with a perl+make build system --- static/stylesheet.css | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 static/stylesheet.css (limited to 'static/stylesheet.css') 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; } +} -- cgit v1.2.3