]> git.cworth.org Git - empires-html/blobdiff - style.css
Don't show the "Players in the game" header when there are no players
[empires-html] / style.css
index 1d853d90f3b22cc830bddb06e94f28fc9ee8d958..89bca0c56477ade2bb19a281e1f9c45d492b2bec 100644 (file)
--- a/style.css
+++ b/style.css
 .hide-button:hover {
     color: black;
 }
+
+.show-state-join {
+    display:none;
+}
+
+.show-state-reveal {
+    display:none;
+}
+
+.show-state-capture {
+    display:none;
+}
+
+.hide-state-join {
+    display:block;
+}
+
+.hide-state-reveal {
+    display:block;
+}
+
+.hide-state-capture {
+    display:block;
+}
+
+/* Players list starts out hidden (until a player is added). */
+#players-div {
+    display:none;
+}