chasing 100s on lighthouse

This commit is contained in:
Joshua Seigler 2025-07-06 01:32:52 -04:00
parent f394e6e90f
commit 3aa4244220
2 changed files with 14 additions and 14 deletions

View file

@ -57,7 +57,10 @@ body {
background-color: var(--c-body-background);
color: var(--c-text);
background-image:
url(/noise.png),
image-set(
url("noise.avif") type("image/avif"),
url("noise.png") type("image/png")
),
radial-gradient(ellipse at -20% 20vmin, var(--c-bg1), transparent 90%),
radial-gradient(
ellipse at 120% calc(100% - 20vmin),
@ -71,13 +74,6 @@ body {
color: var(--c-text);
}
mark {
background: var(--c-highlight);
color: inherit;
border-radius: 0.4rem;
box-shadow: 0 0 0.75em 0.25em var(--c-highlight);
}
*,
:after,
:before {
@ -100,10 +96,8 @@ a[href] {
margin: -0.1em;
position: relative;
}
:is(a, nav label):hover,
:is(a, nav label):focus-visible,
nav label:has(input:focus-visible),
nav label:has(input:checked) {
a:hover,
a:focus-visible {
outline: none;
color: var(--c-text);
background-color: var(--glowColor);
@ -118,8 +112,7 @@ nav label:has(input:checked) {
0 0 1rem var(--glowColor);
}
}
:is(a[href], button, nav label):focus-visible,
nav label:has(input:focus-visible) {
:is(a[href], button):focus-visible {
z-index: 1;
outline: 2px solid var(--c-text);
}
@ -840,6 +833,13 @@ body .isso-post-action {
}
}
mark {
background: var(--c-highlight);
color: inherit;
border-radius: 0.4rem;
box-shadow: 0 0 0.75em 0.25em var(--c-highlight);
}
@media print {
:root {
font-size: 10pt;