all repos — h3rald @ b9b044b9233b479d1c765444cbe9bcb127e0a8d1

The sources of https://h3rald.com

Fixed styles (days captions).
h3rald h3rald@h3rald.com
Sun, 11 May 2025 11:30:08 +0200
commit

b9b044b9233b479d1c765444cbe9bcb127e0a8d1

parent

7204d97ff2023d2904c2b200a47656c0d8813d1b

2 files changed, 5 insertions(+), 2 deletions(-)

jump to
M assets/styles/style.cssassets/styles/style.css

@@ -777,10 +777,13 @@

.days figcaption { margin: 0; font-size: 0.9rem; - padding: 0.5rem; background: var(--secondary-background); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; +} + +.days figcaption .caption { + padding: 0.5rem; } .days img {
M templates/days.mustachetemplates/days.mustache

@@ -24,7 +24,7 @@ <figure>

<img src="{{image}}" alt="{{date}}" loading="lazy" /> {{#text}} <figcaption> - {{text}} + <div class="caption">{{text}}</div> </figcaption> {{/text}} </figure>