diff --git a/application/dash/templates/dashboard.html b/application/dash/templates/dashboard.html index 4f6843e..249266e 100644 --- a/application/dash/templates/dashboard.html +++ b/application/dash/templates/dashboard.html @@ -6,45 +6,41 @@
{% for service in services%}
-
-
+
+
+ {{service["name"]}} +
+ + +
+
+
-
-
-
- {{service["name"]}} -
- -
-
-
- {{service["url"]}} -
-
+
+
+
+ {{service["url"]}}
{% endfor %}
-{%endblock%} \ No newline at end of file +{%endblock%} \ No newline at end of file diff --git a/application/static/icons/2/google.png b/application/static/icons/2/google.png new file mode 100644 index 0000000..67fed90 Binary files /dev/null and b/application/static/icons/2/google.png differ diff --git a/application/static/icons/2/netflix.png b/application/static/icons/2/netflix.png new file mode 100644 index 0000000..a8315c9 Binary files /dev/null and b/application/static/icons/2/netflix.png differ diff --git a/application/static/icons/2/spotify.png b/application/static/icons/2/spotify.png new file mode 100644 index 0000000..88bdc71 Binary files /dev/null and b/application/static/icons/2/spotify.png differ diff --git a/application/static/style.css b/application/static/style.css index 94e8144..d03e0e1 100644 --- a/application/static/style.css +++ b/application/static/style.css @@ -5,27 +5,30 @@ body { /* Dashboard page */ .grid-container { - display: grid; - grid-template-columns: auto auto auto; + display: flex; + grid-template-columns: auto auto auto auto auto; gap: 20px; background-color: lightslategray; padding-top: 20px; margin-left: 10%; margin-right: 10%; + justify-content: center; } .grid-container > div { height: fit-content; - width: 400px; + width: 200px; padding-top: 5px; padding-bottom: 5px; border: 2px solid black; border-radius: 10px; box-shadow: 5px 5px 10px black; + font-weight: bold; + } .fit-picture { - width: 45px; + width: 175px; margin-top: 5px; margin-bottom: 5px; border: 1px solid black; @@ -33,6 +36,14 @@ body { box-shadow: 0px 0px 5px black; } +.url { + font-weight: normal; +} + +.name { + margin-left: 60px; +} + /* Login page */ .form { display: block;