Chakart ready soon
[xogo.git] / common.css
index 5555100..a69f4fb 100644 (file)
@@ -52,6 +52,11 @@ main > div {
   }
 }
 
+.author {
+  color: darkblue;
+  font-style: italic;
+}
+
 #boardContainer {
   margin: 0;
   padding: 0;
@@ -112,6 +117,20 @@ h4 {
   margin: 10px 0;
 }
 
+#gameInfos > .rules > ul {
+  list-style-type: square;
+  padding-left: 30px;
+}
+#gameInfos > .rules > ol {
+  list-style-type: numeric;
+  padding-left: 30px;
+}
+
+#gameInfos > .rules > a {
+  padding-bottom: 1px;
+  border-bottom: 1px dotted black;
+}
+
 #gameStopped > h1 {
   margin-bottom: 10px;
 }
@@ -126,6 +145,12 @@ h4 {
   text-align: center;
 }
 
+@media(max-height: 399px) {
+  #footer {
+    display: none;
+  }
+}
+
 a.left-link {
   margin-right: 25px;
 }
@@ -226,15 +251,19 @@ button.cancel-something {
   text-align: center;
 }
 
-.option-select, .option-check {
+.option-select, .option-input {
   margin: 15px 0 0 0;
 }
 
-.option-check {
+.option-input {
   display: inline-block;
   margin-right: 10px;
 }
 
+.option-input input[type=number] {
+  width: 64px;
+}
+
 .btn-wrap {
   text-align: center;
 }
@@ -265,15 +294,9 @@ a {
 }
 
 /* Board container (without reserves) */
-#chessboard {
+.chessboard {
   position: absolute;
   cursor: pointer;
-}
-
-/* Board container can be resized */
-.resizeable {
-  resize: both;
-  overflow: hidden;
   min-width: 200px;
   min-height: 200px;
 }
@@ -288,18 +311,24 @@ piece {
   pointer-events: none;
 }
 
+piece.hidden {
+  display: none;
+}
+
 /* Drawing of the board */
-#chessboard_SVG {
+.chessboard_SVG {
   width: 100%;
   height: 100%;
 }
 
+/* Default squares colors (can be overriden or unused) */
 .dark-square {
   fill: #b58863;
 }
 .light-square {
   fill: #f0d9b5;
 }
+
 .in-shadow {
   filter: brightness(50%);
 }