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