style sheet changes

This commit is contained in:
Never 2026-01-04 02:38:37 +01:00
parent 3b8869893c
commit 7ce30f1b1e

View file

@ -5,22 +5,26 @@
--html-background: #e3e3e3; --html-background: #e3e3e3;
--blockquote-text: #606060; --blockquote-text: #606060;
--blockquote-border: #e6e6e6; --blockquote-border: #e6e6e6;
--button-border: #fdfdfd; --button-border: #e3e3e3;
--button-background: #e3e3e3; --button-background: #d0d0d0;
} }
:root:has(#dark-mode-toggle:checked) { @media (prefers-color-scheme: dark) {
:root {
--foreground: #fdfdfd; --foreground: #fdfdfd;
--background: #1a1a1a; --background: #1a1a1a;
--border: #4c4c4c; --border: #4c4c4c;
--html-background: #333333; --html-background: #303030;
--blockquote-text: #e6e6e6; --blockquote-text: #e6e6e6;
--blockquote-border: #606060; --blockquote-border: #606060;
--button-border: #4c4c4c;
--button-background: #404040;
}
} }
html { html {
color: var(--foreground); color: var(--foreground);
background: url("recursion.gif"); /*background: url("recursion.gif");*/
background: var(--html-background);
background-repeat: repeat-y; background-repeat: repeat-y;
background-size: cover; background-size: cover;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif; font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
@ -143,12 +147,6 @@ article {
h1 { h1 {
font-size: 1.8em; font-size: 1.8em;
} }
/*
section {
flex-direction: column;
}
*/
} }
@media print { @media print {