Improve the log style
This commit is contained in:
parent
3d169a8e41
commit
df2032ef05
2 changed files with 14 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
</div>
|
||||
<div>
|
||||
{% for entry in entries%}
|
||||
{{ entry.created|date:"H:i:s" }} {% if entry.nick %}<{{ entry.nick }}>{% else %}*{% endif %} {{ entry.content }}<br />
|
||||
{{ entry.created|date:"H:i:s" }} {% if entry.nick %}<span class="log-nick"><{{ entry.nick }}></span> <span class="log-content">{{ entry.content }}</span>{% else %}<span class="log-action">* {{ entry.content }}</span>{% endif %}<br />
|
||||
{% endfor %}
|
||||
</div>
|
||||
<div>
|
||||
|
|
Loading…
Reference in a new issue