summaryrefslogtreecommitdiffstats
path: root/static
diff options
context:
space:
mode:
authorMarian Sigler <m@qjym.de>2012-09-21 15:32:15 +0200
committerMarian Sigler <m@qjym.de>2012-09-21 15:32:15 +0200
commitc6d55f462ebc1d5fb387ccc7873582406205bef8 (patch)
tree96349dff31b623258612c26a7926fe909306c705 /static
parentc89a73370e51e0218a6a8b9dbfe34527c002fb22 (diff)
downloadweb-c6d55f462ebc1d5fb387ccc7873582406205bef8.tar.gz
web-c6d55f462ebc1d5fb387ccc7873582406205bef8.tar.bz2
web-c6d55f462ebc1d5fb387ccc7873582406205bef8.zip
add color to flashes
Diffstat (limited to 'static')
-rw-r--r--static/layout.css22
1 files changed, 22 insertions, 0 deletions
diff --git a/static/layout.css b/static/layout.css
index 730d79f..2d7be98 100644
--- a/static/layout.css
+++ b/static/layout.css
@@ -2,6 +2,28 @@ form .errors {
color: #D00;
}
+ul.flashes {
+ padding-left: 0;
+}
+ul.flashes li {
+ list-style: none;
+ margin-left: 0;
+ display: block;
+ padding: .2em .4em;
+
+ border: 1px solid #ee3;
+ background-color: #ffd;
+}
+ul.flashes li.error {
+ border-color: #e33;
+ background-color: #fdd;
+}
+ul.flashes li.success {
+ border-color: #3e3;
+ background-color: #dfd;
+}
+
+
body {
margin: 0 auto;
width: 640px;