diff options
| author | (quasar) nebula <qznebula@protonmail.com> | 2026-03-26 16:33:44 -0300 |
|---|---|---|
| committer | (quasar) nebula <qznebula@protonmail.com> | 2026-03-26 16:33:44 -0300 |
| commit | fc41a2f553aa1d74cc36a91f274210cc5a872c4b (patch) | |
| tree | 67c5ed1a2eddb5a5e646fb03576b952bd3b0a23c /src/static/css | |
| parent | 7bdd6293e3b9d0cc7a4e7e4c9ab06cd990af4ad9 (diff) | |
content, css: generateContentEntry: float-right date
But like, better this time. It bottom aligns.
Diffstat (limited to 'src/static/css')
| -rw-r--r-- | src/static/css/features.css | 64 |
1 files changed, 48 insertions, 16 deletions
diff --git a/src/static/css/features.css b/src/static/css/features.css index a1e43e76..4a64dbdf 100644 --- a/src/static/css/features.css +++ b/src/static/css/features.css @@ -357,6 +357,40 @@ max-width: 250px; margin: 15px 0 10px 20px; } + + .content-entry-heading { + display: flex; + + margin-left: 15px; + margin-right: min(calc(8vw - 35px), 45px); + padding-left: calc(5px + 1.25ch); + padding-right: 1ch; + padding-bottom: 0.2em; + } + + .content-entry-heading-inner-box { + flex-grow: 1; + } + + .content-entry-accent { + margin-left: 0.25ch; + } + + .content-entry-heading .float-spacer { + float: right; + display: block; + height: calc(100% - 1em); + + /* Width here controls margin (inset) on wrapped lines above the date. */ + width: 3ch; + } + + .content-entry-heading .commentary-date { + display: inline-block; + float: right; + clear: right; + margin-left: 1.75ch; + } } @layer material { @@ -369,38 +403,36 @@ .cover-artwork.commentary-art { box-shadow: 0 0 4px 5px rgba(0, 0, 0, 0.25) !important; } -} -@layer print { .content-entry-heading { - margin-left: 15px; - padding-left: calc(5px + 1.25ch); - text-indent: -1.25ch; - margin-right: min(calc(8vw - 35px), 45px); - padding-bottom: 0.2em; - border-bottom: 1px solid var(--dim-color); } - .content-entry-accent { - margin-left: 0.25ch; + .content-entry-heading .hoverable { + box-shadow: 1px 2px 6px 5px #04040460; } +} - .content-entry-heading.dated .content-entry-accent { - margin-right: 0.75ch; +@layer print { + .content-entry-heading { + text-indent: -1.25ch; } .content-entry-annotation { font-style: oblique; } - .content-entry-heading .commentary-date { - display: inline-block; + .content-entry-annotation .chunkwrap:first-child { + /* Cheat. */ + display: inline; + } + + .content-entry-annotation .chunkwrap:nth-child(n + 1) { text-indent: 0; } - .content-entry-heading .hoverable { - box-shadow: 1px 2px 6px 5px #04040460; + .content-entry-heading .commentary-date { + text-indent: 0; } .content-entry-body summary { |