diff options
author | Tor Andersson <tor@ccxvii.net> | 2021-12-19 17:03:16 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-02-18 12:42:59 +0100 |
commit | d58f1834daf6112bd8e2bcbd32db062dedb75752 (patch) | |
tree | 0be2d610830f987668683f1faf4cf1311fa63355 /play.html | |
parent | 0fe46c7c1d30368942833bbc60551ea533da5b63 (diff) | |
download | 300-earth-and-water-d58f1834daf6112bd8e2bcbd32db062dedb75752.tar.gz |
Prettier logs with formatting and colors.
Diffstat (limited to 'play.html')
-rw-r--r-- | play.html | 40 |
1 files changed, 22 insertions, 18 deletions
@@ -14,7 +14,6 @@ .grid_center { background-color: slategray; } .grid_role { background-color: gainsboro; } -.grid_log { background-color: gainsboro; } .grid_top { background-color: silver; } .Persia .grid_top.your_turn { background-color: skyblue; } .Greece .grid_top.your_turn { background-color: salmon; } @@ -23,6 +22,24 @@ .one .role_name { background-color: salmon; } .two .role_name { background-color: skyblue; } +#log { + background-color: gainsboro; +} + +#log .tip { + cursor: help; + text-decoration: underline; + color: blue; +} + +#log .st { + font-weight: bold; + background-color: gray; + color: white; + text-align: center; + padding: 3px; +} + .hand.greek { background-color: rosybrown; border-radius: 10px; @@ -39,9 +56,6 @@ #deck_info { text-align: center; } -.grid_role { - width: 240px; -} /* CARDS */ @@ -72,24 +86,16 @@ .card_info .card { margin: 15px auto; - width: 200px; - height: 280px; + width: 125px; + height: 175px; border-radius: 10px; } -.log span.tip { - cursor: help; - text-decoration: underline; - color: blue; -} - #tooltip.card { position: fixed; z-index: 200; - right: 270px; + right: 230px; top: 60px; - width: 375px; - height: 525px; } /* PHONE SIZE: squeeze side bar on small screens */ @@ -321,9 +327,7 @@ <div class="role_info card_info"><div id="discard" class="card show card_back"></div><div id="deck_info"></div></div> </div> - <div class="grid_log"> - <div class="log" id="log"></div> - </div> + <div id="log"></div> <div class="grid_center"> |