diff options
author | Louise Crow <louise.crow@gmail.com> | 2014-04-28 18:01:36 +0100 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2014-04-28 18:01:36 +0100 |
commit | c54253968c4f7d16a4c955ddb572576cfbee4afa (patch) | |
tree | c4a27ca183b341c691c7081a129c9dc79c4c07d0 | |
parent | 89cfeb2474fc74edba2ca259c1e7fd8874088435 (diff) |
Add distinct colour for error messages
-rw-r--r-- | app/assets/stylesheets/responsive/_global_style.scss | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/app/assets/stylesheets/responsive/_global_style.scss b/app/assets/stylesheets/responsive/_global_style.scss index 75d6b54e9..cc55f02fe 100644 --- a/app/assets/stylesheets/responsive/_global_style.scss +++ b/app/assets/stylesheets/responsive/_global_style.scss @@ -113,9 +113,8 @@ dt + dd { } /* Notices to the user (usually on action completion) */ -#notice { +#notice, #error { font-size:1em; - background-color: lighten(#62b356, 23%); border-radius:3px; margin:1em 0; padding:1.5em; @@ -130,6 +129,14 @@ dt + dd { } +#notice { + background-color: lighten(#62b356, 23%); +} + +#error { + background-color: lighten(#b05460, 23%); +} + .big { font-size: 1.2em; } |