From 88a2c395ad96c65d75ea64c57d68b62d93bc12c3 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 3 Oct 2020 13:33:29 +0200 Subject: Added navbar --- auth/public/index.html | 5 +++++ auth/public/style.css | 4 ++++ mottovote/public/index.html | 5 +++++ mottovote/public/style.css | 6 +++++- poll/public/index.html | 9 +++++++-- poll/public/style.css | 6 +++++- quotes/public/index.html | 19 ++++++++++++------- quotes/public/style.css | 6 +++++- 8 files changed, 48 insertions(+), 12 deletions(-) diff --git a/auth/public/index.html b/auth/public/index.html index e927b13..b56db07 100644 --- a/auth/public/index.html +++ b/auth/public/index.html @@ -14,6 +14,11 @@ Auth +
+ Home + Logout +
+
Login diff --git a/auth/public/style.css b/auth/public/style.css index 294fb98..4bbdc55 100644 --- a/auth/public/style.css +++ b/auth/public/style.css @@ -8,6 +8,10 @@ body { background-image: linear-gradient(315deg, #eec0c6 0%, #7ee8fa 74%); } +div { + background: white; +} + form { position: absolute; width: 30%; diff --git a/mottovote/public/index.html b/mottovote/public/index.html index 0bffbdd..c562fa7 100644 --- a/mottovote/public/index.html +++ b/mottovote/public/index.html @@ -14,6 +14,11 @@ +
+ Home + Logout +
+
diff --git a/mottovote/public/style.css b/mottovote/public/style.css index 6e735e3..7f92570 100644 --- a/mottovote/public/style.css +++ b/mottovote/public/style.css @@ -8,6 +8,10 @@ body { background-image: linear-gradient(315deg, #eec0c6 0%, #7ee8fa 74%); } +div { + background: white; +} + main { display: flex; flex-flow: row wrap; @@ -49,7 +53,7 @@ select { } @media only screen and (max-width: 600px) { - div { + main { width: calc(100% - 50px); } } diff --git a/poll/public/index.html b/poll/public/index.html index 8530b76..dd66c96 100644 --- a/poll/public/index.html +++ b/poll/public/index.html @@ -14,7 +14,12 @@ Schüler-Ranking -
+
+ Home + Logout +
+ +
@@ -28,7 +33,7 @@
-
+
diff --git a/poll/public/style.css b/poll/public/style.css index 2c9c695..8ef7b57 100644 --- a/poll/public/style.css +++ b/poll/public/style.css @@ -9,6 +9,10 @@ body { } div { + background: white; +} + +main { position: absolute; max-height: 80%; overflow-y: scroll; @@ -29,7 +33,7 @@ select { } @media only screen and (max-width: 600px) { - div { + main { width: calc(100% - 50px); } } diff --git a/quotes/public/index.html b/quotes/public/index.html index 32a46ec..343f5a3 100644 --- a/quotes/public/index.html +++ b/quotes/public/index.html @@ -14,7 +14,12 @@ Zitate -
+
+ Home + Logout +
+ +
Zitate @@ -27,16 +32,16 @@ - + - + - + - + - -
+ + diff --git a/quotes/public/style.css b/quotes/public/style.css index 4ead1a1..0336774 100644 --- a/quotes/public/style.css +++ b/quotes/public/style.css @@ -9,6 +9,10 @@ body { } div { + background: white; +} + +main { position: absolute; max-height: 80%; overflow-y: scroll; @@ -51,7 +55,7 @@ select { } @media only screen and (max-width: 600px) { - div { + main { width: calc(100% - 50px); } } -- cgit v1.2.3