summaryrefslogtreecommitdiff
path: root/extras/html/themes/future
diff options
context:
space:
mode:
Diffstat (limited to 'extras/html/themes/future')
-rw-r--r--extras/html/themes/future/style-gemfeed-override.css0
-rw-r--r--extras/html/themes/future/style-notes-override.css3
-rw-r--r--extras/html/themes/future/style.css129
-rw-r--r--extras/html/themes/future/theme.conf9
4 files changed, 141 insertions, 0 deletions
diff --git a/extras/html/themes/future/style-gemfeed-override.css b/extras/html/themes/future/style-gemfeed-override.css
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/extras/html/themes/future/style-gemfeed-override.css
diff --git a/extras/html/themes/future/style-notes-override.css b/extras/html/themes/future/style-notes-override.css
new file mode 100644
index 0000000..bc6159b
--- /dev/null
+++ b/extras/html/themes/future/style-notes-override.css
@@ -0,0 +1,3 @@
+h1, h2, h3 {
+ font-family: handnotes, monospace;
+}
diff --git a/extras/html/themes/future/style.css b/extras/html/themes/future/style.css
new file mode 100644
index 0000000..078bb62
--- /dev/null
+++ b/extras/html/themes/future/style.css
@@ -0,0 +1,129 @@
+@font-face {
+ font-family: 'text';
+ src: url("./text.ttf") format("truetype");
+}
+
+@font-face {
+ font-family: 'heading';
+ src: url("./heading.ttf") format("truetype");
+}
+
+@font-face {
+ font-family: 'code';
+ src: url("./code.ttf") format("truetype");
+}
+
+@font-face {
+ font-family: 'handnotes';
+ src: url("./handnotes.ttf") format("truetype");
+}
+
+@font-face {
+ font-family: 'typewriter';
+ src: url("./typewriter.ttf") format("truetype");
+}
+
+body {
+ font-family: text, sans-serif;
+ background: linear-gradient(135deg, #0d0d0d, #1f1f1f);
+ color: #e0e0e0;
+ max-width: 1024px;
+ padding: 20px;
+ margin: 20px auto;
+ border: 1px solid #333;
+ box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
+ border-radius: 15px;
+}
+
+h1, h2, h3 {
+ font-family: heading, serif;
+ color: #00ff9d;
+ text-shadow: 0 0 2px #00ff9d, 0 0 2px #00ff9d;
+}
+
+a {
+ text-decoration: none;
+ color: #00ff9d;
+ transition: color 0.3s, text-shadow 0.3s;
+}
+
+a:hover {
+ text-decoration: underline;
+ color: #00d4ff;
+ text-shadow: 0 0 10px #00d4ff, 0 0 20px #00d4ff;
+}
+
+a.textlink:before {
+ content: "⇒ ";
+ padding-left: 11px;
+}
+
+.quote {
+ font-style: italic;
+ color: #00d4ff;
+ text-shadow: 0 0 7px #00d4ff, 0 0 14px #00d4ff;
+}
+
+.quote:before {
+ content: "« ";
+ padding-left: 2px;
+}
+
+.quote:after {
+ content: " »";
+ padding-right: 2px;
+}
+
+ul {
+ list-style: none;
+ padding-right: 23px;
+ padding-left: 10px;
+ margin: 0.75em 0 0.75em 0;
+}
+
+li {
+ color: #ff6347;
+ margin-left: 1em;
+ margin-bottom: 0.25em;
+ text-shadow: 0 0 5px #ff6347, 0 0 10px #ff6347;
+}
+
+li:before {
+ content: "★";
+ padding-right: 5px;
+ color: #00ff9d;
+}
+
+img {
+ max-width: 90%;
+ display: block;
+ margin: auto;
+ border: 2px solid #00d4ff;
+ box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
+ border-radius: 10px;
+}
+
+pre {
+ font-family: code, monospace;
+ overflow-x: auto;
+ background: #1e1e1e;
+ padding: 20px;
+ border-left: 4px solid #00ff9d;
+ border-radius: 5px;
+ box-shadow: inset 0 0 10px #00ff9d;
+ color: #00d4ff;
+}
+
+span.inlinecode {
+ font-family: code, monospace;
+ background: #1e1e1e;
+ padding: 1px;
+ border: 1px solid #00d4ff;
+ border-radius: 3px;
+ box-shadow: 0 0 6px #00d4ff;
+ color: #00d4ff;
+}
+
+.footer {
+ font-family: handnotes;
+}
diff --git a/extras/html/themes/future/theme.conf b/extras/html/themes/future/theme.conf
new file mode 100644
index 0000000..8e6f6e7
--- /dev/null
+++ b/extras/html/themes/future/theme.conf
@@ -0,0 +1,9 @@
+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 HTML_WEBFONT_TEXT=./extras/html/fonts/Lato/Lato-Regular.ttf
+declare -xr HTML_WEBFONT_HEADING=./extras/html/fonts/Abril_Fatface/AbrilFatface-Regular.ttf
+declare -xr HTML_WEBFONT_CODE=./extras/html/fonts/hack/Hack-Regular.ttf
+declare -xr HTML_WEBFONT_HANDNOTES=./extras/html/fonts/khand/khand.ttf
+declare -xr HTML_WEBFONT_TYPEWRITER=./extras/html/fonts/zai-aeg-mignon-typewriter-1924/zai_AEGMignonTypewriter1924.ttf
+declare -xr SOURCE_HIGHLIGHT_CSS=./extras/html/source-highlight-styles/sh_vampire.css