2021-10-05 16:03:17 +01:00
|
|
|
|
@import url("../fonts/poppins/poppins.css");
|
|
|
|
|
@import url("../fonts/opensans/opensans.css");
|
2021-12-07 15:33:02 +00:00
|
|
|
|
@import url("reset.css");
|
2021-10-01 17:25:51 +01:00
|
|
|
|
@import url("widgets/buttons.css");
|
|
|
|
|
@import url("widgets/sections.css");
|
2021-09-11 21:31:56 +01:00
|
|
|
|
|
2021-12-25 17:31:16 +00:00
|
|
|
|
html {
|
|
|
|
|
scroll-margin-top: var(--xxl);
|
|
|
|
|
}
|
2021-11-15 14:07:05 +00:00
|
|
|
|
|
|
|
|
|
@media(prefers-color-scheme:dark) {
|
2021-11-29 17:50:30 +00:00
|
|
|
|
select:not([multiple]) {
|
2021-11-15 14:07:05 +00: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-29 17:50:30 +00:00
|
|
|
|
select:not([multiple]) {
|
2021-11-15 14:07:05 +00: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-19 20:33:01 +01:00
|
|
|
|
}
|
2021-11-15 14:07:05 +00:00
|
|
|
|
}
|
2021-11-15 13:55:23 +00:00
|
|
|
|
.icon {
|
|
|
|
|
align-self: center;
|
2021-11-27 20:45:24 +00:00
|
|
|
|
fill: var(--foreground);
|
2021-11-15 13:55:23 +00:00
|
|
|
|
}
|
|
|
|
|
.active {
|
2021-12-08 15:16:30 +00:00
|
|
|
|
font-size: 1.1em;
|
|
|
|
|
font-family: 'Poppins', sans-serif;
|
|
|
|
|
font-weight: 600;
|
2021-11-15 13:55:23 +00:00
|
|
|
|
}
|
|
|
|
|
.anchor-hidden {
|
|
|
|
|
width: 1px;
|
|
|
|
|
height: 1px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
2021-10-01 16:37:28 +01:00
|
|
|
|
.accessibility-menu {
|
2021-09-25 15:59:16 +01:00
|
|
|
|
display: block;
|
|
|
|
|
position: absolute;
|
|
|
|
|
z-index: 999;
|
|
|
|
|
top: -90%;
|
|
|
|
|
left: -90%;
|
|
|
|
|
width: 30%;
|
|
|
|
|
height: min-content;
|
2021-12-23 21:29:46 +00:00
|
|
|
|
padding: var(--s);
|
|
|
|
|
border-radius: var(--s);
|
2021-10-29 22:01:28 +01:00
|
|
|
|
background-color: var(--background-hard) !important;
|
|
|
|
|
border: 2px solid var(--border);
|
2021-09-25 15:59:16 +01: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
|
|
|
|
}
|
2021-10-01 16:37:28 +01:00
|
|
|
|
.accessibility-menu:focus-within:not(:active) {
|
2021-12-23 21:29:46 +00:00
|
|
|
|
top: var(--s);
|
|
|
|
|
left: var(--s);
|
2021-08-30 21:01:32 +01:00
|
|
|
|
}
|
2021-12-25 17:31:16 +00:00
|
|
|
|
.heading-no-margin {
|
|
|
|
|
margin-bottom: initial;
|
2021-12-06 19:07:59 +00:00
|
|
|
|
}
|
2021-10-19 20:33:01 +01:00
|
|
|
|
.page-header {
|
2021-08-05 17:30:45 +01:00
|
|
|
|
z-index: 1;
|
2021-12-26 15:55:49 +00:00
|
|
|
|
display: inline-flex;
|
2021-10-04 12:17:14 +01:00
|
|
|
|
justify-content: center;
|
2021-07-20 19:30:49 +01:00
|
|
|
|
position: fixed;
|
2021-07-28 15:37:54 +01:00
|
|
|
|
top: 0;
|
2021-12-26 15:55:49 +00:00
|
|
|
|
align-items: baseline;
|
|
|
|
|
font-family: 'Poppins',sans-serif;
|
|
|
|
|
height: var(--xxl);
|
2021-12-23 21:29:46 +00:00
|
|
|
|
padding: var(--s);
|
2021-10-29 22:01:28 +01:00
|
|
|
|
background: var(--gradient) !important;
|
|
|
|
|
box-shadow: var(--shadow);
|
2021-10-19 20:33:01 +01:00
|
|
|
|
}
|
2021-10-01 16:37:28 +01:00
|
|
|
|
.header-instance {
|
2021-07-20 19:30:49 +01:00
|
|
|
|
display: flex;
|
2021-10-04 12:20:31 +01:00
|
|
|
|
position: absolute;
|
|
|
|
|
text-align: center;
|
2021-07-20 19:30:49 +01:00
|
|
|
|
align-items: center;
|
2021-10-04 12:17:14 +01:00
|
|
|
|
align-self: center;
|
2021-10-05 22:44:22 +01:00
|
|
|
|
margin-left: auto;
|
2020-06-21 23:56:26 +01:00
|
|
|
|
}
|
2021-12-07 15:33:02 +00:00
|
|
|
|
.header-instance > * {
|
2021-10-05 22:44:22 +01:00
|
|
|
|
margin: unset;
|
2021-08-22 16:26:19 +01:00
|
|
|
|
}
|
2021-10-19 20:33:01 +01:00
|
|
|
|
.header-extra-actions {
|
2021-10-04 12:17:14 +01:00
|
|
|
|
justify-self: flex-end;
|
2021-10-05 22:44:22 +01:00
|
|
|
|
margin-left: auto;
|
2021-10-04 12:17:14 +01:00
|
|
|
|
}
|
2021-12-07 15:33:02 +00:00
|
|
|
|
.header-extra-actions[open] > *:not(summary) {
|
2021-10-04 12:17:14 +01:00
|
|
|
|
z-index: 2;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 100%;
|
|
|
|
|
right: 0;
|
2021-12-06 19:07:59 +00:00
|
|
|
|
width: 16.5vw;
|
2021-12-23 21:29:46 +00:00
|
|
|
|
border-radius: 0 0 var(--s) var(--s);
|
|
|
|
|
padding: var(--s);
|
2021-10-19 20:33:01 +01:00
|
|
|
|
background: var(--background-hard);
|
|
|
|
|
box-shadow: var(--shadow);
|
2021-10-04 12:17:14 +01:00
|
|
|
|
}
|
2021-12-06 19:07:59 +00:00
|
|
|
|
.header-panel {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
font-family: 'Open Sans',sans-serif;
|
|
|
|
|
position: fixed;
|
|
|
|
|
top: 0;
|
2021-12-23 21:29:46 +00:00
|
|
|
|
margin-top: var(--xxl);
|
|
|
|
|
height: calc(100% - var(--xxl));
|
|
|
|
|
padding: var(--s);
|
2021-12-06 19:07:59 +00:00
|
|
|
|
overflow-y: auto;
|
|
|
|
|
}
|
2021-12-07 15:33:02 +00:00
|
|
|
|
.panel-content {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
2021-10-19 20:33:01 +01:00
|
|
|
|
.page-content-wrapper {
|
2021-09-07 20:34:45 +01:00
|
|
|
|
position: relative;
|
2021-12-23 21:29:46 +00:00
|
|
|
|
top: var(--xxl);
|
2021-09-20 16:06:57 +01:00
|
|
|
|
margin-left: auto;
|
|
|
|
|
margin-right: auto;
|
|
|
|
|
justify-content: center;
|
2021-12-23 21:29:46 +00:00
|
|
|
|
padding: var(--s) var(--s) 0;
|
2021-07-20 19:30:49 +01:00
|
|
|
|
}
|
2021-10-19 20:33:01 +01:00
|
|
|
|
.page-content {
|
2021-07-21 16:39:55 +01:00
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2021-10-05 22:44:22 +01:00
|
|
|
|
width: 100%;
|
2021-07-21 19:21:48 +01:00
|
|
|
|
}
|
2021-08-09 13:25:08 +01:00
|
|
|
|
.markdown-blocks {
|
2021-12-23 21:29:46 +00:00
|
|
|
|
border-radius: 0 0 var(--s) var(--s);
|
|
|
|
|
padding: var(--s);
|
2021-11-15 13:55:23 +00:00
|
|
|
|
background-color: var(--background-card) !important;
|
2021-08-09 13:25:08 +01:00
|
|
|
|
}
|
|
|
|
|
.markdown-blocks ul {
|
|
|
|
|
margin-left: 1em;
|
2021-10-05 22:44:22 +01:00
|
|
|
|
list-style: disc;
|
2021-08-09 13:25:08 +01:00
|
|
|
|
}
|
|
|
|
|
.markdown-blocks ul li {
|
2021-12-07 15:33:02 +00:00
|
|
|
|
margin-bottom: 0.2em;
|
2021-08-09 13:25:08 +01:00
|
|
|
|
}
|
|
|
|
|
.doc-navigation {
|
2021-12-23 21:29:46 +00:00
|
|
|
|
border-radius: var(--s) var(--s) 0 0;
|
2021-11-15 14:07:05 +00:00
|
|
|
|
border-bottom: 0;
|
2021-12-23 21:29:46 +00:00
|
|
|
|
padding: var(--s);
|
2021-11-15 13:55:23 +00:00
|
|
|
|
background-color: var(--background-card) !important;
|
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
|
|
|
|
}
|
|
|
|
|
.footer ul {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
width: 100%;
|
|
|
|
|
justify-content: space-evenly;
|
2021-09-06 20:51:12 +01:00
|
|
|
|
}
|
2021-12-26 15:55:49 +00:00
|
|
|
|
/* < 720p */
|
2021-11-15 14:07:05 +00:00
|
|
|
|
@media only screen and (max-width:1280px) {
|
2021-12-06 19:07:59 +00:00
|
|
|
|
.page-header {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
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
|
|
|
|
}
|
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
|
|
|
|
}
|
2021-12-07 15:33:02 +00:00
|
|
|
|
.header-extra-actions[open] > *:not(summary) {
|
2021-10-05 22:44:22 +01:00
|
|
|
|
width: 100%;
|
2021-09-06 19:06:28 +01:00
|
|
|
|
}
|
2021-12-07 15:33:02 +00:00
|
|
|
|
#panel-left-toggle:not(:checked)+.header-panel,
|
|
|
|
|
#panel-right-toggle:not(:checked)+.header-panel {
|
2021-10-05 22:44:22 +01:00
|
|
|
|
display: none;
|
|
|
|
|
}
|
2021-12-07 15:33:02 +00:00
|
|
|
|
#panel-left-toggle:checked+.header-panel,
|
|
|
|
|
#panel-right-toggle:checked+.header-panel,
|
|
|
|
|
a[id|="anchor"]:target ~ .panel-content {
|
2021-09-08 17:27:28 +01:00
|
|
|
|
display: flex;
|
2021-09-06 19:06:28 +01:00
|
|
|
|
width: 100%;
|
|
|
|
|
background-size: 100% 100%;
|
2021-10-05 22:44:22 +01:00
|
|
|
|
z-index: auto;
|
2021-10-29 22:01:28 +01:00
|
|
|
|
background-color: var(--background-hard) !important;
|
2021-09-06 19:33:51 +01:00
|
|
|
|
}
|
2021-10-01 17:25:51 +01:00
|
|
|
|
}
|
2021-12-06 19:07:59 +00: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-26 18:04:28 +00:00
|
|
|
|
align-self: center;
|
2021-12-06 19:07:59 +00:00
|
|
|
|
}
|
|
|
|
|
.header-panel {
|
|
|
|
|
width: 11vw;
|
|
|
|
|
}
|
|
|
|
|
.page-content-wrapper {
|
|
|
|
|
width: 44vw;
|
|
|
|
|
}
|
|
|
|
|
}
|
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;
|
|
|
|
|
}
|
|
|
|
|
}
|
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
|
|
|
|
}
|
|
|
|
|
}
|
2021-10-05 16:03:17 +01:00
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
|
@keyframes highlight {
|
|
|
|
|
0% {
|
|
|
|
|
box-shadow: initial;
|
2021-12-23 21:29:46 +00:00
|
|
|
|
border-radius: var(--s);
|
2021-10-05 16:03:17 +01:00
|
|
|
|
}
|
|
|
|
|
50% {
|
2021-12-23 21:29:46 +00:00
|
|
|
|
border-radius: var(--s);
|
2021-10-05 16:03:17 +01:00
|
|
|
|
box-shadow: inset 0 20px 40px #FFF;
|
2021-10-05 22:44:22 +01:00
|
|
|
|
transition: box-shadow 0.3s ease-in-out;
|
2021-12-02 22:54:18 +00:00
|
|
|
|
z-index: 666;
|
2021-10-05 16:03:17 +01:00
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
box-shadow: initial;
|
2021-12-23 21:29:46 +00:00
|
|
|
|
border-radius: var(--s);
|
2021-10-05 16:03:17 +01:00
|
|
|
|
}
|
2021-10-01 17:25:51 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
2021-10-05 16:03:17 +01:00
|
|
|
|
@media (prefers-color-scheme: light) {
|
|
|
|
|
@keyframes highlight {
|
|
|
|
|
0% {
|
|
|
|
|
box-shadow: initial;
|
2021-12-23 21:29:46 +00:00
|
|
|
|
border-radius: var(--s);
|
2021-10-05 16:03:17 +01:00
|
|
|
|
}
|
|
|
|
|
50% {
|
2021-12-23 21:29:46 +00:00
|
|
|
|
border-radius: var(--s);
|
2021-10-05 16:03:17 +01:00
|
|
|
|
box-shadow: inset 0 20px 40px #000;
|
2021-10-05 22:44:22 +01:00
|
|
|
|
transition: box-shadow 0.3s ease-in-out;
|
2021-10-05 16:03:17 +01:00
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
box-shadow: initial;
|
2021-12-23 21:29:46 +00:00
|
|
|
|
border-radius: var(--s);
|
2021-10-05 16:03:17 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
2021-10-27 20:39:34 +01:00
|
|
|
|
}
|