17 lines
353 B
CSS
17 lines
353 B
CSS
/* Assumes there is at most one level of subheading for sub-dividing entries */
|
|
.h-feed :is(h2, h3, h4, h5, h6) {
|
|
margin-block-start: var(--spacing-block-md);
|
|
}
|
|
|
|
.h-feed .h-entry {
|
|
margin-block-start: var(--spacing-block-xs);
|
|
}
|
|
|
|
.h-feed .full-feed-link {
|
|
text-align: end;
|
|
}
|
|
|
|
.h-feed :is(a.full-feed-link, .full-feed-link a)::after {
|
|
content: ' >'
|
|
}
|