]> git.cworth.org Git - lmno.games/blobdiff - style.css
Parameterize the styling of the page width
[lmno.games] / style.css
index 2fca6300d6f0ef913358b52ef3e883eaf18f8138..baf35bf59abe9367432554e01f6ecb7b3fa5ef9f 100644 (file)
--- a/style.css
+++ b/style.css
     --warning-color: #ffa92a;
     --danger-color: #f56257;
     --danger-color-dark: #bc2822;
+
+    /* Page layout */
+    --page-max-width: 720px;
+    --page-max-pad: 50px;
+    --page-max-width-padded: calc(var(--page-max-width) + 2 * var(--page-max-pad));
 }
 
 /*\
@@ -49,6 +54,11 @@ h2 {
     font-size: 110%;
 }
 
+/* Don't underline links in headers */
+h1 a {
+    text-decoration: none;
+}
+
 p,dl,dd,form {
     margin-bottom: 1em;
 }
@@ -104,37 +114,37 @@ body {
 /* 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 820px wide page.
+ * space on either side of the page content, (up to --page-max-pad).
  *
- * Note: This 820px width for the page includes the padding so the
- * actual content is only ever as wide as 720px.
+ * Note: This --page-max-width-padded for the page includes the
+ * padding so the actual content is only ever as wide as
+ * --page-max-width.
  *
  * Wider than that and we start to see the background on either side
  * of the page content.
  */
 #page {
     box-sizing: border-box;
-    max-width: 820px;
+    max-width: var(--page-max-width-padded);
     margin-left: auto;
     margin-right: auto;
     padding-top: 0;
-    padding-bottom: 0;
+    padding-bottom: 2em;
     padding-left: 1em;
     padding-right: 1em;
 }
 
-@media screen and (min-width: 620px) and (max-width: 820px) {
+@media screen and (min-width: var(--page-max-width)) and (max-width: var(--page-max-width-padded)) {
     #page {
-        padding-left: calc(1em + (100% - 820px)/2);
-        padding-right: calc(1em + (100% - 820px)/2);
+        padding-left: calc(1em + (100% - var(--page-max-width))/2);
+        padding-right: calc(1em + (100% - var(--page-pax-width))/2);
     }
 }
 
-@media screen and (min-width: 820px) {
+@media screen and (min-width: var(--page-pax-width-padded)) {
     #page {
-        padding-left: calc(1em + 50px);
-        padding-right: calc(1em + 50px);
+        padding-left: calc(1em + var(--page-max-pad));
+        padding-right: calc(1em + var(--page-max-pad));
     }
 }
 
@@ -254,6 +264,13 @@ button {
     padding-top: 0.25em;
     padding-bottom: 0.25em;
     width: 200px;
+    cursor: pointer;
+}
+
+button.inline {
+    font-size: 72%;
+    font-weight: bold;
+    width: auto;
 }
 
 button:hover {
@@ -312,3 +329,14 @@ button:hover {
 .hide-button:hover {
     color: var(--danger-color-dark);
 }
+
+/*\
+|*|
+|*| Game-specific markup
+|*|
+\*/
+
+.game-id, .players-header {
+    font-size: 110%;
+    font-weight: bold;
+}