2020-11-28 21:51:06 +03:00
|
|
|
* {
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:root {
|
2025-08-12 02:31:47 +03:00
|
|
|
font-size: 16px;
|
|
|
|
|
|
|
|
|
|
--bg: rgba(18, 26, 36, 1);
|
|
|
|
|
--fg: rgba(24, 34, 48, 1);
|
|
|
|
|
--text: rgba(185, 185, 186, 1);
|
|
|
|
|
--link: rgba(216, 160, 112, 1);
|
|
|
|
|
--accent: rgba(216, 160, 112, 1);
|
|
|
|
|
--cRed: rgba(211, 16, 20, 1);
|
|
|
|
|
--cBlue: rgba(0, 149, 255, 1);
|
|
|
|
|
--cGreen: rgba(15, 160, 15, 1);
|
|
|
|
|
--cOrange: rgba(255, 165, 0, 1);
|
|
|
|
|
--font: sans-serif;
|
|
|
|
|
--monoFont: monospace;
|
|
|
|
|
--wallpaper: rgba(14, 21, 29, 1);
|
|
|
|
|
--selectionBackground: rgba(216, 160, 112, 1);
|
|
|
|
|
--selectionText: rgba(0, 0, 0, 1);
|
|
|
|
|
--badgeNotification: rgba(211, 16, 20, 1);
|
2020-11-28 21:51:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
2025-08-12 02:31:47 +03:00
|
|
|
background-color: var(--wallpaper);
|
2020-11-28 21:51:06 +03:00
|
|
|
font-family: sans-serif;
|
2025-08-12 02:31:47 +03:00
|
|
|
color: var(--text);
|
2020-11-28 21:51:06 +03:00
|
|
|
padding: 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
display: flex;
|
2025-08-12 02:31:47 +03:00
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: stretch;
|
2020-11-28 21:51:06 +03:00
|
|
|
}
|
|
|
|
|
|
2025-08-12 02:31:47 +03:00
|
|
|
a {
|
|
|
|
|
color: var(--link);
|
|
|
|
|
text-decoration: none;
|
2020-11-28 21:51:06 +03:00
|
|
|
}
|
|
|
|
|
|
2025-08-12 02:31:47 +03:00
|
|
|
.button {
|
|
|
|
|
width: 100%;
|
|
|
|
|
background-color: #1c2a3a;
|
2020-11-28 21:51:06 +03:00
|
|
|
color: var(--primary-text-color);
|
|
|
|
|
border-radius: 4px;
|
2025-08-12 02:31:47 +03:00
|
|
|
border: none;
|
|
|
|
|
padding: 0 1em;
|
|
|
|
|
line-height: 2;
|
|
|
|
|
margin-top: 2em;
|
|
|
|
|
font-size: 1em;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
box-shadow:
|
|
|
|
|
0 0 2px 0 black,
|
|
|
|
|
0 1px 0 0 rgba(255, 255, 255, 0.2) inset,
|
|
|
|
|
0 -1px 0 0 rgba(0, 0, 0, 0.2) inset;
|
2020-11-28 21:51:06 +03:00
|
|
|
}
|
|
|
|
|
|
2025-08-12 02:31:47 +03:00
|
|
|
.button:hover {
|
|
|
|
|
box-shadow:
|
|
|
|
|
0 0 1px 2px rgba(185, 185, 186, 0.4),
|
|
|
|
|
0 1px 0 0 rgba(255, 255, 255, 0.2) inset,
|
|
|
|
|
0 -1px 0 0 rgba(0, 0, 0, 0.2) inset;
|
2020-11-28 21:51:06 +03:00
|
|
|
}
|
|
|
|
|
|
2025-08-12 02:31:47 +03:00
|
|
|
.button:active {
|
|
|
|
|
transform: translate(1px, 1px);
|
|
|
|
|
box-shadow:
|
|
|
|
|
0 0 2px 0 black,
|
|
|
|
|
0 -1px 0 0 rgba(255, 255, 255, 0.2) inset,
|
|
|
|
|
0 1px 0 0 rgba(0, 0, 0, 0.2) inset;
|
2020-11-28 21:51:06 +03:00
|
|
|
}
|
|
|
|
|
|
2025-08-12 02:31:47 +03:00
|
|
|
.button:hover:active {
|
|
|
|
|
box-shadow:
|
|
|
|
|
0 0 1px 2px rgba(185, 185, 186, 0.4),
|
|
|
|
|
0 -1px 0 0 rgba(255, 255, 255, 0.2) inset,
|
|
|
|
|
0 1px 0 0 rgba(0, 0, 0, 0.2) inset;
|
2020-11-28 21:51:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.input {
|
2025-08-12 02:31:47 +03:00
|
|
|
color: var(--text);
|
2020-11-28 21:51:06 +03:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
|
2025-08-12 02:31:47 +03:00
|
|
|
.alert-danger {
|
|
|
|
|
width: 100%;
|
|
|
|
|
background-color: #931014;
|
|
|
|
|
border: 1px solid #a06060;
|
|
|
|
|
border-radius: 4px;
|
2020-11-28 21:51:06 +03:00
|
|
|
padding: 10px;
|
2025-08-12 02:31:47 +03:00
|
|
|
margin-top: 20px;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
font-size: 16px;
|
2020-11-28 21:51:06 +03:00
|
|
|
}
|
|
|
|
|
|
2025-08-12 02:31:47 +03:00
|
|
|
.alert-info {
|
|
|
|
|
width: 100%;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
border: 1px solid #7d796a;
|
|
|
|
|
padding: 10px;
|
|
|
|
|
margin-top: 20px;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
font-size: 16px;
|
2020-11-28 21:51:06 +03:00
|
|
|
}
|
|
|
|
|
|
2025-08-12 02:31:47 +03:00
|
|
|
.instance-header {
|
2020-11-28 21:51:06 +03:00
|
|
|
display: flex;
|
2025-08-12 02:31:47 +03:00
|
|
|
height: 3.5rem;
|
|
|
|
|
padding: 0 1em;
|
|
|
|
|
background: var(--fg);
|
|
|
|
|
box-shadow:
|
|
|
|
|
0 1px 4px 0 rgba(0, 0, 0, 0.4),
|
|
|
|
|
0 2px 7px 0 rgba(0, 0, 0, 0.3);
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-self: stretch;
|
|
|
|
|
margin-bottom: 1rem;
|
2020-11-28 21:51:06 +03:00
|
|
|
}
|
|
|
|
|
|
2025-08-12 02:31:47 +03:00
|
|
|
.instance-header__content {
|
|
|
|
|
line-height: 3.5rem;
|
2020-11-28 21:51:06 +03:00
|
|
|
display: flex;
|
2025-08-12 02:31:47 +03:00
|
|
|
flex: 1 1 45em;
|
|
|
|
|
max-width: 45em;
|
2020-11-28 21:51:06 +03:00
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
2025-08-12 02:31:47 +03:00
|
|
|
.instance-header__thumbnail {
|
|
|
|
|
max-width: 3.5em;
|
|
|
|
|
border-radius: 0.25em;
|
|
|
|
|
margin-right: 0.75em;
|
2020-11-28 21:51:06 +03:00
|
|
|
}
|
|
|
|
|
|
2025-08-12 02:31:47 +03:00
|
|
|
.instance-header__title {
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
color: var(--text);
|
|
|
|
|
font-size: 1rem;
|
2020-11-28 21:51:06 +03:00
|
|
|
}
|
|
|
|
|
|
2025-08-12 02:31:47 +03:00
|
|
|
.contents {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: stretch;
|
|
|
|
|
justify-content: center;
|
2020-11-28 21:51:06 +03:00
|
|
|
}
|
|
|
|
|
|
2025-08-12 02:31:47 +03:00
|
|
|
.panel {
|
|
|
|
|
color: var(--text);
|
|
|
|
|
background-color: var(--bg);
|
|
|
|
|
position: relative;
|
|
|
|
|
max-width: 45em;
|
|
|
|
|
border-radius: 0.5em;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
margin: 0;
|
|
|
|
|
box-shadow:
|
|
|
|
|
0 0 3px 0 rgba(0, 0, 0, 0.5),
|
|
|
|
|
0 4px 6px 3px rgba(0, 0, 0, 0.3);
|
|
|
|
|
padding: 0;
|
|
|
|
|
flex: 1 1 45em;
|
2020-11-28 21:51:06 +03:00
|
|
|
}
|
|
|
|
|
|
2025-08-12 02:31:47 +03:00
|
|
|
.button {
|
|
|
|
|
width: auto;
|
2020-11-28 21:51:06 +03:00
|
|
|
}
|
|
|
|
|
|
2025-08-12 02:31:47 +03:00
|
|
|
.panel-body {
|
|
|
|
|
padding: 0 1em 1em;
|
|
|
|
|
background-color: var(--bg);
|
2020-11-28 21:51:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.actions {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: flex-end;
|
|
|
|
|
}
|
|
|
|
|
|
2025-08-12 02:31:47 +03:00
|
|
|
.actions .button {
|
|
|
|
|
margin-left: 0.5em;
|
2020-11-28 21:51:06 +03:00
|
|
|
}
|
|
|
|
|
|
2025-08-12 02:31:47 +03:00
|
|
|
.account-header {
|
|
|
|
|
position: relative;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: end;
|
2020-11-28 21:51:06 +03:00
|
|
|
width: 100%;
|
2025-08-12 02:31:47 +03:00
|
|
|
aspect-ratio: 3;
|
|
|
|
|
gap: 1em;
|
|
|
|
|
padding: 0 1em;
|
2020-11-28 21:51:06 +03:00
|
|
|
}
|
|
|
|
|
|
2025-08-12 02:31:47 +03:00
|
|
|
.account-header_container {
|
|
|
|
|
position: absolute;
|
|
|
|
|
inset: 0;
|
|
|
|
|
z-index: 0;
|
|
|
|
|
mask: linear-gradient(to top,transparent 0,white 5em) bottom no-repeat;
|
2020-11-28 21:51:06 +03:00
|
|
|
}
|
|
|
|
|
|
2025-08-12 02:31:47 +03:00
|
|
|
.account-header__overlay,
|
|
|
|
|
.account-header__banner {
|
|
|
|
|
position: absolute;
|
2020-11-28 21:51:06 +03:00
|
|
|
width: 100%;
|
2025-08-12 02:31:47 +03:00
|
|
|
inset: 0;
|
2020-11-28 21:51:06 +03:00
|
|
|
}
|
|
|
|
|
|
2025-08-12 02:31:47 +03:00
|
|
|
.account-header__overlay {
|
|
|
|
|
background-color: rgba(18, 26, 36, 0.5);
|
|
|
|
|
z-index: -1;
|
2020-11-28 21:51:06 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.account-header__banner {
|
2025-08-12 02:31:47 +03:00
|
|
|
z-index: -2;
|
|
|
|
|
object-fit: cover;
|
2020-11-28 21:51:06 +03:00
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.account-header__avatar {
|
2025-08-12 02:31:47 +03:00
|
|
|
width: 6em;
|
|
|
|
|
height: 6em;
|
|
|
|
|
flex: 0 0 6em;
|
|
|
|
|
z-index: 1;
|
2020-11-28 21:51:06 +03:00
|
|
|
background-size: cover;
|
|
|
|
|
background-position: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.account-header__meta {
|
2025-08-12 02:31:47 +03:00
|
|
|
z-index: 1;
|
|
|
|
|
flex: 1 1 0;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
min-width: 10em;
|
|
|
|
|
font-size: 125%;
|
2020-11-28 21:51:06 +03:00
|
|
|
}
|
|
|
|
|
|
2025-08-12 02:31:47 +03:00
|
|
|
.account-header__nickname,
|
2020-11-28 21:51:06 +03:00
|
|
|
.account-header__display-name {
|
2025-08-12 02:31:47 +03:00
|
|
|
font-size: 1.25em;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
overflow-x: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.acocunt-header__display-name {
|
2020-11-28 21:51:06 +03:00
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.account-header__nickname {
|
2025-08-12 02:31:47 +03:00
|
|
|
font-size: 0.75em;
|
|
|
|
|
color: var(--link);
|
2020-11-28 21:51:06 +03:00
|
|
|
}
|
|
|
|
|
|
2025-08-12 02:31:47 +03:00
|
|
|
input {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
background-color: var(--background);
|
|
|
|
|
outline: none;
|
|
|
|
|
color: var(--text);
|
|
|
|
|
line-height: 2;
|
|
|
|
|
border-radius: 0.5em;
|
|
|
|
|
box-shadow: var(--shadow);
|
|
|
|
|
border: none;
|
|
|
|
|
padding: 0 0.5em;
|
|
|
|
|
}
|
2020-11-28 21:51:06 +03:00
|
|
|
|
2025-08-12 02:31:47 +03:00
|
|
|
input[type="checkbox"] {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2020-11-28 21:51:06 +03:00
|
|
|
|
2025-08-12 02:31:47 +03:00
|
|
|
input, label, label::before {
|
|
|
|
|
--background: rgba(15, 21, 30, 1);
|
|
|
|
|
--shadow:
|
|
|
|
|
0 0 2px 0 rgba(0, 0, 0, 1),
|
|
|
|
|
0 -1px 0 0 rgba(255, 255, 255, 0.2) inset,
|
|
|
|
|
0 1px 0 0 rgba(0, 0, 0, 0.2) inset,
|
|
|
|
|
0 0 2px 0 rgba(0, 0, 0, 0.15) inset,
|
|
|
|
|
1px 0 1px 1px rgba(185, 185, 186, 0.15),
|
|
|
|
|
-1px 0 1px 1px rgba(185, 185, 186, 0.15);
|
|
|
|
|
--shadowHover:
|
|
|
|
|
0 0 4px 0 rgba(185, 185, 186, 0.5),
|
|
|
|
|
0 -1px 0 0 rgba(255, 255, 255, 0.2) inset,
|
|
|
|
|
0 1px 0 0 rgba(0, 0, 0, 0.2) inset,
|
|
|
|
|
0 0 2px 0 rgba(0, 0, 0, 0.15) inset,
|
|
|
|
|
1px 0 1px 1px rgba(185, 185, 186, 0.15),
|
|
|
|
|
-1px 0 1px 1px rgba(185, 185, 186, 0.15);
|
|
|
|
|
}
|
2020-11-28 21:51:06 +03:00
|
|
|
|
|
|
|
|
|
2025-08-12 02:31:47 +03:00
|
|
|
label[type="checkbox"]::before {
|
|
|
|
|
content: ""
|
|
|
|
|
}
|
2020-11-28 21:51:06 +03:00
|
|
|
|
2025-08-12 02:31:47 +03:00
|
|
|
input[type="checkbox"]:checked + label::before {
|
|
|
|
|
content: "✓"
|
2020-11-28 21:51:06 +03:00
|
|
|
}
|
2025-08-12 02:31:47 +03:00
|
|
|
|
|
|
|
|
label {
|
|
|
|
|
padding: 1em;
|
|
|
|
|
display: inline-block;
|
2020-11-28 21:51:06 +03:00
|
|
|
}
|
2025-08-12 02:31:47 +03:00
|
|
|
|
|
|
|
|
input[type="checkbox"] + label::before {
|
|
|
|
|
content: "";
|
|
|
|
|
|
|
|
|
|
box-shadow:
|
|
|
|
|
min-width: 1em;
|
|
|
|
|
min-height: 1em;
|
|
|
|
|
text-align: center;
|
|
|
|
|
box-shadow: var(--shadow);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
label:hover::before {
|
|
|
|
|
box-shadow: var(--shadowHover);
|
2020-11-28 21:51:06 +03:00
|
|
|
}
|
2025-08-12 02:31:47 +03:00
|
|
|
|
|
|
|
|
.scope {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
|
|
dl {
|
|
|
|
|
margin: 0.75em;
|
|
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
|
|
dt, dd {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-11-28 21:51:06 +03:00
|
|
|
}
|