add css settings to the footer

This commit is contained in:
Andreas Zweili 2017-12-27 18:22:06 +01:00
parent 1351588d26
commit cc689065b2
3 changed files with 12 additions and 2 deletions

View File

@ -608,6 +608,13 @@ body {
margin-bottom: 10px;
margin-right: 10px;
margin-left: 20px;
*** Footer
Styles related to the footer.
#+BEGIN_SRC css :tangle ../inventory/static/css/inventory.css
p.copyright {
font-size:10px
}
#+END_SRC
@ -630,7 +637,7 @@ extended by them.
{% block content %}{% endblock %}
<footer>
{% block footer %}
<p>Created by Andreas Zweili licensed under GPL v3.0</p>
<p class="copyright">Created by Andreas Zweili licensed under GPL v3.0</p>
{% endblock %}
</footer>
</body>

View File

@ -18,4 +18,7 @@ body {
margin-bottom: 10px;
margin-right: 10px;
margin-left: 20px;
p.copyright {
font-size:10px
}

View File

@ -11,7 +11,7 @@
{% block content %}{% endblock %}
<footer>
{% block footer %}
<p>Created by Andreas Zweili licensed under GPL v3.0</p>
<p class="copyright">Created by Andreas Zweili licensed under GPL v3.0</p>
{% endblock %}
</footer>
</body>