diff options
| author | Joe Carstairs <me@joeac.net> | 2025-12-11 14:22:12 +0000 |
|---|---|---|
| committer | Joe Carstairs <me@joeac.net> | 2025-12-11 14:22:12 +0000 |
| commit | cc9a580fe6a1f188de9ca89778cf113984c4327b (patch) | |
| tree | 918f2814bb59f0845a6f3615804325734096dc37 /website/public/css/feed.css | |
| parent | a3d0ee043885fdc18bafdd895f8f0c469e7e8a13 (diff) | |
style changes
Diffstat (limited to 'website/public/css/feed.css')
| -rw-r--r-- | website/public/css/feed.css | 27 |
1 files changed, 23 insertions, 4 deletions
diff --git a/website/public/css/feed.css b/website/public/css/feed.css index fc665ec..d2c5a03 100644 --- a/website/public/css/feed.css +++ b/website/public/css/feed.css @@ -1,16 +1,35 @@ /* 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); + margin-block-start: var(--spacing-block-md); } .h-feed .h-entry { - margin-block-start: var(--spacing-block-xs); + display: flex; + flex-direction: column; +} + +.h-feed .h-entry + .h-entry { + margin-block-start: var(--spacing-block-md); +} + +.h-feed .h-entry > * { + order: 1; + margin: 0; +} + +.h-feed .h-entry .dt-published { + order: 0; + font-size: var(--font-size-sm); +} + +.h-feed .h-entry .p-name { + font-size: var(--font-size-md); } .h-feed .full-feed-link { - text-align: end; + text-align: end; } .h-feed :is(a.full-feed-link, .full-feed-link a)::after { - content: ' >' + content: " >"; } |
