2021-10-06 00:03:17 +09:00
|
|
|
|
@import url("../fonts/poppins/poppins.css");
|
|
|
|
|
@import url("../fonts/opensans/opensans.css");
|
2021-12-08 00:33:02 +09:00
|
|
|
|
@import url("reset.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-12-26 02:31:16 +09:00
|
|
|
|
html {
|
|
|
|
|
scroll-margin-top: var(--xxl);
|
|
|
|
|
}
|
2021-11-15 23:07:05 +09:00
|
|
|
|
|
|
|
|
|
@media(prefers-color-scheme:dark) {
|
2021-11-30 02:50:30 +09:00
|
|
|
|
select:not([multiple]) {
|
2021-11-15 23:07:05 +09:00
|
|
|
|
background: var(--gradient),url("../images/select_drop_dark.png") no-repeat center right 5px !important;
|
|
|
|
|
background-size: cover,16px !important;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
@media(prefers-color-scheme:light) {
|
2021-11-30 02:50:30 +09:00
|
|
|
|
select:not([multiple]) {
|
2021-11-15 23:07:05 +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
|
|
|
|
}
|
2021-11-15 23:07:05 +09:00
|
|
|
|
}
|
2021-11-15 22:55:23 +09:00
|
|
|
|
.icon {
|
|
|
|
|
align-self: center;
|
2021-11-28 05:45:24 +09:00
|
|
|
|
fill: var(--foreground);
|
2021-11-15 22:55:23 +09:00
|
|
|
|
}
|
|
|
|
|
.active {
|
2021-12-09 00:16:30 +09:00
|
|
|
|
font-size: 1.1em;
|
|
|
|
|
font-family: 'Poppins', sans-serif;
|
|
|
|
|
font-weight: 600;
|
2021-11-15 22:55:23 +09:00
|
|
|
|
}
|
|
|
|
|
.anchor-hidden {
|
|
|
|
|
width: 1px;
|
|
|
|
|
height: 1px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
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-12-24 06:29:46 +09:00
|
|
|
|
padding: var(--s);
|
|
|
|
|
border-radius: var(--s);
|
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-02 00:37:28 +09:00
|
|
|
|
.accessibility-menu ul {
|
2021-09-25 23:59:16 +09:00
|
|
|
|
list-style-type: disc;
|
2021-12-24 06:29:46 +09:00
|
|
|
|
margin-left: var(--m);
|
2021-09-25 23:59:16 +09:00
|
|
|
|
}
|
2021-10-02 00:37:28 +09:00
|
|
|
|
.accessibility-menu:focus-within:not(:active) {
|
2021-12-24 06:29:46 +09:00
|
|
|
|
top: var(--s);
|
|
|
|
|
left: var(--s);
|
2021-08-31 05:01:32 +09:00
|
|
|
|
}
|
2021-12-26 02:31:16 +09:00
|
|
|
|
.heading-no-margin {
|
|
|
|
|
margin-bottom: initial;
|
2021-12-07 04:07:59 +09:00
|
|
|
|
}
|
2021-10-20 04:33:01 +09:00
|
|
|
|
.page-header {
|
2021-08-06 01:30:45 +09:00
|
|
|
|
z-index: 1;
|
2021-12-27 00:55:49 +09:00
|
|
|
|
display: inline-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-12-27 00:55:49 +09:00
|
|
|
|
align-items: baseline;
|
|
|
|
|
font-family: 'Poppins',sans-serif;
|
|
|
|
|
height: var(--xxl);
|
2021-12-24 06:29:46 +09:00
|
|
|
|
padding: var(--s);
|
2021-10-30 06:01:28 +09:00
|
|
|
|
background: var(--gradient) !important;
|
|
|
|
|
box-shadow: var(--shadow);
|
2021-10-20 04:33:01 +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-12-08 00:33:02 +09:00
|
|
|
|
.header-instance > * {
|
2021-10-06 06:44:22 +09:00
|
|
|
|
margin: unset;
|
2021-08-23 00:26:19 +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-12-08 00:33:02 +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-12-07 04:07:59 +09:00
|
|
|
|
width: 16.5vw;
|
2021-12-24 06:29:46 +09:00
|
|
|
|
border-radius: 0 0 var(--s) var(--s);
|
|
|
|
|
padding: var(--s);
|
2021-10-20 04:33:01 +09:00
|
|
|
|
background: var(--background-hard);
|
|
|
|
|
box-shadow: var(--shadow);
|
2021-10-04 20:17:14 +09:00
|
|
|
|
}
|
2021-12-07 04:07:59 +09:00
|
|
|
|
.header-panel {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
font-family: 'Open Sans',sans-serif;
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 0;
|
2021-12-24 06:29:46 +09:00
|
|
|
|
margin-top: var(--xxl);
|
|
|
|
|
height: calc(100% - var(--xxl));
|
|
|
|
|
padding: var(--s);
|
2021-12-07 04:07:59 +09:00
|
|
|
|
overflow-y: auto;
|
|
|
|
|
}
|
2021-12-08 00:33:02 +09:00
|
|
|
|
.panel-content {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
2021-10-20 04:33:01 +09:00
|
|
|
|
.page-content-wrapper {
|
2021-09-08 04:34:45 +09:00
|
|
|
|
position: relative;
|
2021-12-24 06:29:46 +09:00
|
|
|
|
top: var(--xxl);
|
2021-09-21 00:06:57 +09:00
|
|
|
|
margin-left: auto;
|
|
|
|
|
margin-right: auto;
|
|
|
|
|
justify-content: center;
|
2021-12-24 06:29:46 +09:00
|
|
|
|
padding: var(--s) var(--s) 0;
|
2021-07-21 03:30:49 +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-06 06:44:22 +09:00
|
|
|
|
width: 100%;
|
2021-07-22 03:21:48 +09:00
|
|
|
|
}
|
2021-08-09 21:25:08 +09:00
|
|
|
|
.markdown-blocks {
|
2021-12-24 06:29:46 +09:00
|
|
|
|
border-radius: 0 0 var(--s) var(--s);
|
|
|
|
|
padding: var(--s);
|
2021-11-15 22:55:23 +09:00
|
|
|
|
background-color: var(--background-card) !important;
|
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
|
|
|
|
}
|
|
|
|
|
.markdown-blocks ul li {
|
2021-12-08 00:33:02 +09:00
|
|
|
|
margin-bottom: 0.2em;
|
2021-08-09 21:25:08 +09:00
|
|
|
|
}
|
|
|
|
|
.doc-navigation {
|
2021-12-24 06:29:46 +09:00
|
|
|
|
border-radius: var(--s) var(--s) 0 0;
|
2021-11-15 23:07:05 +09:00
|
|
|
|
border-bottom: 0;
|
2021-12-24 06:29:46 +09:00
|
|
|
|
padding: var(--s);
|
2021-11-15 22:55:23 +09:00
|
|
|
|
background-color: var(--background-card) !important;
|
2021-08-09 21:25:08 +09:00
|
|
|
|
}
|
|
|
|
|
.doc-navigation ul {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-evenly;
|
2021-09-07 04:51:12 +09:00
|
|
|
|
}
|
2021-12-27 00:55:49 +09:00
|
|
|
|
/* < 720p */
|
2021-11-15 23:07:05 +09:00
|
|
|
|
@media only screen and (max-width:1280px) {
|
2021-12-07 04:07:59 +09:00
|
|
|
|
.page-header {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
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-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-12-08 00:33:02 +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-12-08 00:33:02 +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-12-08 00:33:02 +09:00
|
|
|
|
#panel-left-toggle:checked+.header-panel,
|
|
|
|
|
#panel-right-toggle:checked+.header-panel,
|
|
|
|
|
a[id|="anchor"]:target ~ .panel-content {
|
2021-09-09 01:27:28 +09:00
|
|
|
|
display: flex;
|
2021-09-07 03:06:28 +09:00
|
|
|
|
width: 100%;
|
|
|
|
|
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-12-07 04:07:59 +09:00
|
|
|
|
/* > 720p */
|
|
|
|
|
@media only screen and (min-width:1281px) {
|
|
|
|
|
/*
|
|
|
|
|
* Using the Van de Graaf Canon and Tschichold’s recommended 2:3 page-size ratio
|
|
|
|
|
* Except we use the whole page
|
|
|
|
|
*
|
|
|
|
|
* > .page-content-wrapper
|
|
|
|
|
* 100% * 2/3 = 66%
|
|
|
|
|
*
|
|
|
|
|
* > .header-panel
|
|
|
|
|
* 100 - 66% = 34%
|
|
|
|
|
* 34% / 2 = 17%
|
|
|
|
|
*/
|
|
|
|
|
.page-header {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
.header-panel {
|
|
|
|
|
width: 17vw;
|
|
|
|
|
}
|
|
|
|
|
.page-content-wrapper {
|
|
|
|
|
width: 66vw;
|
|
|
|
|
}
|
|
|
|
|
a[id|="anchor"]:target+.accessibility-target {
|
|
|
|
|
animation-name: highlight;
|
|
|
|
|
animation-duration: 600ms;
|
|
|
|
|
animation-timing-function: ease-in-out;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/* > 1080p */
|
|
|
|
|
@media only screen and (min-width:1921px) {
|
|
|
|
|
/*
|
|
|
|
|
* Using the Van de Graaf Canon and Tschichold’s recommended 2:3 page-size ratio
|
|
|
|
|
*
|
|
|
|
|
* 100% * 2/3 = 66%
|
|
|
|
|
*
|
|
|
|
|
* > .page-content-wrapper
|
|
|
|
|
* 66% * 2/3 = 44%
|
|
|
|
|
*
|
|
|
|
|
* > .header-panel
|
|
|
|
|
* 66% - 44% = 22%
|
|
|
|
|
* 22% / 2 = 11%
|
|
|
|
|
*/
|
|
|
|
|
.page-header {
|
|
|
|
|
width: 66vw;
|
2021-12-27 03:04:28 +09:00
|
|
|
|
align-self: center;
|
2021-12-07 04:07:59 +09:00
|
|
|
|
}
|
|
|
|
|
.header-panel {
|
|
|
|
|
width: 11vw;
|
|
|
|
|
}
|
|
|
|
|
.page-content-wrapper {
|
|
|
|
|
width: 44vw;
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-10-02 01:25:51 +09:00
|
|
|
|
@keyframes fadeIn {
|
|
|
|
|
0% {
|
|
|
|
|
opacity: 0;
|
2021-10-06 06:44:22 +09:00
|
|
|
|
transform: translateY(-10px);
|
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
opacity: unset;
|
|
|
|
|
transform: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-10-02 01:25:51 +09:00
|
|
|
|
@keyframes fadeOut {
|
|
|
|
|
100% {
|
|
|
|
|
opacity: 0;
|
2021-10-06 06:44:22 +09:00
|
|
|
|
transform: translateY(-10px);
|
2021-10-02 01:25:51 +09:00
|
|
|
|
}
|
|
|
|
|
0% {
|
|
|
|
|
opacity: unset;
|
2021-10-06 06:44:22 +09:00
|
|
|
|
transform: none;
|
2021-10-02 01:25:51 +09:00
|
|
|
|
}
|
|
|
|
|
}
|
2021-10-06 00:03:17 +09:00
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
|
@keyframes highlight {
|
|
|
|
|
0% {
|
|
|
|
|
box-shadow: initial;
|
2021-12-24 06:29:46 +09:00
|
|
|
|
border-radius: var(--s);
|
2021-10-06 00:03:17 +09:00
|
|
|
|
}
|
|
|
|
|
50% {
|
2021-12-24 06:29:46 +09:00
|
|
|
|
border-radius: var(--s);
|
2021-10-06 00:03:17 +09:00
|
|
|
|
box-shadow: inset 0 20px 40px #FFF;
|
2021-10-06 06:44:22 +09:00
|
|
|
|
transition: box-shadow 0.3s ease-in-out;
|
2021-12-03 07:54:18 +09:00
|
|
|
|
z-index: 666;
|
2021-10-06 00:03:17 +09:00
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
box-shadow: initial;
|
2021-12-24 06:29:46 +09:00
|
|
|
|
border-radius: var(--s);
|
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) {
|
|
|
|
|
@keyframes highlight {
|
|
|
|
|
0% {
|
|
|
|
|
box-shadow: initial;
|
2021-12-24 06:29:46 +09:00
|
|
|
|
border-radius: var(--s);
|
2021-10-06 00:03:17 +09:00
|
|
|
|
}
|
|
|
|
|
50% {
|
2021-12-24 06:29:46 +09:00
|
|
|
|
border-radius: var(--s);
|
2021-10-06 00:03:17 +09:00
|
|
|
|
box-shadow: inset 0 20px 40px #000;
|
2021-10-06 06:44:22 +09:00
|
|
|
|
transition: box-shadow 0.3s ease-in-out;
|
2021-10-06 00:03:17 +09:00
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
box-shadow: initial;
|
2021-12-24 06:29:46 +09:00
|
|
|
|
border-radius: var(--s);
|
2021-10-06 00:03:17 +09:00
|
|
|
|
}
|
|
|
|
|
}
|
2021-10-28 04:39:34 +09:00
|
|
|
|
}
|