summaryrefslogtreecommitdiff
path: root/extras/html/themes/clear_frost/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'extras/html/themes/clear_frost/style.css')
-rw-r--r--extras/html/themes/clear_frost/style.css180
1 files changed, 180 insertions, 0 deletions
diff --git a/extras/html/themes/clear_frost/style.css b/extras/html/themes/clear_frost/style.css
new file mode 100644
index 0000000..e849f6f
--- /dev/null
+++ b/extras/html/themes/clear_frost/style.css
@@ -0,0 +1,180 @@
+/* Base styles */
+@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");
+}
+
+:root {
+ --color-primary: #9324d0;
+ --color-secondary: #a8bf35;
+ --color-accent: #35bf47;
+ --color-bg: #edebef;
+ --color-text: #121212;
+ --font-size-base: 15px;
+ --font-size-h1: 1.42em;
+ --font-size-h2: 1.27em;
+ --font-size-h3: 1.12em;
+ --line-height: 1.6;
+}
+
+* {
+ box-sizing: border-box;
+}
+
+html {
+ font-size: var(--font-size-base);
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+body {
+ font-family: text, sans-serif;
+ background-color: var(--color-bg);
+ color: var(--color-text);
+ line-height: var(--line-height);
+ margin: 0;
+ padding: 0;
+ overflow-wrap: break-word;
+}
+
+h1, h2, h3 {
+ font-family: heading, serif;
+ line-height: 1.2;
+ margin-top: 1em;
+ margin-bottom: 0.5em;
+}
+
+h1 {
+ font-size: var(--font-size-h1);
+ color: var(--color-primary);
+}
+
+h2 {
+ font-size: var(--font-size-h2);
+ color: var(--color-primary);
+}
+
+h3 {
+ font-size: var(--font-size-h3);
+ color: var(--color-secondary);
+}
+
+a {
+ font-family: code, monospace;
+ color: var(--color-secondary);
+ text-decoration: none;
+ transition: all 0.3s ease;
+}
+
+a:hover {
+ color: var(--color-accent);
+ text-decoration: underline;
+}
+
+.textlink {
+ font-family: text, sans-serif;
+}
+
+.quote {
+ font-family: handnotes, cursive;
+ border-left: 4px solid var(--color-accent);
+ padding: 1em 1.5em;
+ margin: 1.5em 0;
+ background-color: rgba(147, 36, 208, 0.07);
+ font-style: italic;
+}
+
+pre {
+ font-family: code, monospace;
+ background-color: rgba(18, 18, 18, 0.04);
+ border: 1px solid rgba(18, 18, 18, 0.13);
+ padding: 1em;
+ overflow-x: auto;
+ border-radius: 4px;
+ font-size: 0.9em;
+}
+
+code {
+ font-family: code, monospace;
+ background-color: rgba(18, 18, 18, 0.04);
+ padding: 0.2em 0.4em;
+ border-radius: 3px;
+ font-size: 0.9em;
+}
+
+ul, ol {
+ padding-left: 2em;
+ margin: 1em 0;
+}
+
+li {
+ margin: 0.5em 0;
+}
+
+img {
+ max-width: 100%;
+ height: auto;
+}
+
+hr {
+ border: none;
+ border-top: 1px solid rgba(18, 18, 18, 0.20);
+ margin: 2em 0;
+}
+
+
+/* Layout: minimal_grid */
+
+body {
+ display: grid;
+ grid-template-columns: repeat(12, 1fr);
+ gap: 1.5em;
+ padding: 3em 2em;
+ max-width: 1400px;
+ margin: 0 auto;
+}
+
+.header {
+ grid-column: 2 / 12;
+ text-align: center;
+ margin-bottom: 3em;
+ padding-bottom: 2em;
+ border-bottom: 1px solid var(--color-text);
+}
+
+h1 {
+ grid-column: 1 / 13;
+ text-align: center;
+}
+
+h2 {
+ grid-column: 2 / 12;
+}
+
+h3 {
+ grid-column: 3 / 11;
+}
+
+p, ul, pre {
+ grid-column: 3 / 11;
+}
+
+.quote {
+ grid-column: 2 / 12;
+ text-align: center;
+}