summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2024-12-30 00:05:26 +0200
committerPaul Buetow <paul@buetow.org>2024-12-30 00:05:26 +0200
commitc1595f6b6d5df73ba626d29250fc79e4043e290b (patch)
treed12e3c51fe008dfb5aff9430228f9fc3a1dc269a
parent2fb3ba57fc45364b00cadf7e241011b7b0f3030a (diff)
add retrosimple theme
-rw-r--r--extras/html/themes/retrosimple/style.css78
-rw-r--r--extras/html/themes/retrosimple/theme.conf4
2 files changed, 82 insertions, 0 deletions
diff --git a/extras/html/themes/retrosimple/style.css b/extras/html/themes/retrosimple/style.css
new file mode 100644
index 0000000..6b11516
--- /dev/null
+++ b/extras/html/themes/retrosimple/style.css
@@ -0,0 +1,78 @@
+body {
+ font-family: courier, monospace;
+ max-width: 1200px;
+ padding: 20px;
+ margin: 20px auto;
+ border: 1px solid #000000;
+ border-radius: 15px;
+}
+
+a {
+ font-family: courier, monospace;
+ text-decoration: none;
+ color: #0e0e0e;
+}
+
+h1 {
+ font-family: courier, monospace;
+}
+
+h2 {
+ font-family: courier, monospace;
+}
+
+h3 {
+ font-family: courier, monospace;
+}
+
+a {
+ color: #666666;
+ padding: 0 0 0 0;
+}
+
+a:hover {
+ text-decoration: underline;
+}
+
+a.textlink:before {
+ content: "⇒ ";
+}
+
+.quote {
+ font-style: italic;
+}
+
+.quote:before {
+ content: "« ";
+ padding-left: 2px;
+}
+
+.quote:after {
+ content: " »";
+ padding-right: 2px;
+}
+
+ul {
+ list-style: none;
+ margin: 0 0 0 0;
+ padding: 0 0 0 0;
+}
+
+li:before {
+ content: "★";
+ padding-right: 5px;
+}
+
+img {
+ max-width: 90%;
+}
+
+pre {
+ font-family: courier, monospace;
+ padding: 20px;
+ border: 1px solid #666666;
+}
+
+span.inlinecode {
+ font-family: courier, monospace;
+}
diff --git a/extras/html/themes/retrosimple/theme.conf b/extras/html/themes/retrosimple/theme.conf
new file mode 100644
index 0000000..b3cd871
--- /dev/null
+++ b/extras/html/themes/retrosimple/theme.conf
@@ -0,0 +1,4 @@
+declare -xr HTML_HEADER=./extras/html/header.html.part
+declare -xr HTML_FOOTER=./extras/html/footer.html.part
+declare -xr HTML_CSS_STYLE=$HTML_THEME_DIR/style.css
+declare -xr SOURCE_HIGHLIGHT_CSS=./extras/html/source-highlight-styles/mono.css