diff options
author | Aurélien Bompard <aurelien@bompard.org> | 2013-02-23 13:20:49 +0100 |
---|---|---|
committer | Aurélien Bompard <aurelien@bompard.org> | 2013-02-23 13:20:49 +0100 |
commit | 376e916c1872390a78ae589c835ce015fec11720 (patch) | |
tree | e87a668c9ace4e42ec6d2427b53d66eb165e47e5 /hyperkitty/static/css/hyperkitty-user.css | |
parent | 258b2ae4b54c4f93ee7a7884f9ec9e85470e55bd (diff) | |
download | hyperkitty-376e916c1872390a78ae589c835ce015fec11720.tar.gz hyperkitty-376e916c1872390a78ae589c835ce015fec11720.tar.xz hyperkitty-376e916c1872390a78ae589c835ce015fec11720.zip |
Split up CSS for clarity
Diffstat (limited to 'hyperkitty/static/css/hyperkitty-user.css')
-rw-r--r-- | hyperkitty/static/css/hyperkitty-user.css | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/hyperkitty/static/css/hyperkitty-user.css b/hyperkitty/static/css/hyperkitty-user.css new file mode 100644 index 0000000..69b50d5 --- /dev/null +++ b/hyperkitty/static/css/hyperkitty-user.css @@ -0,0 +1,74 @@ +/* + * Login form + */ + +#login, +#register { + text-align: left; + width: 40em; + margin: 0 auto; +} +#login h2, +#register h2 { + margin: 4em 0 1em 0; + text-align: center; + font-size: 160%; +} +#login .social-login { + text-align: center; +} +#login .social-login li { + margin: 0 20px; +} + + + +/* + * User profile page + */ + +#user-profile { + padding: 0 2em; +} + +#user-profile h1 { + margin-bottom: 1em; +} + +#user-profile h3 { + margin-top: 2em; +} + +#user-profile form { + float: left; +} + +#user-profile div.gravatar { + /*float: right;*/ + float: left; + width: auto; + font-size: 95%; + margin-left: 4em; +} +#user-profile img.gravatar { + width: auto; +} +#user-profile .gravatar p { + text-align: center; +} + + +table.user-data { + width: auto; +} +table.user-data th label { + font-weight: bold; +} +table.user-data th, +table.user-data td { + vertical-align: middle; +} +table.user-data label, +table.user-data input { + margin-bottom: 0; +} |