X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=style.css;h=2121937a6c87c831d66d1c8d8c1fbd656cb09cee;hb=93245be0a5db82eadd4fb532d27fa4fbea63a2ac;hp=c79ae7d5903c0f43f504fc5eda3067a51b7c68dc;hpb=3e944548de3521f2d0085cbd0ff58e6118048fa8;p=lmno.games diff --git a/style.css b/style.css index c79ae7d..2121937 100644 --- a/style.css +++ b/style.css @@ -5,7 +5,7 @@ \*/ body { - line-height: 1.5; + line-height: 1.25; font-family: sans-serif; } @@ -52,31 +52,36 @@ 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; padding-bottom: 0; + padding-left: 1em; + 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((100% - 620px)/2); - padding-right: calc((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: 50px; - padding-right: 50px; + padding-left: calc(1em + 50px); + padding-right: calc(1em + 50px); } } @@ -135,8 +140,8 @@ body { 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 { @@ -209,3 +214,47 @@ button:hover { ::-moz-focus-inner { border: 0; } + +/*\ +|*| +|*| Styling for a message area +|*| +\*/ + +/* Default message severity is "info" but can be overriden. */ +.message { + padding: 1em; + background-color: #44c7ef; + color: white; + transition: 0.3s; + margin-bottom: 0.5em; + font-weight: bold; + border-radius: 4px; + position: relative; +} + +.success { + background-color: #44c7ef; +} + +.warning { + background-color: #ffa92a; +} + +.danger { + background-color: #f56257 +} + +.hide-button { + color: white; + font-size: 125%; + font-weight: bold; + cursor: pointer; + position: absolute; + right: 0.5em; + top: 0; +} + +.hide-button:hover { + color: #bc2822; +}