2023-06-23 10:52:03 +00:00
|
|
|
@use "modern-normalize/modern-normalize.css";
|
|
|
|
@import "reset";
|
|
|
|
@import "variables";
|
|
|
|
@import "colors";
|
|
|
|
@import "button";
|
|
|
|
@import "shared";
|
|
|
|
@import "settings";
|
2023-06-30 11:26:39 +00:00
|
|
|
@import "settings/hide-topics";
|
2023-07-11 17:07:13 +00:00
|
|
|
@import "settings/miscellaneous-features";
|
2020-10-10 23:32:27 +00:00
|
|
|
|
|
|
|
html {
|
|
|
|
font-size: 62.5%;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
background-color: var(--background-primary);
|
|
|
|
color: var(--foreground);
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
font-size: 1.5rem;
|
|
|
|
gap: 16px;
|
|
|
|
margin: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: var(--light-blue);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: var(--magenta);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
details {
|
|
|
|
border: 1px solid var(--blue);
|
|
|
|
|
|
|
|
&[open] summary {
|
|
|
|
border-bottom: 1px solid var(--blue);
|
|
|
|
}
|
|
|
|
|
|
|
|
summary {
|
|
|
|
padding: 8px;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: var(--blue);
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.inner {
|
|
|
|
padding: 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.main-wrapper,
|
|
|
|
.page-header,
|
2022-02-27 14:37:11 +00:00
|
|
|
.page-footer,
|
|
|
|
.user-label-editor {
|
2020-10-10 23:32:27 +00:00
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
width: $large-breakpoint;
|
|
|
|
|
|
|
|
@media (max-width: $large-breakpoint) {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-header {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
img {
|
|
|
|
height: 4rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
gap: 16px;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.version {
|
|
|
|
align-self: flex-end;
|
|
|
|
border-bottom-width: 2px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-footer {
|
|
|
|
background-color: var(--background-secondary);
|
|
|
|
padding: 16px;
|
|
|
|
|
|
|
|
a {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
p:not(:last-child) {
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.main-wrapper {
|
|
|
|
display: grid;
|
|
|
|
gap: 16px;
|
2022-02-23 13:52:06 +00:00
|
|
|
grid-template-columns: calc($large-breakpoint / 4) auto;
|
2020-10-10 23:32:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.page-aside {
|
|
|
|
background-color: var(--background-secondary);
|
|
|
|
padding: 8px;
|
|
|
|
|
|
|
|
ul {
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
|
|
|
border: 1px solid transparent;
|
|
|
|
font-weight: bold;
|
|
|
|
padding: 8px;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: var(--light-blue);
|
|
|
|
border-color: var(--light-blue);
|
|
|
|
cursor: pointer;
|
2022-02-25 13:47:20 +00:00
|
|
|
|
|
|
|
.is-new {
|
|
|
|
color: var(--dark-blue);
|
|
|
|
}
|
2020-10-10 23:32:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&:not(:last-child) {
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
border-color: var(--light-blue);
|
|
|
|
}
|
|
|
|
|
|
|
|
&.enabled {
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
color: var(--light-green);
|
2023-06-23 10:52:03 +00:00
|
|
|
content: "●";
|
2020-10-10 23:32:27 +00:00
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
}
|
2022-02-25 13:47:20 +00:00
|
|
|
|
|
|
|
.is-new {
|
|
|
|
color: var(--light-blue);
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 60%;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
2020-10-10 23:32:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.page-main {
|
|
|
|
background-color: var(--background-secondary);
|
|
|
|
padding: 16px;
|
|
|
|
}
|