diff options
author | Tor Andersson <tor@ccxvii.net> | 2024-05-15 00:35:49 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-05-15 00:35:49 +0200 |
commit | aa08a6d083fef631aa58b9c3d50c4c024639b498 (patch) | |
tree | abddc98aa1c8737af9575d5b5f5426590317a89f /play.css | |
parent | 986f697c55c747d9a3e768b0c24e03d12fe935fe (diff) | |
download | washingtons-war-aa08a6d083fef631aa58b9c3d50c4c024639b498.tar.gz |
card tooltips
Diffstat (limited to 'play.css')
-rw-r--r-- | play.css | 31 |
1 files changed, 31 insertions, 0 deletions
@@ -59,6 +59,29 @@ aside { gap: 15px; } +#tooltip { + display: none; + pointer-events: none; + position: fixed; + z-index: 600; + right: 240px; + top: 60px; +} + +#tooltip.show { + display: block; +} + +@media (max-width: 800px) { + #tooltip { + top: 0; + left: 0; + right: 0; + bottom: 0; + margin: auto; + } +} + /* CARD ACTION POPUP MENU */ #popup { max-width: 250px; } @@ -258,6 +281,14 @@ aside { display: block; } +#tooltip.card { + background-position: center; + background-size: 377px 528px; + width: 372px; + height: 524px; + border-radius: 20px; +} + .shift .hand .card:hover, .shift .hand .card.selected { transform: scale(1.5) translate(0,-30px); z-index: 10; |