2020-01-29 20:37:25 +01:00
|
|
|
@charset "utf-8";
|
|
|
|
|
|
|
|
:root {
|
2020-12-05 08:05:40 +01:00
|
|
|
--radius: 12px;
|
2020-01-29 20:37:25 +01:00
|
|
|
--marginFull: 16px;
|
2020-07-11 03:13:11 +02:00
|
|
|
--marginHalf: 10px;
|
2023-01-07 21:53:51 +01:00
|
|
|
--avatarSize: 48px;
|
2020-01-29 20:37:25 +01:00
|
|
|
|
|
|
|
--margin: var(--marginFull);
|
|
|
|
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
--margin: var(--marginHalf);
|
|
|
|
}
|
2021-05-04 14:15:57 +02:00
|
|
|
|
2023-04-26 22:03:32 +02:00
|
|
|
// https://larsenwork.com/easing-gradients/
|
2023-06-28 04:32:17 +02:00
|
|
|
--gradient: hsl(0, 0%, 0%) 0%, hsla(0, 0%, 0%, 0.987) 8.1%,
|
|
|
|
hsla(0, 0%, 0%, 0.951) 15.5%, hsla(0, 0%, 0%, 0.896) 22.5%,
|
|
|
|
hsla(0, 0%, 0%, 0.825) 29%, hsla(0, 0%, 0%, 0.741) 35.3%,
|
|
|
|
hsla(0, 0%, 0%, 0.648) 41.2%, hsla(0, 0%, 0%, 0.55) 47.1%,
|
|
|
|
hsla(0, 0%, 0%, 0.45) 52.9%, hsla(0, 0%, 0%, 0.352) 58.8%,
|
|
|
|
hsla(0, 0%, 0%, 0.259) 64.7%, hsla(0, 0%, 0%, 0.175) 71%,
|
|
|
|
hsla(0, 0%, 0%, 0.104) 77.5%, hsla(0, 0%, 0%, 0.049) 84.5%,
|
|
|
|
hsla(0, 0%, 0%, 0.013) 91.9%, hsla(0, 0%, 0%, 0) 100%;
|
2023-04-26 22:03:32 +02:00
|
|
|
|
2021-05-04 14:15:57 +02:00
|
|
|
//--ad: rgb(255 169 0 / 10%);
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
::selection {
|
|
|
|
color: #fff;
|
|
|
|
background-color: var(--accent);
|
2022-07-28 04:31:33 +02:00
|
|
|
}
|
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-attachment: fixed;
|
|
|
|
background-size: cover;
|
|
|
|
background-position: center;
|
|
|
|
color: var(--fg);
|
2022-01-13 17:44:08 +01:00
|
|
|
accent-color: var(--accent);
|
2020-01-29 20:37:25 +01:00
|
|
|
overflow: auto;
|
2021-04-16 05:06:54 +02:00
|
|
|
overflow-wrap: break-word;
|
2023-07-14 02:11:59 +02:00
|
|
|
font-family: Roboto, HelveticaNeue, Arial, sans-serif;
|
2022-07-15 10:01:13 +02:00
|
|
|
font-size: 14px;
|
2023-02-10 17:43:47 +01:00
|
|
|
line-height: 1.6;
|
2020-11-22 09:58:08 +01:00
|
|
|
text-size-adjust: 100%;
|
2021-01-11 13:01:54 +01:00
|
|
|
tab-size: 2;
|
2023-05-17 04:40:02 +02:00
|
|
|
scroll-padding: 60px;
|
2023-06-18 03:21:58 +02:00
|
|
|
overflow-x: clip;
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2023-07-14 02:11:59 +02:00
|
|
|
&.useCJKFont {
|
2023-07-14 02:52:23 +02:00
|
|
|
font-family: "Hiragino Maru Gothic Pro", "BIZ UDGothic", Roboto,
|
|
|
|
HelveticaNeue, Arial, sans-serif;
|
2023-07-14 02:11:59 +02:00
|
|
|
}
|
|
|
|
|
2020-11-28 05:05:57 +01:00
|
|
|
&.useSystemFont {
|
2023-07-06 03:28:27 +02:00
|
|
|
font-family:
|
|
|
|
system-ui,
|
|
|
|
-apple-system,
|
|
|
|
BlinkMacSystemFont,
|
|
|
|
"Segoe UI",
|
|
|
|
Roboto,
|
|
|
|
Oxygen,
|
|
|
|
Ubuntu,
|
|
|
|
Cantarell,
|
|
|
|
"Open Sans",
|
|
|
|
"Helvetica Neue",
|
2023-06-28 04:32:17 +02:00
|
|
|
sans-serif;
|
2020-11-28 05:05:57 +01:00
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
2023-07-04 19:33:56 +02:00
|
|
|
* {
|
|
|
|
scrollbar-color: var(--scrollbarHandle) transparent;
|
|
|
|
}
|
2023-04-26 22:03:32 +02:00
|
|
|
body::-webkit-scrollbar {
|
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
|
|
|
}
|
|
|
|
body::-webkit-scrollbar-thumb {
|
|
|
|
border-radius: 100px;
|
|
|
|
background-clip: content-box;
|
|
|
|
border: 3px solid transparent;
|
|
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
width: 6px;
|
|
|
|
height: 6px;
|
|
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
|
|
background: inherit;
|
|
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
background: var(--scrollbarHandle);
|
|
|
|
min-height: 80px;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: var(--scrollbarHandleHover);
|
|
|
|
background-clip: content-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
background: var(--accent);
|
|
|
|
background-clip: content-box;
|
|
|
|
}
|
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2023-06-12 20:59:54 +02:00
|
|
|
.hide-scrollbar {
|
|
|
|
scrollbar-width: none;
|
|
|
|
&::-webkit-scrollbar {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-12 06:06:00 +02:00
|
|
|
html._themeChanging_ {
|
2023-06-28 04:32:17 +02:00
|
|
|
&,
|
|
|
|
*,
|
|
|
|
::before,
|
|
|
|
::after {
|
2023-07-06 03:28:27 +02:00
|
|
|
transition:
|
|
|
|
background 1s ease,
|
|
|
|
border 1s ease !important;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-28 04:32:17 +02:00
|
|
|
html,
|
|
|
|
body {
|
2020-01-29 20:37:25 +01:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2023-06-17 06:51:38 +02:00
|
|
|
.swiper {
|
|
|
|
margin-inline: -24px !important;
|
|
|
|
padding-inline: 24px !important;
|
2023-06-28 04:32:17 +02:00
|
|
|
mask: linear-gradient(
|
|
|
|
to right,
|
|
|
|
transparent,
|
|
|
|
black 24px calc(100% - 24px),
|
|
|
|
transparent
|
|
|
|
);
|
|
|
|
-webkit-mask: linear-gradient(
|
|
|
|
to right,
|
|
|
|
transparent,
|
|
|
|
black 24px calc(100% - 24px),
|
|
|
|
transparent
|
|
|
|
);
|
2023-06-17 06:51:38 +02:00
|
|
|
}
|
2023-05-26 01:32:56 +02:00
|
|
|
.swiper-slide {
|
2023-05-30 04:40:53 +02:00
|
|
|
min-height: 100vh;
|
2023-05-26 01:32:56 +02:00
|
|
|
}
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
cursor: pointer;
|
|
|
|
color: inherit;
|
2020-10-17 13:12:00 +02:00
|
|
|
-webkit-tap-highlight-color: transparent;
|
2023-07-10 19:09:44 +02:00
|
|
|
text-decoration: underline;
|
|
|
|
text-decoration-color: transparent;
|
2023-07-11 01:02:31 +02:00
|
|
|
transition: text-decoration-color 0.2s;
|
2023-07-10 19:09:44 +02:00
|
|
|
&:hover {
|
|
|
|
text-decoration-color: currentColor;
|
|
|
|
}
|
2022-11-07 04:14:55 +01:00
|
|
|
}
|
|
|
|
|
2022-11-22 06:45:59 +01:00
|
|
|
// i {
|
|
|
|
// transform: translateY(0.1em);
|
|
|
|
// }
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2023-06-28 04:32:17 +02:00
|
|
|
textarea,
|
|
|
|
input {
|
2020-10-17 13:12:00 +02:00
|
|
|
-webkit-tap-highlight-color: transparent;
|
|
|
|
}
|
|
|
|
|
2023-06-28 04:32:17 +02:00
|
|
|
optgroup,
|
|
|
|
option {
|
2020-10-19 06:17:37 +02:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2022-11-07 02:33:52 +01:00
|
|
|
.fa-pulse {
|
|
|
|
animation: spin 1s infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes spin {
|
2023-06-28 04:32:17 +02:00
|
|
|
0% {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
2022-11-07 02:33:52 +01:00
|
|
|
}
|
|
|
|
|
2020-02-13 03:54:12 +01:00
|
|
|
._noSelect {
|
|
|
|
user-select: none;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-webkit-touch-callout: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
._ghost {
|
2023-06-28 04:32:17 +02:00
|
|
|
&,
|
|
|
|
* {
|
2020-02-13 03:54:12 +01:00
|
|
|
@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);
|
2021-05-23 11:55:21 +02:00
|
|
|
-webkit-backdrop-filter: var(--modalBgFilter);
|
2020-07-12 11:14:59 +02:00
|
|
|
backdrop-filter: var(--modalBgFilter);
|
|
|
|
}
|
|
|
|
|
2020-07-12 11:36:14 +02:00
|
|
|
._shadow {
|
|
|
|
box-shadow: 0px 4px 32px var(--shadow) !important;
|
|
|
|
}
|
|
|
|
|
2023-02-25 07:18:21 +01:00
|
|
|
.swiper {
|
|
|
|
overflow: clip !important;
|
|
|
|
}
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
._button {
|
|
|
|
appearance: none;
|
2021-08-22 06:16:15 +02:00
|
|
|
display: inline-block;
|
2020-01-29 20:37:25 +01:00
|
|
|
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;
|
2021-07-19 04:36:35 +02:00
|
|
|
color: inherit;
|
2020-01-29 20:37:25 +01:00
|
|
|
touch-action: manipulation;
|
2020-10-17 13:12:00 +02:00
|
|
|
-webkit-tap-highlight-color: transparent;
|
2020-01-29 20:37:25 +01:00
|
|
|
font-size: 1em;
|
2020-11-22 09:58:08 +01:00
|
|
|
font-family: inherit;
|
|
|
|
line-height: inherit;
|
2023-07-10 19:09:44 +02:00
|
|
|
text-decoration: none;
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2023-06-28 04:32:17 +02:00
|
|
|
&,
|
|
|
|
* {
|
2020-02-13 03:54:12 +01:00
|
|
|
@extend ._noSelect;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
* {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
opacity: 0.5;
|
|
|
|
cursor: default;
|
|
|
|
}
|
2023-05-29 15:40:00 +02:00
|
|
|
|
|
|
|
> i:only-child {
|
|
|
|
display: block;
|
|
|
|
margin: auto;
|
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
|
2023-05-31 22:28:07 +02:00
|
|
|
._buttonIcon {
|
|
|
|
@extend ._button;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
width: calc(var(--height) - (var(--margin) * 2));
|
|
|
|
height: calc(var(--height) - (var(--margin) * 2));
|
|
|
|
box-sizing: border-box;
|
|
|
|
position: relative;
|
|
|
|
border-radius: 5px;
|
2023-05-31 22:41:31 +02:00
|
|
|
outline: none;
|
2023-05-31 22:28:07 +02:00
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
width: 2.7em;
|
|
|
|
height: 2.7em;
|
|
|
|
border-radius: inherit;
|
|
|
|
transition: background 0.2s;
|
|
|
|
}
|
|
|
|
|
2023-06-28 04:32:17 +02:00
|
|
|
&:hover:before,
|
|
|
|
&:focus::before,
|
|
|
|
&.highlighted::before {
|
2023-05-31 22:28:07 +02:00
|
|
|
background: var(--buttonBg);
|
|
|
|
}
|
2023-05-31 22:41:31 +02:00
|
|
|
&:focus-visible::before {
|
|
|
|
outline: auto;
|
|
|
|
}
|
|
|
|
&.highlighted {
|
2023-05-31 22:28:07 +02:00
|
|
|
color: var(--accent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
._buttonPrimary {
|
|
|
|
@extend ._button;
|
2021-08-09 11:05:32 +02:00
|
|
|
color: var(--fgOnAccent);
|
2020-01-29 20:37:25 +01:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-16 08:00:55 +02:00
|
|
|
._buttonGradate {
|
|
|
|
@extend ._buttonPrimary;
|
|
|
|
color: var(--fgOnAccent);
|
2023-06-28 04:32:17 +02:00
|
|
|
background: linear-gradient(
|
|
|
|
90deg,
|
|
|
|
var(--buttonGradateA),
|
|
|
|
var(--buttonGradateB)
|
|
|
|
);
|
2021-10-16 08:00:55 +02:00
|
|
|
|
|
|
|
&:not(:disabled):hover {
|
|
|
|
background: linear-gradient(90deg, var(--X8), var(--X8));
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not(:disabled):active {
|
|
|
|
background: linear-gradient(90deg, var(--X8), var(--X8));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-22 06:16:15 +02:00
|
|
|
._help {
|
|
|
|
color: var(--accent);
|
2023-06-28 04:32:17 +02:00
|
|
|
cursor: help;
|
2021-08-22 06:16:15 +02:00
|
|
|
}
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
._textButton {
|
|
|
|
@extend ._button;
|
|
|
|
color: var(--accent);
|
|
|
|
|
|
|
|
&:not(:disabled):hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-16 01:12:32 +02:00
|
|
|
._panel {
|
|
|
|
background: var(--panel);
|
|
|
|
border-radius: var(--radius);
|
|
|
|
overflow: clip;
|
|
|
|
}
|
|
|
|
|
|
|
|
._margin {
|
|
|
|
margin: var(--margin) 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
._gaps_m {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
._gaps_s {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: 0.75em;
|
|
|
|
}
|
|
|
|
|
|
|
|
._gaps {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: var(--margin);
|
|
|
|
}
|
|
|
|
|
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 {
|
|
|
|
background: var(--panel);
|
2020-07-04 11:28:57 +02:00
|
|
|
border-radius: var(--radius);
|
2022-07-13 14:41:06 +02:00
|
|
|
overflow: clip;
|
2021-04-10 05:40:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
._block {
|
2023-06-17 06:51:38 +02:00
|
|
|
background: var(--panel);
|
|
|
|
border-radius: var(--radius);
|
|
|
|
overflow: visible;
|
2021-04-18 07:29:31 +02:00
|
|
|
|
|
|
|
& + ._block {
|
|
|
|
margin-top: var(--margin);
|
|
|
|
}
|
2021-04-10 11:17:42 +02:00
|
|
|
}
|
|
|
|
|
2021-04-13 05:43:19 +02:00
|
|
|
._gap {
|
2021-04-10 05:40:50 +02:00
|
|
|
margin: var(--margin) 0;
|
2023-05-29 02:31:00 +02:00
|
|
|
&:first-child {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
2020-11-29 08:37:33 +01:00
|
|
|
}
|
|
|
|
|
2021-08-07 10:55:16 +02:00
|
|
|
// TODO: 廃止
|
2020-01-30 03:10:42 +01:00
|
|
|
._card {
|
2020-01-29 20:37:25 +01:00
|
|
|
@extend ._panel;
|
|
|
|
|
2021-04-10 05:40:50 +02:00
|
|
|
// TODO: _cardTitle に
|
2020-01-29 20:37:25 +01:00
|
|
|
> ._title {
|
|
|
|
margin: 0;
|
|
|
|
padding: 22px 32px;
|
2020-11-14 04:16:28 +01:00
|
|
|
font-size: 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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-10 05:40:50 +02:00
|
|
|
// TODO: _cardContent に
|
2020-01-29 20:37:25 +01:00
|
|
|
> ._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 {
|
2021-04-10 05:40:50 +02:00
|
|
|
border-top: solid 0.5px var(--divider);
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-10 05:40:50 +02:00
|
|
|
// TODO: _cardFooter に
|
2020-01-29 20:37:25 +01:00
|
|
|
> ._footer {
|
2021-04-10 05:40:50 +02:00
|
|
|
border-top: solid 0.5px var(--divider);
|
2020-01-29 20:37:25 +01:00
|
|
|
padding: 24px 32px;
|
|
|
|
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
padding: 16px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-31 01:39:22 +01:00
|
|
|
._borderButton {
|
|
|
|
@extend ._button;
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
padding: 10px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
text-align: center;
|
2021-04-10 05:40:50 +02:00
|
|
|
border: solid 0.5px var(--divider);
|
2020-10-31 01:39:22 +01:00
|
|
|
border-radius: var(--radius);
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
border-color: var(--accent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
._popup {
|
2021-08-08 14:59:18 +02:00
|
|
|
background: var(--popup);
|
2020-10-17 13:12:00 +02:00
|
|
|
border-radius: var(--radius);
|
2021-12-17 08:14:43 +01:00
|
|
|
contain: content;
|
2020-10-17 13:12:00 +02:00
|
|
|
}
|
|
|
|
|
2021-10-24 17:13:54 +02:00
|
|
|
// TODO: 廃止
|
2021-04-13 05:43:19 +02:00
|
|
|
._monolithic_ {
|
2021-05-04 08:05:34 +02:00
|
|
|
._section:not(:empty) {
|
2021-04-13 05:43:19 +02:00
|
|
|
box-sizing: border-box;
|
|
|
|
padding: var(--root-margin, 32px);
|
2022-07-28 04:31:33 +02:00
|
|
|
|
2021-04-13 05:43:19 +02:00
|
|
|
@media (max-width: 500px) {
|
|
|
|
--root-margin: 10px;
|
|
|
|
}
|
2022-07-28 04:31:33 +02:00
|
|
|
|
2021-04-13 05:43:19 +02:00
|
|
|
& + ._section:not(:empty) {
|
2021-04-11 05:31:24 +02:00
|
|
|
border-top: solid 0.5px var(--divider);
|
|
|
|
}
|
|
|
|
}
|
2021-04-10 05:40:50 +02:00
|
|
|
}
|
2020-10-17 13:12:00 +02:00
|
|
|
|
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);
|
2021-08-11 15:34:45 +02:00
|
|
|
-webkit-backdrop-filter: var(--blur, blur(15px));
|
|
|
|
backdrop-filter: var(--blur, blur(15px));
|
2022-05-14 15:00:30 +02:00
|
|
|
|
|
|
|
@supports not (backdrop-filter: var(--blur, blur(15px))) {
|
|
|
|
&:after {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
z-index: -1;
|
|
|
|
background: var(--bg);
|
2023-06-28 04:32:17 +02:00
|
|
|
opacity: 0.75;
|
2022-05-14 15:00:30 +02:00
|
|
|
}
|
|
|
|
}
|
2020-10-17 13:12:00 +02:00
|
|
|
}
|
|
|
|
|
2021-09-29 17:50:45 +02:00
|
|
|
._formBlock {
|
2021-11-28 12:07:37 +01:00
|
|
|
margin: 1.5em 0;
|
2021-08-06 15:47:26 +02:00
|
|
|
}
|
|
|
|
|
2021-09-29 17:50:45 +02:00
|
|
|
._formRoot {
|
|
|
|
> ._formBlock:first-child {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
> ._formBlock:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2021-08-06 15:47:26 +02:00
|
|
|
}
|
|
|
|
|
2021-11-28 12:07:37 +01:00
|
|
|
._formLinksGrid {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
|
|
|
|
grid-gap: 12px;
|
2023-05-15 04:10:52 +02:00
|
|
|
> button {
|
|
|
|
width: 100% !important;
|
|
|
|
}
|
2021-11-28 12:07:37 +01:00
|
|
|
}
|
|
|
|
|
2023-06-08 19:01:51 +02:00
|
|
|
._flexList {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
2023-06-28 04:32:17 +02:00
|
|
|
gap: 0.2em;
|
2023-06-08 19:01:51 +02:00
|
|
|
width: min-content;
|
|
|
|
min-width: 100%;
|
|
|
|
&._center {
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-28 12:07:37 +01:00
|
|
|
._formLinks {
|
|
|
|
> *:not(:last-child) {
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-07 14:06:37 +02:00
|
|
|
._beta {
|
|
|
|
margin-left: 0.7em;
|
|
|
|
font-size: 65%;
|
|
|
|
padding: 2px 3px;
|
|
|
|
color: var(--accent);
|
|
|
|
border: solid 1px var(--accent);
|
|
|
|
border-radius: 4px;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
|
2020-08-09 08:51:02 +02:00
|
|
|
._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 {
|
2023-02-25 04:33:21 +01:00
|
|
|
position: relative;
|
2020-02-08 07:47:16 +01:00
|
|
|
color: var(--link);
|
2023-07-11 01:38:32 +02:00
|
|
|
text-underline-offset: 0.2em;
|
2022-11-07 04:18:27 +01:00
|
|
|
|
2023-07-11 01:02:31 +02:00
|
|
|
// &::before,
|
|
|
|
// &::after {
|
|
|
|
// content: "";
|
|
|
|
// position: absolute;
|
|
|
|
// bottom: 0;
|
|
|
|
// left: 0;
|
|
|
|
// width: 0%;
|
|
|
|
// border-bottom: 1px solid currentColor;
|
|
|
|
// transition: 0.3s ease-in-out;
|
|
|
|
// }
|
|
|
|
// &::before {
|
|
|
|
// width: 100%;
|
|
|
|
// opacity: 0.4;
|
|
|
|
// }
|
|
|
|
// &:hover:after,
|
|
|
|
// &:focus:after {
|
|
|
|
// width: 100%;
|
|
|
|
// }
|
2020-02-08 07:47:16 +01:00
|
|
|
}
|
|
|
|
|
2020-08-09 06:46:19 +02:00
|
|
|
._caption {
|
|
|
|
font-size: 0.8em;
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
|
|
|
|
2020-11-25 13:31:34 +01:00
|
|
|
._monospace {
|
2023-07-06 03:28:27 +02:00
|
|
|
font-family:
|
|
|
|
Fira code,
|
|
|
|
Fira Mono,
|
|
|
|
Consolas,
|
|
|
|
Menlo,
|
|
|
|
Courier,
|
|
|
|
monospace !important;
|
2020-11-25 13:31:34 +01:00
|
|
|
}
|
|
|
|
|
2020-08-22 01:03:11 +02:00
|
|
|
._code {
|
2020-11-25 13:31:34 +01:00
|
|
|
@extend ._monospace;
|
2022-07-28 04:32:21 +02:00
|
|
|
background: #26233a;
|
|
|
|
color: #e0def4;
|
2020-08-22 01:03:11 +02:00
|
|
|
font-size: 14px;
|
|
|
|
line-height: 1.5;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
2023-04-02 10:00:40 +02:00
|
|
|
.prism-editor__container {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2021-11-07 19:43:14 +01:00
|
|
|
.prism-editor__textarea:focus {
|
2020-08-22 01:03:11 +02:00
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
2023-06-17 06:51:38 +02:00
|
|
|
:not(.noGap):not(._block) > {
|
2023-06-28 04:32:17 +02:00
|
|
|
.note-container,
|
|
|
|
.cmuxhskf > section,
|
|
|
|
._gap > ._block,
|
|
|
|
._panel,
|
|
|
|
.noGap,
|
|
|
|
.profile,
|
|
|
|
.card {
|
|
|
|
&:not(.caution) {
|
|
|
|
box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
|
2023-06-17 06:51:38 +02:00
|
|
|
border-radius: var(--radius);
|
|
|
|
overflow: clip;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.widgets ._panel {
|
|
|
|
box-shadow: none !important;
|
|
|
|
}
|
|
|
|
|
2021-02-07 02:31:18 +01:00
|
|
|
._zoom {
|
|
|
|
transition-duration: 0.5s, 0.5s;
|
|
|
|
transition-property: opacity, transform;
|
2023-06-28 04:32:17 +02:00
|
|
|
transition-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
|
2021-02-07 02:31:18 +01:00
|
|
|
}
|
|
|
|
|
2023-06-28 04:32:17 +02:00
|
|
|
.zoom-enter-active,
|
|
|
|
.zoom-leave-active {
|
2023-07-06 03:28:27 +02:00
|
|
|
transition:
|
|
|
|
opacity 0.5s,
|
|
|
|
transform 0.5s !important;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
2023-06-28 04:32:17 +02:00
|
|
|
.zoom-enter-from,
|
|
|
|
.zoom-leave-to {
|
2020-01-29 20:37:25 +01:00
|
|
|
opacity: 0;
|
|
|
|
transform: scale(0.9);
|
|
|
|
}
|
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
@keyframes blink {
|
2023-06-28 04:32:17 +02:00
|
|
|
0% {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
70% {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
2020-02-06 06:37:29 +01:00
|
|
|
|
2020-11-07 15:41:21 +01:00
|
|
|
@keyframes tada {
|
2020-10-17 13:12:00 +02:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
2021-04-23 08:33:33 +02:00
|
|
|
|
2023-06-28 04:32:17 +02:00
|
|
|
@media (prefers-reduced-motion) {
|
2022-11-30 03:29:12 +01:00
|
|
|
@keyframes tada {
|
|
|
|
from {
|
|
|
|
transform: scale3d(1, 1, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
50% {
|
|
|
|
transform: scale3d(1.1, 1.1, 1.1);
|
|
|
|
}
|
|
|
|
|
|
|
|
to {
|
|
|
|
transform: scale3d(1, 1, 1);
|
|
|
|
}
|
|
|
|
}
|
2023-06-28 04:25:01 +02:00
|
|
|
|
|
|
|
@keyframes blink {
|
|
|
|
0% {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
2022-11-30 03:29:12 +01:00
|
|
|
}
|
|
|
|
|
2021-04-23 08:33:33 +02:00
|
|
|
._anime_bounce {
|
2021-04-24 11:38:38 +02:00
|
|
|
will-change: transform;
|
2023-06-28 04:32:17 +02:00
|
|
|
animation: bounce ease 0.7s;
|
|
|
|
animation-iteration-count: 1;
|
|
|
|
transform-origin: 50% 50%;
|
2021-04-23 08:33:33 +02:00
|
|
|
}
|
|
|
|
._anime_bounce_ready {
|
2021-04-24 11:38:38 +02:00
|
|
|
will-change: transform;
|
2023-06-28 04:32:17 +02:00
|
|
|
transform: scaleX(0.9) scaleY(0.9);
|
2021-04-23 08:33:33 +02:00
|
|
|
}
|
2021-04-24 11:38:38 +02:00
|
|
|
._anime_bounce_standBy {
|
|
|
|
transition: transform 0.1s ease;
|
|
|
|
}
|
2021-04-23 08:33:33 +02:00
|
|
|
|
2023-06-28 04:32:17 +02:00
|
|
|
@keyframes bounce {
|
|
|
|
0% {
|
|
|
|
transform: scaleX(0.9) scaleY(0.9);
|
|
|
|
}
|
|
|
|
19% {
|
|
|
|
transform: scaleX(1.1) scaleY(1.1);
|
|
|
|
}
|
|
|
|
48% {
|
|
|
|
transform: scaleX(0.95) scaleY(0.95);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: scaleX(1) scaleY(1);
|
|
|
|
}
|
2021-04-23 08:33:33 +02:00
|
|
|
}
|
2023-02-25 19:50:24 +01:00
|
|
|
|
2023-03-11 22:07:51 +01:00
|
|
|
.ph-xxs {
|
2023-06-28 04:32:17 +02:00
|
|
|
font-size: 0.5em;
|
2023-03-11 22:07:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.ph-xs {
|
2023-06-28 04:32:17 +02:00
|
|
|
font-size: 0.75em;
|
2023-03-11 22:07:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.ph-sm {
|
2023-06-28 04:32:17 +02:00
|
|
|
font-size: 0.875em;
|
2023-03-11 22:07:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.ph-lg {
|
2023-06-28 04:32:17 +02:00
|
|
|
font-size: 1.3333em;
|
|
|
|
line-height: 0.75em;
|
|
|
|
vertical-align: -0.0667em;
|
2023-05-15 04:10:52 +02:00
|
|
|
justify-content: center;
|
2023-03-11 22:07:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.ph-xl {
|
2023-06-28 04:32:17 +02:00
|
|
|
font-size: 1.5em;
|
|
|
|
line-height: 0.6666em;
|
|
|
|
vertical-align: -0.075em;
|
2023-03-11 22:07:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.ph-1x {
|
2023-06-28 04:32:17 +02:00
|
|
|
font-size: 1em;
|
2023-03-11 22:07:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.ph-2x {
|
2023-06-28 04:32:17 +02:00
|
|
|
font-size: 2em;
|
2023-03-11 22:07:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.ph-3x {
|
2023-06-28 04:32:17 +02:00
|
|
|
font-size: 3em;
|
2023-03-11 22:07:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.ph-4x {
|
2023-06-28 04:32:17 +02:00
|
|
|
font-size: 4em;
|
2023-03-11 22:07:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.ph-5x {
|
2023-06-28 04:32:17 +02:00
|
|
|
font-size: 5em;
|
2023-03-11 22:07:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.ph-6x {
|
2023-06-28 04:32:17 +02:00
|
|
|
font-size: 6em;
|
2023-03-11 22:07:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.ph-7x {
|
2023-06-28 04:32:17 +02:00
|
|
|
font-size: 7em;
|
2023-03-11 22:07:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.ph-8x {
|
2023-06-28 04:32:17 +02:00
|
|
|
font-size: 8em;
|
2023-03-11 22:07:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.ph-9x {
|
2023-06-28 04:32:17 +02:00
|
|
|
font-size: 9em;
|
2023-03-11 22:07:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.ph-10x {
|
2023-06-28 04:32:17 +02:00
|
|
|
font-size: 10em;
|
2023-03-11 22:07:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.ph-fw {
|
2023-06-28 04:32:17 +02:00
|
|
|
text-align: center;
|
|
|
|
width: 1.25em;
|
2023-03-11 22:36:40 +01:00
|
|
|
display: inline-flex;
|
2023-03-11 22:07:51 +01:00
|
|
|
}
|
2023-03-15 23:40:21 +01:00
|
|
|
|
2023-04-07 07:28:44 +02:00
|
|
|
._blur_text {
|
|
|
|
filter: blur(6px);
|
|
|
|
transition: filter 0.3s;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
filter: blur(0px);
|
|
|
|
}
|
|
|
|
}
|
2023-03-15 23:40:21 +01:00
|
|
|
|
2023-06-30 04:12:42 +02:00
|
|
|
// ._otp_input {
|
|
|
|
// width: 30px;
|
|
|
|
// height: 30px;
|
|
|
|
// padding: 5px;
|
|
|
|
// margin: 1rem 7px auto;
|
|
|
|
// font-size: 20px;
|
|
|
|
// border-radius: 4px;
|
|
|
|
// border: 2px solid var(--accent);
|
|
|
|
// background-color: var(--accentedBg);
|
|
|
|
// color: var(--fg);
|
|
|
|
// text-align: center;
|
|
|
|
// }
|
|
|
|
// ._otp_input.error {
|
|
|
|
// border-color: var(--error) !important;
|
|
|
|
// }
|
|
|
|
// ._otp_input::-webkit-inner-spin-button,
|
|
|
|
// ._otp_input::-webkit-outer-spin-button {
|
|
|
|
// -webkit-appearance: none;
|
|
|
|
// margin: 0;
|
|
|
|
// }
|
2023-06-16 04:52:51 +02:00
|
|
|
|
2023-06-25 23:07:01 +02:00
|
|
|
@keyframes reset {
|
|
|
|
to {
|
|
|
|
transform: none;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.instant {
|
|
|
|
animation-duration: 0s !important;
|
|
|
|
}
|
|
|
|
|
2023-06-28 04:32:17 +02:00
|
|
|
@media (prefers-reduced-motion: no-preference) {
|
2023-02-25 19:50:24 +01:00
|
|
|
@keyframes scaleIn {
|
|
|
|
from {
|
|
|
|
transform: scale(0);
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@keyframes scaleInSmall {
|
|
|
|
from {
|
2023-06-28 04:32:17 +02:00
|
|
|
transform: scale(0.8);
|
2023-02-25 19:50:24 +01:00
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|