summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--play.css5
-rw-r--r--play.html16
2 files changed, 8 insertions, 13 deletions
diff --git a/play.css b/play.css
index bf1553b..b6b6c52 100644
--- a/play.css
+++ b/play.css
@@ -2,9 +2,8 @@ main { background-color: dimgray; }
#roles { background-color: silver; }
header { background-color: silver; }
header.your_turn { background-color: orange; }
-#role_Axis .role_name { background-color: darkseagreen; }
-#role_Allied .role_name { background-color: tan; }
-.role_supply { float: right; }
+#role_Axis { background-color: darkseagreen; }
+#role_Allied { background-color: tan; }
#log { background-color: ghostwhite; }
#log .h1 { background-color: dimgray; color: ghostwhite; font-weight: bold; padding-top:2px; padding-bottom:2px; text-align: center; }
diff --git a/play.html b/play.html
index 85677aa..f33daa9 100644
--- a/play.html
+++ b/play.html
@@ -35,18 +35,14 @@
<aside>
<div id="roles">
<div class="role" id="role_Axis">
- <div class="role_name">
- Axis
- <div class="role_supply" id="axis_supply">0</div>
- <div class="role_user">-</div>
- </div>
+ <div class="role_name">Axis</div>
+ <div class="role_stat" id="axis_supply">0</div>
+ <div class="role_user">-</div>
</div>
<div class="role" id="role_Allied">
- <div class="role_name">
- Allied
- <div class="role_supply" id="allied_supply">0</div>
- <div class="role_user">-</div>
- </div>
+ <div class="role_name">Allied</div>
+ <div class="role_stat" id="allied_supply">0</div>
+ <div class="role_user">-</div>
</div>
</div>
<div id="log"></div>