diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-01-21 14:43:10 -0500 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-01-21 14:43:10 -0500 |
commit | d8ac85d8fc3493ec69f6d5b7b770f14cd71cc0ef (patch) | |
tree | cb65ebfd4410eb3a0138481a60499157d7f07bc2 /theme/base/css/display.css | |
parent | 30dadb1ad548a739b937a586b5ede90646597110 (diff) | |
parent | fd6549e438a719f3c884b517f26293da181f9a35 (diff) |
Merge branch 'master' of evan@dev.controlyourself.ca:/var/www/trunk
Diffstat (limited to 'theme/base/css/display.css')
-rw-r--r-- | theme/base/css/display.css | 39 |
1 files changed, 26 insertions, 13 deletions
diff --git a/theme/base/css/display.css b/theme/base/css/display.css index c60097145..c16fa4ab0 100644 --- a/theme/base/css/display.css +++ b/theme/base/css/display.css @@ -1110,34 +1110,47 @@ width:24px; /* tagcloud */ -#tagcloud ul { +.tag-cloud { list-style-type:none; } -#tagcloud ul li { +.tag-cloud li { display:inline; margin-right:7px; -line-height:1.4; +line-height:1; +} +.tag-cloud li a { +text-decoration:none; } - #tagcloud.section dt { text-transform:uppercase; font-weight:bold; } -#tagcloud .weight_1 { +.tag-cloud-1 { font-size:1em; } -#tagcloud .weight_2 { -font-size:1.3em; +.tag-cloud-2 { +font-size:1.5em; } -#tagcloud .weight_3 { -font-size:1.6em; +.tag-cloud-3 { +font-size:2em; } -#tagcloud .weight_4 { -font-size:1.9em; +.tag-cloud-4 { +font-size:2.5em; } -#tagcloud .weight_5 { -font-size:2.2em; +.tag-cloud-5 { +font-size:3em; } +.tag-cloud-6 { +font-size:3.5em; +} +.tag-cloud-7 { +font-size:4em; +} + +#publictagcloud #tagcloud.section dt { +display:none; +} + |