]> git.cworth.org Git - lmno.games/blobdiff - empires/game.css
empires: Rename "state" to "phase" for game phase transitions
[lmno.games] / empires / game.css
index 57cd206e989ce20c41288a1d6bb4d1c99b284e6a..bc3340bf2b75d9e0aa99bf6186b50f8c907492ce 100644 (file)
@@ -1,28 +1,28 @@
 /* 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;
 }