aboutsummaryrefslogtreecommitdiff
path: root/static/style.css
diff options
context:
space:
mode:
authorMichael Hunteman <michael@huntm.net>2023-03-07 10:36:03 -0600
committerMichael Hunteman <michael@huntm.net>2023-03-07 10:36:03 -0600
commit544136925ffe8ebac3b729a9c86ac7a1d2bfb814 (patch)
treea10226275979ee7aff41d25a7787feabf7da70e0 /static/style.css
Initial commit
Diffstat (limited to 'static/style.css')
-rw-r--r--static/style.css48
1 files changed, 48 insertions, 0 deletions
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;
+ }
+}
+