2021-10-06 00:03:17 +09:00
|
|
|
@import url("../fonts/poppins/poppins.css");
|
|
|
|
@import url("../fonts/opensans/opensans.css");
|
2021-10-02 01:25:51 +09:00
|
|
|
@import url("widgets/buttons.css");
|
|
|
|
@import url("widgets/sections.css");
|
2021-09-12 05:31:56 +09:00
|
|
|
|
2021-10-20 04:33:01 +09:00
|
|
|
/* Sizes vars */
|
|
|
|
:root {
|
|
|
|
--smaller: 0.6rem;
|
|
|
|
--default: 1rem;
|
|
|
|
--small: 1.3rem;
|
|
|
|
--medium: 1.62rem;
|
|
|
|
--big: 3rem;
|
2021-10-06 00:03:17 +09:00
|
|
|
}
|
2021-10-06 06:44:22 +09:00
|
|
|
|
2021-10-20 04:33:01 +09:00
|
|
|
/* RESET START */
|
2021-11-15 22:55:23 +09:00
|
|
|
* {
|
|
|
|
-webkit-box-sizing: border-box !important;
|
|
|
|
-moz-box-sizing: border-box !important;
|
|
|
|
box-sizing: border-box !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
body,
|
|
|
|
html {
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
background-attachment: fixed;
|
|
|
|
font-family: 'Open Sans', sans-serif;
|
|
|
|
font-size: var(--default);
|
|
|
|
}
|
|
|
|
|
|
|
|
body,
|
|
|
|
input,
|
|
|
|
textarea,
|
|
|
|
select {
|
|
|
|
color: var(--foreground);
|
|
|
|
fill: var(--foreground);
|
|
|
|
}
|
|
|
|
|
2021-10-30 06:01:28 +09:00
|
|
|
:link,
|
|
|
|
:visited {
|
|
|
|
text-decoration: none;
|
|
|
|
color: currentColor;
|
|
|
|
}
|
|
|
|
a:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2021-10-06 06:44:22 +09:00
|
|
|
|
2021-10-30 06:01:28 +09:00
|
|
|
hr {
|
|
|
|
all: unset;
|
|
|
|
display: block;
|
|
|
|
height: 1px;
|
2021-11-15 22:55:23 +09:00
|
|
|
background-color: var(--border) !important;
|
2021-10-30 06:01:28 +09:00
|
|
|
}
|
2021-10-06 06:44:22 +09:00
|
|
|
|
2021-10-30 06:01:28 +09:00
|
|
|
ol,
|
|
|
|
ul {
|
|
|
|
list-style: none;
|
|
|
|
}
|
2021-10-06 06:44:22 +09:00
|
|
|
|
2021-10-30 06:01:28 +09:00
|
|
|
blockquote,
|
|
|
|
body,
|
|
|
|
fieldset,
|
|
|
|
form,
|
|
|
|
html,
|
|
|
|
input,
|
|
|
|
pre,
|
|
|
|
textarea {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
:link img,
|
|
|
|
:visited img,
|
|
|
|
a img {
|
|
|
|
border: none;
|
|
|
|
}
|
2021-10-06 06:44:22 +09:00
|
|
|
|
2021-10-30 06:01:28 +09:00
|
|
|
address {
|
|
|
|
font-style: normal;
|
|
|
|
}
|
2021-10-06 06:44:22 +09:00
|
|
|
|
2021-10-30 06:01:28 +09:00
|
|
|
:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
2021-10-06 06:44:22 +09:00
|
|
|
|
2021-10-30 06:01:28 +09:00
|
|
|
::-moz-focus-inner {
|
|
|
|
border: 0;
|
|
|
|
}
|
2021-10-06 06:44:22 +09:00
|
|
|
|
2021-10-30 06:01:28 +09:00
|
|
|
details summary > * {
|
|
|
|
margin: unset;
|
|
|
|
padding: unset;
|
|
|
|
}
|
2021-10-06 06:44:22 +09:00
|
|
|
|
2021-10-30 06:01:28 +09:00
|
|
|
details > summary {
|
|
|
|
list-style: none;
|
|
|
|
}
|
2021-10-06 06:44:22 +09:00
|
|
|
|
2021-10-30 06:01:28 +09:00
|
|
|
details > summary::-webkit-details-marker {
|
|
|
|
display: none;
|
|
|
|
}
|
2021-10-06 06:44:22 +09:00
|
|
|
|
2021-10-30 06:01:28 +09:00
|
|
|
/* Internet Explorer <details> graceful degradation */
|
|
|
|
@supports not (-ms-ime-align: auto) {
|
|
|
|
details summary {
|
|
|
|
cursor: pointer;
|
2021-10-20 04:33:01 +09:00
|
|
|
}
|
2021-10-30 06:01:28 +09:00
|
|
|
}
|
2021-10-06 06:44:22 +09:00
|
|
|
|
2021-10-30 06:01:28 +09:00
|
|
|
[hidden] {
|
|
|
|
display: none;
|
|
|
|
}
|
2021-10-06 06:44:22 +09:00
|
|
|
|
2021-10-30 06:01:28 +09:00
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6 {
|
|
|
|
all: unset;
|
|
|
|
display: block;
|
|
|
|
font-family: 'Poppins', sans-serif;
|
|
|
|
}
|
2021-10-06 06:44:22 +09:00
|
|
|
|
2021-10-30 06:01:28 +09:00
|
|
|
h1 {
|
|
|
|
font-size: var(--medium);
|
|
|
|
font-weight: 700;
|
|
|
|
margin-bottom: 16.2px;
|
|
|
|
}
|
2021-10-06 06:44:22 +09:00
|
|
|
|
2021-10-30 06:01:28 +09:00
|
|
|
h2 {
|
|
|
|
font-size: var(--small);
|
|
|
|
font-weight: 600;
|
|
|
|
margin-bottom: 13px;
|
|
|
|
}
|
2021-10-06 06:44:22 +09:00
|
|
|
|
2021-10-30 06:01:28 +09:00
|
|
|
h3 {
|
|
|
|
font-size: var(--default);
|
|
|
|
font-weight: 600;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
2021-10-06 06:44:22 +09:00
|
|
|
|
2021-10-30 06:01:28 +09:00
|
|
|
h4,
|
|
|
|
h5 {
|
|
|
|
font-size: var(--default);
|
|
|
|
font-weight: 400;
|
|
|
|
margin-bottom: 6.1px;
|
|
|
|
}
|
2021-10-06 06:44:22 +09:00
|
|
|
|
2021-10-30 06:01:28 +09:00
|
|
|
p {
|
|
|
|
font-family: 'Open Sans', sans-serif;
|
|
|
|
font-size: var(--default);
|
|
|
|
font-weight: 400;
|
|
|
|
margin: unset;
|
|
|
|
}
|
|
|
|
p:first-line {
|
|
|
|
padding-left: var(--default);
|
|
|
|
}
|
|
|
|
p:first-line {
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
p:not(:first-line) {
|
|
|
|
margin-top: 10px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
2021-10-20 04:33:01 +09:00
|
|
|
|
2021-10-30 06:01:28 +09:00
|
|
|
label {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
2021-10-30 02:14:39 +09:00
|
|
|
|
2021-10-30 06:01:28 +09:00
|
|
|
input[type=password],
|
|
|
|
input[type=text],
|
|
|
|
textarea {
|
|
|
|
font-family: 'Open Sans', sans-serif;
|
|
|
|
font-weight: 400;
|
|
|
|
padding: 4px 6px;
|
|
|
|
}
|
2021-10-20 04:33:01 +09:00
|
|
|
|
2021-10-30 06:01:28 +09:00
|
|
|
ul {
|
|
|
|
text-decoration: none;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
list-style: none;
|
|
|
|
}
|
2021-10-20 04:33:01 +09:00
|
|
|
|
2021-10-30 06:01:28 +09:00
|
|
|
li {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Focus and hover (inset shadow is used in alternative to a border to prevent further redraws) */
|
|
|
|
*:focus {
|
|
|
|
-webkit-box-shadow: var(--shadow-inset-accent);
|
|
|
|
-moz-box-shadow: var(--shadow-inset-accent);
|
|
|
|
box-shadow: var(--shadow-inset-accent);
|
|
|
|
}
|
2021-10-20 04:33:01 +09:00
|
|
|
/* RESET END */
|
|
|
|
|
|
|
|
/* DARK AND LIGHT COLOUR SCHEMES START */
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
/* Colour vars */
|
|
|
|
:root {
|
2021-10-30 06:01:28 +09:00
|
|
|
--foreground: #F0F6F6;
|
|
|
|
--background-hard: #141216;
|
|
|
|
--background-card: #131217;
|
|
|
|
--border: #201F25;
|
2021-11-02 07:09:10 +09:00
|
|
|
--accent: #5ddbcf;
|
2021-10-30 06:01:28 +09:00
|
|
|
--shadow: 0 0 12px 0 #01010166;
|
2021-10-30 02:14:39 +09:00
|
|
|
--shadow-inset-accent: inset 0 0 0 2px var(--accent);
|
2021-10-30 06:01:28 +09:00
|
|
|
--background-checkerboard: repeating-conic-gradient(#ffffff66 0deg 90deg, #ffffff33 0deg 180deg) 0 0/40px 40px round;
|
|
|
|
--gradient: linear-gradient(10deg, var(--border) 0%, transparent 100%) !important;
|
|
|
|
--gradient-backwards: linear-gradient(290deg, var(--border) 0%, var(--background-card) 100%) !important;
|
2021-10-20 04:33:01 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
/* The page background image itself */
|
|
|
|
.background-image {
|
2021-10-30 06:01:28 +09:00
|
|
|
background-color: var(--background-hard);
|
2021-10-20 04:33:01 +09:00
|
|
|
}
|
|
|
|
/* Select element custom dropdown arrow */
|
|
|
|
select {
|
2021-10-30 06:01:28 +09:00
|
|
|
background: var(--gradient), url("../images/select_drop_dark.png") no-repeat center right 5px !important;
|
|
|
|
background-size: cover, 16px !important;
|
2021-10-20 04:33:01 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (prefers-color-scheme: light) {
|
|
|
|
/* Colour vars */
|
|
|
|
:root {
|
2021-10-30 06:01:28 +09:00
|
|
|
--foreground: #09090D;
|
|
|
|
--background-hard: #EBEBEB;
|
|
|
|
--background-card: #F0F0F0;
|
|
|
|
--border: #D5D5D5;
|
|
|
|
--accent: #A22430;
|
|
|
|
--shadow: 0 0 12px 0 #24243416;
|
|
|
|
--shadow-inset-accent: inset 0 0 0 2px var(--accent);
|
|
|
|
--background-checkerboard: repeating-conic-gradient(#ffffff66 0deg 90deg, #ffffff33 0deg 180deg) 0 0/40px 40px round;
|
|
|
|
--gradient: linear-gradient(290deg, var(--border) 0%, transparent 60%) !important;
|
|
|
|
--gradient-backwards: linear-gradient(290deg, var(--border) 0%, var(--background-card) 100%) !important;
|
2021-10-20 04:33:01 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
/* The page background image itself */
|
|
|
|
.background-image {
|
2021-10-30 06:01:28 +09:00
|
|
|
background-color: var(--background-hard);
|
2021-10-20 04:33:01 +09:00
|
|
|
}
|
|
|
|
/* Select element custom dropdown arrow */
|
|
|
|
select {
|
2021-10-30 06:01:28 +09:00
|
|
|
background: var(--gradient), url("../images/select_drop_light.png") no-repeat center right 5px !important;
|
|
|
|
background-size: cover, 16px !important;
|
|
|
|
background-blend-mode: saturation;
|
2021-10-20 04:33:01 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
/* DARK AND LIGHT COLOUR SCHEMES END */
|
|
|
|
|
|
|
|
/* MISCELLANEOUS START */
|
2021-11-15 22:55:23 +09:00
|
|
|
/* Align all icon .svg to center */
|
|
|
|
.icon {
|
|
|
|
align-self: center;
|
|
|
|
}
|
2021-10-20 04:33:01 +09:00
|
|
|
|
2021-11-15 22:55:23 +09:00
|
|
|
/* All active links should pop up, the user should be aware where it is */
|
|
|
|
.active {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2021-10-20 04:33:01 +09:00
|
|
|
|
2021-11-15 22:55:23 +09:00
|
|
|
/* Hide all anchors used for accesskey shortcuts */
|
|
|
|
.anchor-hidden {
|
|
|
|
width: 1px;
|
|
|
|
height: 1px;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
2021-10-20 04:33:01 +09:00
|
|
|
/* MISCELLANEOUS END */
|
2021-10-06 06:44:22 +09:00
|
|
|
|
2021-10-20 04:33:01 +09:00
|
|
|
/* Background image and noise (Firefox-based browsers present banding without it) */
|
|
|
|
.background-image {
|
|
|
|
background-position: center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
-webkit-background-size: 100% 100%;
|
|
|
|
-moz-background-size: 100% 100%;
|
|
|
|
-o-background-size: 100% 100%;
|
|
|
|
background-size: 100% 100%;
|
2020-07-06 05:56:09 +09:00
|
|
|
}
|
|
|
|
|
2021-10-02 00:37:28 +09:00
|
|
|
.accessibility-menu {
|
2021-09-25 23:59:16 +09:00
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
z-index: 999;
|
|
|
|
top: -90%;
|
|
|
|
left: -90%;
|
|
|
|
width: 30%;
|
|
|
|
height: min-content;
|
2021-10-20 04:33:01 +09:00
|
|
|
padding: var(--smaller);
|
|
|
|
border-radius: var(--smaller);
|
2021-10-30 06:01:28 +09:00
|
|
|
background-color: var(--background-hard) !important;
|
|
|
|
border: 2px solid var(--border);
|
2021-09-25 23:59:16 +09:00
|
|
|
}
|
2021-10-06 06:44:22 +09:00
|
|
|
|
2021-10-02 00:37:28 +09:00
|
|
|
.accessibility-menu ul {
|
2021-09-25 23:59:16 +09:00
|
|
|
list-style-type: disc;
|
2021-10-20 04:33:01 +09:00
|
|
|
margin-left: var(--small);
|
2021-09-25 23:59:16 +09:00
|
|
|
}
|
2021-10-02 00:37:28 +09:00
|
|
|
.accessibility-menu:focus-within:not(:active) {
|
2021-10-20 04:33:01 +09:00
|
|
|
top: var(--smaller);
|
|
|
|
left: var(--smaller);
|
2021-08-31 05:01:32 +09:00
|
|
|
}
|
2021-10-06 06:44:22 +09:00
|
|
|
|
2021-10-20 04:33:01 +09:00
|
|
|
.page-header {
|
2021-08-06 01:30:45 +09:00
|
|
|
z-index: 1;
|
2021-10-06 00:03:17 +09:00
|
|
|
font-family: 'Poppins', sans-serif;
|
2021-10-20 04:33:01 +09:00
|
|
|
font-size: var(--medium);
|
|
|
|
height: var(--big);
|
2021-07-21 03:30:49 +09:00
|
|
|
display: flex;
|
2021-10-04 20:17:14 +09:00
|
|
|
justify-content: center;
|
2021-07-21 03:30:49 +09:00
|
|
|
position: fixed;
|
2021-07-28 23:37:54 +09:00
|
|
|
top: 0;
|
2021-08-05 22:46:17 +09:00
|
|
|
width: 100%;
|
2021-07-28 23:37:54 +09:00
|
|
|
align-items: center;
|
2021-10-20 04:33:01 +09:00
|
|
|
padding: var(--smaller);
|
2021-10-30 06:01:28 +09:00
|
|
|
background: var(--gradient) !important;
|
|
|
|
box-shadow: var(--shadow);
|
2021-10-20 04:33:01 +09:00
|
|
|
}
|
|
|
|
/* Allow scrolling all the way to the top ("page-header" has a height of 3rem) */
|
|
|
|
html {
|
|
|
|
scroll-margin-top: var(--big);
|
2020-06-22 07:56:26 +09:00
|
|
|
}
|
2021-10-06 06:44:22 +09:00
|
|
|
|
2021-10-02 00:37:28 +09:00
|
|
|
.header-instance {
|
2021-07-21 03:30:49 +09:00
|
|
|
display: flex;
|
2021-10-04 20:20:31 +09:00
|
|
|
position: absolute;
|
|
|
|
text-align: center;
|
2021-07-21 03:30:49 +09:00
|
|
|
align-items: center;
|
2021-10-04 20:17:14 +09:00
|
|
|
align-self: center;
|
2021-10-06 06:44:22 +09:00
|
|
|
margin-left: auto;
|
2020-06-22 07:56:26 +09:00
|
|
|
}
|
2021-10-06 06:44:22 +09:00
|
|
|
|
|
|
|
.header-instance > * {
|
|
|
|
margin: unset;
|
2021-08-23 00:26:19 +09:00
|
|
|
}
|
2021-10-06 06:44:22 +09:00
|
|
|
|
2021-10-20 04:33:01 +09:00
|
|
|
.header-extra-actions {
|
2021-10-04 20:17:14 +09:00
|
|
|
justify-self: flex-end;
|
2021-10-06 06:44:22 +09:00
|
|
|
margin-left: auto;
|
2021-10-04 20:17:14 +09:00
|
|
|
}
|
2021-10-20 04:33:01 +09:00
|
|
|
.header-extra-actions[open] > *:not(summary) {
|
2021-10-04 20:17:14 +09:00
|
|
|
z-index: 2;
|
|
|
|
position: absolute;
|
|
|
|
top: 100%;
|
|
|
|
right: 0;
|
2021-10-06 00:03:17 +09:00
|
|
|
width: 19vw;
|
2021-10-20 04:33:01 +09:00
|
|
|
font-size: var(--default);
|
|
|
|
border-radius: 0 0 var(--smaller) var(--smaller);
|
|
|
|
padding: var(--smaller);
|
|
|
|
background: var(--background-hard);
|
|
|
|
box-shadow: var(--shadow);
|
2021-10-04 20:17:14 +09:00
|
|
|
}
|
2021-10-06 06:44:22 +09:00
|
|
|
|
2021-10-20 04:33:01 +09:00
|
|
|
.page-content-wrapper {
|
2021-09-08 04:34:45 +09:00
|
|
|
position: relative;
|
2021-09-21 00:06:57 +09:00
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
justify-content: center;
|
2021-10-20 04:33:01 +09:00
|
|
|
padding: var(--smaller) var(--smaller) 0;
|
2021-07-21 03:30:49 +09:00
|
|
|
}
|
2021-10-06 06:44:22 +09:00
|
|
|
|
2021-10-20 04:33:01 +09:00
|
|
|
.page-content {
|
2021-07-22 00:39:55 +09:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2021-10-20 04:33:01 +09:00
|
|
|
padding: var(--smaller) var(--smaller) 0;
|
2021-10-06 06:44:22 +09:00
|
|
|
width: 100%;
|
2021-07-22 03:21:48 +09:00
|
|
|
}
|
2021-10-06 06:44:22 +09:00
|
|
|
|
2021-08-09 21:25:08 +09:00
|
|
|
.markdown-blocks {
|
2021-10-20 04:33:01 +09:00
|
|
|
border-radius: 0 0 var(--smaller) var(--smaller);
|
|
|
|
padding: var(--smaller);
|
2021-11-15 22:55:23 +09:00
|
|
|
background-color: var(--background-card) !important;
|
2021-08-09 21:25:08 +09:00
|
|
|
}
|
2021-10-06 06:44:22 +09:00
|
|
|
|
2021-08-09 21:25:08 +09:00
|
|
|
.markdown-blocks ul {
|
|
|
|
margin-left: 1em;
|
2021-10-06 06:44:22 +09:00
|
|
|
list-style: disc;
|
2021-08-09 21:25:08 +09:00
|
|
|
}
|
2021-10-06 06:44:22 +09:00
|
|
|
|
2021-08-09 21:25:08 +09:00
|
|
|
.markdown-blocks ul li {
|
2021-10-06 06:44:22 +09:00
|
|
|
margin-bottom: 0.2em;
|
2021-08-09 21:25:08 +09:00
|
|
|
}
|
2021-10-06 06:44:22 +09:00
|
|
|
|
2021-08-09 21:25:08 +09:00
|
|
|
.doc-navigation {
|
2021-10-20 04:33:01 +09:00
|
|
|
border-radius: var(--smaller) var(--smaller) 0 0;
|
2021-08-09 21:25:08 +09:00
|
|
|
border-bottom: none;
|
2021-10-20 04:33:01 +09:00
|
|
|
padding: var(--smaller);
|
2021-11-15 22:55:23 +09:00
|
|
|
background-color: var(--background-card) !important;
|
2021-08-09 21:25:08 +09:00
|
|
|
}
|
2021-10-06 06:44:22 +09:00
|
|
|
|
2021-08-09 21:25:08 +09:00
|
|
|
.doc-navigation ul {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-evenly;
|
2021-10-20 04:33:01 +09:00
|
|
|
font-size: var(--medium);
|
2021-08-09 21:25:08 +09:00
|
|
|
}
|
2021-10-06 06:44:22 +09:00
|
|
|
|
2021-09-07 04:51:12 +09:00
|
|
|
#replyform {
|
2021-10-20 04:33:01 +09:00
|
|
|
padding: var(--smaller);
|
|
|
|
margin-top: var(--smaller);
|
|
|
|
border-radius: var(--smaller);
|
2021-09-07 04:51:12 +09:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2021-10-20 04:33:01 +09:00
|
|
|
font-size: var(--default);
|
2021-11-15 22:55:23 +09:00
|
|
|
background-color: var(--background-card) !important;
|
2021-09-07 04:51:12 +09:00
|
|
|
}
|
2021-10-06 06:44:22 +09:00
|
|
|
|
2021-09-07 04:51:12 +09:00
|
|
|
#replyform textarea {
|
|
|
|
width: 100%;
|
|
|
|
resize: vertical;
|
2021-10-20 04:33:01 +09:00
|
|
|
margin-top: var(--smaller);
|
|
|
|
padding: var(--smaller);
|
2021-09-07 04:51:12 +09:00
|
|
|
}
|
2021-10-06 06:44:22 +09:00
|
|
|
|
2021-10-20 04:33:01 +09:00
|
|
|
.page-content-wrapper {
|
|
|
|
top: var(--big);
|
2021-10-06 06:44:22 +09:00
|
|
|
width: 62vw;
|
2021-09-25 23:59:16 +09:00
|
|
|
}
|
2021-10-06 06:44:22 +09:00
|
|
|
|
2021-10-20 04:33:01 +09:00
|
|
|
.header-panel {
|
|
|
|
display: -webkit-box;
|
|
|
|
display: -webkit-flex;
|
|
|
|
display: -moz-box;
|
|
|
|
display: -ms-flexbox;
|
2021-09-07 03:06:28 +09:00
|
|
|
display: flex;
|
2021-10-20 04:33:01 +09:00
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
-webkit-box-direction: normal;
|
|
|
|
-webkit-flex-direction: column;
|
|
|
|
-moz-box-orient: vertical;
|
|
|
|
-moz-box-direction: normal;
|
|
|
|
-ms-flex-direction: column;
|
2021-09-07 03:06:28 +09:00
|
|
|
flex-direction: column;
|
2021-10-06 00:03:17 +09:00
|
|
|
font-family: 'Open Sans', sans-serif;
|
2021-10-20 04:33:01 +09:00
|
|
|
font-size: var(--default);
|
2021-09-07 03:06:28 +09:00
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
2021-10-20 04:33:01 +09:00
|
|
|
margin-top: var(--big);
|
|
|
|
height: -webkit-calc(100% - var(--big));
|
|
|
|
height: -moz-calc(100% - var(--big));
|
|
|
|
height: calc(100% - var(--big));
|
|
|
|
padding: var(--smaller);
|
2021-10-06 06:44:22 +09:00
|
|
|
overflow-y: auto;
|
2021-09-07 03:06:28 +09:00
|
|
|
}
|
2021-10-06 06:44:22 +09:00
|
|
|
|
2021-10-06 00:03:17 +09:00
|
|
|
@media only screen and (min-width: 1281px) {
|
2021-10-20 04:33:01 +09:00
|
|
|
.page-content {
|
|
|
|
padding: var(--smaller) var(--medium) 0;
|
2021-09-21 00:06:57 +09:00
|
|
|
}
|
2021-10-06 06:44:22 +09:00
|
|
|
|
2021-10-20 04:33:01 +09:00
|
|
|
.header-panel {
|
2021-10-06 06:44:22 +09:00
|
|
|
width: 19vw;
|
2021-09-07 03:06:28 +09:00
|
|
|
}
|
2021-10-20 04:33:01 +09:00
|
|
|
|
2021-10-06 06:44:22 +09:00
|
|
|
a[id|="anchor"]:target + .accessibility-target {
|
|
|
|
-webkit-animation-name: highlight;
|
|
|
|
-moz-animation-name: highlight;
|
|
|
|
-o-animation-name: highlight;
|
2021-09-07 03:06:28 +09:00
|
|
|
animation-name: highlight;
|
2021-10-06 06:44:22 +09:00
|
|
|
-webkit-animation-duration: 600ms;
|
|
|
|
-moz-animation-duration: 600ms;
|
|
|
|
-o-animation-duration: 600ms;
|
2021-09-07 03:06:28 +09:00
|
|
|
animation-duration: 600ms;
|
2021-10-06 06:44:22 +09:00
|
|
|
-webkit-animation-timing-function: ease-in-out;
|
|
|
|
-moz-animation-timing-function: ease-in-out;
|
|
|
|
-o-animation-timing-function: ease-in-out;
|
|
|
|
animation-timing-function: ease-in-out;
|
2021-09-07 03:06:28 +09:00
|
|
|
}
|
|
|
|
}
|
2021-10-06 00:03:17 +09:00
|
|
|
@media only screen and (max-width: 1280px) {
|
2021-10-20 04:33:01 +09:00
|
|
|
.page-content-wrapper {
|
2021-10-06 06:44:22 +09:00
|
|
|
width: 100%;
|
2021-09-07 03:06:28 +09:00
|
|
|
}
|
2021-10-06 06:44:22 +09:00
|
|
|
|
2021-10-20 04:33:01 +09:00
|
|
|
.page-content {
|
2021-10-06 06:44:22 +09:00
|
|
|
max-width: 100%;
|
2021-10-04 20:17:14 +09:00
|
|
|
}
|
2021-10-20 04:33:01 +09:00
|
|
|
|
|
|
|
.header-extra-actions[open] > *:not(summary) {
|
2021-10-06 06:44:22 +09:00
|
|
|
width: 100%;
|
2021-09-07 03:06:28 +09:00
|
|
|
}
|
2021-10-20 04:33:01 +09:00
|
|
|
|
|
|
|
#panel-left-toggle:not(:checked) + .header-panel,
|
|
|
|
#panel-right-toggle:not(:checked) + .header-panel {
|
2021-10-06 06:44:22 +09:00
|
|
|
display: none;
|
|
|
|
}
|
2021-10-20 04:33:01 +09:00
|
|
|
#panel-left-toggle:checked + .header-panel,
|
|
|
|
#panel-right-toggle:checked + .header-panel,
|
2021-10-06 06:44:22 +09:00
|
|
|
a[id|="anchor"]:target ~ .panel-content {
|
|
|
|
display: -webkit-box;
|
|
|
|
display: -webkit-flex;
|
|
|
|
display: -moz-box;
|
|
|
|
display: -ms-flexbox;
|
2021-09-09 01:27:28 +09:00
|
|
|
display: flex;
|
2021-09-07 03:06:28 +09:00
|
|
|
width: 100%;
|
2021-10-06 06:44:22 +09:00
|
|
|
-webkit-background-size: 100% 100%;
|
|
|
|
-moz-background-size: 100% 100%;
|
|
|
|
-o-background-size: 100% 100%;
|
2021-09-07 03:06:28 +09:00
|
|
|
background-size: 100% 100%;
|
2021-10-06 06:44:22 +09:00
|
|
|
z-index: auto;
|
2021-10-30 06:01:28 +09:00
|
|
|
background-color: var(--background-hard) !important;
|
2021-09-07 03:33:51 +09:00
|
|
|
}
|
2021-10-02 01:25:51 +09:00
|
|
|
}
|
2021-10-20 04:33:01 +09:00
|
|
|
|
2021-10-06 06:44:22 +09:00
|
|
|
@-webkit-keyframes fadeIn {
|
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
-webkit-transform: translateY(-10px);
|
|
|
|
transform: translateY(-10px);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
opacity: unset;
|
|
|
|
-webkit-transform: none;
|
|
|
|
transform: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@-moz-keyframes fadeIn {
|
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
-moz-transform: translateY(-10px);
|
|
|
|
transform: translateY(-10px);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
opacity: unset;
|
|
|
|
-moz-transform: none;
|
|
|
|
transform: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@-o-keyframes fadeIn {
|
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
-o-transform: translateY(-10px);
|
|
|
|
transform: translateY(-10px);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
opacity: unset;
|
|
|
|
-o-transform: none;
|
|
|
|
transform: none;
|
|
|
|
}
|
|
|
|
}
|
2021-10-02 01:25:51 +09:00
|
|
|
@keyframes fadeIn {
|
|
|
|
0% {
|
|
|
|
opacity: 0;
|
2021-10-06 06:44:22 +09:00
|
|
|
-webkit-transform: translateY(-10px);
|
|
|
|
-moz-transform: translateY(-10px);
|
|
|
|
-o-transform: translateY(-10px);
|
|
|
|
transform: translateY(-10px);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
opacity: unset;
|
|
|
|
-webkit-transform: none;
|
|
|
|
-moz-transform: none;
|
|
|
|
-o-transform: none;
|
|
|
|
transform: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@-webkit-keyframes fadeOut {
|
|
|
|
100% {
|
|
|
|
opacity: 0;
|
|
|
|
-webkit-transform: translateY(-10px);
|
|
|
|
transform: translateY(-10px);
|
|
|
|
}
|
|
|
|
0% {
|
|
|
|
opacity: unset;
|
|
|
|
-webkit-transform: none;
|
|
|
|
transform: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@-moz-keyframes fadeOut {
|
|
|
|
100% {
|
|
|
|
opacity: 0;
|
|
|
|
-moz-transform: translateY(-10px);
|
|
|
|
transform: translateY(-10px);
|
|
|
|
}
|
|
|
|
0% {
|
|
|
|
opacity: unset;
|
|
|
|
-moz-transform: none;
|
|
|
|
transform: none;
|
2021-10-02 01:25:51 +09:00
|
|
|
}
|
2021-10-06 06:44:22 +09:00
|
|
|
}
|
|
|
|
@-o-keyframes fadeOut {
|
2021-10-02 01:25:51 +09:00
|
|
|
100% {
|
2021-10-06 06:44:22 +09:00
|
|
|
opacity: 0;
|
|
|
|
-o-transform: translateY(-10px);
|
|
|
|
transform: translateY(-10px);
|
|
|
|
}
|
|
|
|
0% {
|
2021-10-02 01:25:51 +09:00
|
|
|
opacity: unset;
|
2021-10-06 06:44:22 +09:00
|
|
|
-o-transform: none;
|
|
|
|
transform: none;
|
2021-10-02 01:25:51 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
@keyframes fadeOut {
|
|
|
|
100% {
|
|
|
|
opacity: 0;
|
2021-10-06 06:44:22 +09:00
|
|
|
-webkit-transform: translateY(-10px);
|
|
|
|
-moz-transform: translateY(-10px);
|
|
|
|
-o-transform: translateY(-10px);
|
|
|
|
transform: translateY(-10px);
|
2021-10-02 01:25:51 +09:00
|
|
|
}
|
|
|
|
0% {
|
|
|
|
opacity: unset;
|
2021-10-06 06:44:22 +09:00
|
|
|
-webkit-transform: none;
|
|
|
|
-moz-transform: none;
|
|
|
|
-o-transform: none;
|
|
|
|
transform: none;
|
2021-10-02 01:25:51 +09:00
|
|
|
}
|
|
|
|
}
|
2021-10-06 00:03:17 +09:00
|
|
|
@media (prefers-color-scheme: dark) {
|
2021-10-06 06:44:22 +09:00
|
|
|
@-webkit-keyframes highlight {
|
|
|
|
0% {
|
|
|
|
-webkit-box-shadow: initial;
|
|
|
|
box-shadow: initial;
|
2021-10-20 04:33:01 +09:00
|
|
|
-webkit-border-radius: var(--smaller);
|
|
|
|
border-radius: var(--smaller);
|
2021-10-06 06:44:22 +09:00
|
|
|
}
|
|
|
|
50% {
|
2021-10-28 04:39:34 +09:00
|
|
|
-webkit-border-rns
|
|
|
|
Enable/disabadius: var(--smaller);
|
2021-10-20 04:33:01 +09:00
|
|
|
border-radius: var(--smaller);
|
2021-10-06 06:44:22 +09:00
|
|
|
-webkit-box-shadow: inset 0 20px 40px #FFF;
|
|
|
|
box-shadow: inset 0 20px 40px #FFF;
|
|
|
|
-webkit-transition: -webkit-box-shadow 0.3s ease-in-out;
|
|
|
|
transition: -webkit-box-shadow 0.3s ease-in-out;
|
|
|
|
-o-transition: box-shadow 0.3s ease-in-out;
|
|
|
|
-moz-transition: box-shadow 0.3s ease-in-out, -moz-box-shadow 0.3s ease-in-out;
|
|
|
|
transition: box-shadow 0.3s ease-in-out;
|
|
|
|
transition: box-shadow 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out, -moz-box-shadow 0.3s ease-in-out;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
-webkit-box-shadow: initial;
|
|
|
|
box-shadow: initial;
|
2021-10-20 04:33:01 +09:00
|
|
|
-webkit-border-radius: var(--smaller);
|
|
|
|
border-radius: var(--smaller);
|
2021-10-06 06:44:22 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
@-moz-keyframes highlight {
|
|
|
|
0% {
|
|
|
|
-moz-box-shadow: initial;
|
|
|
|
box-shadow: initial;
|
2021-10-20 04:33:01 +09:00
|
|
|
-moz-border-radius: var(--smaller);
|
|
|
|
border-radius: var(--smaller);
|
2021-10-06 06:44:22 +09:00
|
|
|
}
|
|
|
|
50% {
|
2021-10-20 04:33:01 +09:00
|
|
|
-moz-border-radius: var(--smaller);
|
|
|
|
border-radius: var(--smaller);
|
2021-10-06 06:44:22 +09:00
|
|
|
-moz-box-shadow: inset 0 20px 40px #FFF;
|
|
|
|
box-shadow: inset 0 20px 40px #FFF;
|
|
|
|
-webkit-transition: -webkit-box-shadow 0.3s ease-in-out;
|
|
|
|
transition: -webkit-box-shadow 0.3s ease-in-out;
|
|
|
|
-o-transition: box-shadow 0.3s ease-in-out;
|
|
|
|
-moz-transition: box-shadow 0.3s ease-in-out, -moz-box-shadow 0.3s ease-in-out;
|
|
|
|
transition: box-shadow 0.3s ease-in-out;
|
|
|
|
transition: box-shadow 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out, -moz-box-shadow 0.3s ease-in-out;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
-moz-box-shadow: initial;
|
|
|
|
box-shadow: initial;
|
2021-10-20 04:33:01 +09:00
|
|
|
-moz-border-radius: var(--smaller);
|
|
|
|
border-radius: var(--smaller);
|
2021-10-06 06:44:22 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
@-o-keyframes highlight {
|
|
|
|
0% {
|
|
|
|
box-shadow: initial;
|
2021-10-20 04:33:01 +09:00
|
|
|
border-radius: var(--smaller);
|
2021-10-06 06:44:22 +09:00
|
|
|
}
|
|
|
|
50% {
|
2021-10-20 04:33:01 +09:00
|
|
|
border-radius: var(--smaller);
|
2021-10-06 06:44:22 +09:00
|
|
|
box-shadow: inset 0 20px 40px #FFF;
|
|
|
|
-webkit-transition: -webkit-box-shadow 0.3s ease-in-out;
|
|
|
|
transition: -webkit-box-shadow 0.3s ease-in-out;
|
|
|
|
-o-transition: box-shadow 0.3s ease-in-out;
|
|
|
|
-moz-transition: box-shadow 0.3s ease-in-out, -moz-box-shadow 0.3s ease-in-out;
|
|
|
|
transition: box-shadow 0.3s ease-in-out;
|
|
|
|
transition: box-shadow 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out, -moz-box-shadow 0.3s ease-in-out;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
box-shadow: initial;
|
2021-10-20 04:33:01 +09:00
|
|
|
border-radius: var(--smaller);
|
2021-10-06 06:44:22 +09:00
|
|
|
}
|
|
|
|
}
|
2021-10-06 00:03:17 +09:00
|
|
|
@keyframes highlight {
|
|
|
|
0% {
|
2021-10-06 06:44:22 +09:00
|
|
|
-webkit-box-shadow: initial;
|
|
|
|
-moz-box-shadow: initial;
|
2021-10-06 00:03:17 +09:00
|
|
|
box-shadow: initial;
|
2021-10-20 04:33:01 +09:00
|
|
|
-webkit-border-radius: var(--smaller);
|
|
|
|
-moz-border-radius: var(--smaller);
|
|
|
|
border-radius: var(--smaller);
|
2021-10-06 00:03:17 +09:00
|
|
|
}
|
|
|
|
50% {
|
2021-10-20 04:33:01 +09:00
|
|
|
-webkit-border-radius: var(--smaller);
|
|
|
|
-moz-border-radius: var(--smaller);
|
|
|
|
border-radius: var(--smaller);
|
2021-10-06 06:44:22 +09:00
|
|
|
-webkit-box-shadow: inset 0 20px 40px #FFF;
|
|
|
|
-moz-box-shadow: inset 0 20px 40px #FFF;
|
2021-10-06 00:03:17 +09:00
|
|
|
box-shadow: inset 0 20px 40px #FFF;
|
2021-10-06 06:44:22 +09:00
|
|
|
-webkit-transition: -webkit-box-shadow 0.3s ease-in-out;
|
|
|
|
transition: -webkit-box-shadow 0.3s ease-in-out;
|
|
|
|
-o-transition: box-shadow 0.3s ease-in-out;
|
|
|
|
-moz-transition: box-shadow 0.3s ease-in-out, -moz-box-shadow 0.3s ease-in-out;
|
|
|
|
transition: box-shadow 0.3s ease-in-out;
|
|
|
|
transition: box-shadow 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out, -moz-box-shadow 0.3s ease-in-out;
|
2021-10-06 00:03:17 +09:00
|
|
|
}
|
|
|
|
100% {
|
2021-10-06 06:44:22 +09:00
|
|
|
-webkit-box-shadow: initial;
|
|
|
|
-moz-box-shadow: initial;
|
2021-10-06 00:03:17 +09:00
|
|
|
box-shadow: initial;
|
2021-10-20 04:33:01 +09:00
|
|
|
-webkit-border-radius: var(--smaller);
|
|
|
|
-moz-border-radius: var(--smaller);
|
|
|
|
border-radius: var(--smaller);
|
2021-10-06 00:03:17 +09:00
|
|
|
}
|
2021-10-02 01:25:51 +09:00
|
|
|
}
|
|
|
|
}
|
2021-10-06 00:03:17 +09:00
|
|
|
@media (prefers-color-scheme: light) {
|
2021-10-06 06:44:22 +09:00
|
|
|
@-webkit-keyframes highlight {
|
|
|
|
0% {
|
|
|
|
-webkit-box-shadow: initial;
|
|
|
|
box-shadow: initial;
|
2021-10-20 04:33:01 +09:00
|
|
|
-webkit-border-radius: var(--smaller);
|
|
|
|
border-radius: var(--smaller);
|
2021-10-06 06:44:22 +09:00
|
|
|
}
|
|
|
|
50% {
|
2021-10-20 04:33:01 +09:00
|
|
|
-webkit-border-radius: var(--smaller);
|
|
|
|
border-radius: var(--smaller);
|
2021-10-06 06:44:22 +09:00
|
|
|
-webkit-box-shadow: inset 0 20px 40px #000;
|
|
|
|
box-shadow: inset 0 20px 40px #000;
|
|
|
|
-webkit-transition: -webkit-box-shadow 0.3s ease-in-out;
|
|
|
|
transition: -webkit-box-shadow 0.3s ease-in-out;
|
|
|
|
-o-transition: box-shadow 0.3s ease-in-out;
|
|
|
|
-moz-transition: box-shadow 0.3s ease-in-out, -moz-box-shadow 0.3s ease-in-out;
|
|
|
|
transition: box-shadow 0.3s ease-in-out;
|
|
|
|
transition: box-shadow 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out, -moz-box-shadow 0.3s ease-in-out;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
-webkit-box-shadow: initial;
|
|
|
|
box-shadow: initial;
|
2021-10-20 04:33:01 +09:00
|
|
|
-webkit-border-radius: var(--smaller);
|
|
|
|
border-radius: var(--smaller);
|
2021-10-06 06:44:22 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
@-moz-keyframes highlight {
|
|
|
|
0% {
|
|
|
|
-moz-box-shadow: initial;
|
|
|
|
box-shadow: initial;
|
2021-10-20 04:33:01 +09:00
|
|
|
-moz-border-radius: var(--smaller);
|
|
|
|
border-radius: var(--smaller);
|
2021-10-06 06:44:22 +09:00
|
|
|
}
|
|
|
|
50% {
|
2021-10-20 04:33:01 +09:00
|
|
|
-moz-border-radius: var(--smaller);
|
|
|
|
border-radius: var(--smaller);
|
2021-10-06 06:44:22 +09:00
|
|
|
-moz-box-shadow: inset 0 20px 40px #000;
|
|
|
|
box-shadow: inset 0 20px 40px #000;
|
|
|
|
-webkit-transition: -webkit-box-shadow 0.3s ease-in-out;
|
|
|
|
transition: -webkit-box-shadow 0.3s ease-in-out;
|
|
|
|
-o-transition: box-shadow 0.3s ease-in-out;
|
|
|
|
-moz-transition: box-shadow 0.3s ease-in-out, -moz-box-shadow 0.3s ease-in-out;
|
|
|
|
transition: box-shadow 0.3s ease-in-out;
|
|
|
|
transition: box-shadow 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out, -moz-box-shadow 0.3s ease-in-out;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
-moz-box-shadow: initial;
|
|
|
|
box-shadow: initial;
|
2021-10-20 04:33:01 +09:00
|
|
|
-moz-border-radius: var(--smaller);
|
|
|
|
border-radius: var(--smaller);
|
2021-10-06 06:44:22 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
@-o-keyframes highlight {
|
|
|
|
0% {
|
|
|
|
box-shadow: initial;
|
2021-10-20 04:33:01 +09:00
|
|
|
border-radius: var(--smaller);
|
2021-10-06 06:44:22 +09:00
|
|
|
}
|
|
|
|
50% {
|
2021-10-20 04:33:01 +09:00
|
|
|
border-radius: var(--smaller);
|
2021-10-06 06:44:22 +09:00
|
|
|
box-shadow: inset 0 20px 40px #000;
|
|
|
|
-webkit-transition: -webkit-box-shadow 0.3s ease-in-out;
|
|
|
|
transition: -webkit-box-shadow 0.3s ease-in-out;
|
|
|
|
-o-transition: box-shadow 0.3s ease-in-out;
|
|
|
|
-moz-transition: box-shadow 0.3s ease-in-out, -moz-box-shadow 0.3s ease-in-out;
|
|
|
|
transition: box-shadow 0.3s ease-in-out;
|
|
|
|
transition: box-shadow 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out, -moz-box-shadow 0.3s ease-in-out;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
box-shadow: initial;
|
2021-10-20 04:33:01 +09:00
|
|
|
border-radius: var(--smaller);
|
2021-10-06 06:44:22 +09:00
|
|
|
}
|
|
|
|
}
|
2021-10-06 00:03:17 +09:00
|
|
|
@keyframes highlight {
|
|
|
|
0% {
|
2021-10-06 06:44:22 +09:00
|
|
|
-webkit-box-shadow: initial;
|
|
|
|
-moz-box-shadow: initial;
|
2021-10-06 00:03:17 +09:00
|
|
|
box-shadow: initial;
|
2021-10-20 04:33:01 +09:00
|
|
|
-webkit-border-radius: var(--smaller);
|
|
|
|
-moz-border-radius: var(--smaller);
|
|
|
|
border-radius: var(--smaller);
|
2021-10-06 00:03:17 +09:00
|
|
|
}
|
|
|
|
50% {
|
2021-10-20 04:33:01 +09:00
|
|
|
-webkit-border-radius: var(--smaller);
|
|
|
|
-moz-border-radius: var(--smaller);
|
|
|
|
border-radius: var(--smaller);
|
2021-10-06 06:44:22 +09:00
|
|
|
-webkit-box-shadow: inset 0 20px 40px #000;
|
|
|
|
-moz-box-shadow: inset 0 20px 40px #000;
|
2021-10-06 00:03:17 +09:00
|
|
|
box-shadow: inset 0 20px 40px #000;
|
2021-10-06 06:44:22 +09:00
|
|
|
-webkit-transition: -webkit-box-shadow 0.3s ease-in-out;
|
|
|
|
transition: -webkit-box-shadow 0.3s ease-in-out;
|
|
|
|
-o-transition: box-shadow 0.3s ease-in-out;
|
|
|
|
-moz-transition: box-shadow 0.3s ease-in-out, -moz-box-shadow 0.3s ease-in-out;
|
|
|
|
transition: box-shadow 0.3s ease-in-out;
|
|
|
|
transition: box-shadow 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out, -moz-box-shadow 0.3s ease-in-out;
|
2021-10-06 00:03:17 +09:00
|
|
|
}
|
|
|
|
100% {
|
2021-10-06 06:44:22 +09:00
|
|
|
-webkit-box-shadow: initial;
|
|
|
|
-moz-box-shadow: initial;
|
2021-10-06 00:03:17 +09:00
|
|
|
box-shadow: initial;
|
2021-10-20 04:33:01 +09:00
|
|
|
-webkit-border-radius: var(--smaller);
|
|
|
|
-moz-border-radius: var(--smaller);
|
|
|
|
border-radius: var(--smaller);
|
2021-10-06 00:03:17 +09:00
|
|
|
}
|
|
|
|
}
|
2021-10-28 04:39:34 +09:00
|
|
|
}
|