2022-01-24 03:56:57 +09:00
|
|
|
@import url(root.css);
|
|
|
|
@import url(reset.css);
|
|
|
|
@import url(widgets/buttons.css);
|
|
|
|
@import url(widgets/sections.css);
|
|
|
|
|
2021-12-26 02:31:16 +09:00
|
|
|
html {
|
2022-01-22 03:02:27 +09:00
|
|
|
font-family: 'Open Sans', sans-serif;
|
2021-12-26 02:31:16 +09:00
|
|
|
scroll-margin-top: var(--xxl);
|
|
|
|
}
|
2021-11-15 23:07:05 +09:00
|
|
|
|
2022-02-08 23:12:59 +09:00
|
|
|
html,
|
|
|
|
html > * {
|
|
|
|
background-image: url('images/noise.png');
|
|
|
|
background-blend-mode: overlay;
|
|
|
|
}
|
|
|
|
|
2022-01-27 11:17:41 +09:00
|
|
|
hr {
|
|
|
|
margin-top: var(--s);
|
|
|
|
margin-bottom: var(--s);
|
|
|
|
}
|
|
|
|
|
2021-11-15 22:55:23 +09:00
|
|
|
.icon {
|
2022-01-29 03:21:04 +09:00
|
|
|
vertical-align: center;
|
2021-11-28 05:45:24 +09:00
|
|
|
fill: var(--foreground);
|
2022-01-29 03:21:04 +09:00
|
|
|
height: 1em;
|
|
|
|
width: 1em;
|
2021-11-15 22:55:23 +09:00
|
|
|
}
|
2022-01-13 01:29:02 +09:00
|
|
|
|
2021-11-15 22:55:23 +09:00
|
|
|
.active {
|
2022-01-29 03:21:04 +09:00
|
|
|
font: 600 1em Poppins, sans-serif;
|
2021-11-15 22:55:23 +09:00
|
|
|
}
|
2022-01-13 01:29:02 +09:00
|
|
|
|
2021-11-15 22:55:23 +09:00
|
|
|
.anchor-hidden {
|
|
|
|
height: 1px;
|
|
|
|
overflow: hidden;
|
2022-01-22 03:02:27 +09:00
|
|
|
width: 1px;
|
2021-11-15 22:55:23 +09:00
|
|
|
}
|
2022-01-13 01:29:02 +09:00
|
|
|
|
2021-10-02 00:37:28 +09:00
|
|
|
.accessibility-menu {
|
2022-01-22 03:02:27 +09:00
|
|
|
background-color: var(--background-hard) !important;
|
|
|
|
border: 2px solid var(--border);
|
|
|
|
border-radius: var(--s);
|
2021-09-25 23:59:16 +09:00
|
|
|
display: block;
|
2022-01-22 03:02:27 +09:00
|
|
|
height: min-content;
|
|
|
|
left: -90%;
|
|
|
|
padding: var(--s);
|
2021-09-25 23:59:16 +09:00
|
|
|
position: absolute;
|
|
|
|
top: -90%;
|
|
|
|
width: 30%;
|
2022-01-22 03:02:27 +09:00
|
|
|
z-index: 999;
|
2021-09-25 23:59:16 +09:00
|
|
|
}
|
2022-01-13 01:29:02 +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
|
|
|
}
|
2022-01-13 01:29:02 +09:00
|
|
|
|
2021-10-02 00:37:28 +09:00
|
|
|
.accessibility-menu:focus-within:not(:active) {
|
2021-12-24 06:29:46 +09:00
|
|
|
left: var(--s);
|
2022-01-22 03:02:27 +09:00
|
|
|
top: var(--s);
|
2021-08-31 05:01:32 +09:00
|
|
|
}
|
2022-01-13 01:29:02 +09:00
|
|
|
|
2021-10-20 04:33:01 +09:00
|
|
|
.page-header {
|
2022-01-29 03:21:04 +09:00
|
|
|
align-items: center;
|
2022-01-22 03:02:27 +09:00
|
|
|
background: var(--gradient) !important;
|
|
|
|
box-shadow: var(--shadow);
|
2022-01-20 03:21:51 +09:00
|
|
|
display: flex;
|
2021-12-27 00:55:49 +09:00
|
|
|
height: var(--xxl);
|
2021-12-24 06:29:46 +09:00
|
|
|
padding: var(--s);
|
2022-01-22 03:02:27 +09:00
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
z-index: 1;
|
2021-10-20 04:33:01 +09:00
|
|
|
}
|
2022-01-13 01:29:02 +09:00
|
|
|
|
2021-10-02 00:37:28 +09:00
|
|
|
.header-instance {
|
2022-01-20 03:21:51 +09:00
|
|
|
flex: 1;
|
2022-01-22 03:02:27 +09:00
|
|
|
text-align: center;
|
2020-06-22 07:56:26 +09:00
|
|
|
}
|
2022-01-13 01:29:02 +09:00
|
|
|
|
2022-01-20 03:21:51 +09:00
|
|
|
.header-instance * {
|
2021-10-06 06:44:22 +09:00
|
|
|
margin: unset;
|
2021-08-23 00:26:19 +09:00
|
|
|
}
|
2022-01-13 01:29:02 +09:00
|
|
|
|
2021-10-20 04:33:01 +09:00
|
|
|
.page-content-wrapper {
|
2022-01-22 03:02:27 +09:00
|
|
|
justify-content: center;
|
2021-09-21 00:06:57 +09:00
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2021-12-24 06:29:46 +09:00
|
|
|
padding: var(--s) var(--s) 0;
|
2022-01-22 03:02:27 +09:00
|
|
|
position: relative;
|
|
|
|
top: var(--xxl);
|
2021-07-21 03:30:49 +09:00
|
|
|
}
|
2022-01-13 01:29:02 +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;
|
2022-01-22 03:02:27 +09:00
|
|
|
margin-top: var(--s);
|
2021-10-06 06:44:22 +09:00
|
|
|
width: 100%;
|
2021-07-22 03:21:48 +09:00
|
|
|
}
|
2022-01-13 01:29:02 +09:00
|
|
|
|
2021-08-09 21:25:08 +09:00
|
|
|
.markdown-blocks {
|
2022-01-22 03:02:27 +09:00
|
|
|
background-color: var(--background-card) !important;
|
2021-12-24 06:29:46 +09:00
|
|
|
border-radius: 0 0 var(--s) var(--s);
|
|
|
|
padding: var(--s);
|
2021-08-09 21:25:08 +09:00
|
|
|
}
|
2022-01-13 01:29:02 +09:00
|
|
|
|
2021-08-09 21:25:08 +09:00
|
|
|
.markdown-blocks ul {
|
2021-10-06 06:44:22 +09:00
|
|
|
list-style: disc;
|
2022-01-22 03:02:27 +09:00
|
|
|
margin-left: 1em;
|
2021-08-09 21:25:08 +09:00
|
|
|
}
|
2022-01-13 01:29:02 +09:00
|
|
|
|
2021-08-09 21:25:08 +09:00
|
|
|
.markdown-blocks ul li {
|
2022-01-20 08:54:45 +09:00
|
|
|
margin-bottom: .2em;
|
2021-08-09 21:25:08 +09:00
|
|
|
}
|
2022-01-13 01:29:02 +09:00
|
|
|
|
2021-08-09 21:25:08 +09:00
|
|
|
.doc-navigation {
|
2022-01-22 03:02:27 +09:00
|
|
|
background-color: var(--background-card) !important;
|
2021-11-15 23:07:05 +09:00
|
|
|
border-bottom: 0;
|
2022-01-22 03:02:27 +09:00
|
|
|
border-radius: var(--s) var(--s) 0 0;
|
2021-12-24 06:29:46 +09:00
|
|
|
padding: var(--s);
|
2021-08-09 21:25:08 +09:00
|
|
|
}
|
2022-01-13 01:29:02 +09:00
|
|
|
|
2021-08-09 21:25:08 +09:00
|
|
|
.doc-navigation ul {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-evenly;
|
2021-12-27 06:46:54 +09:00
|
|
|
}
|
2021-12-30 04:31:28 +09:00
|
|
|
|
2022-01-20 03:21:51 +09:00
|
|
|
.section-panel {
|
2022-01-22 03:02:27 +09:00
|
|
|
padding: var(--s);
|
2022-01-20 03:21:51 +09:00
|
|
|
position: fixed;
|
|
|
|
top: var(--xxl);
|
|
|
|
}
|
|
|
|
|
|
|
|
.section-panel-left {
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.section-panel-right {
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
|
2022-01-29 03:21:04 +09:00
|
|
|
.panel-left-icon, .panel-right-icon {
|
|
|
|
display: inherit;
|
|
|
|
}
|
|
|
|
|
2022-01-20 03:21:51 +09:00
|
|
|
.section-panel .panel-content {
|
|
|
|
display: block;
|
2022-01-27 10:53:30 +09:00
|
|
|
height: calc(100vh - var(--xxl));
|
|
|
|
overflow: auto;
|
2022-01-20 03:21:51 +09:00
|
|
|
}
|
|
|
|
|
2022-01-13 01:29:02 +09:00
|
|
|
@media only screen and (max-width: 1280px) {
|
2021-12-07 04:07:59 +09:00
|
|
|
.page-header {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2022-01-13 01:29:02 +09:00
|
|
|
|
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
|
|
|
}
|
2022-01-13 01:29:02 +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
|
|
|
}
|
2022-01-13 01:29:02 +09:00
|
|
|
|
2022-01-20 03:21:51 +09:00
|
|
|
label[for|="toggle-panel"] {
|
|
|
|
cursor: pointer;
|
2021-09-07 03:06:28 +09:00
|
|
|
}
|
2022-01-13 01:29:02 +09:00
|
|
|
|
2022-01-20 03:21:51 +09:00
|
|
|
input[id|="toggle-panel"] {
|
|
|
|
position: absolute;
|
|
|
|
top: -100%;
|
|
|
|
}
|
|
|
|
|
2022-01-22 03:02:27 +09:00
|
|
|
#toggle-panel-left:not(:checked) ~ .section-panel-left, #toggle-panel-right:not(:checked) ~ .section-panel-right {
|
2021-10-06 06:44:22 +09:00
|
|
|
display: none;
|
|
|
|
}
|
2022-01-13 01:29:02 +09:00
|
|
|
|
2022-01-22 03:02:27 +09:00
|
|
|
#toggle-panel-left:checked ~ .section-panel-left, #toggle-panel-right:checked ~ .section-panel-right {
|
2022-01-20 03:21:51 +09:00
|
|
|
left: 0;
|
2022-01-22 03:02:27 +09:00
|
|
|
width: 100vw;
|
2022-01-27 10:53:30 +09:00
|
|
|
z-index: auto;
|
2022-02-08 23:12:59 +09:00
|
|
|
background-color: var(--background-hard);
|
2022-01-24 04:46:47 +09:00
|
|
|
box-shadow: var(--shadow);
|
2021-09-07 03:33:51 +09:00
|
|
|
}
|
2021-10-02 01:25:51 +09:00
|
|
|
}
|
2022-01-13 01:29:02 +09:00
|
|
|
|
|
|
|
@media only screen and (min-width: 1281px) {
|
2021-12-07 04:07:59 +09:00
|
|
|
.page-header {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2022-01-13 01:29:02 +09:00
|
|
|
|
2022-01-22 03:02:27 +09:00
|
|
|
label[for|="toggle-panel"], input[id|="toggle-panel"] {
|
|
|
|
display: none !important;
|
2022-01-20 03:21:51 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.section-panel {
|
2021-12-07 04:07:59 +09:00
|
|
|
width: 17vw;
|
|
|
|
}
|
2022-01-13 01:29:02 +09:00
|
|
|
|
2021-12-07 04:07:59 +09:00
|
|
|
.page-content-wrapper {
|
|
|
|
width: 66vw;
|
|
|
|
}
|
2022-01-13 01:29:02 +09:00
|
|
|
|
|
|
|
a[id|="anchor"]:target + .accessibility-target {
|
2021-12-07 04:07:59 +09:00
|
|
|
animation-duration: 600ms;
|
2022-01-22 03:02:27 +09:00
|
|
|
animation-name: highlight;
|
2021-12-07 04:07:59 +09:00
|
|
|
animation-timing-function: ease-in-out;
|
|
|
|
}
|
|
|
|
}
|
2022-01-13 01:29:02 +09:00
|
|
|
|
|
|
|
@media only screen and (min-width: 1921px) {
|
2021-12-07 04:07:59 +09:00
|
|
|
.page-header {
|
2021-12-27 03:04:28 +09:00
|
|
|
align-self: center;
|
2022-01-22 03:02:27 +09:00
|
|
|
width: 66vw;
|
2021-12-07 04:07:59 +09:00
|
|
|
}
|
2022-01-13 01:29:02 +09:00
|
|
|
|
2022-01-22 03:02:27 +09:00
|
|
|
label[for|="toggle-panel"], input[id|="toggle-panel"] {
|
|
|
|
display: none !important;
|
2022-01-20 03:21:51 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
.section-panel {
|
2021-12-07 04:07:59 +09:00
|
|
|
width: 11vw;
|
|
|
|
}
|
2022-01-13 01:29:02 +09:00
|
|
|
|
2022-01-20 03:21:51 +09:00
|
|
|
.section-panel-left {
|
|
|
|
left: 17vw;
|
|
|
|
}
|
|
|
|
|
|
|
|
.section-panel-right {
|
|
|
|
right: 17vw;
|
|
|
|
}
|
|
|
|
|
2021-12-07 04:07:59 +09:00
|
|
|
.page-content-wrapper {
|
|
|
|
width: 44vw;
|
|
|
|
}
|
|
|
|
}
|
2022-01-13 01:29:02 +09:00
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
2022-01-13 01:29:02 +09:00
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
2022-01-13 01:29:02 +09:00
|
|
|
|
2022-01-20 08:54:45 +09:00
|
|
|
@keyframes highlight {
|
|
|
|
0% {
|
|
|
|
border-radius: var(--s);
|
2022-01-22 03:02:27 +09:00
|
|
|
box-shadow: initial;
|
2022-01-20 08:54:45 +09:00
|
|
|
}
|
|
|
|
50% {
|
|
|
|
border-radius: var(--s);
|
|
|
|
box-shadow: inset 0 20px 40px #FFF;
|
|
|
|
transition: box-shadow .3s ease-in-out;
|
|
|
|
z-index: 666;
|
2021-10-02 01:25:51 +09:00
|
|
|
}
|
2022-01-20 08:54:45 +09:00
|
|
|
100% {
|
|
|
|
border-radius: var(--s);
|
2022-01-22 03:02:27 +09:00
|
|
|
box-shadow: initial;
|
2022-01-20 08:54:45 +09:00
|
|
|
}
|
|
|
|
0% {
|
|
|
|
border-radius: var(--s);
|
2022-01-22 03:02:27 +09:00
|
|
|
box-shadow: initial;
|
2022-01-20 08:54:45 +09:00
|
|
|
}
|
|
|
|
50% {
|
|
|
|
border-radius: var(--s);
|
|
|
|
box-shadow: inset 0 20px 40px #000;
|
|
|
|
transition: box-shadow .3s ease-in-out;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
border-radius: var(--s);
|
2022-01-22 03:02:27 +09:00
|
|
|
box-shadow: initial;
|
2021-10-06 00:03:17 +09:00
|
|
|
}
|
2022-01-22 03:02:27 +09:00
|
|
|
}
|