diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-05-13 14:03:30 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-05-13 14:03:30 +0200 |
commit | 69c47d8261abfbcdbda6b2a4d53bd95796c315d3 (patch) | |
tree | df5c02c29556317138171820797d9ee3300998c0 /website/static/base/css/message-box.css | |
parent | 81231b5e78d3c3976fd85354341d589e8d890a3c (diff) | |
download | guix-artwork-69c47d8261abfbcdbda6b2a4d53bd95796c315d3.tar guix-artwork-69c47d8261abfbcdbda6b2a4d53bd95796c315d3.tar.gz |
website: Move static/ one level higher.
* website/www/static: Rename to...
* website/static: ... this.
Diffstat (limited to 'website/static/base/css/message-box.css')
-rw-r--r-- | website/static/base/css/message-box.css | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/website/static/base/css/message-box.css b/website/static/base/css/message-box.css new file mode 100644 index 0000000..7606d67 --- /dev/null +++ b/website/static/base/css/message-box.css @@ -0,0 +1,37 @@ +/* + Public domain 2015 Luis Felipe López Acevedo. All rights waived. + <felipe.lopez@openmailbox.org> + + NOTE The default style is targeted at screens with a width less than + 1024 pixels. +*/ + +.message-box { + background-image: url("../img/msg-info-bg.png"); + background-position: -5px -5px; + background-repeat: no-repeat; + color: white; + font-size: 12px; + padding: 20px; +} + +.message-box > a:link, .message-box > a:visited { + border-color: white; + border-style: none none dotted none; + border-width: thin; + color: white; + text-decoration: none; +} + +.msg-info { + background-color: #5FBCD3; +} + +.msg-warning { + background-color: #D35F5F; +} + +.msg-label { + font-weight: bold; + padding-right: 10px; +} |