X-Git-Url: https://git.cworth.org/git?p=lmno.games;a=blobdiff_plain;f=style.css;h=98bc907264df78738e3a259c9cc6d301b085f2be;hp=65b0b17b7ac58801e9b611ce2fa9c6bcd4fd3bfb;hb=04e317391c8640aee74c5a71a751bf522848ee0d;hpb=d63fff6b0b7142e9592f627a53d86f457d675ff2 diff --git a/style.css b/style.css index 65b0b17..98bc907 100644 --- a/style.css +++ b/style.css @@ -1,22 +1,166 @@ /*\ |*| -|*| Core elements: Sizing and padding +|*| Properties for the page: colors, etc. +|*| +|*| This is intended to be the easiest section to edit +|*| some easy custom theming, (a custom color scheme, etc.). +|*| +\*/ + +:root { + /* Standard colors for text. */ + --text-fg-color: #333738; + --text-fg-color-max-contrast: black; + --text-bg-color: white; + --outside-page-bg-color: #333738; + + /* A little color to avoid a fully monochromatic theme. */ + --accent-color: #287789; + --accent-color-bright: #44c7ef; + + /* Some colors intended to convey semnatics. */ + --warning-color: #ffa92a; + --danger-color: #f56257; + --danger-color-dark: #bc2822; +} + +/*\ +|*| +|*| Core elements: Sizing, padding, and application of theme colors |*| \*/ body { - line-height: 1.5; + line-height: 1.25; font-family: sans-serif; + color: var(--text-fg-color-max-contrast); +} + +h1,h2 { + color: var(--text-fg-color); + font-weight: bold; } h1 { font-size: 150%; - font-weight: bold; } h2 { font-size: 110%; - font-weight: bold; +} + +p,dl,dd,form { + margin-bottom: 1em; +} + +ul li { + margin-left: 1em; + list-style-type: disc; + margin-bottom: 0.5em; +} + +a:link { + color: var(--accent-color); +} +a:visited { + color: var(--accent-color); +} +a:hover { + color: var(--accent-color-bright); +} +a:active { + color: var(--accent-color-bright); +} + +/*\ +|*| +|*| 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: var(--outside-page-bg-color); +} + +#page { + background-color: var(--text-bg-color); +} + +/* 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: var(--text-bg-color); + } +} + +/* 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. + * + * 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: 820px; + margin-left: auto; + margin-right: auto; + padding-top: 0; + padding-bottom: 0; + padding-left: 1em; + padding-right: 1em; +} + +@media screen and (min-width: 720px) and (max-width: 820px) { + #page { + padding-left: calc(1em + (100% - 720px)/2); + padding-right: calc(1em + (100% - 720px)/2); + } +} + +@media screen and (min-width: 820px) { + #page { + padding-left: calc(1em + 50px); + padding-right: calc(1em + 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; + } } /*\ @@ -49,8 +193,8 @@ h2 { form { max-width: 100%; display: grid; - grid-template-columns: 49% 49%; - grid-column-gap: 2%; + grid-template-columns: 1fr 1fr; + grid-column-gap: 1em; } .form-field.small.left,.form-field.medium.left { @@ -73,3 +217,105 @@ form { grid-column-end: span 2 } } + +/*\ +|*| +|*| Styling for form input fields +|*| +\*/ + +label { + font-size: 125%; +} + +input { + box-sizing: border-box; + font-size: 125%; + height: 40px; + padding: 0.5em; + width: 100%; + border: 1px solid var(--accent-color); + border-radius: 4px; +} + +input:focus { + border: 2px solid var(--accent-color-bright); +} + +button { + display: inline-block; + border-radius: 4px; + background-color: var(--accent-color); + border: none; + color: white; + 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: 72%; + font-weight: bold; + width: auto; +} + +button:hover { + transform: translateY(-1px); + background-color: var(--accent-color-bright); +} + +:focus { + outline: none; +} + +::-moz-focus-inner { + border: 0; +} + +/*\ +|*| +|*| Styling for a message area +|*| +\*/ + +/* Default message severity is "info" but can be overriden. */ +.message { + padding: 1em; + background-color: var(--accent-color-bright); + color: white; + transition: 0.3s; + margin-bottom: 0.5em; + font-weight: bold; + border-radius: 4px; + position: relative; +} + +.success { + background-color: var(--accent-color-bright); +} + +.warning { + background-color: var(--warning-color); +} + +.danger { + background-color: var(--danger-color); +} + +.hide-button { + color: white; + font-size: 125%; + font-weight: bold; + cursor: pointer; + position: absolute; + right: 0.5em; + top: 0; +} + +.hide-button:hover { + color: var(--danger-color-dark); +}