diff --git a/static/app.css b/static/app.css index e33194b..5347690 100644 --- a/static/app.css +++ b/static/app.css @@ -56,23 +56,31 @@ body { } /* Breadcrumb Styles */ -.breadcrumb { - margin-bottom: 15px; - font-size: 22px; -} .breadcrumb a { + font-size: 19px; text-decoration: none; color: var(--main-text-color); - margin-right: 5px; } .breadcrumb span { + font-size: 19px; color: #ccc; + margin-left: 5px; margin-right: 5px; + margin-bottom: 10px; } -.separator::before { - content: "\A"; /* Inserts a line break */ - white-space: pre; /* Ensures the newline is honored */ +/* Admin Nav Styles */ +.admin-nav { + color: #ccc; + border: 1px solid #ccc; + padding: 10px; + background-color: #979797; +} + +.admin-nav a { + color: #ccc; + text-decoration: none; + padding: 5px 0; } /* List Styles */ diff --git a/templates/app.html b/templates/app.html index 25c3dc5..4b3b8f6 100644 --- a/templates/app.html +++ b/templates/app.html @@ -1,39 +1,44 @@ - + - - + + + - - - + {{ title_short }} - {{ title_short }} - - - - + + + - - - - - - - - - - - - + + + + - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + +
{% if admin_enabled %} -
- Meine Links + {% endif %}
diff --git a/templates/base.html b/templates/base.html index c401eab..f110b80 100644 --- a/templates/base.html +++ b/templates/base.html @@ -1,11 +1,23 @@ - + - + {% block title %}Meine Links{% endblock %} + + + + + + + + + + + + @@ -22,20 +34,19 @@