diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-09-08 17:55:53 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-09-08 17:55:53 +0200 |
commit | 3db2b114352ffc066999ece45a8a22fff66e5b8f (patch) | |
tree | fd4f7b37604f6db3185d35b03fbe73cbefd0cbac /core/css | |
parent | 6cdb1d89ae2d2c23e326da2a719ee88d495dd05e (diff) | |
download | nextcloud-server-3db2b114352ffc066999ece45a8a22fff66e5b8f.tar.gz nextcloud-server-3db2b114352ffc066999ece45a8a22fff66e5b8f.zip |
fix styling and wording of no-JavaScript message
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/styles.css | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index 2f8f9612f78..a7f63e8492e 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -42,28 +42,28 @@ body { position: absolute; top: 0; bottom: 0; - z-index: 999; + z-index: 9000; width: 100%; text-align: center; - background-color: rgba(50,0,0,0.5); - color: white; - text-shadow: 0px 0px 5px black; + background-color: rgba(0,0,0,0.5); + color: #fff; line-height: 125%; - font-size: x-large; + font-size: 24px; } #nojavascript div { + display: block; + position: relative; width: 50%; - top: 40%; - position: absolute; - left: 50%; - margin-left: -25%; + top: 30%; + margin: 0px auto; } #nojavascript a { - color: #ccc; - text-decoration: underline; + color: #fff; + border-bottom: 2px dotted #fff; } -#nojavascript a:hover { - color: #aaa; +#nojavascript a:hover, +#nojavascript a:focus { + color: #ddd; } |