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;
|
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
|
|
|
|
|
|
|
//--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);
|
|
|
|
}
|
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);
|
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;
|
2020-11-29 08:26:50 +01:00
|
|
|
font-family: "BIZ UDGothic", Roboto, HelveticaNeue, Arial, sans-serif;
|
2021-11-28 12:07:37 +01:00
|
|
|
font-size: 15px;
|
2020-11-28 05:08:07 +01:00
|
|
|
line-height: 1.35;
|
2020-11-22 09:58:08 +01:00
|
|
|
text-size-adjust: 100%;
|
2021-01-11 13:01:54 +01:00
|
|
|
tab-size: 2;
|
2020-01-29 20:37:25 +01:00
|
|
|
|
|
|
|
&, * {
|
2020-12-28 12:08:57 +01:00
|
|
|
scrollbar-color: var(--scrollbarHandle) inherit;
|
2020-07-05 04:37:45 +02:00
|
|
|
scrollbar-width: thin;
|
2020-01-29 20:37:25 +01:00
|
|
|
|
|
|
|
&:hover {
|
2020-12-28 12:08:57 +01:00
|
|
|
scrollbar-color: var(--scrollbarHandleHover) inherit;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
2020-12-28 12:08:57 +01:00
|
|
|
scrollbar-color: var(--accent) inherit;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&::-webkit-scrollbar {
|
|
|
|
width: 6px;
|
|
|
|
height: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-webkit-scrollbar-track {
|
2020-12-28 12:08:57 +01:00
|
|
|
background: inherit;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&::-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-11-28 05:05:57 +01:00
|
|
|
|
|
|
|
&.useSystemFont {
|
|
|
|
font-family: sans-serif;
|
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
|
2021-04-12 06:06:00 +02:00
|
|
|
html._themeChanging_ {
|
2020-01-29 20:37:25 +01:00
|
|
|
&, * {
|
2021-04-12 06:06:00 +02:00
|
|
|
transition: background 1s ease, border 1s ease !important;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
html, body {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
scroll-behavior: smooth;
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
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;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
tap-highlight-color: transparent;
|
|
|
|
-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;
|
2020-01-29 20:37:25 +01:00
|
|
|
|
|
|
|
&, * {
|
2020-02-13 03:54:12 +01:00
|
|
|
@extend ._noSelect;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
* {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
2021-10-02 19:46:58 +02:00
|
|
|
&:focus-visible {
|
2020-01-29 20:37:25 +01:00
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
opacity: 0.5;
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
._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);
|
|
|
|
background: linear-gradient(90deg, var(--buttonGradateA), var(--buttonGradateB));
|
|
|
|
|
|
|
|
&: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);
|
|
|
|
cursor: help
|
|
|
|
}
|
|
|
|
|
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 {
|
|
|
|
background: var(--panel);
|
2020-07-04 11:28:57 +02:00
|
|
|
border-radius: var(--radius);
|
2021-04-10 05:40:50 +02:00
|
|
|
overflow: clip;
|
|
|
|
}
|
|
|
|
|
|
|
|
._block {
|
|
|
|
@extend ._panel;
|
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;
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-09 14:41:20 +02:00
|
|
|
._window {
|
2022-06-21 17:48:16 +02:00
|
|
|
background: var(--windowHeader);
|
2021-08-09 14:41:20 +02:00
|
|
|
border-radius: var(--radius);
|
|
|
|
contain: content;
|
2022-06-21 17:48:16 +02:00
|
|
|
-webkit-backdrop-filter: var(--blur, blur(15px));
|
|
|
|
backdrop-filter: var(--blur, blur(15px));
|
2021-08-09 14:41:20 +02:00
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
--root-margin: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
& + ._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));
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
._formLinks {
|
|
|
|
> *:not(:last-child) {
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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 {
|
|
|
|
color: var(--link);
|
|
|
|
}
|
|
|
|
|
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 {
|
2021-04-16 10:34:06 +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;
|
2020-08-22 01:03:11 +02:00
|
|
|
background: #2d2d2d;
|
|
|
|
color: #ccc;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 1.5;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
2021-11-07 19:43:14 +01:00
|
|
|
.prism-editor__textarea:focus {
|
2020-08-22 01:03:11 +02:00
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
2021-02-07 02:31:18 +01:00
|
|
|
._zoom {
|
|
|
|
transition-duration: 0.5s, 0.5s;
|
|
|
|
transition-property: opacity, transform;
|
|
|
|
transition-timing-function: cubic-bezier(0,.5,.5,1);
|
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
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-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
|
|
|
|
|
|
|
._anime_bounce {
|
2021-04-24 11:38:38 +02:00
|
|
|
will-change: transform;
|
2021-04-23 08:53:35 +02:00
|
|
|
animation: bounce ease 0.7s;
|
2021-04-23 08:33:33 +02:00
|
|
|
animation-iteration-count: 1;
|
|
|
|
transform-origin: 50% 50%;
|
|
|
|
}
|
|
|
|
._anime_bounce_ready {
|
2021-04-24 11:38:38 +02:00
|
|
|
will-change: transform;
|
2021-04-23 08:33:33 +02:00
|
|
|
transform: scaleX(0.90) scaleY(0.90) ;
|
|
|
|
}
|
2021-04-24 11:38:38 +02:00
|
|
|
._anime_bounce_standBy {
|
|
|
|
transition: transform 0.1s ease;
|
|
|
|
}
|
2021-04-23 08:33:33 +02:00
|
|
|
|
|
|
|
@keyframes bounce{
|
|
|
|
0% {
|
|
|
|
transform: scaleX(0.90) scaleY(0.90) ;
|
|
|
|
}
|
2021-04-23 08:53:35 +02:00
|
|
|
19% {
|
2021-04-23 08:33:33 +02:00
|
|
|
transform: scaleX(1.10) scaleY(1.10) ;
|
|
|
|
}
|
2021-04-23 08:53:35 +02:00
|
|
|
48% {
|
2021-04-23 08:33:33 +02:00
|
|
|
transform: scaleX(0.95) scaleY(0.95) ;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: scaleX(1.00) scaleY(1.00) ;
|
|
|
|
}
|
|
|
|
}
|