diff --git a/khaganat/static/css/khaganat.css b/khaganat/static/css/khaganat.css index f7b1681..4d99c6e 100644 --- a/khaganat/static/css/khaganat.css +++ b/khaganat/static/css/khaganat.css @@ -27,3 +27,16 @@ html,body { opacity: 0.8; border-radius: 1.4em; } + +.log-nick { + font-weight: bold; + color: #6300A6; +} + +.log-content { +} + +.log-action { + font-style: italic; + color: #9073FF; +} diff --git a/logs/templates/logs/entries.html b/logs/templates/logs/entries.html index 96c67c3..5d138b1 100644 --- a/logs/templates/logs/entries.html +++ b/logs/templates/logs/entries.html @@ -11,7 +11,7 @@
{% for entry in entries%} - {{ entry.created|date:"H:i:s" }} {% if entry.nick %}<{{ entry.nick }}>{% else %}*{% endif %} {{ entry.content }}
+ {{ entry.created|date:"H:i:s" }} {% if entry.nick %}<{{ entry.nick }}> {{ entry.content }}{% else %}* {{ entry.content }}{% endif %}
{% endfor %}