From c5c5c6c14a2824ca25234524995e9bcd789f7f81 Mon Sep 17 00:00:00 2001 From: Thomas D Ahle Date: Sat, 2 Dec 2023 15:21:46 -0800 Subject: [PATCH] period --- website/game.js | 2 +- website/styles.css | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/website/game.js b/website/game.js index bba2a66..85a5f76 100644 --- a/website/game.js +++ b/website/game.js @@ -188,7 +188,7 @@ async function main(date, datas) { let got = data.secret.filter(w => data.revealed.includes(w)).length; winLoseText.innerHTML = isWon(data) ? "Hurray! You Won!" - : `You got ${got} out of ${SECRETS}`; + : `You got ${got} out of ${SECRETS}.`; } else if (data.hints.length != 0) { const {clue, n} = data.hints[data.hints.length-1]; diff --git a/website/styles.css b/website/styles.css index 0f18235..27dc397 100644 --- a/website/styles.css +++ b/website/styles.css @@ -22,11 +22,11 @@ body.round-over { background: #faf8f8; } -body.game-won { - background: #fff9e2; +body.game-win { + background: #fffae6; } body.game-lost { - background: ##ffefef; + background: #ffefef; } .container {