diff options
-rw-r--r-- | VERSION | 2 | ||||
-rw-r--r-- | static/style.css | 14 | ||||
-rw-r--r-- | templates/layout.html | 4 |
3 files changed, 13 insertions, 7 deletions
@@ -1 +1 @@ -1.8.4-pre1 +1.8.4-pre2 diff --git a/static/style.css b/static/style.css index 0633cdc..3030424 100644 --- a/static/style.css +++ b/static/style.css @@ -78,14 +78,19 @@ ul { padding-bottom: 100px; } +.navbar { + background-color: #336699; + border-color: #080808; +} + body { - // display: flex; - // flex-direction: column; } .footer { - color: white; + color: black; + background-color: #f5f5f5; + border-color: #080808; font-size: small; padding: 3px 0; position: absolute; @@ -95,9 +100,10 @@ body } .footer a { - color: yellow; text-decoration: none; transition: color 0.3s ease; + color: #1e87f0; + cursor: pointer; } .footer a:hover { diff --git a/templates/layout.html b/templates/layout.html index 3160de5..1c73fd9 100644 --- a/templates/layout.html +++ b/templates/layout.html @@ -16,7 +16,7 @@ <body> <!-- Navigation bar --> -<nav class="navbar navbar-expand-lg navbar-dark bg-dark"> +<nav class="navbar navbar-expand-lg navbar-dark"> <div class="col-1"> <a href="/"><div class='img'><img src="/static/white_logo.png" class="img-fluid", style="width:60%"></div></a> </div> @@ -95,7 +95,7 @@ </div> {% if not no_footer %} - <footer class="footer bg-dark footer-dark"> + <footer class="footer footer-dark"> <div class="container"> <div class="row"> <div class="col-md-6"> |