From 91f9909b9de8f4fe432a9a6e26cbf8c44e8938ab Mon Sep 17 00:00:00 2001
From: Philip Kaludercic <philip.kaludercic@fau.de>
Date: Fri, 9 May 2025 14:48:45 +0200
Subject: [PATCH] Fix typo in CSS variable name

---
 site/quiz.css | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
 mode change 100644 => 100755 site/quiz.css

diff --git a/site/quiz.css b/site/quiz.css
old mode 100644
new mode 100755
index 53e9770..be357e1
--- a/site/quiz.css
+++ b/site/quiz.css
@@ -1,4 +1,4 @@
-/* Copyright (C) 2024	Philip Kaludercic
+/* Copyright (C) 2024, 2025	Philip Kaludercic
 
    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
@@ -16,7 +16,7 @@
 :root {
     font-family: system-ui, "Open Sans", "Noto Sans", "Lato", Arial, sans-serif;
 
-    --deafult-tint: ghostwhite;
+    --default-tint: ghostwhite;
     --highlight: red;
     --correct: honeydew;
     --wrong: mistyrose;
@@ -39,7 +39,7 @@ body {
 
 main {
     border: 2px solid rgba(0,0,0,0.25);
-    background: var(--deafult-tint);
+    background: var(--default-tint);
     padding: 16px;
     position: relative;
     min-height: 48px;
@@ -59,7 +59,7 @@ main.broken ~ * {
 }
 
 .open main {
-    background: var(--deafult-tint) !important;
+    background: var(--default-tint) !important;
 }
 
 /* QUESTION PANEL */
@@ -291,7 +291,7 @@ pre {
 /* basic "dark theme" support */
 @media screen and (prefers-color-scheme: dark) {
     :root {
-	--deafult-tint: darkslategray;
+	--default-tint: darkslategray;
 	--highlight: cyan;
 	--correct: seagreen;
 	--wrong: maroon;
-- 
GitLab