]> git.cworth.org Git - lmno.games/blobdiff - empires/style.css
empires: Rename all files (html, js, and css) to game.*
[lmno.games] / empires / style.css
diff --git a/empires/style.css b/empires/style.css
deleted file mode 100644 (file)
index 1bb0e62..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-/* 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;
-}