This commit is contained in:
kittywitch 2025-10-08 21:40:39 +00:00
parent 50d2f16b35
commit 68f17bf264
38 changed files with 116 additions and 7 deletions

View file

@ -9,6 +9,14 @@ html {
background: #141414; }
html h1, html h2, html h3 {
color: #eee; }
html code {
background: #282828;
padding: .5pt 5pt;
border: #ddd 2px solid; }
html code:has(pre) {
display: block;
width: fit-content;
margin: 1em 0; }
body {
/* Make the body a 80 character wide container */
@ -50,7 +58,7 @@ header nav ul {
flex-grow: 1;
text-align: center; }
#interests ul {
ul.two {
column-count: 2; }
a, a:link {
@ -61,6 +69,10 @@ a:visited {
text-decoration: none;
color: #3784e8; }
.netscape-container img {
width: 88px;
height: 31px; }
a:hover {
text-decoration: none;
color: #37DCE8;
@ -90,23 +102,35 @@ footer nav ul {
color: #ddd;
background: #141414; }
html h1, html h2, html h3 {
color: #eee; } }
color: #eee; }
html code {
background: #282828;
border: #ddd 2px solid; } }
@media (prefers-color-scheme: light) {
html {
color: #333;
background: #fcfcfc; }
html h1, html h2, html h3 {
color: #111; } }
color: #111; }
html code {
background: #eee;
border: #333 2px solid; } }
html:has(#color-scheme-dark:checked) {
color: #ddd;
background: #141414; }
html:has(#color-scheme-dark:checked) h1, html:has(#color-scheme-dark:checked) h2, html:has(#color-scheme-dark:checked) h3 {
color: #eee; }
html:has(#color-scheme-dark:checked) code {
background: #282828;
border: #ddd 2px solid; }
html:has(#color-scheme-light:checked) {
color: #333;
background: #fcfcfc; }
html:has(#color-scheme-light:checked) h1, html:has(#color-scheme-light:checked) h2, html:has(#color-scheme-light:checked) h3 {
color: #111; }
html:has(#color-scheme-light:checked) code {
background: #eee;
border: #333 2px solid; }