diff --git a/crates/adapters/template-askama/templates/diary.html b/crates/adapters/template-askama/templates/diary.html index 2150012..a7a034c 100644 --- a/crates/adapters/template-askama/templates/diary.html +++ b/crates/adapters/template-askama/templates/diary.html @@ -16,7 +16,13 @@ {% if let Some(dir) = entry.movie().director() %}
{{ dir }}
{% endif %} -
{{ entry.review().rating().value() }}/5
+
+ + + + + +
{% if let Some(comment) = entry.review().comment() %}
{{ comment.value() }}
{% endif %} diff --git a/static/style.css b/static/style.css index f26b8ec..832bf4f 100644 --- a/static/style.css +++ b/static/style.css @@ -175,10 +175,18 @@ nav a:hover { } .rating { - font-size: 0.88em; - font-weight: 700; + margin-bottom: 4px; + font-size: 1.15em; + letter-spacing: 3px; +} + +.star.filled { color: var(--aqua); - margin-bottom: 2px; + text-shadow: 0 0 8px var(--aqua-glow), 0 0 2px var(--aqua); +} + +.star.empty { + color: rgba(255, 255, 255, 0.2); } .comment {