2022-06-29 09:40:23 +00:00
|
|
|
|
$tldr-border: 1px solid #333;
|
|
|
|
|
$tldr-color: #e8e8d1;
|
|
|
|
|
$tldr-label-color: #fff696;
|
|
|
|
|
$table-bg: lighten($color-bg, 2%);
|
|
|
|
|
$table-bg-alt: lighten($table-bg, 2%);
|
|
|
|
|
$table-border-color: $color-very-light-border;
|
2023-09-11 15:02:41 +00:00
|
|
|
|
$toc-border: 1px solid #333;
|
|
|
|
|
$toc-color: #d1e3e8;
|
|
|
|
|
$toc-label-color: #96ccff;
|
|
|
|
|
$caption-color: #bfb1bf;
|
2023-09-12 11:05:38 +00:00
|
|
|
|
$bold-color: #e7aeff;
|
|
|
|
|
$h2-color: #fffdca;
|
|
|
|
|
$h3-color: #d1c5f8;
|
2022-06-29 09:40:23 +00:00
|
|
|
|
|
|
|
|
|
.meta {
|
|
|
|
|
font-family: $iosevka;
|
|
|
|
|
font-size: $text-small;
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-11 15:02:41 +00:00
|
|
|
|
.tldr,
|
|
|
|
|
.toc {
|
2022-06-29 09:40:23 +00:00
|
|
|
|
border: $tldr-border;
|
|
|
|
|
padding: 5pt 10pt;
|
2023-09-11 15:02:41 +00:00
|
|
|
|
margin-top: 14pt;
|
2022-06-29 09:40:23 +00:00
|
|
|
|
padding-top: 11pt;
|
|
|
|
|
font-family: $iosevka;
|
|
|
|
|
position: relative;
|
|
|
|
|
font-size: 11pt;
|
|
|
|
|
color: $tldr-color;
|
|
|
|
|
line-height: 1.6;
|
|
|
|
|
|
|
|
|
|
@media (max-width: $screen-width) {
|
|
|
|
|
border-left: 0;
|
|
|
|
|
border-right: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
|
color: $tldr-label-color;
|
|
|
|
|
content: "TL;DR";
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
position: absolute;
|
|
|
|
|
font-size: 8pt;
|
|
|
|
|
left: 4pt;
|
|
|
|
|
top: -8pt;
|
|
|
|
|
border: $tldr-border;
|
|
|
|
|
background-color: $color-bg;
|
|
|
|
|
padding: 1pt 5pt;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.content {
|
2023-09-12 11:05:38 +00:00
|
|
|
|
h2 {
|
|
|
|
|
color: $h2-color;
|
|
|
|
|
}
|
|
|
|
|
h3 {
|
|
|
|
|
color: $h3-color;
|
|
|
|
|
}
|
|
|
|
|
strong {
|
|
|
|
|
color: $bold-color;
|
|
|
|
|
}
|
2022-06-29 09:40:23 +00:00
|
|
|
|
table {
|
|
|
|
|
border-collapse: collapse;
|
|
|
|
|
background-color: $table-bg;
|
|
|
|
|
td,
|
|
|
|
|
th {
|
|
|
|
|
padding: 5pt 10pt;
|
|
|
|
|
border: 1px solid $table-border-color;
|
|
|
|
|
font-size: 11pt;
|
|
|
|
|
line-height: 1.5;
|
|
|
|
|
}
|
|
|
|
|
tr:nth-child(even) {
|
|
|
|
|
background-color: $table-bg-alt;
|
|
|
|
|
}
|
|
|
|
|
th {
|
|
|
|
|
font-family: $iosevka;
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-09-11 15:02:41 +00:00
|
|
|
|
figure {
|
2023-09-12 11:05:38 +00:00
|
|
|
|
text-align: center;
|
2023-09-11 15:02:41 +00:00
|
|
|
|
margin: 0;
|
|
|
|
|
padding-top: 1rem;
|
|
|
|
|
}
|
|
|
|
|
figure a,
|
|
|
|
|
figure a:visited,
|
|
|
|
|
figure a:hover {
|
|
|
|
|
background: none;
|
|
|
|
|
}
|
|
|
|
|
figure img {
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
}
|
|
|
|
|
figcaption p {
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-style: italic;
|
|
|
|
|
padding-left: 5pt;
|
|
|
|
|
color: $caption-color;
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
2023-09-13 19:59:07 +00:00
|
|
|
|
video {
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
}
|
2023-09-11 15:02:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.toc {
|
|
|
|
|
--link-color: #f591e6;
|
|
|
|
|
&:before {
|
|
|
|
|
color: $toc-label-color;
|
|
|
|
|
content: "Table of contents";
|
|
|
|
|
border: $toc-border;
|
|
|
|
|
background-color: $color-bg;
|
|
|
|
|
}
|
|
|
|
|
ul {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding-left: 0;
|
|
|
|
|
list-style-type: none;
|
|
|
|
|
}
|
|
|
|
|
ul li::before {
|
|
|
|
|
content: "├─ ";
|
|
|
|
|
font-family: "Courier", monospace;
|
|
|
|
|
}
|
|
|
|
|
ul li:last-child::before {
|
|
|
|
|
content: "└─ ";
|
|
|
|
|
}
|
|
|
|
|
ul li ul li::before {
|
|
|
|
|
content: "│ ├─ ";
|
|
|
|
|
}
|
|
|
|
|
ul li ul li:last-child::before {
|
|
|
|
|
content: "│ └─ ";
|
|
|
|
|
}
|
|
|
|
|
ul li ul li a {
|
|
|
|
|
--link-color: #a991f5;
|
|
|
|
|
}
|
2023-09-12 11:05:38 +00:00
|
|
|
|
ul li:last-child ul li::before {
|
|
|
|
|
content: " ├─ ";
|
|
|
|
|
}
|
2023-09-11 15:02:41 +00:00
|
|
|
|
ul li:last-child ul li:last-child::before {
|
|
|
|
|
content: " └─ ";
|
|
|
|
|
}
|
2022-06-29 09:40:23 +00:00
|
|
|
|
}
|