summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorMartin Hafskjold Thoresen <martin@vind.ai>2025-01-04 22:43:08 +0100
committerMartin Hafskjold Thoresen <martin@vind.ai>2025-01-04 22:43:08 +0100
commitc5fce19c22ec32129a8b8135c35798e430c5fc53 (patch)
tree885e8bca1c70d65eb4945aa0ba1277fa2232a043 /static
parentfc991e417d0b8ebc87557b9c0817c1f9ed6e7a1b (diff)
downloadmusicgame-c5fce19c22ec32129a8b8135c35798e430c5fc53.tar.gz
musicgame-c5fce19c22ec32129a8b8135c35798e430c5fc53.zip
Working end-to-end game logic
Just need the sound playing now
Diffstat (limited to 'static')
-rw-r--r--static/style.css13
1 files changed, 13 insertions, 0 deletions
diff --git a/static/style.css b/static/style.css
index e61cc02..3b9ba9d 100644
--- a/static/style.css
+++ b/static/style.css
@@ -3,3 +3,16 @@
body {
}
+
+#guesslist {
+ list-style: none;
+ [data-accept="none"] {
+ background: #aaa;
+ }
+ [data-accept="true"] {
+ background: #00ff00;
+ }
+ [data-accept="false"] {
+ background: #ff0000;
+ }
+}