2020-01-29 20:37:25 +01:00
|
|
|
@charset "utf-8";
|
|
|
|
|
|
|
|
:root {
|
2020-10-17 13:12:00 +02:00
|
|
|
--baseContentWidth: 750px;
|
2020-01-29 20:37:25 +01:00
|
|
|
--radius: 8px;
|
|
|
|
--marginFull: 16px;
|
2020-07-11 03:13:11 +02:00
|
|
|
--marginHalf: 10px;
|
2020-01-29 20:37:25 +01:00
|
|
|
|
|
|
|
--margin: var(--marginFull);
|
|
|
|
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
--margin: var(--marginHalf);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
::selection {
|
|
|
|
color: #fff;
|
|
|
|
background-color: var(--accent);
|
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
|
|
|
|
html {
|
2020-02-20 23:21:27 +01:00
|
|
|
touch-action: manipulation;
|
2020-01-29 20:37:25 +01:00
|
|
|
background-color: var(--bg);
|
|
|
|
background-attachment: fixed;
|
|
|
|
background-size: cover;
|
|
|
|
background-position: center;
|
|
|
|
color: var(--fg);
|
|
|
|
overflow: auto;
|
|
|
|
|
|
|
|
&, * {
|
|
|
|
scrollbar-color: var(--scrollbarHandle) var(--panel);
|
2020-07-05 04:37:45 +02:00
|
|
|
scrollbar-width: thin;
|
2020-01-29 20:37:25 +01:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
scrollbar-color: var(--scrollbarHandleHover) var(--panel);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
scrollbar-color: var(--accent) var(--panel);
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-webkit-scrollbar {
|
|
|
|
width: 6px;
|
|
|
|
height: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-webkit-scrollbar-track {
|
|
|
|
background: var(--panel);
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-webkit-scrollbar-thumb {
|
|
|
|
background: var(--scrollbarHandle);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: var(--scrollbarHandleHover);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
background: var(--accent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-02-14 19:44:40 +01:00
|
|
|
|
|
|
|
&.f-small {
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.f-large {
|
|
|
|
font-size: 1.1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.f-veryLarge {
|
|
|
|
font-size: 1.2em;
|
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
html.changing-theme {
|
|
|
|
&, * {
|
|
|
|
transition: background 1s ease !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
}
|
|
|
|
|
|
|
|
html, body {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
scroll-behavior: smooth;
|
|
|
|
text-size-adjust: 100%;
|
|
|
|
font-family: Roboto, HelveticaNeue, Arial, sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
cursor: pointer;
|
|
|
|
color: inherit;
|
2020-10-17 13:12:00 +02:00
|
|
|
tap-highlight-color: transparent;
|
|
|
|
-webkit-tap-highlight-color: transparent;
|
2020-01-29 20:37:25 +01:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
textarea, input {
|
|
|
|
tap-highlight-color: transparent;
|
|
|
|
-webkit-tap-highlight-color: transparent;
|
|
|
|
}
|
|
|
|
|
2020-10-19 06:17:37 +02:00
|
|
|
optgroup, option {
|
|
|
|
background: var(--panel);
|
|
|
|
color: var(--fg);
|
|
|
|
}
|
|
|
|
|
2020-02-16 14:15:49 +01:00
|
|
|
hr {
|
|
|
|
margin: var(--margin) 0 var(--margin) 0;
|
|
|
|
border: none;
|
|
|
|
height: 1px;
|
|
|
|
background: var(--divider);
|
|
|
|
}
|
|
|
|
|
2020-02-13 03:54:12 +01:00
|
|
|
._noSelect {
|
|
|
|
user-select: none;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-webkit-touch-callout: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
._ghost {
|
|
|
|
&, * {
|
|
|
|
@extend ._noSelect;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-12 11:14:59 +02:00
|
|
|
._modalBg {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background: var(--modalBg);
|
|
|
|
backdrop-filter: var(--modalBgFilter);
|
|
|
|
}
|
|
|
|
|
2020-07-12 11:36:14 +02:00
|
|
|
._shadow {
|
|
|
|
box-shadow: 0px 4px 32px var(--shadow) !important;
|
|
|
|
}
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
._button {
|
|
|
|
appearance: none;
|
|
|
|
padding: 0;
|
2020-02-20 23:11:25 +01:00
|
|
|
margin: 0; // for Safari
|
2020-01-29 20:37:25 +01:00
|
|
|
background: none;
|
|
|
|
border: none;
|
|
|
|
cursor: pointer;
|
|
|
|
color: var(--fg);
|
|
|
|
touch-action: manipulation;
|
2020-10-17 13:12:00 +02:00
|
|
|
tap-highlight-color: transparent;
|
|
|
|
-webkit-tap-highlight-color: transparent;
|
2020-01-29 20:37:25 +01:00
|
|
|
font-size: 1em;
|
|
|
|
|
|
|
|
&, * {
|
2020-02-13 03:54:12 +01:00
|
|
|
@extend ._noSelect;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
* {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
opacity: 0.5;
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
._buttonPrimary {
|
|
|
|
@extend ._button;
|
|
|
|
color: #fff;
|
|
|
|
background: var(--accent);
|
|
|
|
|
|
|
|
&:not(:disabled):hover {
|
2020-07-04 20:49:58 +02:00
|
|
|
background: var(--X8);
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&:not(:disabled):active {
|
2020-07-04 20:49:58 +02:00
|
|
|
background: var(--X9);
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
._textButton {
|
|
|
|
@extend ._button;
|
|
|
|
color: var(--accent);
|
|
|
|
|
|
|
|
&:not(:disabled):hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-18 13:12:05 +01:00
|
|
|
._inputs {
|
|
|
|
display: flex;
|
|
|
|
margin: 32px 0;
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
margin-top: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> * {
|
|
|
|
flex: 1;
|
|
|
|
margin: 0 !important;
|
|
|
|
|
|
|
|
&:not(:first-child) {
|
|
|
|
margin-left: 8px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not(:last-child) {
|
|
|
|
margin-right: 8px !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
._panel {
|
2020-10-17 13:12:00 +02:00
|
|
|
//position: relative;
|
|
|
|
//z-index: 1;
|
2020-01-29 20:37:25 +01:00
|
|
|
background: var(--panel);
|
2020-07-04 11:28:57 +02:00
|
|
|
border-radius: var(--radius);
|
2020-10-17 13:12:00 +02:00
|
|
|
//border: var(--panelBorder);
|
|
|
|
box-shadow: var(--panelShadow);
|
2020-07-04 20:11:39 +02:00
|
|
|
overflow: hidden;
|
2020-07-04 14:19:12 +02:00
|
|
|
}
|
2020-07-04 11:28:57 +02:00
|
|
|
|
2020-01-30 03:10:42 +01:00
|
|
|
._card {
|
2020-01-29 20:37:25 +01:00
|
|
|
@extend ._panel;
|
|
|
|
|
|
|
|
> ._title {
|
|
|
|
margin: 0;
|
|
|
|
padding: 22px 32px;
|
|
|
|
font-size: 1.1em;
|
2020-07-04 20:11:39 +02:00
|
|
|
border-bottom: solid 1px var(--panelHeaderDivider);
|
2020-01-29 20:37:25 +01:00
|
|
|
font-weight: bold;
|
2020-07-04 20:11:39 +02:00
|
|
|
background: var(--panelHeaderBg);
|
|
|
|
color: var(--panelHeaderFg);
|
2020-01-29 20:37:25 +01:00
|
|
|
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
padding: 16px;
|
|
|
|
font-size: 1em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> ._content {
|
|
|
|
padding: 32px;
|
|
|
|
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
padding: 16px;
|
|
|
|
}
|
|
|
|
|
2020-07-27 06:34:20 +02:00
|
|
|
&._noPad {
|
|
|
|
padding: 0 !important;
|
|
|
|
}
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
& + ._content {
|
|
|
|
border-top: solid 1px var(--divider);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> ._footer {
|
|
|
|
border-top: solid 1px var(--divider);
|
|
|
|
padding: 24px 32px;
|
|
|
|
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
padding: 16px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
._close_ ._list_ > * {
|
|
|
|
border: none;
|
|
|
|
border-bottom: solid 1px var(--divider);
|
|
|
|
border-radius: 0;
|
|
|
|
box-shadow: none;
|
|
|
|
margin: 0 !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
._loadMore {
|
|
|
|
@extend ._panel;
|
|
|
|
@extend ._button;
|
|
|
|
width: 100%;
|
|
|
|
padding: 12px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
._popup {
|
|
|
|
background: var(--panel);
|
|
|
|
border-radius: var(--radius);
|
|
|
|
}
|
|
|
|
|
|
|
|
._section {
|
|
|
|
padding: var(--section-padding, 32px);
|
|
|
|
|
|
|
|
&:empty {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not(:empty) + ._section {
|
|
|
|
border-top: solid 1px var(--divider);
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
padding: var(--section-padding, 10px);
|
|
|
|
|
|
|
|
> ._title {
|
|
|
|
font-size: 1.1em;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> ._title,
|
|
|
|
> ._content {
|
|
|
|
max-width: var(--baseContentWidth);
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
> ._title {
|
|
|
|
margin-bottom: 24px;
|
|
|
|
font-size: 1.25em;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
&._fitBottom {
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
._narrow_ ._section {
|
|
|
|
> ._title {
|
|
|
|
padding: 8px;
|
|
|
|
font-size: 1em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-11 03:13:11 +02:00
|
|
|
._narrow_ ._card {
|
|
|
|
> ._title {
|
|
|
|
padding: 16px;
|
|
|
|
font-size: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
> ._content {
|
|
|
|
padding: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> ._footer {
|
|
|
|
padding: 16px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
._acrylic {
|
|
|
|
background: var(--acrylicPanel);
|
|
|
|
-webkit-backdrop-filter: blur(10px);
|
|
|
|
backdrop-filter: blur(10px);
|
|
|
|
}
|
|
|
|
|
2020-08-09 08:51:02 +02:00
|
|
|
._vMargin {
|
|
|
|
& + ._vMargin {
|
|
|
|
margin-top: var(--margin);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
._table {
|
|
|
|
> ._row {
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
&:not(:last-child) {
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> ._cell {
|
|
|
|
flex: 1;
|
|
|
|
|
|
|
|
> ._label {
|
|
|
|
font-size: 80%;
|
|
|
|
opacity: 0.7;
|
|
|
|
|
|
|
|
> ._icon {
|
|
|
|
margin-right: 4px;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-28 11:33:11 +01:00
|
|
|
._fullinfo {
|
2020-07-04 20:11:39 +02:00
|
|
|
padding: 64px 32px;
|
2020-03-28 11:33:11 +01:00
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
> img {
|
|
|
|
vertical-align: bottom;
|
|
|
|
height: 128px;
|
|
|
|
margin-bottom: 16px;
|
|
|
|
border-radius: 16px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
._keyValue {
|
|
|
|
display: flex;
|
|
|
|
|
2020-08-09 08:51:02 +02:00
|
|
|
> * {
|
2020-03-28 11:33:11 +01:00
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-08 07:47:16 +01:00
|
|
|
._link {
|
|
|
|
color: var(--link);
|
|
|
|
}
|
|
|
|
|
2020-08-09 06:46:19 +02:00
|
|
|
._caption {
|
|
|
|
font-size: 0.8em;
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
|
|
|
|
2020-08-22 01:03:11 +02:00
|
|
|
._code {
|
|
|
|
background: #2d2d2d;
|
|
|
|
color: #ccc;
|
|
|
|
font-family: Fira code, Fira Mono, Consolas, Menlo, Courier, monospace;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 1.5;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.prism-editor__textarea:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
.zoom-enter-active, .zoom-leave-active {
|
|
|
|
transition: opacity 0.5s, transform 0.5s !important;
|
|
|
|
}
|
2020-10-17 13:12:00 +02:00
|
|
|
.zoom-enter-from, .zoom-leave-to {
|
2020-01-29 20:37:25 +01:00
|
|
|
opacity: 0;
|
|
|
|
transform: scale(0.9);
|
|
|
|
}
|
|
|
|
|
|
|
|
.zoom-in-top-enter-active,
|
|
|
|
.zoom-in-top-leave-active {
|
|
|
|
opacity: 1;
|
|
|
|
transform: scaleY(1);
|
|
|
|
transition: transform 300ms cubic-bezier(0.23, 1, 0.32, 1), opacity 300ms cubic-bezier(0.23, 1, 0.32, 1);
|
|
|
|
transform-origin: center top;
|
|
|
|
}
|
2020-10-17 13:12:00 +02:00
|
|
|
.zoom-in-top-enter-from,
|
2020-01-29 20:37:25 +01:00
|
|
|
.zoom-in-top-leave-active {
|
|
|
|
opacity: 0;
|
|
|
|
transform: scaleY(0);
|
|
|
|
}
|
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
@keyframes blink {
|
|
|
|
0% { opacity: 1; transform: scale(1); }
|
|
|
|
30% { opacity: 1; transform: scale(1); }
|
|
|
|
90% { opacity: 0; transform: scale(0.5); }
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
2020-02-06 06:37:29 +01:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
@keyframes anime-spin {
|
2020-02-06 09:05:19 +01:00
|
|
|
0% { transform: rotate(0deg); }
|
|
|
|
100% { transform: rotate(360deg); }
|
|
|
|
}
|
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
@keyframes anime-jump {
|
2020-02-06 09:05:19 +01:00
|
|
|
0% { transform: translateY(0); }
|
|
|
|
25% { transform: translateY(-16px); }
|
|
|
|
50% { transform: translateY(0); }
|
|
|
|
75% { transform: translateY(-8px); }
|
|
|
|
100% { transform: translateY(0); }
|
|
|
|
}
|
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
@keyframes anime-tada {
|
|
|
|
from {
|
|
|
|
transform: scale3d(1, 1, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
10%,
|
|
|
|
20% {
|
|
|
|
transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
30%,
|
|
|
|
50%,
|
|
|
|
70%,
|
|
|
|
90% {
|
|
|
|
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
40%,
|
|
|
|
60%,
|
|
|
|
80% {
|
|
|
|
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
to {
|
|
|
|
transform: scale3d(1, 1, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes anime-rubberBand {
|
|
|
|
from {
|
|
|
|
transform: scale3d(1, 1, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
30% {
|
|
|
|
transform: scale3d(1.25, 0.75, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
40% {
|
|
|
|
transform: scale3d(0.75, 1.25, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
50% {
|
|
|
|
transform: scale3d(1.15, 0.85, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
65% {
|
|
|
|
transform: scale3d(0.95, 1.05, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
75% {
|
|
|
|
transform: scale3d(1.05, 0.95, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
to {
|
|
|
|
transform: scale3d(1, 1, 1);
|
|
|
|
}
|
2020-02-06 06:37:29 +01:00
|
|
|
}
|