From 121d30c8027fc1cd96da33518d1c616fdf8bdb1d Mon Sep 17 00:00:00 2001 From: Simon Date: Fri, 20 Feb 2026 22:59:16 +0100 Subject: [PATCH] modified: templates/quiz_buzzer_multiplayer.html --- templates/quiz_buzzer_multiplayer.html | 83 +++++++++++++++++++++++--- 1 file changed, 76 insertions(+), 7 deletions(-) diff --git a/templates/quiz_buzzer_multiplayer.html b/templates/quiz_buzzer_multiplayer.html index fd2b222..6592a63 100644 --- a/templates/quiz_buzzer_multiplayer.html +++ b/templates/quiz_buzzer_multiplayer.html @@ -233,6 +233,32 @@ margin: 20px 0; font-weight: bold; } + .answer-timer-container { + margin: 15px auto 5px auto; + max-width: 400px; + text-align: center; + display: none; + } + .answer-timer-label { + font-size: 1.3em; + font-weight: bold; + color: #e0e0e0; + margin-bottom: 8px; + } + .answer-timer-bar-bg { + width: 100%; + height: 12px; + background: rgba(255,255,255,0.1); + border-radius: 6px; + overflow: hidden; + } + .answer-timer-bar { + height: 100%; + width: 0%; + background: linear-gradient(90deg, #1DB954, #FFA500, #f44336); + border-radius: 6px; + transition: background 0.5s; + }