diff options
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/header.css | 3 | ||||
-rw-r--r-- | core/css/styles.css | 29 |
2 files changed, 15 insertions, 17 deletions
diff --git a/core/css/header.css b/core/css/header.css index f83ef451ce6..0223f5f18b9 100644 --- a/core/css/header.css +++ b/core/css/header.css @@ -42,8 +42,7 @@ } #header .logo { - background-image: url(../img/logo.svg); - background-repeat: no-repeat; + background: url(../img/logo.svg) no-repeat center; width: 252px; height: 120px; margin: 0 auto; diff --git a/core/css/styles.css b/core/css/styles.css index 2f8f9612f78..64b37c89b0b 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -39,31 +39,31 @@ body { #nojavascript { - position: absolute; + position: fixed; 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: 35%; + 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; } @@ -678,7 +678,6 @@ label.infield { #body-login .wrapper { min-height: 100%; margin: 0 auto -70px; - width: 300px; } #body-login footer, #body-login .push { height: 70px; |