summaryrefslogtreecommitdiff |
diff options
author | nsensfel <SpamShield0@noot-noot.org> | 2018-04-16 14:52:20 +0200 |
---|---|---|
committer | nsensfel <SpamShield0@noot-noot.org> | 2018-04-16 14:52:20 +0200 |
commit | e8a9633e71c0cb94cd18a4e6747983224a98eb3e (patch) | |
tree | 9d36117d17c67b4ea5ca347577465ec4dd0d0f44 /src/battlemap/www/style.css | |
parent | 4029aa799a5a3fcb392422f44ef2d08357fb128a (diff) |
Makes it easier to distinguish friend/enemy/dead.
Diffstat (limited to 'src/battlemap/www/style.css')
-rw-r--r-- | src/battlemap/www/style.css | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/battlemap/www/style.css b/src/battlemap/www/style.css index 0454862..2f4624a 100644 --- a/src/battlemap/www/style.css +++ b/src/battlemap/www/style.css @@ -139,7 +139,6 @@ margin: 0.5em; box-sizing: border-box; border: 2px solid rgba(0,0,0,0.5); - border-radius: 25px 25px 0 25px; width: 100px; height: 100px; } @@ -220,7 +219,16 @@ { box-sizing: border-box; border: 2px solid rgba(0,0,0,0.5); - border-radius: 25px; +} + +.battlemap-character-ally +{ + border-radius: 25px 25px 0 25px; +} + +.battlemap-character-enemy +{ + border-radius: 25px 25px 25px 0; } .battlemap-marker-icon |