diff options
| author | Martin Hafskjold Thoresen <martin@vind.ai> | 2025-01-04 22:43:08 +0100 |
|---|---|---|
| committer | Martin Hafskjold Thoresen <martin@vind.ai> | 2025-01-04 22:43:08 +0100 |
| commit | c5fce19c22ec32129a8b8135c35798e430c5fc53 (patch) | |
| tree | 885e8bca1c70d65eb4945aa0ba1277fa2232a043 /static | |
| parent | fc991e417d0b8ebc87557b9c0817c1f9ed6e7a1b (diff) | |
| download | musicgame-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.css | 13 |
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; + } +} |
