Files
nathanupchurch.com/public/css/fleuron.css
2026-04-20 12:07:55 -05:00

21 lines
512 B
CSS

/* Add fleuron to last <p> in section */
section > p:not(blockquote > p, p.isso-post-action):last-child:after {
content: "\2766";
display: inline;
font-size: var(--step-1);
}
/* Add fleuron after <p> in article when footnotes are present */
p:has(+ hr.footnotes-sep):after {
content: "\2766";
display: inline;
font-size: var(--step-1);
}
/* Add fleuron after last <p> in article */
article.post > p:not(blockquote > p):last-child:after {
content: "\2766";
display: inline;
font-size: var(--step-1);
}