diff options
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 */ |