From c1595f6b6d5df73ba626d29250fc79e4043e290b Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Mon, 30 Dec 2024 00:05:26 +0200 Subject: add retrosimple theme --- extras/html/themes/retrosimple/style.css | 78 +++++++++++++++++++++++++++++++ extras/html/themes/retrosimple/theme.conf | 4 ++ 2 files changed, 82 insertions(+) create mode 100644 extras/html/themes/retrosimple/style.css create mode 100644 extras/html/themes/retrosimple/theme.conf 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 -- cgit v1.2.3