index : btroops | |
Virtual board game-aid for BattleTroops, an infantry combat simulator wargame published by FASA in 1989. |
aboutsummaryrefslogtreecommitdiff |
diff options
author | Catalin Mititiuc <webdevcat@proton.me> | 2024-08-07 19:46:17 -0700 |
---|---|---|
committer | Catalin Mititiuc <webdevcat@proton.me> | 2024-08-07 19:46:17 -0700 |
commit | d2dba237863c0cf681677a1d6044be3f602e0d6e (patch) | |
tree | 31d422fde4e2d2448ea54eabad386222b945f76c /public/index.html | |
parent | 4e4daa9e767ddaee9d662a6e1a9e213f15384680 (diff) |
Style grenade indicators without svg
Diffstat (limited to 'public/index.html')
-rw-r--r-- | public/index.html | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/public/index.html b/public/index.html index c3a1c75..33d7085 100644 --- a/public/index.html +++ b/public/index.html @@ -100,18 +100,10 @@ </ul> <p class="grenades"> <span>Hand Grenades</span> - <label><input type='checkbox' checked /><svg viewBox="-7 -7 14 14" xmlns="http://www.w3.org/2000/svg"> - <circle cx="0" cy="0" r="5" /> - </svg></label> - <label><input type='checkbox' checked /><svg viewBox="-7 -7 14 14" xmlns="http://www.w3.org/2000/svg"> - <circle cx="0" cy="0" r="5" /> - </svg></label> - <label><input type='checkbox' checked /><svg viewBox="-7 -7 14 14" xmlns="http://www.w3.org/2000/svg"> - <circle cx="0" cy="0" r="5" /> - </svg></label> - <label><input type='checkbox' checked /><svg viewBox="-7 -7 14 14" xmlns="http://www.w3.org/2000/svg"> - <circle cx="0" cy="0" r="5" /> - </svg></label> + <input type='checkbox' id="grenade1" checked /><label for="grenade1"></label> + <input type='checkbox' id="grenade2" checked /><label for="grenade2"></label> + <input type='checkbox' id="grenade3" checked /><label for="grenade3"></label> + <input type='checkbox' id="grenade4" checked /><label for="grenade4"></label> </p> </template> |