CSS Tweaks

Chris Pollett [2023-01-15 05:Jan:th]
CSS Tweaks
Filename
css/game.css
diff --git a/css/game.css b/css/game.css
index 9153331..df8d5a4 100644
--- a/css/game.css
+++ b/css/game.css
@@ -175,6 +175,54 @@ h1
     margin: 0px;
     padding: 0px;
 }
+img
+{
+    max-width: 90%;
+}
+figure
+{
+    max-width: 90%;
+}
+figure > img
+{
+    max-width: 100%;
+}
+input
+{
+    border: 2px solid lightblue;
+    border-radius: 5px;
+    font-size: 18pt;
+    padding: 2px;
+}
+x-button
+{
+    background-color: #F0F0F6;
+    border: 1px solid gray;
+    border-radius: 5px;
+    color: black;
+    display: inline-block;
+    font-size: 18pt;
+    font-weight: bold;
+    padding: 8px;
+    margin: 3px;
+}
+x-button.disabled
+{
+    border: 1px solid lightgray;
+    background-color: #F6F6FA;
+    color: #666;
+    cursor: not-allowed;
+}
+x-button:hover
+{
+    background-color: lightgray;
+}
+
+x-button.disabled:hover
+{
+    color: #666;
+    background-color: #F6F6FA;
+}
 x-speaker
 {
     border: 3px solid black;
@@ -220,43 +268,3 @@ x-speaker figure:first-of-type > img
 .footer-space {
     height: 1in;
 }
-x-button
-{
-    background-color: #F0F0F6;
-    border: 1px solid gray;
-    border-radius: 5px;
-    color: black;
-    display: inline-block;
-    font-size: 18pt;
-    font-weight: bold;
-    padding: 8px;
-    margin: 3px;
-}
-x-button.disabled
-{
-    border: 1px solid lightgray;
-    background-color: #F6F6FA;
-    color: #666;
-    cursor: not-allowed;
-}
-x-button:hover
-{
-    background-color: lightgray;
-}
-
-x-button.disabled:hover
-{
-    color: #666;
-    background-color: #F6F6FA;
-}
-img
-{
-    max-width: 90%;
-}
-input
-{
-    border: 2px solid lightblue;
-    border-radius: 5px;
-    font-size: 18pt;
-    padding: 2px;
-}
ViewGit