From 64439b6b0ece36d30747427db7828de6f75dd314 Mon Sep 17 00:00:00 2001 From: Inga Date: Thu, 5 Dec 2024 19:41:51 +0000 Subject: [PATCH] improved display of decided board --- src/frontend/static/style.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/frontend/static/style.css b/src/frontend/static/style.css index 86a1747..86702fd 100644 --- a/src/frontend/static/style.css +++ b/src/frontend/static/style.css @@ -40,6 +40,17 @@ table.game-board-table tbody.game-board td { padding: 3px; } +/* Colors for wins taken from jspaint.app where I drew icons for X and Y */ +.outcome-winx table.game-board-table, +.outcome-winx table.game-board-table tbody.game-board td { + border-color: #804000; +} + +.outcome-wino table.game-board-table, +.outcome-wino table.game-board-table tbody.game-board td { + border-color: #800080; +} + tbody.game-board button, tbody.game-board button:disabled, tbody.game-board button:hover {