diff options
Diffstat (limited to 'lib/styles')
-rw-r--r-- | lib/styles/index.html | 5 | ||||
-rw-r--r-- | lib/styles/screen.css | 18 |
2 files changed, 12 insertions, 11 deletions
diff --git a/lib/styles/index.html b/lib/styles/index.html index d614603ac..977f90e10 100644 --- a/lib/styles/index.html +++ b/lib/styles/index.html @@ -1,6 +1,5 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml"> +<!DOCTYPE html> +<html> <head> <meta http-equiv="refresh" content="0; URL=../../" /> <meta name="robots" content="noindex" /> diff --git a/lib/styles/screen.css b/lib/styles/screen.css index 101ed3529..8ada48932 100644 --- a/lib/styles/screen.css +++ b/lib/styles/screen.css @@ -10,36 +10,38 @@ div.success, div.notify { color: #000; background-repeat: no-repeat; - background-position: .5em 0; - border-bottom: 1px solid; + background-position: 8px 50%; + border: 1px solid; font-size: 90%; - margin: 0; - padding-left: 3em; + margin: 0 0 0.5em; + padding: 0.4em; + padding-left: 32px; overflow: hidden; + border-radius: 5px; } div.error { background-color: #fcc; background-image: url(../images/error.png); - border-bottom-color: #faa; + border-color: #ebb; } div.info { background-color: #ccf; background-image: url(../images/info.png); - border-bottom-color: #aaf; + border-color: #bbe; } div.success { background-color: #cfc; background-image: url(../images/success.png); - border-bottom-color: #afa; + border-color: #beb; } div.notify { background-color: #ffc; background-image: url(../images/notify.png); - border-bottom-color: #ffa; + border-color: #eeb; } /* modal windows */ |