commit abf6bf51ac4ca21b139f083647d0f749e963a094 parent baaf22a4f63df8adb8ac26e91014c28ae9d484c8 Author: JayVii <jayvii[AT]posteo[DOT]de> Date: Sun, 3 May 2026 08:46:24 +0200 fix: increase contrast Diffstat:
| M | assets/css/custom.css | | | 6 | +++++- |
| M | index.tt | | | 6 | +++--- |
2 files changed, 8 insertions(+), 4 deletions(-)
diff --git a/assets/css/custom.css b/assets/css/custom.css @@ -9,8 +9,12 @@ section { margin-top: 0.5em !important; margin-bottom: 1em !important; } +/* ensure the post info has sufficient margins */ +.info { + margin-left:0.25em; +} /* Show only a single line of the domain */ -.domain { +.url { display: block; overflow: hidden; text-overflow: ellipsis; diff --git a/index.tt b/index.tt @@ -72,12 +72,12 @@ </strong> <!-- Information --> [% IF entry.issued %] - <em style="margin-left:0.25em;color:var(--border);"> + <em class="info""> [% entry.issued | html %] </em> [% END %] - <em class="domain" style="margin-left:0.25em;color:var(--border);"> - [% entry.link | url | html %] + <em class="url info"> + [% entry.link | url %] </em> </section> [% END %]