From 7bc4a6de838919064bc9877853cc6624a44ecf5e Mon Sep 17 00:00:00 2001 From: muktar1907 Date: Sat, 27 Apr 2024 12:38:29 -0500 Subject: [PATCH] Stylistic edits, visibility changes --- html/index_1.html | 7 +++++++ html/style_lobby.css | 3 ++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/html/index_1.html b/html/index_1.html index 3925fb8..886e006 100644 --- a/html/index_1.html +++ b/html/index_1.html @@ -7,6 +7,11 @@ + +

Welcome to The Word Search Game

@@ -164,6 +169,8 @@

Leaderboard

if("ready" in messageData && messageData.ready==="true") { document.getElementById("lobbyContainer").style.display="none"; + document.getElementById("LobbyChatRoom").style.display="block"; + document.getElementById("welcomeContainer").style.display="none"; generateGrid(); document.getElementById("Game").style.display="block"; startTimer(); diff --git a/html/style_lobby.css b/html/style_lobby.css index 7aa793f..cbfe04e 100644 --- a/html/style_lobby.css +++ b/html/style_lobby.css @@ -157,7 +157,8 @@ select { background-color: #f2f2f2; } #LobbyChatRoom { - width: 100%; + width: 45%; + height: 90%; border-collapse: collapse; border: 1px solid black; }