oh no i bit more than i could chew oh fuck oh shit *dies*

This commit is contained in:
sundae 2026-04-07 11:43:33 +03:00
commit 19b436ead1
Signed by: sundae
SSH key fingerprint: SHA256:MsJkKuo4PUdjQDpLeaURy81drKkW14exlTHp+8QFu6M
73 changed files with 553 additions and 780 deletions

View file

@ -12,7 +12,7 @@
color: var(--citrus-light);
}
}
& li *:is(a, button) {
& li :is(a, button) {
background: var(--button-bg);
box-shadow: var(--button-shine);
border: var(--button-border);
@ -24,7 +24,7 @@
border: var(--button-current-border);
color: var(--citrus-light);
}
&:is(:hover, :focus):not([aria-current="page"]) {
&:is(:hover, :focus):not([aria-current]) {
background: var(--button-hover-bg);
box-shadow: var(--button-hover-shine);
border: var(--button-hover-border);
@ -37,12 +37,15 @@
}
}
nav#default,
nav#floating, header {
nav#floating,
header {
color: var(--citrus-dark);
background-attachment: fixed;
background-image: var(--nav-bg);
background-size: 6px;
}
nav#floating, nav#default {
nav#floating,
nav#default {
border-bottom-style: solid;
border-right-style: solid;
border-bottom-width: 4px;
@ -50,4 +53,23 @@ nav#floating, nav#default {
}
nav#default {
border-bottom-right-radius: var(--pad-l);
}
}
@media screen and (max-width: 916px) {
header {
background: none;
}
}
@media screen and (min-width: 916px) {
header {
display: flex;
width: var(--view);
border-right-width: 4px;
border-right-style: solid;
border-bottom-width: 4px;
border-bottom-style: solid;
border-bottom-right-radius: 100px;
margin-left: calc(var(--view) - 4px);
padding: var(--pad-m) 0;
}
}