2022-08-04 20:14:25 +08:00
|
|
|
.markdown {
|
|
|
|
blockquote.shortcode {
|
|
|
|
overflow: auto;
|
2022-08-06 01:20:31 +08:00
|
|
|
white-space: nowrap;
|
2022-08-08 03:08:45 +08:00
|
|
|
font-family: ui-monospace, "Fira Mono", "DejaVu Sans Mono", Menlo, Consolas,
|
|
|
|
"Liberation Mono", Monaco, "Lucida Console", monospace;
|
2022-08-04 20:14:25 +08:00
|
|
|
}
|
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6 {
|
|
|
|
margin-top: 0;
|
2022-08-08 03:08:45 +08:00
|
|
|
padding-top: $padding-16;
|
|
|
|
}
|
|
|
|
details {
|
|
|
|
margin-top: $padding-16;
|
2022-08-04 20:14:25 +08:00
|
|
|
}
|
|
|
|
}
|
2022-08-06 21:35:16 +08:00
|
|
|
|
2022-08-07 13:35:09 +08:00
|
|
|
figure.audio-player audio {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2022-08-07 17:40:13 +08:00
|
|
|
figure.image {
|
2022-08-07 19:34:32 +08:00
|
|
|
border: $padding-1 solid var(--gray-200);
|
|
|
|
border-radius: $border-radius;
|
2022-08-07 17:40:13 +08:00
|
|
|
img[data-thumbnail] {
|
2022-08-07 21:27:06 +08:00
|
|
|
border-top-left-radius: $border-radius;
|
|
|
|
border-top-right-radius: $border-radius;
|
2022-08-07 17:40:13 +08:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: 100%;
|
|
|
|
}
|
|
|
|
figcaption {
|
|
|
|
text-align: center;
|
|
|
|
}
|
2022-08-07 17:23:16 +08:00
|
|
|
}
|
|
|
|
|
2022-08-07 13:35:09 +08:00
|
|
|
.grid-list {
|
|
|
|
display: grid;
|
2022-08-08 03:08:45 +08:00
|
|
|
grid-template-columns: repeat(auto-fill, minmax(9em, 1fr));
|
2022-08-06 21:35:16 +08:00
|
|
|
}
|