diff options
author | Aurélien Bompard <aurelien@bompard.org> | 2013-01-25 14:52:22 +0100 |
---|---|---|
committer | Aurélien Bompard <aurelien@bompard.org> | 2013-01-25 14:52:22 +0100 |
commit | 9e179cd7889ab9f47c41cee8ae9025ddf81aea04 (patch) | |
tree | ec89886d3c49fd41de4844b6e7f37bf4fabe0431 /hyperkitty/static/css/hyperkitty.css | |
parent | 431677576603b58c42fc488f174ef0254a7a430c (diff) | |
download | hyperkitty-9e179cd7889ab9f47c41cee8ae9025ddf81aea04.tar.gz hyperkitty-9e179cd7889ab9f47c41cee8ae9025ddf81aea04.tar.xz hyperkitty-9e179cd7889ab9f47c41cee8ae9025ddf81aea04.zip |
Fixes on the login form
Diffstat (limited to 'hyperkitty/static/css/hyperkitty.css')
-rw-r--r-- | hyperkitty/static/css/hyperkitty.css | 26 |
1 files changed, 22 insertions, 4 deletions
diff --git a/hyperkitty/static/css/hyperkitty.css b/hyperkitty/static/css/hyperkitty.css index f00baa1..53df5c1 100644 --- a/hyperkitty/static/css/hyperkitty.css +++ b/hyperkitty/static/css/hyperkitty.css @@ -72,12 +72,14 @@ ul.lists li a:hover { /* Login form */ -.center { - text-align: center; -} #loginform { - display: inline-block; text-align: left; + width: 40em; + margin: 0 auto; +} +#loginform h2 { + margin-bottom: 1.5em; + text-align: center; } .socialLogin { list-style: none; @@ -88,6 +90,22 @@ ul.lists li a:hover { padding: 5px; } +/* from Bootstrap's alert class */ +.errorlist { + list-style-type: none; + margin: 0 0 20px 0; + padding: 8px 35px 8px 14px; + text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); + border: 1px solid #eed3d7; + -webkit-border-radius: 4px; + -moz-border-radius: 4px; + border-radius: 4px; + color: #b94a48; + background-color: #f2dede; +} + + +/* ******************* */ .right { text-align: right; |