]> git.cworth.org Git - lmno.games/blobdiff - empires/game.css
Add some autofocus attributes
[lmno.games] / empires / game.css
index 1bb0e62eb0eada366c08f28a523def5ed75ee10d..bc3340bf2b75d9e0aa99bf6186b50f8c907492ce 100644 (file)
@@ -1,32 +1,36 @@
 /* By default, hide things that are not to be shown
- * until a particular game state is reached. */
-.show-state-join {
+ * until a particular game phase is reached. */
+.show-phase-join {
     display:none;
 }
 
-.show-state-reveal {
+.show-phase-reveal {
     display:none;
 }
 
-.show-state-capture {
+.show-phase-capture {
     display:none;
 }
 
 /* And by default, show things that will be hidden
- * when a particular game state is reached. */
-.hide-state-join {
+ * when a particular game phase is reached. */
+.hide-phase-join {
     display:block;
 }
 
-.hide-state-reveal {
+.hide-phase-reveal {
     display:block;
 }
 
-.hide-state-capture {
+.hide-phase-capture {
     display:block;
 }
 
-/* Players list starts out hidden (until a player is added). */
+/* Spectators and players lists start out hidden (until people are added). */
+#spectators-div {
+    display:none;
+}
+
 #players-div {
     display:none;
 }