Change category overview

This commit is contained in:
sqozz 2017-12-28 19:13:27 +01:00
parent c028559650
commit 8fe644a993
2 changed files with 26 additions and 17 deletions

View File

@ -1,10 +1,16 @@
.inner.cover { .inner.cover {
display: flex;
flex-direction: column;
align-items: center;
}
#categories {
display: flex; display: flex;
align-items: baseline; align-items: baseline;
flex-wrap: wrap; flex-wrap: wrap;
} }
.inner.cover > span { #categories span {
width: 33%; width: 33%;
margin-bottom: 10px; margin-bottom: 10px;
} }

View File

@ -6,6 +6,8 @@ vim: ts=2 noexpandtab
{% set active_page = "categories" %} {% set active_page = "categories" %}
{% block content %} {% block content %}
<link href="{{ url_for("static", filename="css/categories.css") }}" rel="stylesheet"> <link href="{{ url_for("static", filename="css/categories.css") }}" rel="stylesheet">
<h2 class="headline">Categories</h2>
<div id="categories">
{% for category in categories %} {% for category in categories %}
<span> <span>
<ul> <ul>
@ -22,4 +24,5 @@ vim: ts=2 noexpandtab
</ul> </ul>
</span> </span>
{% endfor %} {% endfor %}
</div>
{% endblock content%} {% endblock content%}