]> git.cworth.org Git - lmno.games/commitdiff
Add some responsive layout for the page itself
authorCarl Worth <cworth@cworth.org>
Sat, 16 May 2020 22:06:50 +0000 (15:06 -0700)
committerCarl Worth <cworth@cworth.org>
Sat, 16 May 2020 22:34:12 +0000 (15:34 -0700)
This is designed to use all the space available on a small device
(such as a phone) but then to smoothly allow some distinctly-colored
background to be visbile on a large device while maxing out the page
width at a reasoable maximum width.

This styling change does introduce a new containing "page" div around
the content.

index.html
style.css

index 4da618884f0f3f2158a4b0344cd88ebc65aac2cd..bb9367ffb7e3b313901a16822f7a2c93049dce4a 100644 (file)
   </head>
   <body>
 
-    <form onsubmit="join_game(this)">
+    <div id="page">
 
-      <div class="form-field large">
-        <label for="id">Game ID</label>
-        <input type="text" id="id" required>
-      </div>
+      <form onsubmit="join_game(this)">
 
-      <div class="form-field large">
-        <button type="submit">
-          Join Game
-        </button>
-      </div>
+        <div class="form-field large">
+          <label for="id">Game ID</label>
+          <input type="text" id="id" required>
+        </div>
 
-    </form>
+        <div class="form-field large">
+          <button type="submit">
+            Join Game
+          </button>
+        </div>
+
+      </form>
+
+    </div>
   </body>
 </html>
index 65b0b17b7ac58801e9b611ce2fa9c6bcd4fd3bfb..90ee7bd20ad28462851fcbe5119fec9b0615705c 100644 (file)
--- a/style.css
+++ b/style.css
@@ -19,6 +19,82 @@ h2 {
     font-weight: bold;
 }
 
+/*\
+|*|
+|*| Overall page layout
+|*|
+|*| Assumes: Top-level div with id="page" for all content
+|*|
+\*/
+
+/* Mobile-first: At small sized we have a white background and use the
+ * entire screen width for the page (so the background color of the
+ * body is not visible anywhere). */
+body {
+    background-color: #333738;
+}
+
+#page {
+    background-color: white;
+}
+
+/* We never let the page content get larger than a large fixed width.
+ *
+ * And when the screen is wide enough, we can afford some "wasted"
+ * space on either side of the page content. This starts at 0 for a
+ * 620px wide page up to 50px on either side for a 720px wide page.
+ *
+ * Wider than that and we start to see the background on either side
+ * of the page content.
+ */
+#page {
+    box-sizing: border-box;
+    max-width: 720px;
+    margin-left: auto;
+    margin-right: auto;
+    padding-top: 0;
+    padding-bottom: 0;
+}
+
+@media screen and (min-width: 620px) and (max-width: 720px) {
+    #page {
+        padding-left: calc((100% - 620px)/2);
+        padding-right: calc((100% - 620px)/2);
+    }
+}
+
+@media screen and (min-width: 720px) {
+    #page {
+        padding-left: 50px;
+        padding-right: 50px;
+    }
+}
+
+/* The calculations for height are different. We don't have any
+ * vertical centering, so instead we have only some fixed padding on
+ * the top. Then, the margin which allows the background to be visible
+ * on the top and bottom starts appearing at a viewport height of 648
+ * and tops out at a size of 36px.
+ */
+#page {
+    min-height: 500px;
+    padding-top: 1em;
+}
+
+@media screen and (min-height: 648px) and (max-height: 720px) {
+    #page {
+        margin-top: calc((100vh - 648px)/2);
+        margin-bottom: calc((100vh - 648px)/2);
+    }
+}
+
+@media screen and (min-height: 720px) {
+    #page {
+        margin-top: 36px;
+        margin-bottom: 36px;
+    }
+}
+
 /*\
 |*|
 |*| Responsive form layout