This commit is contained in:
Kat Inskip 2025-10-08 14:40:10 -07:00
parent 3b1c786fd6
commit 8f95dbed32
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
38 changed files with 123 additions and 5 deletions

View file

@ -4,9 +4,11 @@
$light-bg: #fcfcfc;
$light-fg: #333;
$light-code: #eee;
$light-heading: #111;
$dark-bg: #141414;
$dark-fg: #ddd;
$dark-code: #282828;
$dark-heading: #eee;
$link-base: #16b1bd;
$link-hover: #37DCE8;
@ -22,6 +24,16 @@ html {
h1, h2, h3 {
color: $dark-heading;
}
code {
background: $dark-code;
padding: .5pt 5pt;
border: $dark-fg 2px solid;
}
code:has(pre) {
display: block;
width: fit-content;
margin: 1em 0;
}
}
body {
@ -76,9 +88,10 @@ header nav ul {
}
}
#interests ul {
ul.two {
column-count: 2;
}
a, a:link {
text-decoration: none;
color: $link-base;
@ -89,6 +102,10 @@ a:visited {
color: $link-visited;
}
.netscape-container img {
width: 88px;
height: 31px;
}
a:hover {
text-decoration: none;
@ -129,6 +146,10 @@ footer nav ul {
h1, h2, h3 {
color: $dark-heading;
}
code {
background: $dark-code;
border: $dark-fg 2px solid;
}
}
}
@ -139,6 +160,10 @@ footer nav ul {
h1, h2, h3 {
color: $light-heading;
}
code {
background: $light-code;
border: $light-fg 2px solid;
}
}
}
@ -148,6 +173,10 @@ html:has(#color-scheme-dark:checked) {
h1, h2, h3 {
color: $dark-heading;
}
code {
background: $dark-code;
border: $dark-fg 2px solid;
}
}
html:has(#color-scheme-light:checked) {
@ -156,4 +185,8 @@ html:has(#color-scheme-light:checked) {
h1, h2, h3 {
color: $light-heading;
}
code {
background: $light-code;
border: $light-fg 2px solid;
}
}