welpo 6a4f4244e0
feat: add inline image CSS class
Regular images get a `block` display to be centered.
This allows vertically aligned inline images.

Related: #314
2024-05-15 21:59:21 +02:00

51 lines
674 B
SCSS

figure {
display: inline-block;
box-sizing: border-box;
margin: 0;
max-width: 100%;
height: auto;
}
figcaption {
color: var(--meta-color);
font-size: 0.72rem;
font-family: var(--serif-font);
text-align: center;
}
img {
display: block;
margin: 0 auto;
max-width: 100%;
height: auto;
}
img.inline {
display: inline;
vertical-align: middle;
}
figure h4 {
margin: 0;
margin-bottom: 1em;
font-size: 1rem;
}
figure h4::before {
content: "";
}
.img-dark {
display: none;
}
[data-theme="dark"] {
.img-dark {
display: block;
}
.img-light {
display: none;
}
}