diff --git a/assets/styles/app.css b/assets/styles/app.css index 81c7fd2..8e74348 100644 --- a/assets/styles/app.css +++ b/assets/styles/app.css @@ -7,4 +7,14 @@ body { max-width: 800px; width: 95%; font: 18px/1.5 sans-serif; +} + +.hegre-navbar { + + background: rgba(255, 255, 255, 0.2); + border-radius: 16px; + box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); + backdrop-filter: blur(5px); + -webkit-backdrop-filter: blur(5px); + border: 1px solid rgba(255, 255, 255, 0.3); } \ No newline at end of file diff --git a/templates/base.html.twig b/templates/base.html.twig index 4adb8be..4bb4a26 100644 --- a/templates/base.html.twig +++ b/templates/base.html.twig @@ -4,6 +4,7 @@ {% block title %}Welcome!{% endblock %} + {% block stylesheets %} {% endblock %} @@ -12,11 +13,40 @@ {% endblock %} -
+
+ +
+ -
{% block body %} {% endblock %} + + + diff --git a/templates/dashboard/index.html.twig b/templates/dashboard/index.html.twig index b327a43..ddf3428 100644 --- a/templates/dashboard/index.html.twig +++ b/templates/dashboard/index.html.twig @@ -2,11 +2,11 @@ {% block title %}Dashboard{% endblock %} + {% block body %}

Welcome, *Dashboard User* !

- This is a placeholder.
{% endblock %}