Added player / opponent color borders 👾

This commit is contained in:
Seoxi Ryouko
2025-02-27 08:47:15 -06:00
parent be6a9d9701
commit 0aa5dbd899

View File

@ -3,7 +3,6 @@
$view-container-side-offset: 5%; $view-container-side-offset: 5%;
$param-container-side-offset: 5%; $param-container-side-offset: 5%;
$img-hand-height: 95%; $img-hand-height: 95%;
/*$img-pile-width: 95%;*/
$hand-height: 14%; $hand-height: 14%;
*, *::before, *::after { *, *::before, *::after {
@ -156,6 +155,14 @@ aside {
height: calc(($img-hand-height / 100%) * ($hand-height / 100%) * 100vh); height: calc(($img-hand-height / 100%) * ($hand-height / 100%) * 100vh);
} }
.in-play-card[data-owned = true] {
border: 1px solid #0ff7;
}
.in-play-card[data-owned = false] {
border: 1px solid #f007;
}
[data-tapped = true] { [data-tapped = true] {
transform: translate(-50%, -50%) rotate(90deg); transform: translate(-50%, -50%) rotate(90deg);
} }