From 544136925ffe8ebac3b729a9c86ac7a1d2bfb814 Mon Sep 17 00:00:00 2001 From: Michael Hunteman Date: Tue, 7 Mar 2023 10:36:03 -0600 Subject: Initial commit --- static/style.css | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 static/style.css (limited to 'static/style.css') diff --git a/static/style.css b/static/style.css new file mode 100644 index 0000000..ba271d6 --- /dev/null +++ b/static/style.css @@ -0,0 +1,48 @@ +body { + color: #212529; + background: #fff; + margin: 2% auto; + font-family: sans-serif; + max-width: min(95%, 64em); +} + +a { + color: #007bff; + text-decoration: none; +} + +a:hover { + color: #0056b3; + text-decoration: underline; +} + +ul.links { + list-style-type: none; + font-weight: bold; + display: flex; + align-items: stretch; + justify-content: space-evenly; +} + +hr { + color: #fff; +} + +header, +footer { + text-align: center; +} + +@media (prefers-color-scheme: dark) { + body { + background: #212529; + color: #f8f9fa; + } + a { + color: #3395ff; + } + hr { + color: #212529; + } +} + -- cgit v1.2.3