diff options
author | Tor Andersson <tor@ccxvii.net> | 2021-12-20 17:20:47 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2021-12-20 17:44:01 +0100 |
commit | d7736ee15c4f105172a04611914d4c41f2a75c35 (patch) | |
tree | 690472e9f894cb1bec474e99d427b8d1c5b140e6 /public | |
parent | 1744ebf8de2e1974b7061247fdd8dd19b4d6c0f0 (diff) | |
download | server-d7736ee15c4f105172a04611914d4c41f2a75c35.tar.gz |
Use ID instead of class for battle dialog.
Diffstat (limited to 'public')
-rw-r--r-- | public/common/battle_abc.css | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/public/common/battle_abc.css b/public/common/battle_abc.css index 620107f..7064968 100644 --- a/public/common/battle_abc.css +++ b/public/common/battle_abc.css @@ -1,6 +1,6 @@ /* ABC BATTLE DISPLAY FOR COLUMBIA BLOCK GAMES */ -.battle { +#battle { position: absolute; left: 100px; top: 100px; @@ -11,27 +11,27 @@ box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.5); visibility: hidden; } -.battle.show { +#battle.show { visibility: visible; } -.battle th { +#battle th { font-weight: normal; padding: 0; border: 1px solid black; } -.battle td { +#battle td { padding: 0; border: 1px solid black; vertical-align: top; } -.battle .battle_header { +#battle_header { height: 2em; line-height: 2em; font-weight: bold; user-select: none; cursor: move; } -.battle .battle_message { +#battle_message { height: 2em; line-height: 2em; padding: 0 8px; |