X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=style.css;h=fdc99c9dd94bee1f1bd10dfdb84f90fe5b9012da;hb=f548f3049b230734c6fc7776e7e3b751fb2301f9;hp=70099fd0f17f4f287424878a76b3b2b65f6b82ce;hpb=b944577581fdf4dac936064f48346e400f71d10e;p=lmno.games diff --git a/style.css b/style.css index 70099fd..fdc99c9 100644 --- a/style.css +++ b/style.css @@ -137,8 +137,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 { @@ -211,3 +211,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; +}