X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=style.css;h=fdc99c9dd94bee1f1bd10dfdb84f90fe5b9012da;hb=d9c1028746aad357d4f4f25e384398185acbd197;hp=237c0045e9cfc60367c4143bb256b3a1e62a6b18;hpb=292a396d77b171e8be9d4c170ef12bd3afb9d3e4;p=lmno.games diff --git a/style.css b/style.css index 237c004..fdc99c9 100644 --- a/style.css +++ b/style.css @@ -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; +}