2020-01-30 04:37:25 +09:00
|
|
|
@charset "utf-8";
|
|
|
|
|
|
|
|
:root {
|
2020-11-28 11:53:18 +09:00
|
|
|
--baseContentWidth: 760px;
|
2020-12-05 16:05:40 +09:00
|
|
|
--radius: 12px;
|
2020-01-30 04:37:25 +09:00
|
|
|
--marginFull: 16px;
|
2020-07-11 10:13:11 +09:00
|
|
|
--marginHalf: 10px;
|
2020-01-30 04:37:25 +09:00
|
|
|
|
|
|
|
--margin: var(--marginFull);
|
|
|
|
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
--margin: var(--marginHalf);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-17 20:12:00 +09:00
|
|
|
::selection {
|
|
|
|
color: #fff;
|
|
|
|
background-color: var(--accent);
|
|
|
|
}
|
2020-01-30 04:37:25 +09:00
|
|
|
|
|
|
|
html {
|
2020-02-21 07:21:27 +09:00
|
|
|
touch-action: manipulation;
|
2020-01-30 04:37:25 +09:00
|
|
|
background-color: var(--bg);
|
|
|
|
background-attachment: fixed;
|
|
|
|
background-size: cover;
|
|
|
|
background-position: center;
|
|
|
|
color: var(--fg);
|
|
|
|
overflow: auto;
|
2020-11-29 16:26:50 +09:00
|
|
|
font-family: "BIZ UDGothic", Roboto, HelveticaNeue, Arial, sans-serif;
|
2020-11-28 13:08:07 +09:00
|
|
|
line-height: 1.35;
|
2020-11-22 17:58:08 +09:00
|
|
|
text-size-adjust: 100%;
|
2021-01-11 21:01:54 +09:00
|
|
|
tab-size: 2;
|
2020-01-30 04:37:25 +09:00
|
|
|
|
|
|
|
&, * {
|
2020-12-28 20:08:57 +09:00
|
|
|
scrollbar-color: var(--scrollbarHandle) inherit;
|
2020-07-05 11:37:45 +09:00
|
|
|
scrollbar-width: thin;
|
2020-01-30 04:37:25 +09:00
|
|
|
|
|
|
|
&:hover {
|
2020-12-28 20:08:57 +09:00
|
|
|
scrollbar-color: var(--scrollbarHandleHover) inherit;
|
2020-01-30 04:37:25 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
2020-12-28 20:08:57 +09:00
|
|
|
scrollbar-color: var(--accent) inherit;
|
2020-01-30 04:37:25 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
&::-webkit-scrollbar {
|
|
|
|
width: 6px;
|
|
|
|
height: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-webkit-scrollbar-track {
|
2020-12-28 20:08:57 +09:00
|
|
|
background: inherit;
|
2020-01-30 04:37:25 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
&::-webkit-scrollbar-thumb {
|
|
|
|
background: var(--scrollbarHandle);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: var(--scrollbarHandleHover);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
background: var(--accent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-02-15 03:44:40 +09:00
|
|
|
|
|
|
|
&.f-small {
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.f-large {
|
|
|
|
font-size: 1.1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.f-veryLarge {
|
|
|
|
font-size: 1.2em;
|
|
|
|
}
|
2020-11-28 13:05:57 +09:00
|
|
|
|
|
|
|
&.useSystemFont {
|
|
|
|
font-family: sans-serif;
|
|
|
|
}
|
2020-01-30 04:37:25 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
html.changing-theme {
|
|
|
|
&, * {
|
|
|
|
transition: background 1s ease !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
overflow-wrap: break-word;
|
|
|
|
}
|
|
|
|
|
|
|
|
html, body {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
scroll-behavior: smooth;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
cursor: pointer;
|
|
|
|
color: inherit;
|
2020-10-17 20:12:00 +09:00
|
|
|
tap-highlight-color: transparent;
|
|
|
|
-webkit-tap-highlight-color: transparent;
|
2020-01-30 04:37:25 +09:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-17 20:12:00 +09:00
|
|
|
textarea, input {
|
|
|
|
tap-highlight-color: transparent;
|
|
|
|
-webkit-tap-highlight-color: transparent;
|
|
|
|
}
|
|
|
|
|
2020-10-19 13:17:37 +09:00
|
|
|
optgroup, option {
|
|
|
|
background: var(--panel);
|
|
|
|
color: var(--fg);
|
|
|
|
}
|
|
|
|
|
2020-02-16 22:15:49 +09:00
|
|
|
hr {
|
|
|
|
margin: var(--margin) 0 var(--margin) 0;
|
|
|
|
border: none;
|
|
|
|
height: 1px;
|
|
|
|
background: var(--divider);
|
|
|
|
}
|
|
|
|
|
2020-02-13 11:54:12 +09:00
|
|
|
._noSelect {
|
|
|
|
user-select: none;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-webkit-touch-callout: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
._ghost {
|
|
|
|
&, * {
|
|
|
|
@extend ._noSelect;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-12 18:14:59 +09:00
|
|
|
._modalBg {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background: var(--modalBg);
|
|
|
|
backdrop-filter: var(--modalBgFilter);
|
|
|
|
}
|
|
|
|
|
2020-07-12 18:36:14 +09:00
|
|
|
._shadow {
|
|
|
|
box-shadow: 0px 4px 32px var(--shadow) !important;
|
|
|
|
}
|
|
|
|
|
2020-01-30 04:37:25 +09:00
|
|
|
._button {
|
|
|
|
appearance: none;
|
|
|
|
padding: 0;
|
2020-02-21 07:11:25 +09:00
|
|
|
margin: 0; // for Safari
|
2020-01-30 04:37:25 +09:00
|
|
|
background: none;
|
|
|
|
border: none;
|
|
|
|
cursor: pointer;
|
|
|
|
color: var(--fg);
|
|
|
|
touch-action: manipulation;
|
2020-10-17 20:12:00 +09:00
|
|
|
tap-highlight-color: transparent;
|
|
|
|
-webkit-tap-highlight-color: transparent;
|
2020-01-30 04:37:25 +09:00
|
|
|
font-size: 1em;
|
2020-11-22 17:58:08 +09:00
|
|
|
font-family: inherit;
|
|
|
|
line-height: inherit;
|
2020-01-30 04:37:25 +09:00
|
|
|
|
|
|
|
&, * {
|
2020-02-13 11:54:12 +09:00
|
|
|
@extend ._noSelect;
|
2020-01-30 04:37:25 +09: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-05 03:49:58 +09:00
|
|
|
background: var(--X8);
|
2020-01-30 04:37:25 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
&:not(:disabled):active {
|
2020-07-05 03:49:58 +09:00
|
|
|
background: var(--X9);
|
2020-01-30 04:37:25 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
._textButton {
|
|
|
|
@extend ._button;
|
|
|
|
color: var(--accent);
|
|
|
|
|
|
|
|
&:not(:disabled):hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-18 21:12:05 +09: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-30 04:37:25 +09:00
|
|
|
._panel {
|
|
|
|
background: var(--panel);
|
2020-07-04 18:28:57 +09:00
|
|
|
border-radius: var(--radius);
|
2020-10-17 20:12:00 +09:00
|
|
|
//border: var(--panelBorder);
|
2020-11-29 16:37:33 +09:00
|
|
|
box-shadow: var(--panelShadow);
|
2021-03-02 22:57:16 +09:00
|
|
|
overflow: hidden;
|
2021-04-10 12:40:50 +09:00
|
|
|
overflow: clip;
|
|
|
|
}
|
|
|
|
|
|
|
|
._block {
|
|
|
|
@extend ._panel;
|
|
|
|
}
|
|
|
|
|
2021-04-10 18:17:42 +09:00
|
|
|
._gap {
|
|
|
|
margin: var(--margin) 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
._magnet {
|
|
|
|
margin-bottom: calc(var(--margin) * -1);
|
|
|
|
}
|
|
|
|
|
2021-04-10 12:40:50 +09:00
|
|
|
._isolated {
|
|
|
|
margin: var(--margin) 0;
|
2020-11-29 16:37:33 +09:00
|
|
|
}
|
|
|
|
|
2020-01-30 11:10:42 +09:00
|
|
|
._card {
|
2020-01-30 04:37:25 +09:00
|
|
|
@extend ._panel;
|
|
|
|
|
2021-04-10 12:40:50 +09:00
|
|
|
// TODO: _cardTitle に
|
2020-01-30 04:37:25 +09:00
|
|
|
> ._title {
|
|
|
|
margin: 0;
|
|
|
|
padding: 22px 32px;
|
2020-11-14 12:16:28 +09:00
|
|
|
font-size: 1em;
|
2020-07-05 03:11:39 +09:00
|
|
|
border-bottom: solid 1px var(--panelHeaderDivider);
|
2020-01-30 04:37:25 +09:00
|
|
|
font-weight: bold;
|
2020-07-05 03:11:39 +09:00
|
|
|
background: var(--panelHeaderBg);
|
|
|
|
color: var(--panelHeaderFg);
|
2020-01-30 04:37:25 +09:00
|
|
|
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
padding: 16px;
|
|
|
|
font-size: 1em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-10 12:40:50 +09:00
|
|
|
// TODO: _cardContent に
|
2020-01-30 04:37:25 +09:00
|
|
|
> ._content {
|
|
|
|
padding: 32px;
|
|
|
|
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
padding: 16px;
|
|
|
|
}
|
|
|
|
|
2020-07-27 13:34:20 +09:00
|
|
|
&._noPad {
|
|
|
|
padding: 0 !important;
|
|
|
|
}
|
|
|
|
|
2020-01-30 04:37:25 +09:00
|
|
|
& + ._content {
|
2021-04-10 12:40:50 +09:00
|
|
|
border-top: solid 0.5px var(--divider);
|
2020-01-30 04:37:25 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-10 12:40:50 +09:00
|
|
|
// TODO: _cardFooter に
|
2020-01-30 04:37:25 +09:00
|
|
|
> ._footer {
|
2021-04-10 12:40:50 +09:00
|
|
|
border-top: solid 0.5px var(--divider);
|
2020-01-30 04:37:25 +09:00
|
|
|
padding: 24px 32px;
|
|
|
|
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
padding: 16px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-31 09:39:22 +09:00
|
|
|
._borderButton {
|
|
|
|
@extend ._button;
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
padding: 10px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
text-align: center;
|
2021-04-10 12:40:50 +09:00
|
|
|
border: solid 0.5px var(--divider);
|
2020-10-31 09:39:22 +09:00
|
|
|
border-radius: var(--radius);
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
border-color: var(--accent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-17 20:12:00 +09:00
|
|
|
._popup {
|
|
|
|
background: var(--panel);
|
|
|
|
border-radius: var(--radius);
|
2020-12-05 16:05:40 +09:00
|
|
|
contain: content;
|
2020-10-17 20:12:00 +09:00
|
|
|
}
|
|
|
|
|
2021-04-10 12:40:50 +09:00
|
|
|
._root {
|
|
|
|
box-sizing: border-box;
|
|
|
|
margin: var(--root-margin, 32px) auto;
|
|
|
|
max-width: min(var(--baseContentWidth), calc(100% - (var(--root-margin, 32px) * 2)));
|
2020-10-17 20:12:00 +09:00
|
|
|
|
2021-04-10 12:40:50 +09:00
|
|
|
._hr {
|
|
|
|
margin: var(--margin) calc(var(--root-margin, 32px) * -1);
|
2020-10-17 20:12:00 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 500px) {
|
2021-04-10 12:40:50 +09:00
|
|
|
--root-margin: 10px;
|
2020-10-17 20:12:00 +09:00
|
|
|
}
|
2021-04-10 12:40:50 +09:00
|
|
|
}
|
2020-10-17 20:12:00 +09:00
|
|
|
|
2021-04-10 12:40:50 +09:00
|
|
|
._flat_ {
|
|
|
|
--root-margin: 0;
|
|
|
|
--baseContentWidth: 100%;
|
|
|
|
--panelShadow: none;
|
2020-10-17 20:12:00 +09:00
|
|
|
|
2021-04-10 12:40:50 +09:00
|
|
|
._block {
|
|
|
|
//border-top: solid 0.5px var(--divider);
|
|
|
|
//border-bottom: solid 0.5px var(--divider);
|
|
|
|
border-radius: 0;
|
|
|
|
box-shadow: none;
|
2020-10-17 20:12:00 +09:00
|
|
|
}
|
|
|
|
|
2021-04-10 18:17:42 +09:00
|
|
|
._isolated {
|
|
|
|
margin: var(--margin);
|
|
|
|
}
|
|
|
|
|
2021-04-11 00:03:31 +09:00
|
|
|
._block._isolated {
|
|
|
|
border-radius: var(--radius);
|
|
|
|
}
|
|
|
|
|
2021-04-10 12:40:50 +09:00
|
|
|
@media (max-width: 500px) {
|
|
|
|
._root {
|
|
|
|
--root-margin: 0;
|
|
|
|
}
|
2020-10-17 20:12:00 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-11 10:13:11 +09:00
|
|
|
._narrow_ ._card {
|
|
|
|
> ._title {
|
|
|
|
padding: 16px;
|
|
|
|
font-size: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
> ._content {
|
|
|
|
padding: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> ._footer {
|
|
|
|
padding: 16px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-17 20:12:00 +09:00
|
|
|
._acrylic {
|
|
|
|
background: var(--acrylicPanel);
|
2021-02-27 13:08:34 +09:00
|
|
|
-webkit-backdrop-filter: blur(15px);
|
|
|
|
backdrop-filter: blur(15px);
|
2020-10-17 20:12:00 +09:00
|
|
|
}
|
|
|
|
|
2020-08-09 15:51:02 +09: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 19:33:11 +09:00
|
|
|
._fullinfo {
|
2020-07-05 03:11:39 +09:00
|
|
|
padding: 64px 32px;
|
2020-03-28 19:33:11 +09:00
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
> img {
|
|
|
|
vertical-align: bottom;
|
|
|
|
height: 128px;
|
|
|
|
margin-bottom: 16px;
|
|
|
|
border-radius: 16px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
._keyValue {
|
|
|
|
display: flex;
|
|
|
|
|
2020-08-09 15:51:02 +09:00
|
|
|
> * {
|
2020-03-28 19:33:11 +09:00
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-08 15:47:16 +09:00
|
|
|
._link {
|
|
|
|
color: var(--link);
|
|
|
|
}
|
|
|
|
|
2020-08-09 13:46:19 +09:00
|
|
|
._caption {
|
|
|
|
font-size: 0.8em;
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
|
|
|
|
2020-11-25 21:31:34 +09:00
|
|
|
._monospace {
|
|
|
|
font-family: Fira code, Fira Mono, Consolas, Menlo, Courier, monospace;
|
|
|
|
}
|
|
|
|
|
2020-08-22 08:03:11 +09:00
|
|
|
._code {
|
2020-11-25 21:31:34 +09:00
|
|
|
@extend ._monospace;
|
2020-08-22 08:03:11 +09:00
|
|
|
background: #2d2d2d;
|
|
|
|
color: #ccc;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 1.5;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.prism-editor__textarea:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
2021-02-07 10:31:18 +09:00
|
|
|
._zoom {
|
|
|
|
transition-duration: 0.5s, 0.5s;
|
|
|
|
transition-property: opacity, transform;
|
|
|
|
transition-timing-function: cubic-bezier(0,.5,.5,1);
|
|
|
|
}
|
|
|
|
|
2020-01-30 04:37:25 +09:00
|
|
|
.zoom-enter-active, .zoom-leave-active {
|
|
|
|
transition: opacity 0.5s, transform 0.5s !important;
|
|
|
|
}
|
2020-10-17 20:12:00 +09:00
|
|
|
.zoom-enter-from, .zoom-leave-to {
|
2020-01-30 04:37:25 +09:00
|
|
|
opacity: 0;
|
|
|
|
transform: scale(0.9);
|
|
|
|
}
|
|
|
|
|
2020-10-17 20:12:00 +09:00
|
|
|
@keyframes blink {
|
|
|
|
0% { opacity: 1; transform: scale(1); }
|
|
|
|
30% { opacity: 1; transform: scale(1); }
|
|
|
|
90% { opacity: 0; transform: scale(0.5); }
|
2020-01-30 04:37:25 +09:00
|
|
|
}
|
2020-02-06 14:37:29 +09:00
|
|
|
|
2020-11-07 23:41:21 +09:00
|
|
|
@keyframes tada {
|
2020-10-17 20:12:00 +09: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);
|
|
|
|
}
|
|
|
|
}
|