From d7695acb4a70f5fb7cc9cce0b65c71fd3e0380aa Mon Sep 17 00:00:00 2001
From: Prefetch
Date: Mon, 6 Apr 2020 20:03:53 +0200
Subject: Make every page a single request
---
templates/index.html | 2 +-
templates/main.css | 33 +++++++++++++++++++++++++++++++++
2 files changed, 34 insertions(+), 1 deletion(-)
create mode 100644 templates/main.css
(limited to 'templates')
diff --git a/templates/index.html b/templates/index.html
index a8e95d3..a485d5f 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -3,7 +3,7 @@
{% block title %}{{ config.title }}{% endblock title %}
-
+
diff --git a/templates/main.css b/templates/main.css
new file mode 100644
index 0000000..23c72aa
--- /dev/null
+++ b/templates/main.css
@@ -0,0 +1,33 @@
+body {
+ background-color:#fcfcfc;
+ color:#232629;
+ max-width:72ch;
+ text-align:justify;
+ margin:auto;
+ padding:1em 0;
+ font-family:sans-serif;
+ line-height:1.3;
+}
+a {text-decoration:none;color:#1d99f3;}
+h1 {text-align:center;font-size:2rem;}
+h2 {text-align:center;font-size:1.6rem;}
+h3 {text-align:center;font-size:1.2rem;}
+.nav a:link {color:#232629;}
+.nav a:visited{color:#232629;}
+.nav a:hover {color:#1d99f3;}
+.nav a:focus {color:#1d99f3;}
+.nav a:active {color:#1d99f3;}
+.nav {height:3rem;font-size:2.5rem;}
+.navl {width:30%;float:left;text-align:left;}
+.navr {width:70%;float:left;text-align:right;}
+@media (prefers-color-scheme: dark) {
+ body {
+ background-color:#232629;
+ color:#fcfcfc;
+ }
+ .nav a:link {color:#fcfcfc;}
+ .nav a:visited{color:#fcfcfc;}
+ .nav a:hover {color:#1d99f3;}
+ .nav a:focus {color:#1d99f3;}
+ .nav a:active {color:#1d99f3;}
+}
--
cgit v1.2.3