X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=style.css;h=c79ae7d5903c0f43f504fc5eda3067a51b7c68dc;hb=3e944548de3521f2d0085cbd0ff58e6118048fa8;hp=65b0b17b7ac58801e9b611ce2fa9c6bcd4fd3bfb;hpb=d63fff6b0b7142e9592f627a53d86f457d675ff2;p=lmno.games diff --git a/style.css b/style.css index 65b0b17..c79ae7d 100644 --- a/style.css +++ b/style.css @@ -19,6 +19,92 @@ 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; +} + +/* For a small screen (in either width or height) change the + * background of the body element to white so the application always + * appears as if it is "full screen". + */ +@media screen and (max-width: 500px) and (max-height: 860px) { + body { + 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 @@ -73,3 +159,53 @@ form { grid-column-end: span 2 } } + +/*\ +|*| +|*| Styling for form input fields +|*| +\*/ + +label { + font-size: 125%; +} + +input { + box-sizing: border-box; + font-size: 125%; + padding: 0.5em; + width: 100%; + border: 1px solid #287789; + border-radius: 4px; +} + +input:focus { + border: 2px solid #44c7ef; +} + +button { + display: inline-block; + border-radius: 4px; + background-color: #287789; + border: none; + color: white; + text-align: center; + font-size: 125%; + margin-top: .25em; + padding-top: 0.25em; + padding-bottom: 0.25em; + width: 200px; +} + +button:hover { + transform: translateY(-1px); + background-color: #44c7ef; +} + +:focus { + outline: none; +} + +::-moz-focus-inner { + border: 0; +}