diff --git a/app/static/app/.DS_Store b/app/static/app/.DS_Store new file mode 100644 index 0000000..cd3a2cf Binary files /dev/null and b/app/static/app/.DS_Store differ diff --git a/app/static/app/css/custom.css b/app/static/app/css/custom.css index 6834b76..de017f4 100644 --- a/app/static/app/css/custom.css +++ b/app/static/app/css/custom.css @@ -25,4 +25,29 @@ .fade-in { animation: fade-in 1s forwards; +} + +#header-bg-block { + height: 8vh; + padding: 0; +} + +#header-color-block { + border-bottom-left-radius: 2rem; + border-bottom-right-radius: 2rem; + height: 7vh; +} + +.maincontainer { + height: 92vh; + transition: height 1s ease, transform 1s ease; +} + +.bg-white-color { + background-color: white; +} + +.bg-blue-color { + background-color: #026670; + transition: background-color 1s ease, transform 1s ease; } \ No newline at end of file diff --git a/app/static/app/images/appleicon.png b/app/static/app/images/appleicon.png index 980736b..63faa6d 100644 Binary files a/app/static/app/images/appleicon.png and b/app/static/app/images/appleicon.png differ diff --git a/app/static/app/images/appleicon_whitebg.png b/app/static/app/images/appleicon_whitebg.png new file mode 100644 index 0000000..a6c451e Binary files /dev/null and b/app/static/app/images/appleicon_whitebg.png differ diff --git a/app/templates/app/base.html b/app/templates/app/base.html index b739dfb..597e31c 100644 --- a/app/templates/app/base.html +++ b/app/templates/app/base.html @@ -13,14 +13,16 @@ PioMint - + -
-
+
+
+ +
-
+
{% block content %} {% endblock %}
diff --git a/app/templates/app/login.html b/app/templates/app/login.html index f9e9665..dad59eb 100644 --- a/app/templates/app/login.html +++ b/app/templates/app/login.html @@ -2,12 +2,60 @@ {% load static %} {% block content %} -
- Bildbeschreibung +
+ Bildbeschreibung
-

PIOMINT

+

PIOMINT



- +
+ + + + {% endblock %} diff --git a/piomint/pwa_settings.py b/piomint/pwa_settings.py index 7cd7fdf..bd2d4d5 100644 --- a/piomint/pwa_settings.py +++ b/piomint/pwa_settings.py @@ -14,13 +14,13 @@ PWA_APP_STATUS_BAR_COLOR = 'black-translucent' PWA_SERVICE_WORKER_PATH = os.path.join(BASE_DIR, 'app/static/app/js', 'serviceworker.js') PWA_APP_ICONS = [ { - 'src': '/static/app/images/appleicon.png', + 'src': '/static/app/images/appleicon_whitebg.png', 'sizes': '160x160' } ] PWA_APP_ICONS_APPLE = [ { - 'src': '/static/app/images/appleicon.png', + 'src': '/static/app/images/appleicon_whitebg.png', 'sizes': '160x160' } ]