diff options
author | Marvin Borner | 2020-10-10 19:25:11 +0200 |
---|---|---|
committer | Marvin Borner | 2020-10-10 19:25:22 +0200 |
commit | 7a440f97cbbde819134b0f07f6b803665e64a467 (patch) | |
tree | 908635177477ec597264eda86fbd4e2289a7db55 | |
parent | 530bbfa293b7d17a6944b87416951b572c8f1d3d (diff) |
Frontend...
-rw-r--r-- | overview/public/index.html | 3 | ||||
-rw-r--r-- | overview/public/script.js | 2 | ||||
-rw-r--r-- | overview/public/style.css | 4 |
3 files changed, 4 insertions, 5 deletions
diff --git a/overview/public/index.html b/overview/public/index.html index d0e0b89..6f63353 100644 --- a/overview/public/index.html +++ b/overview/public/index.html @@ -21,7 +21,7 @@ </div> <div class="card"> <h2>Hallo, liebe RBS-Schüler*innen!</h2> - <p lang="de"> + <p> Diese Seite wurde von Schülern der TGI13.1 erstellt, um Umfragen, Zitate und andere organisatorische Dinge für unsere gemeinsame Abizeitung zu sammeln. </p> @@ -37,7 +37,6 @@ <li><a href="/poll?type=pupil">Schüler-Ranking</a></li> <li><a href="/poll?type=teacher">Lehrer-Ranking</a></li> </ul> - <p>Bitte benutzt diese Tools nur ernsthaft - es ist nun mal unsere gemeinsame Zeitung :)</p> <p> Falls ihr uns bei der Entwicklung helfen wollt, Fehler gefunden habt oder Fragen an uns habt, könnt ihr gerne mit dem Entwicklungs-Team Kontakt aufnehmen: diff --git a/overview/public/script.js b/overview/public/script.js index be058b7..68b2d5a 100644 --- a/overview/public/script.js +++ b/overview/public/script.js @@ -14,7 +14,7 @@ fetch("/auth/api/status").then(response => response.json()).then(response => { second.innerText = "Logout"; if (response.admin) { third.href = "/admin"; - third.innerText = "Administration"; + third.innerText = "Admin"; } } else { document.querySelectorAll("div.pure-menu")[0].style.display = "none"; diff --git a/overview/public/style.css b/overview/public/style.css index 16cd26f..a095dd8 100644 --- a/overview/public/style.css +++ b/overview/public/style.css @@ -10,7 +10,7 @@ body { .card { position: absolute; - max-height: 80%; + max-height: 90%; overflow: auto; width: 40%; left: 50%; @@ -28,6 +28,6 @@ div { @media only screen and (max-width: 700px) { .card { - width: calc(100% - 50px); + width: calc(100% - 60px); } } |