]> git.cworth.org Git - lmno.games/blobdiff - empires/game.css
empires: Rename all files (html, js, and css) to game.*
[lmno.games] / empires / game.css
diff --git a/empires/game.css b/empires/game.css
new file mode 100644 (file)
index 0000000..1bb0e62
--- /dev/null
@@ -0,0 +1,45 @@
+/* By default, hide things that are not to be shown
+ * until a particular game state is reached. */
+.show-state-join {
+    display:none;
+}
+
+.show-state-reveal {
+    display:none;
+}
+
+.show-state-capture {
+    display:none;
+}
+
+/* And by default, show things that will be hidden
+ * when a particular game state is reached. */
+.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;
+}
+
+/* Host tools start out hidden. */
+#host-tools {
+    display: none;
+}
+
+/* When a character name is being revealed, we want this to be huge,
+ * (like, filling the screen huge). */
+#character-reveal {
+    color: var(--text-fg-color);
+    font-size: 300%;
+    font-weight: bold;
+}