]> git.cworth.org Git - lmno.games/blobdiff - style.css
Insert a line break before the "Players in the game" section
[lmno.games] / style.css
index fdc99c9dd94bee1f1bd10dfdb84f90fe5b9012da..2121937a6c87c831d66d1c8d8c1fbd656cb09cee 100644 (file)
--- a/style.css
+++ b/style.css
@@ -5,7 +5,7 @@
 \*/
 
 body {
-    line-height: 1.5;
+    line-height: 1.25;
     font-family: sans-serif;
 }
 
@@ -52,14 +52,17 @@ body {
  *
  * 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.
+ * 620px wide page up to 50px on either side for a 820px wide page.
+ *
+ * Note: This 820px width for the page includes the padding so the
+ * actual content is only ever as wide as 720px.
  *
  * 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;
+    max-width: 820px;
     margin-left: auto;
     margin-right: auto;
     padding-top: 0;
@@ -68,14 +71,14 @@ body {
     padding-right: 1em;
 }
 
-@media screen and (min-width: 620px) and (max-width: 720px) {
+@media screen and (min-width: 620px) and (max-width: 820px) {
     #page {
-        padding-left: calc(1em + (100% - 620px)/2);
-        padding-right: calc(1em + (100% - 620px)/2);
+        padding-left: calc(1em + (100% - 820px)/2);
+        padding-right: calc(1em + (100% - 820px)/2);
     }
 }
 
-@media screen and (min-width: 720px) {
+@media screen and (min-width: 820px) {
     #page {
         padding-left: calc(1em + 50px);
         padding-right: calc(1em + 50px);