1
0
Fork 0
faulty.equipment/themes/fesite/assets/scss/post.scss

168 lines
2.8 KiB
SCSS
Raw Normal View History

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;
2023-09-18 08:51:06 +00:00
$update-label-color: #96ccff;
$update-border: 1px solid #333;
2023-09-11 15:02:41 +00:00
$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,
2023-09-18 08:51:06 +00:00
.toc,
.update {
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;
line-height: 1.6;
@media (max-width: $screen-width) {
border-left: 0;
border-right: 0;
}
&:before {
font-weight: bold;
position: absolute;
font-size: 8pt;
left: 4pt;
top: -8pt;
background-color: $color-bg;
padding: 1pt 5pt;
}
2023-09-18 08:51:06 +00:00
p:first-child {
margin-top: 0;
}
p:last-child {
margin-bottom: 0;
}
}
.tldr {
color: $tldr-color;
&:before {
color: $tldr-label-color;
content: "TL;DR";
}
2022-06-29 09:40:23 +00:00
}
.content {
2023-09-12 11:05:38 +00:00
h2 {
color: $h2-color;
}
h3 {
color: $h3-color;
}
2023-09-19 07:34:33 +00:00
h4 {
font-size: 14pt;
}
2023-09-12 11:05:38 +00:00
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
}
2023-09-18 08:51:06 +00:00
.update {
&:before {
color: $update-label-color;
content: "Update " attr(data-title);
border: $update-border;
}
}
2023-09-23 23:44:02 +00:00
.highlight pre {
overflow-x: auto;
}