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

@ -1,2 +1,36 @@
@import url("./theme-dark.css");
@import url("./theme-light.css");
@import url("./theme-light.css");
body {
font-family: "Rubik", sans-serif;
}
main article,
main article a:has(figure),
#blog .addendum,
#blog #posts a,
#gallery #artworks a,
header a, .navbar section, .navbar li :is(a, button) {
border-radius: var(--round);
border-style: solid;
border-width: 2px;
}
main article {
& a figure {
border-color: inherit;
}
}
header {
margin-top: var(--pad-xl);
margin-left: calc(var(--view) + var(--pad-xl));
& a {
padding: var(--pad-s);
}
}
#blog {
& [alt="Profile picture"] {
border-radius: 100%;
}
}
#default {
border-right-style: solid;
border-right-width: 2px;
}