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-index.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-index.css')
-rw-r--r-- | hyperkitty/static/css/hyperkitty-index.css | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/hyperkitty/static/css/hyperkitty-index.css b/hyperkitty/static/css/hyperkitty-index.css new file mode 100644 index 0000000..0bd8889 --- /dev/null +++ b/hyperkitty/static/css/hyperkitty-index.css @@ -0,0 +1,37 @@ +/* List of lists */ + +#logo { + display: block; + margin: 120px auto; + clear: both; +} + +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; +} |