From 79e12cb217951cbaa09a106e21c0d27079d5d975 Mon Sep 17 00:00:00 2001 From: Felix Homa Date: Thu, 8 Feb 2024 19:10:56 +0100 Subject: [PATCH] =?UTF-8?q?Fixed:=20Endzeitpunkt=20Hintergrundfarbe=20bei?= =?UTF-8?q?=20schlechtem=20H=C3=B6rsaal-Beamer=20nicht=20sichbar=20...=20j?= =?UTF-8?q?etzt=20schon.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Klausur.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Klausur.html b/Klausur.html index 7641fc1..dc27b59 100644 --- a/Klausur.html +++ b/Klausur.html @@ -318,9 +318,9 @@ */ if(endTime!=null && now>endTime) { if(document.getElementById("inputDarkMode").checked) { - document.body.style.backgroundColor="#dff"; // color-inversion! + document.body.style.backgroundColor="#8ff"; // color-inversion! } else { - document.body.style.backgroundColor="#faa"; + document.body.style.backgroundColor="#f88"; } } else if(endTime!=null && now>halfHourWarningTime && now<=halfHourWarningTime2 && now.getMilliseconds()<500) {