From e77949acd6c62f698727f84d03d5f3aacba1004c Mon Sep 17 00:00:00 2001 From: cel 🌸 Date: Fri, 2 Jan 2026 00:37:45 +0100 Subject: redesign poem panel --- static/style.css | 2 +- templates/poem-panel.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/static/style.css b/static/style.css index 6205635..995b2f3 100644 --- a/static/style.css +++ b/static/style.css @@ -485,7 +485,7 @@ iframe { .poem .title { font-family: 'Louise'; - font-size: 4em; + font-size: 1.75em; margin: 0.5em 0 0; } diff --git a/templates/poem-panel.html b/templates/poem-panel.html index e1fb016..17eb8a0 100644 --- a/templates/poem-panel.html +++ b/templates/poem-panel.html @@ -1,10 +1,10 @@
- {% if let Some(title) = poem.title %}

{{ title }}

{% endif %}

{{ poem.created_at.date_naive() }} {{ locale.text("permalink").unwrap() }}

+ {% if let Some(title) = poem.title %}

{{ title }}

{% endif %}
{{ poem.content|safe }}
-- cgit