diff --git a/aula/static/Aula_logo.png b/aula/static/Aula_logo.png new file mode 100644 index 0000000..312fbc0 Binary files /dev/null and b/aula/static/Aula_logo.png differ diff --git a/aula/static/main.css b/aula/static/main.css index 44e1df8..7004c30 100644 --- a/aula/static/main.css +++ b/aula/static/main.css @@ -2,18 +2,39 @@ body { background: #fafafa; color: #333333; margin-top: 5rem; + font-family: Lato, sans-serif; } h1, h2, h3, h4, h5, h6 { color: #444444; } +.site-header { + margin-bottom: 120px; +} + +.navbar { + padding-top: 0; + padding-bottom: 0; +} + +.navbar-brand { + height: 80px; + margin-bottom: 5px; +} + .bg-steel { - background-color: #5f788a; + background-color: #18638f; } .site-header .navbar-nav .nav-link { color: #cbd5db; + width: 100px; + height: 100px; + margin-top: 0; + margin-bottom: 0; + text-align: center; + padding-top: 35px; } .site-header li > .nav-item.nav-link { @@ -22,6 +43,7 @@ h1, h2, h3, h4, h5, h6 { .site-header .navbar-nav .nav-link:hover { color: #ffffff; + background-color: #549ec7; } .site-header .navbar-nav .nav-link.active { diff --git a/aula/templates/home.html b/aula/templates/home.html index 9b418e3..ba37d12 100644 --- a/aula/templates/home.html +++ b/aula/templates/home.html @@ -1,6 +1,8 @@ {% extends "layout.html" %} {% block content %} -

{{ current_user.name }}

+

Hej, {{ current_user.first_name }} {{ current_user.first_name }}

+
+

Opslag

{% for post in posts %}
diff --git a/aula/templates/layout.html b/aula/templates/layout.html index 52f87c9..f40fecf 100644 --- a/aula/templates/layout.html +++ b/aula/templates/layout.html @@ -1,6 +1,10 @@ + + + + @@ -20,32 +24,21 @@