diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2013-10-15 22:30:45 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2013-10-15 22:30:45 +0200 |
commit | 9333df3b7fece97cc4df1f4bd50f95a2f924563c (patch) | |
tree | 60efa529385b80a8bf1826b94e05139953b82e82 /static/css/style.css | |
parent | 23f458908f761977c0b7f187db5ad488c4d78658 (diff) | |
download | kosten-9333df3b7fece97cc4df1f4bd50f95a2f924563c.tar.gz kosten-9333df3b7fece97cc4df1f4bd50f95a2f924563c.tar.bz2 kosten-9333df3b7fece97cc4df1f4bd50f95a2f924563c.zip |
Support flashing
Diffstat (limited to 'static/css/style.css')
-rw-r--r-- | static/css/style.css | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/static/css/style.css b/static/css/style.css index 4a24733..6463fb4 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -239,6 +239,25 @@ div.month_exp { /* Post */ +#messages { + list-style-type: none; + padding: 0; + margin: 0; +} + +#messages > li { + background: #9e9e9e; + color: #000; + padding: 5px; + margin: 5px 5px 15px 5px; + text-align: center; + box-shadow: 0 0 6px #888; +} + +#messages > li.msg-error { + background: #DA6F6F; +} + .content { float: left; width: 710px; |