From 33680b9a238ffda3a2efca654591e53e423b310f Mon Sep 17 00:00:00 2001 From: JP Appel Date: Wed, 25 Oct 2023 21:27:35 -0700 Subject: added game object and game dom synchronization --- site/style.css | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) (limited to 'site/style.css') diff --git a/site/style.css b/site/style.css index 97d5ae2..508ad61 100644 --- a/site/style.css +++ b/site/style.css @@ -19,14 +19,22 @@ body { flex-direction: row; } -div.vertex { +.vertex { padding: 1em; background-color: var(--hi-color); border-radius: 50%; } -div.vertex.off { - background-color: var(--fg-color); +.vertex.off { + background-color: yellow; +} + +.vertex:hover { + filter: brightness(150%); +} + +.inactive { + display: none !important; } section#optionsScreen { @@ -40,10 +48,6 @@ section.screen { animation: fadein 1s linear; } -section.screen.inactive { - display: none; -} - button { background-color: var(--hi-color); color: var(--fg-color); -- cgit v1.2.3