From 7ec0ca85ecf3d9fc59153adcc39d6adfbc648603 Mon Sep 17 00:00:00 2001 From: user Date: Sun, 10 Mar 2024 12:12:20 +0100 Subject: comments - make comments made by user@node5.net glow --- blog.node5.net/static/main.css | 4 ++++ blog.node5.net/templates/base.html | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/blog.node5.net/static/main.css b/blog.node5.net/static/main.css index ad9a192..9747bf0 100644 --- a/blog.node5.net/static/main.css +++ b/blog.node5.net/static/main.css @@ -17,6 +17,10 @@ color: var(--tertiary-color); } +.glow { + text-shadow: 0 0 0.5em var(--main-color); +} + .quaternary-color { color: var(--quaternary-color); } diff --git a/blog.node5.net/templates/base.html b/blog.node5.net/templates/base.html index 79fad6e..dc4d6bb 100644 --- a/blog.node5.net/templates/base.html +++ b/blog.node5.net/templates/base.html @@ -62,7 +62,7 @@
  • {{ comment.id }} | - {% if comment.nickname %}{{ comment.nickname }} |{% endif %} + {% if comment.nickname %}{{ comment.nickname }} |{% endif %} {% if comment.visitor_url %}{{ comment.visitor_url }} |{% endif %} {% if comment.contact %}{{ comment.contact }} |{% endif %} {{ comment.created_at }} -- cgit v1.3.1