Add a section shortcode to enable wrapping a chunk of a post in a <section> Add a section.flow class that removes grid from the section Fix up the about styles so that the paragraph that Hugo wraps the <img> in behaves sensibly when floated Fix the alt text in the circular_image shortcode
17 lines
286 B
CSS
17 lines
286 B
CSS
@layer page {
|
|
main > section > p:not(:last-child) {
|
|
margin-bottom: var(--body-item-spacing);
|
|
}
|
|
|
|
p:has(img#me) {
|
|
display: inline;
|
|
grid-column: unset;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
img#me {
|
|
margin: 0;
|
|
shape-outside: circle(55%);
|
|
width: min(200px, 25%);
|
|
}
|
|
}
|