2024-08-02 22:48:26 +01:00
|
|
|
@import url("/style/prideflag.css");
|
|
|
|
|
@import url("/font/inter/inter.css");
|
|
|
|
|
|
2025-10-19 05:01:55 +01:00
|
|
|
:root {
|
|
|
|
|
--bg-0: #101010;
|
2025-10-21 15:37:40 +01:00
|
|
|
--bg-1: #181818;
|
|
|
|
|
--bg-2: #282828;
|
|
|
|
|
--bg-3: #404040;
|
2025-10-19 05:01:55 +01:00
|
|
|
|
|
|
|
|
--fg-0: #b0b0b0;
|
|
|
|
|
--fg-1: #c0c0c0;
|
|
|
|
|
--fg-2: #d0d0d0;
|
|
|
|
|
--fg-3: #e0e0e0;
|
|
|
|
|
|
|
|
|
|
--col-shadow-0: #0002;
|
|
|
|
|
--col-shadow-1: #0004;
|
|
|
|
|
--col-shadow-2: #0006;
|
|
|
|
|
--col-highlight-0: #ffffff08;
|
|
|
|
|
--col-highlight-1: #fff1;
|
|
|
|
|
--col-highlight-2: #fff2;
|
|
|
|
|
|
|
|
|
|
--col-new: #b3ee5b;
|
|
|
|
|
--col-on-new: #1b2013;
|
|
|
|
|
--col-save: #6fd7ff;
|
|
|
|
|
--col-on-save: #283f48;
|
|
|
|
|
--col-delete: #ff7171;
|
|
|
|
|
--col-on-delete: #371919;
|
|
|
|
|
|
|
|
|
|
--col-warn: #ffe86a;
|
|
|
|
|
--col-on-warn: var(--bg-0);
|
|
|
|
|
--col-warn-hover: #ffec81;
|
|
|
|
|
|
|
|
|
|
--shadow-sm:
|
|
|
|
|
0 1px 2px var(--col-shadow-2),
|
|
|
|
|
inset 0 1px 1px var(--col-highlight-2);
|
|
|
|
|
--shadow-md:
|
|
|
|
|
0 2px 4px var(--col-shadow-1),
|
|
|
|
|
inset 0 2px 2px var(--col-highlight-1);
|
|
|
|
|
--shadow-lg:
|
|
|
|
|
0 4px 8px var(--col-shadow-0),
|
|
|
|
|
inset 0 4px 4px var(--col-highlight-0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (prefers-color-scheme: light) {
|
|
|
|
|
:root {
|
|
|
|
|
--bg-0: #e8e8e8;
|
|
|
|
|
--bg-1: #f0f0f0;
|
|
|
|
|
--bg-2: #f8f8f8;
|
|
|
|
|
--bg-3: #ffffff;
|
|
|
|
|
|
|
|
|
|
--fg-0: #606060;
|
|
|
|
|
--fg-1: #404040;
|
|
|
|
|
--fg-2: #303030;
|
|
|
|
|
--fg-3: #202020;
|
|
|
|
|
|
|
|
|
|
--col-shadow-0: #0002;
|
|
|
|
|
--col-shadow-1: #0004;
|
|
|
|
|
--col-shadow-2: #0008;
|
|
|
|
|
--col-highlight-0: #fff2;
|
|
|
|
|
--col-highlight-1: #fff4;
|
|
|
|
|
--col-highlight-2: #fff8;
|
|
|
|
|
|
|
|
|
|
--col-warn: #ffe86a;
|
|
|
|
|
--col-on-warn: var(--fg-3);
|
|
|
|
|
--col-warn-hover: #ffec81;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-08-02 22:48:26 +01:00
|
|
|
body {
|
2025-10-21 15:37:40 +01:00
|
|
|
width: calc(100% - 180px);
|
2024-08-03 15:02:01 +01:00
|
|
|
height: calc(100vh - 1em);
|
2024-08-02 22:48:26 +01:00
|
|
|
|
2025-10-21 15:37:40 +01:00
|
|
|
margin: 0 0 0 180px;
|
2024-08-02 22:48:26 +01:00
|
|
|
padding: 0;
|
2025-10-21 15:37:40 +01:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
2024-08-02 22:48:26 +01:00
|
|
|
|
|
|
|
|
font-family: "Inter", sans-serif;
|
|
|
|
|
font-size: 16px;
|
2025-10-19 05:01:55 +01:00
|
|
|
color: var(--fg-0);
|
|
|
|
|
background: var(--bg-0);
|
2025-10-21 15:37:40 +01:00
|
|
|
|
|
|
|
|
transition: background .1s ease-out, color .1s ease-out;
|
2025-10-19 05:01:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
|
|
|
color: var(--fg-3);
|
2024-08-02 22:48:26 +01:00
|
|
|
}
|
|
|
|
|
|
2025-10-21 15:37:40 +01:00
|
|
|
header {
|
|
|
|
|
position: fixed;
|
|
|
|
|
left: 0;
|
|
|
|
|
height: 100vh;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
width: 180px;
|
|
|
|
|
background-color: var(--bg-1);
|
|
|
|
|
box-shadow: var(--shadow-md);
|
|
|
|
|
|
|
|
|
|
transition: background .1s ease-out, color .1s ease-out;
|
|
|
|
|
}
|
2024-08-23 23:08:28 +01:00
|
|
|
nav {
|
2025-10-21 15:37:40 +01:00
|
|
|
height: 100%;
|
|
|
|
|
margin: 1em 0;
|
2024-08-02 22:48:26 +01:00
|
|
|
display: flex;
|
2025-10-21 15:37:40 +01:00
|
|
|
flex-direction: column;
|
2024-08-05 01:23:17 +01:00
|
|
|
justify-content: left;
|
2025-10-19 05:01:55 +01:00
|
|
|
user-select: none;
|
2024-08-02 22:48:26 +01:00
|
|
|
}
|
2024-08-23 23:08:28 +01:00
|
|
|
nav .icon {
|
2025-10-21 15:37:40 +01:00
|
|
|
width: fit-content;
|
|
|
|
|
height: fit-content;
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin: 0 auto 1em auto;
|
|
|
|
|
display: flex;
|
|
|
|
|
|
2025-10-19 05:01:55 +01:00
|
|
|
border-radius: 100%;
|
|
|
|
|
box-shadow: var(--shadow-sm);
|
2025-10-21 15:37:40 +01:00
|
|
|
overflow: clip;
|
2024-08-02 22:48:26 +01:00
|
|
|
}
|
2025-10-19 05:01:55 +01:00
|
|
|
nav .icon img {
|
2025-10-21 15:37:40 +01:00
|
|
|
width: 3em;
|
|
|
|
|
height: 3em;
|
2024-08-05 01:23:17 +01:00
|
|
|
}
|
2025-01-20 15:08:01 +00:00
|
|
|
.nav-item {
|
2024-08-02 22:48:26 +01:00
|
|
|
display: flex;
|
2025-10-19 05:01:55 +01:00
|
|
|
color: var(--fg-2);
|
2024-08-02 22:48:26 +01:00
|
|
|
line-height: 2em;
|
2025-10-19 05:01:55 +01:00
|
|
|
font-weight: 500;
|
2025-10-21 15:37:40 +01:00
|
|
|
transition: color .1s, background-color .1s;
|
2024-08-02 22:48:26 +01:00
|
|
|
}
|
2025-01-20 15:08:01 +00:00
|
|
|
.nav-item:hover {
|
2025-10-21 15:37:40 +01:00
|
|
|
background: var(--bg-2);
|
2024-08-05 01:23:17 +01:00
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
2025-10-21 15:37:40 +01:00
|
|
|
.nav-item.active {
|
|
|
|
|
border-left: 4px solid var(--fg-2);
|
|
|
|
|
}
|
|
|
|
|
.nav-item.active a {
|
|
|
|
|
padding-left: calc(1em - 4px);
|
|
|
|
|
}
|
2025-01-20 15:08:01 +00:00
|
|
|
nav a {
|
2025-10-21 15:37:40 +01:00
|
|
|
padding: .2em 1em;
|
2025-01-20 15:08:01 +00:00
|
|
|
text-decoration: none;
|
|
|
|
|
color: inherit;
|
2025-10-21 15:37:40 +01:00
|
|
|
width: 100%;
|
2025-01-20 15:08:01 +00:00
|
|
|
}
|
2025-10-21 15:37:40 +01:00
|
|
|
nav a.active {
|
|
|
|
|
border-left: 5px solid var(--fg-0);
|
|
|
|
|
padding-left: calc(1em - 5px);
|
|
|
|
|
}
|
|
|
|
|
nav hr {
|
|
|
|
|
width: calc(100% - 2em);
|
|
|
|
|
margin: .5em auto;
|
|
|
|
|
border: none;
|
|
|
|
|
border-bottom: 1px solid var(--fg-0);
|
2025-10-20 08:31:36 +01:00
|
|
|
}
|
2025-10-21 15:37:40 +01:00
|
|
|
nav .section-label {
|
|
|
|
|
margin: 8px 0 2px 15px;
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
text-transform: uppercase;
|
|
|
|
|
font-weight: 600;
|
2024-08-02 22:48:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
main {
|
2025-10-21 15:37:40 +01:00
|
|
|
width: min(calc(100% - 16px), 720px);
|
|
|
|
|
height: fit-content;
|
|
|
|
|
min-height: calc(100vh - 2em);
|
2024-08-02 22:48:26 +01:00
|
|
|
margin: 0 auto;
|
|
|
|
|
padding: 1em;
|
|
|
|
|
}
|
2025-10-21 15:37:40 +01:00
|
|
|
main.dashboard {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
2024-08-02 22:48:26 +01:00
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
color: inherit;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
2025-10-19 05:01:55 +01:00
|
|
|
/*
|
2024-08-02 22:48:26 +01:00
|
|
|
a:hover {
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
2025-10-19 05:01:55 +01:00
|
|
|
*/
|
2024-08-02 22:48:26 +01:00
|
|
|
|
2024-08-31 19:29:57 +01:00
|
|
|
a img.icon {
|
|
|
|
|
height: .8em;
|
2024-08-23 23:08:28 +01:00
|
|
|
}
|
|
|
|
|
|
2025-01-23 13:53:06 +00:00
|
|
|
code {
|
|
|
|
|
background: #303030;
|
|
|
|
|
color: #f0f0f0;
|
|
|
|
|
padding: .23em .3em;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2025-10-21 15:37:40 +01:00
|
|
|
.cards {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: fit-content;
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 2em;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
}
|
|
|
|
|
|
2024-08-05 01:23:17 +01:00
|
|
|
.card {
|
2025-10-21 15:37:40 +01:00
|
|
|
flex-basis: 40em;
|
|
|
|
|
padding: 1em;
|
|
|
|
|
background: var(--bg-1);
|
|
|
|
|
border-radius: 16px;
|
|
|
|
|
box-shadow: var(--shadow-lg);
|
|
|
|
|
|
|
|
|
|
transition: background .1s ease-out, color .1s ease-out;
|
|
|
|
|
}
|
|
|
|
|
main:not(.dashboard) .card {
|
2024-08-31 01:30:30 +01:00
|
|
|
margin-bottom: 1em;
|
2024-08-05 01:23:17 +01:00
|
|
|
}
|
|
|
|
|
|
2024-08-02 22:48:26 +01:00
|
|
|
.card h2 {
|
|
|
|
|
margin: 0 0 .5em 0;
|
|
|
|
|
}
|
|
|
|
|
|
2025-10-21 15:37:40 +01:00
|
|
|
.card-header {
|
2024-08-03 00:27:30 +01:00
|
|
|
margin-bottom: 1em;
|
2024-08-02 22:48:26 +01:00
|
|
|
display: flex;
|
|
|
|
|
gap: 1em;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
align-items: center;
|
2024-08-04 00:23:55 +01:00
|
|
|
justify-content: space-between;
|
|
|
|
|
}
|
2025-10-21 15:37:40 +01:00
|
|
|
.card-header h1,
|
|
|
|
|
.card-header h2,
|
|
|
|
|
.card-header h3 {
|
2024-08-05 01:23:17 +01:00
|
|
|
margin: 0;
|
2024-08-03 00:27:30 +01:00
|
|
|
}
|
2025-10-21 15:37:40 +01:00
|
|
|
.card-header a:hover {
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
|
|
|
|
.card-header small {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
transform: translateY(-2px);
|
|
|
|
|
color: var(--fg-0);
|
|
|
|
|
}
|
2024-08-04 00:23:55 +01:00
|
|
|
|
2025-01-20 15:08:01 +00:00
|
|
|
.flex-fill {
|
|
|
|
|
flex-grow: 1;
|
|
|
|
|
}
|
|
|
|
|
|
2025-10-21 15:37:40 +01:00
|
|
|
.artists-group {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: repeat(5, 1fr);
|
|
|
|
|
gap: 1em;
|
|
|
|
|
}
|
|
|
|
|
|
2024-08-04 00:23:55 +01:00
|
|
|
@media screen and (max-width: 520px) {
|
|
|
|
|
body {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-01-21 01:01:33 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2025-01-23 00:37:19 +00:00
|
|
|
#message,
|
2025-01-21 01:01:33 +00:00
|
|
|
#error {
|
2025-01-23 00:37:19 +00:00
|
|
|
margin: 0 0 1em 0;
|
2025-01-21 01:01:33 +00:00
|
|
|
padding: 1em;
|
2025-10-19 05:01:55 +01:00
|
|
|
border-radius: 8px;
|
2025-01-23 00:37:19 +00:00
|
|
|
background: #ffffff;
|
2025-01-21 01:01:33 +00:00
|
|
|
}
|
2025-01-23 00:37:19 +00:00
|
|
|
#message {
|
|
|
|
|
background: #a9dfff;
|
|
|
|
|
}
|
|
|
|
|
#error {
|
|
|
|
|
background: #ffa9b8;
|
|
|
|
|
}
|
|
|
|
|
|
2025-01-21 01:01:33 +00:00
|
|
|
|
|
|
|
|
|
2025-01-23 12:09:33 +00:00
|
|
|
a.delete:not(.button) {
|
2025-01-23 00:37:19 +00:00
|
|
|
color: #d22828;
|
|
|
|
|
}
|
2025-01-21 01:01:33 +00:00
|
|
|
|
2025-10-19 05:01:55 +01:00
|
|
|
.button, button {
|
2025-01-21 01:01:33 +00:00
|
|
|
padding: .5em .8em;
|
|
|
|
|
font-family: inherit;
|
|
|
|
|
font-size: inherit;
|
2025-10-19 05:01:55 +01:00
|
|
|
|
2025-01-21 01:01:33 +00:00
|
|
|
color: inherit;
|
2025-10-19 05:01:55 +01:00
|
|
|
background: var(--bg-2);
|
|
|
|
|
border: none;
|
|
|
|
|
border-radius: 10em;
|
|
|
|
|
box-shadow: var(--shadow-sm);
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
transition: background .1s ease-out, color .1s ease-out;
|
|
|
|
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
user-select: none;
|
2025-01-21 01:01:33 +00:00
|
|
|
}
|
|
|
|
|
button:hover, .button:hover {
|
|
|
|
|
background: #fff;
|
|
|
|
|
}
|
|
|
|
|
button:active, .button:active {
|
|
|
|
|
background: #d0d0d0;
|
|
|
|
|
}
|
|
|
|
|
|
2025-01-23 00:37:19 +00:00
|
|
|
.button.new, button.new {
|
2025-10-19 05:01:55 +01:00
|
|
|
color: var(--col-on-new);
|
|
|
|
|
background: var(--col-new);
|
2025-01-21 01:01:33 +00:00
|
|
|
}
|
2025-01-23 00:37:19 +00:00
|
|
|
.button.save, button.save {
|
2025-10-19 05:01:55 +01:00
|
|
|
color: var(--col-on-save);
|
|
|
|
|
background: var(--col-save);
|
2025-01-21 01:01:33 +00:00
|
|
|
}
|
2025-01-23 00:37:19 +00:00
|
|
|
.button.delete, button.delete {
|
2025-10-19 05:01:55 +01:00
|
|
|
color: var(--col-on-delete);
|
|
|
|
|
background: var(--col-delete);
|
2025-01-21 01:01:33 +00:00
|
|
|
}
|
2025-01-23 00:37:19 +00:00
|
|
|
.button:hover, button:hover {
|
2025-10-19 05:01:55 +01:00
|
|
|
color: var(--bg-3);
|
|
|
|
|
background: var(--fg-3);
|
2025-01-21 01:01:33 +00:00
|
|
|
}
|
2025-01-23 00:37:19 +00:00
|
|
|
.button:active, button:active {
|
2025-10-19 05:01:55 +01:00
|
|
|
color: var(--bg-2);
|
|
|
|
|
background: var(--fg-0);
|
2025-01-21 01:01:33 +00:00
|
|
|
}
|
2025-01-23 00:37:19 +00:00
|
|
|
.button[disabled], button[disabled] {
|
2025-10-19 05:01:55 +01:00
|
|
|
color: var(--fg-0) !important;
|
|
|
|
|
background: var(--bg-3) !important;
|
2025-01-21 01:01:33 +00:00
|
|
|
opacity: .5;
|
2025-10-19 05:01:55 +01:00
|
|
|
cursor: default !important;
|
2025-01-21 01:01:33 +00:00
|
|
|
}
|
2025-01-23 12:09:33 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
form {
|
|
|
|
|
width: 100%;
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
2025-01-24 01:04:57 +00:00
|
|
|
form label {
|
2025-01-23 12:09:33 +00:00
|
|
|
width: 100%;
|
|
|
|
|
margin: 1rem 0 .5rem 0;
|
|
|
|
|
display: block;
|
|
|
|
|
color: #10101080;
|
|
|
|
|
}
|
2025-01-24 01:04:57 +00:00
|
|
|
form input {
|
2025-01-23 12:09:33 +00:00
|
|
|
margin: .5rem 0;
|
|
|
|
|
padding: .3rem .5rem;
|
|
|
|
|
display: block;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
font-size: inherit;
|
|
|
|
|
font-family: inherit;
|
|
|
|
|
color: inherit;
|
|
|
|
|
}
|
|
|
|
|
input[disabled] {
|
|
|
|
|
opacity: .5;
|
|
|
|
|
cursor: not-allowed;
|
|
|
|
|
}
|