Change category overview
This commit is contained in:
parent
c028559650
commit
8fe644a993
@ -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;
|
||||||
}
|
}
|
||||||
|
@ -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%}
|
||||||
|
Loading…
Reference in New Issue
Block a user