diff options
Diffstat (limited to 'hyperkitty/static')
-rw-r--r-- | hyperkitty/static/css/hyperkitty.css | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/hyperkitty/static/css/hyperkitty.css b/hyperkitty/static/css/hyperkitty.css index 4aa3662..6a9f85a 100644 --- a/hyperkitty/static/css/hyperkitty.css +++ b/hyperkitty/static/css/hyperkitty.css @@ -7,6 +7,7 @@ body { #logo { display: block; margin: 80px auto; + clear: both; } ul.nav.auth { @@ -15,6 +16,32 @@ ul.nav.auth { } +/* List of lists */ + +h1.lists { + margin-bottom: 0.5em; +} + +ul.lists .list-name { + font-size: 120%; + color: black; + font-weight: bold; +} +ul.lists li a { + display: block; + float: left; + padding: 2em; + margin: 0 3em 3em 0; + border: 1px solid #ccc; + -webkit-border-radius: 5px; + -moz-border-radius: 5px; + border-radius: 5px; +} +ul.lists li a:hover { + text-decoration: none; + background-color: #eee; +} + .Sb { -webkit-box-sizing: border-box; |