diff options
author | Aurélien Bompard <aurelien@bompard.org> | 2013-01-20 16:10:20 -0600 |
---|---|---|
committer | Aurélien Bompard <aurelien@bompard.org> | 2013-01-23 06:07:59 -0500 |
commit | 0f294dd468ceeaf6a18c0595c8058efd1503dfec (patch) | |
tree | 52b4755e58d77ba9d42f17980c823154aa478f17 /hyperkitty/static | |
parent | ff8a5af67943bf7c25c1d1e1fd58ace60d3c2a87 (diff) | |
download | hyperkitty-0f294dd468ceeaf6a18c0595c8058efd1503dfec.tar.gz hyperkitty-0f294dd468ceeaf6a18c0595c8058efd1503dfec.tar.xz hyperkitty-0f294dd468ceeaf6a18c0595c8058efd1503dfec.zip |
Small overhaul of the list of lists
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; |