diff options
Diffstat (limited to 'hyperkitty/static/css')
-rw-r--r-- | hyperkitty/static/css/hyperkitty.css | 192 |
1 files changed, 94 insertions, 98 deletions
diff --git a/hyperkitty/static/css/hyperkitty.css b/hyperkitty/static/css/hyperkitty.css index 7345e76..ec4f136 100644 --- a/hyperkitty/static/css/hyperkitty.css +++ b/hyperkitty/static/css/hyperkitty.css @@ -16,88 +16,6 @@ ul.nav.auth { } -/* List of lists */ - -h1.lists { - margin-bottom: 0.5em; -} - -.all-lists .list-name { - font-size: 120%; - color: black; - font-weight: bold; -} -.all-lists .list-address { - font-size: 90%; - font-style: italic; -} -.all-lists a { - display: block; - padding: 2em; - margin: 1em auto; - overflow: hidden; - border: 1px solid #ccc; - -webkit-border-radius: 5px; - -moz-border-radius: 5px; - border-radius: 5px; - color: black; -} -.all-lists a:hover { - text-decoration: none; - background-color: #eee; - color: black; -} - - -.Sb { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - background-color: white; - clear: both; - font-size: 13px; - line-height: 1.4; - margin: 20px 0 20px 68px; - outline: none; - position: relative; - width: 497px; - word-wrap: break-word; -} - -.ZX { - color: #999; - height: 40px; - margin: 0 2px; - position: relative; - bottom: -3px; - background-color: #F8F8F8; - border: 1px solid #CCC; - -} - - -/* 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; -} - - /* from Bootstrap's alert class */ .errorlist { list-style-type: none; @@ -113,16 +31,6 @@ h1.lists { } -/* User profile page */ - -table.user-data { - margin-top: 2em; - width: auto; -} - - -/* ******************* */ - .right { text-align: right; } @@ -146,6 +54,11 @@ table.user-data { display: inline-block; } +form .buttons .submit { + /* leave some space before the cancel button/link */ + margin-right: 2em; +} + /* Add icons to some text */ .participant, .discussion, .saved, .notsaved { @@ -181,6 +94,95 @@ table.user-data { } +/* ******************* */ + + +/* List of lists */ + +h1.lists { + margin-bottom: 0.5em; +} + +.all-lists .list-name { + font-size: 120%; + color: black; + font-weight: bold; +} +.all-lists .list-address { + font-size: 90%; + font-style: italic; +} +.all-lists a { + display: block; + padding: 2em; + margin: 1em auto; + overflow: hidden; + border: 1px solid #ccc; + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + border-radius: 5px; + color: black; +} +.all-lists a:hover { + text-decoration: none; + background-color: #eee; + color: black; +} + + +/* 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; +} + +table.user-data { + margin-top: 2em; + 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; +} + + /* Like / dislike */ form.likeform { @@ -862,9 +864,6 @@ a.reply.disabled { .reply-form textarea { width: 95%; } -.reply-form .buttons .submit { - margin-right: 2em; -} .reply-result { text-align: center; } @@ -890,6 +889,3 @@ a.reply.disabled { .new-thread-form textarea { width: 90%; } -.new-thread-form .buttons .submit { - margin-right: 2em; -} |