seperated system theme into its own css file, combined different page css to a main theme css

This commit is contained in:
sundae 2026-04-07 20:14:23 +03:00
commit 1945abd6ad
Signed by: sundae
SSH key fingerprint: SHA256:MsJkKuo4PUdjQDpLeaURy81drKkW14exlTHp+8QFu6M
23 changed files with 938 additions and 958 deletions

View file

@ -16,7 +16,6 @@
background: var(--button-bg);
box-shadow: var(--button-shine);
border: var(--button-border);
border-radius: var(--round);
color: inherit;
&[aria-current] {
background: var(--button-current-bg);
@ -36,24 +35,41 @@
}
}
}
nav#default,
nav#floating,
.navbar section,
.navbar li :is(a, button) {
border-radius: var(--round);
}
#default,
#floating,
header {
color: var(--citrus-dark);
background-attachment: fixed;
background-image: var(--nav-bg);
background-size: 6px;
}
nav#floating,
nav#default {
#floating,
#default {
border-bottom-style: solid;
border-right-style: solid;
border-bottom-width: 4px;
border-right-width: 4px;
}
nav#default {
#default {
border-bottom-right-radius: var(--pad-l);
}
body {
position: relative;
z-index: -3;
& main {
position: inherit;
z-index: -2;
}
& #sidebar {
position: inherit;
z-index: -1;
}
}
@media screen and (max-width: 916px) {
header {
background: none;
@ -62,14 +78,14 @@ nav#default {
@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-right-radius: var(--pad-xl);
border-bottom-style: solid;
border-bottom-right-radius: 100px;
border-bottom-width: 4px;
border-right-style: solid;
border-right-width: 4px;
display: flex;
margin-left: calc(var(--view) - 4px);
padding: var(--pad-m) 0;
width: var(--view);
}
}