From 8925d9eb293c8f9141895ba4dbf00a1b7f2ff495 Mon Sep 17 00:00:00 2001 From: Samuel Kent Date: Fri, 3 Feb 2023 17:17:56 +1100 Subject: [PATCH] Added instructions for players --- pages/play.html | 6 ++++++ styles/styleMain.css | 4 ++++ 2 files changed, 10 insertions(+) diff --git a/pages/play.html b/pages/play.html index 092bf11..fb678e0 100644 --- a/pages/play.html +++ b/pages/play.html @@ -29,6 +29,7 @@ let buzzable = false; socket.emit("updateUserInfo", userName, teamName, "Kirbeep");//initial user registration + $("#buzzer").attr("src", "Kirbeep.png" ); socket.on("userInfoToClient", (userInfo) => { userInfoToClient(userInfo); @@ -128,6 +129,11 @@ The buzzer

+

+ Click the buzzer above or press spacebar to buzz in. +
+ You can only buzz in on your team's turn. +

diff --git a/styles/styleMain.css b/styles/styleMain.css index 5430029..30470de 100644 --- a/styles/styleMain.css +++ b/styles/styleMain.css @@ -98,6 +98,10 @@ ul { z-index: 1000; } +#instructions { + font-size: 14px; +} + #buzzerOptions img { width: 50px; }