diff options
author | Joël Simoneau <simoneaujoel@gmail.com> | 2025-04-01 12:56:23 -0400 |
---|---|---|
committer | Joël Simoneau <simoneaujoel@gmail.com> | 2025-04-01 12:56:23 -0400 |
commit | aabe06db6f5bef5b1d05afadc80ac588762764d4 (patch) | |
tree | 10732564b2fb55b3763bded5f2a00ffceb1238dd /play.css | |
parent | e5db278efbf5f22204526b9f8fafb853d1718e9e (diff) | |
download | vijayanagara-aabe06db6f5bef5b1d05afadc80ac588762764d4.tar.gz |
Basic hit die color
Diffstat (limited to 'play.css')
-rw-r--r-- | play.css | 15 |
1 files changed, 12 insertions, 3 deletions
@@ -116,12 +116,22 @@ header.your_turn.ve { background-color: #ffbf32 } .d6 { background-position: 100% 0; } .attacker .die { + background-color: #c98a89; + border-color: #d8a09f #b67473 #b67473 #d8a09f; +} + +.attacker .die.hit { background-color: #9e302f; border-color: #9c3b3a #701d1b #701d1b #9c3b3a; } .defender .die { - background-color: #c09e87; + background-color: #d1bdb0; + border-color: #dbcdc3 #c2aa99 #c2aa99 #dbcdc3; +} + +.defender .die.hit { + background-color: #bb957b; border-color: #d6af95 #a18069 #a18069 #d6af95; } @@ -228,7 +238,7 @@ img.f { #attack_header { list-style: none; - cursor: move; + cursor: n-resize; padding: 2px 8px; line-height: 24px; min-height: 24px; @@ -248,7 +258,6 @@ img.f { } #attack_table[open] #attack_header { - cursor: n-resize; border-bottom: 1px solid black; background-image: url(images/gui_box_minimize.svg); background-color: brown; |