From 209fb252dcce8b69d05f796a914beb0e0bb7f9eb Mon Sep 17 00:00:00 2001 From: Marien Fressinaud Date: Mon, 5 Nov 2012 21:40:58 +0100 Subject: Fix issue #4 : ajout des retours utilisateur --- public/theme/base.css | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) (limited to 'public/theme') diff --git a/public/theme/base.css b/public/theme/base.css index fa9c8fc72..24c4f371b 100644 --- a/public/theme/base.css +++ b/public/theme/base.css @@ -336,3 +336,41 @@ form { display: block; color: #F09600; } + +/*** NOTIFICATION ***/ +#notification { + position: fixed; + bottom: 0; + left: 25%; + width: 50%; + height: 50px; + padding: 0 50px; + line-height: 50px; + text-align: center; + border-radius: 5px 5px 0 0; + box-shadow: 0 0 3px #666; + background: #ddd; + color: #fff; + font-weight: bold; +} + #notification.good { + background: #8FD900; + } + #notification.bad { + background: #FF3300; + } + #notification a.close { + display: inline-block; + width: 25px; + height: 25px; + float: right; + margin: -10px -60px 0 0; + background: #fff; + border-radius: 50px; + border: 1px solid #aaa; + line-height: 25px; + color: #666; + } + #notification a.close:hover { + text-decoration: none; + } -- cgit v1.2.3