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-07-02 15:19:17 -0700 |
---|---|---|
committer | Catalin Mititiuc <webdevcat@proton.me> | 2024-07-02 15:27:27 -0700 |
commit | 71724cc97967a876224d1a4b711843b17256cb0d (patch) | |
tree | bf39584668aa2cd8077a01719715663a8b0e3849 /public/assets | |
parent | 624991870df0e804d64cf4d9359c63435513d61b (diff) |
WIP: counters
Diffstat (limited to 'public/assets')
-rw-r--r-- | public/assets/css/radial.css | 2 | ||||
-rw-r--r-- | public/assets/css/style.css | 1 | ||||
-rw-r--r-- | public/assets/images/counters.svg | 27 |
3 files changed, 19 insertions, 11 deletions
diff --git a/public/assets/css/radial.css b/public/assets/css/radial.css index 1d3ebc8..112c312 100644 --- a/public/assets/css/radial.css +++ b/public/assets/css/radial.css @@ -77,7 +77,7 @@ use[href="#hex"] { } [data-view-elevation="-1"] #background { - fill: #333; + fill: #999; } [data-view-elevation="-1"] .building .elevation-basement { diff --git a/public/assets/css/style.css b/public/assets/css/style.css index 9d29894..f98baca 100644 --- a/public/assets/css/style.css +++ b/public/assets/css/style.css @@ -174,6 +174,7 @@ polygon.firing-arc[data-allegiance="attacker"] { .soldier-record svg.weapon-icon use { stroke: white; stroke-width: 0.5px; + r: 6px; } .weapon-symbol { diff --git a/public/assets/images/counters.svg b/public/assets/images/counters.svg index da1a6d8..e9b41a7 100644 --- a/public/assets/images/counters.svg +++ b/public/assets/images/counters.svg @@ -1,5 +1,6 @@ <?xml version="1.0" standalone="no"?> -<svg viewBox="-6 -6 12 24" xmlns="http://www.w3.org/2000/svg"> +<svg viewBox="-6 -6 12 24" + xmlns="http://www.w3.org/2000/svg"> <defs> <circle id="counter-base" style="r: inherit;" cx="0" cy="0" /> @@ -46,22 +47,28 @@ <g id="rifle" style="r: inherit;" class="weapon-symbol"> <use style="r: inherit;" href="#counter-base"/> - <use href="#semi-auto"/> - <line x1="0" y1="-5" x2="0" y2="5"/> - <polyline style="fill: none;" points="-2,-3.5 0,-5 2,-3.5"/> + <g style="stroke: white; stroke-width: 0.5px; fill: none;"> + <use href="#semi-auto" /> + <line x1="0" y1="-5" x2="0" y2="5"/> + <polyline points="-2,-3.5 0,-5 2,-3.5"/> + </g> </g> <g id="smg" style="r: inherit;" class="weapon-symbol"> <use style="r: inherit;" href="#counter-base"/> - <use href="#auto"/> - <line x1="0" y1="-5" x2="0" y2="4.5"/> - <line x1="-2" y1="4.5" x2="2" y2="4.5"/> + <g style="stroke: white; stroke-width: 0.5px; fill: none;"> + <use href="#auto"/> + <line x1="0" y1="-5" x2="0" y2="4.5"/> + <line x1="-2" y1="4.5" x2="2" y2="4.5"/> + </g> </g> <g id="blazer" style="r: inherit;" class="weapon-symbol"> <use style="r: inherit;" href="#counter-base"/> - <use href="#auto"/> - <polyline points="0,-5 0,-3 -3,-2.5 3,-1.5 0,-1 0,2.5 -3,3, 3,4 0,4.5 0,5"/> - <polyline points="-2,-3.5 0,-5 2,-3.5"/> + <g style="stroke: white; stroke-width: 0.5px; fill: none;"> + <use href="#auto"/> + <polyline points="0,-5 0,-3 -3,-2.5 3,-1.5 0,-1 0,2.5 -3,3, 3,4 0,4.5 0,5"/> + <polyline points="-2,-3.5 0,-5 2,-3.5"/> + </g> </g> </svg> |