Make the design less aggresive

- Softer violet
- Add borders to delimit cards
- Bolder titles
- Bigger inputs
This commit is contained in:
Bat
2018-05-13 21:33:21 +01:00
parent 9c9799eee2
commit 1870f52332
8 changed files with 78 additions and 45 deletions
+9 -7
View File
@@ -31,13 +31,15 @@
</div>
<h2>Comments</h2>
{% for comment in comments %}
<div class="comment" id="comment-{{ comment.id }}">
<b>{{ comment.author.display_name }}</b>
<div>{{ comment.content | safe }}</div>
<a href="comment?responding_to={{ comment.id }}">Respond</a>
</div>
{% endfor %}
<div class="list">
{% for comment in comments %}
<div class="card" id="comment-{{ comment.id }}">
<b>{{ comment.author.display_name }}</b>
<div>{{ comment.content | safe }}</div>
<a href="comment?responding_to={{ comment.id }}">Respond</a>
</div>
{% endfor %}
</div>
<a class="button inline-block" href="comment?">Comment</a>
</div>
{% endblock content %}