From 61e6ffe12fc29e9cd5393428f5b1872b94ab463b Mon Sep 17 00:00:00 2001 From: Arne Baeumler <arne@br0tkasten.de> Date: Sat, 5 Jun 2021 15:29:23 +0200 Subject: [PATCH] update theme --- templates/base.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/base.html b/templates/base.html index c431420..d9a6b55 100644 --- a/templates/base.html +++ b/templates/base.html @@ -9,13 +9,13 @@ {% block head %}<title>Rechentrainer</title>{% endblock %} </head> <body> -<header class="w3-container w3-border-bottom w3-border-blue-grey"> - {% block header %}<h1><a class="w3-button" href="/"><i class="material-icons w3-xxlarge">home</i></a>Rechentrainer</h1>{% endblock %} +<header class="w3-container w3-bottombar w3-border-blue-grey w3-light-grey"> + {% block header %}<span><a class="w3-button" href="/"><i class="material-icons w3-xxlarge">home</i></a>Rechentrainer</span>{% endblock %} </header> <div class="w3-container" style="margin-bottom: 1.5em;"> {% block content %}{% endblock %} </div> -<footer class="w3-container w3-border-top w3-border-blue-grey w3-center" style="position: fixed; bottom: 0; width: 100vw; height: 1.5em"> +<footer class="w3-container w3-topbar w3-light-grey w3-border-blue-grey w3-center" style="position: fixed; bottom: 0; width: 100vw; height: 2em"> {% block footer %}<span>{{ request.base_url }}</span>{% endblock %} </footer> </body>