diff options
author | Tor Andersson <tor@ccxvii.net> | 2025-02-28 00:27:36 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2025-02-28 00:27:36 +0100 |
commit | 0c4325ee1410497cbc04dff966409c534b5bc769 (patch) | |
tree | 09a3fedcd4b12ff40c91b6205be403de0f1df4ee /play2.css | |
parent | dfac77d2135ef7084852860d995113cc8709a233 (diff) | |
download | land-and-freedom-0c4325ee1410497cbc04dff966409c534b5bc769.tar.gz |
wip more client
Diffstat (limited to 'play2.css')
-rw-r--r-- | play2.css | 20 |
1 files changed, 16 insertions, 4 deletions
@@ -34,15 +34,19 @@ main { .track { position: absolute; background-color: #fff4; - border: 3px solid lime; + border: 3px solid transparent; width: 52px; height: 54px; } +.track.action { + border-color: white; +} + .front { position: absolute; background-color: #fff4; - border: 6px solid lime; + border: 6px solid transparent; border-radius: 34px; display: flex; @@ -50,6 +54,10 @@ main { gap: 4px; } +.front.action { + border-color: white; +} + .front div { margin-right: -30px; } @@ -140,12 +148,16 @@ main { height: 282px; } -.action { +.token.action { + box-shadow: 0 0 0 3px white; +} + +.card.action { box-shadow: 0 0 0 3px white; } .selected { - box-shadow: 0 0 0 3px yellow; + box-shadow: 0 0 0 3px aqua; } /* PANELS */ |