2021-12-07 01:04:45 +01:00
|
|
|
:root {
|
2022-03-11 04:58:24 +01:00
|
|
|
--md-primary-fg-color: #338574;
|
|
|
|
--md-primary-fg-color--light: #338574;
|
|
|
|
--md-primary-fg-color--dark: #338574;
|
2021-12-07 01:04:45 +01:00
|
|
|
}
|
|
|
|
|
2021-12-05 05:37:50 +01:00
|
|
|
.md-header__button.md-logo :is(img, svg) {
|
|
|
|
width: unset !important;
|
|
|
|
}
|
|
|
|
|
2022-01-01 17:45:18 +01:00
|
|
|
.md-typeset h4 {
|
|
|
|
font-weight: 500 !important;
|
|
|
|
margin: 0 !important;
|
|
|
|
font-size: 1.1em !important;
|
|
|
|
}
|
|
|
|
|
2021-12-20 03:01:49 +01:00
|
|
|
.admonition {
|
|
|
|
font-size: .74rem !important;
|
|
|
|
}
|
|
|
|
|
2021-12-04 14:56:46 +01:00
|
|
|
article {
|
|
|
|
padding-bottom: 50px;
|
|
|
|
}
|
|
|
|
|
2021-12-07 01:04:45 +01:00
|
|
|
figure img, figure video {
|
2021-12-02 05:08:12 +01:00
|
|
|
border-radius: 7px;
|
2021-12-05 21:57:37 +01:00
|
|
|
}
|
|
|
|
|
2021-12-07 01:04:45 +01:00
|
|
|
body[data-md-color-scheme="default"] figure img, body[data-md-color-scheme="default"] figure video {
|
|
|
|
filter: drop-shadow(3px 3px 3px #ccc);
|
|
|
|
}
|
|
|
|
|
|
|
|
body[data-md-color-scheme="slate"] figure img, body[data-md-color-scheme="slate"] figure video {
|
|
|
|
filter: drop-shadow(3px 3px 3px #1a1313);
|
|
|
|
}
|
|
|
|
|
2021-12-05 21:57:37 +01:00
|
|
|
figure video {
|
|
|
|
width: 100%;
|
|
|
|
max-height: 450px;
|
2021-12-02 05:08:12 +01:00
|
|
|
}
|
2021-12-02 18:04:22 +01:00
|
|
|
|
|
|
|
.remove-md-box {
|
|
|
|
background: none;
|
|
|
|
border: none;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.remove-md-box td {
|
|
|
|
padding: 0 10px
|
|
|
|
}
|
2021-12-05 05:37:50 +01:00
|
|
|
|
|
|
|
/* Lightbox; thanks to https://yossiabramov.com/blog/vanilla-js-lightbox */
|
|
|
|
|
|
|
|
.screenshots {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.screenshots img {
|
|
|
|
height: 230px;
|
|
|
|
margin: 3px;
|
|
|
|
border-radius: 5px;
|
|
|
|
filter: drop-shadow(2px 2px 2px #ddd);
|
|
|
|
}
|
|
|
|
|
|
|
|
.screenshots .nowrap {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lightbox {
|
|
|
|
opacity: 0;
|
|
|
|
visibility: hidden;
|
|
|
|
position: fixed;
|
|
|
|
left:0;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
z-index: -1;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
transition: all 0.15s ease-in;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lightbox.show {
|
|
|
|
background-color: rgba(0,0,0, 0.75);
|
|
|
|
opacity: 1;
|
|
|
|
visibility: visible;
|
|
|
|
z-index: 1000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lightbox img {
|
|
|
|
max-width: 90%;
|
|
|
|
max-height: 90%;
|
|
|
|
filter: drop-shadow(5px 5px 10px #222);
|
|
|
|
border-radius: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lightbox .close-lightbox {
|
|
|
|
cursor: pointer;
|
|
|
|
position: absolute;
|
|
|
|
top: 30px;
|
|
|
|
right: 30px;
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lightbox .close-lightbox::after,
|
|
|
|
.lightbox .close-lightbox::before {
|
|
|
|
content: '';
|
|
|
|
width: 3px;
|
|
|
|
height: 20px;
|
|
|
|
background-color: #ddd;
|
|
|
|
position: absolute;
|
|
|
|
border-radius: 5px;
|
|
|
|
transform: rotate(45deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
.lightbox .close-lightbox::before {
|
|
|
|
transform: rotate(-45deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
.lightbox .close-lightbox:hover::after,
|
|
|
|
.lightbox .close-lightbox:hover::before {
|
|
|
|
background-color: #fff;
|
|
|
|
}
|