diff options
author | sarven <csarven@plantard.controlezvous.ca> | 2009-01-21 18:35:45 +0000 |
---|---|---|
committer | sarven <csarven@plantard.controlezvous.ca> | 2009-01-21 18:35:45 +0000 |
commit | 0b0f25ce93bdf583336266f3ef9851d6a3e843dd (patch) | |
tree | e073c3d3bf0dce3230e117d38507254ad377d028 /theme/base | |
parent | 32601065372149e652cf287af02361cde4663b3e (diff) |
Public tagcloud and tag cloud styles
Diffstat (limited to 'theme/base')
-rw-r--r-- | theme/base/css/display.css | 34 |
1 files changed, 21 insertions, 13 deletions
diff --git a/theme/base/css/display.css b/theme/base/css/display.css index c60097145..59f3240f1 100644 --- a/theme/base/css/display.css +++ b/theme/base/css/display.css @@ -1110,33 +1110,41 @@ 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; +} +.tag-cloud-4 { +font-size:2.5em; +} +.tag-cloud-5 { +font-size:3em; } -#tagcloud .weight_4 { -font-size:1.9em; +.tag-cloud-6 { +font-size:3.5em; } -#tagcloud .weight_5 { -font-size:2.2em; +.tag-cloud-7 { +font-size:4em; } |