Move WAT to landing bottom

This commit is contained in:
vas3k
2020-01-25 12:06:22 +01:00
parent 27eb9480b1
commit 06edc0a7d9
3 changed files with 9 additions and 9 deletions

View File

@@ -30,12 +30,12 @@
color: var(--link-color);
}
.landing-top {
.landing-info {
text-align: center;
min-height: 100px;
}
.landing-top-title {
.landing-info-title {
margin-top: 100px;
font-weight: normal;
font-size: 36px;

View File

@@ -10,7 +10,7 @@
margin: 0 auto;
}
.landing-top {
.landing-info {
max-width: var(--max-content-width);
margin: 0 auto;
}

View File

@@ -3,12 +3,6 @@
{% block title %}{{ block.super }} — {{ settings.APP_TITLE }}{% endblock %}
{% block content %}
<div class="landing-top">
<h2 class="landing-top-title">
<a href="{% url "what" %}">Что это?</a>
</h2>
</div>
<div class="landing-boards">
{% for board in boards %}
<a class="landing-board" href="{% url "board" board.slug %}">
@@ -20,4 +14,10 @@
</a>
{% endfor %}
</div>
<div class="landing-info">
<h2 class="landing-info-title">
<a href="{% url "what" %}">Что это?</a>
</h2>
</div>
{% endblock %}