change relative names to percentages in font sizes

darcs-hash:20080729195055-84dde-f7e6200cc81deea2399ce7c5d5cb8cddcc32ae2d.gz
This commit is contained in:
Evan Prodromou 2008-07-29 15:50:55 -04:00
parent 575f705451
commit c3a8751208
1 changed files with 7 additions and 7 deletions

View File

@ -650,28 +650,28 @@ input#openid_url {
/* ===== Tag Cloud Styling ===== */
p#tagcloud largest {
font-size: xx-large;
font-size: 400%;
}
p#tagcloud verylarge {
font-size: x-large;
font-size: 200%;
}
p#tagcloud large {
font-size: large;
font-size: 150%;
}
p#tagcloud medium {
font-size: medium;
font-size: 100%;
}
p#tagcloud small {
font-size: small;
font-size: 75%;
}
p#tagcloud verysmall {
font-size: x-small;
font-size: 50%;
}
p#tagcloud smallest {
font-size: xx-small;
font-size: 25%;
}