diff options
author | Tor Andersson <tor@ccxvii.net> | 2021-07-09 01:39:20 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2022-11-17 12:53:17 +0100 |
commit | d893ddcf810d04f7dcaace2858c5c467ce3dcdd0 (patch) | |
tree | 8e9cade0be6d5d8daa139481abab0f90ade803d0 | |
parent | c6820e3251de4a57e4f1dda6f54db393b0a6cbd8 (diff) | |
download | hammer-of-the-scots-d893ddcf810d04f7dcaace2858c5c467ce3dcdd0.tar.gz |
Use black highlight when assigning hits to blocks.
-rw-r--r-- | play.html | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -180,6 +180,9 @@ div.block { .newblocks div.block.highlight { box-shadow: 0px 0px 2px 3px white; } .newblocks div.block.selected { box-shadow: 0px 0px 2px 3px yellow; } +.oldblocks .battle_menu.hit div.block.highlight { border: 3px solid black; box-shadow: 0px 0px 3px black; } +.newblocks .battle_menu.hit div.block.highlight { box-shadow: 0px 0px 2px 3px black; } + div.block.highlight { cursor: pointer; } div.block.moved { filter: grayscale(50%) brightness(80%); } div.block.highlight.moved { filter: grayscale(60%) brightness(95%); } @@ -246,7 +249,7 @@ div.block { </style> </head> -<body class="oldlabels"> +<body class="oldblocks"> <div class="status" id="status"></div> |