seperated system theme into its own css file, combined different page css to a main theme css
This commit is contained in:
parent
19b436ead1
commit
1945abd6ad
23 changed files with 938 additions and 958 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue