diff options
Diffstat (limited to 'play.html')
-rw-r--r-- | play.html | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -154,7 +154,7 @@ header.your_turn { background-color: orange; } /* TABLES */ -table { border-collapse: collapse; font-size: 12px; } +table { border-collapse: collapse; font-size: 12px; user-select: none; } td.blank { background-color: transparent; border: none } td,th { border: 1px solid black; text-align: center; padding: 2px 4px; } td { background-color: white; min-width: 20px; } @@ -262,6 +262,11 @@ svg .hex.action { stroke-width: 2; } +svg .hex.action.forced_march { + stroke: red; + stroke-width: 2; +} + svg .hex.from { fill: gold; fill-opacity: 0.2; |