diff options
Diffstat (limited to 'frontend/src/components/game/Hand.css')
-rw-r--r-- | frontend/src/components/game/Hand.css | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/frontend/src/components/game/Hand.css b/frontend/src/components/game/Hand.css new file mode 100644 index 00000000..de7b556d --- /dev/null +++ b/frontend/src/components/game/Hand.css @@ -0,0 +1,26 @@ +.hand { + display: flex; +} + +.hand-card { + margin: 0.2rem; +} + +.hand-card-unplayable { + opacity: 0.7; +} + +.hand-card-img-selected { + border: 2px solid #0054ff; +} + +.hand-card-img { + border-radius: 0.5rem; + box-shadow: 0 0 10px black; + width: 11rem; +} + +.hand-card-img:hover { + box-shadow: 0 10px 40px black; + width: 14rem; +} |