diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-07-09 18:02:51 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-07-23 18:36:44 +0200 |
commit | 9982f47ab5ea7eff52c9dd0275bbfb536b1e2dba (patch) | |
tree | 2174a80f206d1ee8a93fddaa6af13f36e1c4fa6f /core | |
parent | f7422ad132e68c901c5658bbba1bffa626efaa37 (diff) | |
download | nextcloud-server-9982f47ab5ea7eff52c9dd0275bbfb536b1e2dba.tar.gz nextcloud-server-9982f47ab5ea7eff52c9dd0275bbfb536b1e2dba.zip |
initial WIP for cleaner log in page
Diffstat (limited to 'core')
-rw-r--r-- | core/css/styles.css | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index 7d927da151c..06887dffcc5 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -20,16 +20,19 @@ body { background:#fefefe; font:normal .8em/1.6em "Helvetica Neue",Helvetica,Ari position:fixed; top:0; left:0; right:0; z-index:100; height:45px; line-height:2.5em; background:#1d2d44 url('../img/noise.png') repeat; -moz-box-shadow:0 0 10px rgba(0, 0, 0, .5), inset 0 -2px 10px #222; -webkit-box-shadow:0 0 10px rgba(0, 0, 0, .5), inset 0 -2px 10px #222; box-shadow:0 0 10px rgba(0, 0, 0, .5), inset 0 -2px 10px #222; } -#body-login #header { margin: -2em auto 0; text-align:center; height:10em; padding:1em 0 .5em; - -moz-box-shadow:0 0 1em rgba(0, 0, 0, .5); -webkit-box-shadow:0 0 1em rgba(0, 0, 0, .5); box-shadow:0 0 1em rgba(0, 0, 0, .5); -background:#1d2d44; /* Old browsers */ -background:-moz-linear-gradient(top, #35537a 0%, #1d2d44 100%); /* FF3.6+ */ -background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,#35537a), color-stop(100%,#1d2d44)); /* Chrome,Safari4+ */ -background:-webkit-linear-gradient(top, #35537a 0%,#1d2d44 100%); /* Chrome10+,Safari5.1+ */ -background:-o-linear-gradient(top, #35537a 0%,#1d2d44 100%); /* Opera11.10+ */ -background:-ms-linear-gradient(top, #35537a 0%,#1d2d44 100%); /* IE10+ */ -background:linear-gradient(top, #35537a 0%,#1d2d44 100%); /* W3C */ -filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#35537a', endColorstr='#1d2d44',GradientType=0 ); /* IE6-9 */ } + +#body-login { + text-align:center; + -moz-box-shadow:0 0 1em rgba(0, 0, 0, .5); -webkit-box-shadow:0 0 1em rgba(0, 0, 0, .5); box-shadow:0 0 1em rgba(0, 0, 0, .5); + background:#1d2d44; /* Old browsers */ + background:-moz-linear-gradient(top, #35537a 0%, #1d2d44 100%); /* FF3.6+ */ + background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,#35537a), color-stop(100%,#1d2d44)); /* Chrome,Safari4+ */ + background:-webkit-linear-gradient(top, #35537a 0%,#1d2d44 100%); /* Chrome10+,Safari5.1+ */ + background:-o-linear-gradient(top, #35537a 0%,#1d2d44 100%); /* Opera11.10+ */ + background:-ms-linear-gradient(top, #35537a 0%,#1d2d44 100%); /* IE10+ */ + background:linear-gradient(top, #35537a 0%,#1d2d44 100%); /* W3C */ + filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#35537a', endColorstr='#1d2d44',GradientType=0 ); /* IE6-9 */ +} #owncloud { position:absolute; top:0; left:0; padding:6px; padding-bottom:0; } .header-right { float:right; vertical-align:middle; padding:0.5em; } @@ -171,7 +174,7 @@ input[type="submit"].enabled { background:#66f866; border:1px solid #5e5; -moz-b #body-login p.info a { font-weight:bold; color:#777; } #body-login #submit.login { margin-right:7px; } /* quick fix for log in button not being aligned with input fields, should be properly fixed by input field width later */ -#login { min-height:30em; margin:2em auto 0; border-bottom:1px solid #f8f8f8; background:#eee; } +#login { min-height:30em; } #login form { width:22em; margin:2em auto 2em; padding:0; } #login form fieldset { margin-bottom:20px; } #login form #adminaccount { margin-bottom:5px; } |