]> git.cworth.org Git - lmno.games/blobdiff - style.css
Change category voting to require fewer votes when there are more categories
[lmno.games] / style.css
index 5128982a44d5e52f1c9387b8b9a7d6a753e3c72d..bc611e5a16587f895e37be0864c5f6cc2b483454 100644 (file)
--- a/style.css
+++ b/style.css
@@ -1,3 +1,8 @@
+/* Because this is the only sizing that is sane, make it global. */
+* {
+    box-sizing: border-box;
+}
+
 /*\
 |*|
 |*| Properties for the page: colors, etc.
     /* A little color to avoid a fully monochromatic theme. */
     --accent-color: #287789;
     --accent-color-bright: #44c7ef;
+    --text-fg-on-accent: white;
+    --text-fg-on-accent-bright: #333738;
 
     /* Some colors intended to convey semnatics. */
     --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));
 }
 
 /*\
@@ -39,6 +51,7 @@ body {
 h1,h2 {
     color: var(--text-fg-color);
     font-weight: bold;
+    margin-top: 0.5em;
 }
 
 h1 {
@@ -49,6 +62,11 @@ h2 {
     font-size: 110%;
 }
 
+/* Don't underline links in headers */
+h1 a {
+    text-decoration: none;
+}
+
 p,dl,dd,form {
     margin-bottom: 1em;
 }
@@ -65,13 +83,19 @@ a:link    {
 a:visited {
     color: var(--accent-color);
 }
-a:hover   {
-    color: var(--accent-color-bright);
+@media (hover:hover) {
+    a:hover   {
+        color: var(--accent-color-bright);
+    }
 }
 a:active  {
     color: var(--accent-color-bright);
 }
 
+strong {
+    font-weight: bold;
+}
+
 /*\
 |*|
 |*| Overall page layout
@@ -104,37 +128,36 @@ 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: 720px) 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% - 720px)/2);
-        padding-right: calc(1em + (100% - 720px)/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));
     }
 }
 
@@ -197,6 +220,11 @@ form {
     grid-column-gap: 1em;
 }
 
+.form-field {
+    margin-top: 0.25em;
+    margin-bottom: 0.25em;
+}
+
 .form-field.small.left,.form-field.medium.left {
     grid-column-start: 1;
 }
@@ -247,23 +275,27 @@ button {
     border-radius: 4px;
     background-color: var(--accent-color);
     border: none;
-    color: white;
+    color: var(--text-fg-on-accent);
     text-align: center;
     font-size: 125%;
     margin-top: .25em;
     padding-top: 0.25em;
     padding-bottom: 0.25em;
     width: 200px;
+    cursor: pointer;
 }
 
 button.inline {
-    font-size: 100%;
+    font-size: 72%;
+    font-weight: bold;
     width: auto;
 }
 
-button:hover {
-    transform: translateY(-1px);
-    background-color: var(--accent-color-bright);
+@media (hover:hover) {
+    button:hover {
+        transform: translateY(-1px);
+        background-color: var(--accent-color-bright);
+    }
 }
 
 :focus {
@@ -306,6 +338,7 @@ button:hover {
 
 .hide-button {
     color: white;
+    opacity: 0.5;
     font-size: 125%;
     font-weight: bold;
     cursor: pointer;
@@ -314,6 +347,19 @@ button:hover {
     top: 0;
 }
 
-.hide-button:hover {
-    color: var(--danger-color-dark);
+@media (hover:hover) {
+    .hide-button:hover {
+        opacity: 1.0;
+    }
+}
+
+/*\
+|*|
+|*| Game-specific markup
+|*|
+\*/
+
+.game-id, .players-header {
+    font-size: 110%;
+    font-weight: bold;
 }