diff options
author | Thomas Citharel <tcit@tcit.fr> | 2015-03-08 14:47:22 +0100 |
---|---|---|
committer | Thomas Citharel <tcit@tcit.fr> | 2015-03-08 14:47:22 +0100 |
commit | ab87a7fe6934b5fa0f06964c67a27826774126b4 (patch) | |
tree | e8f20b190b69ff47276731446544d98ac8c84dea /themes/default/css/style.css | |
parent | 512ff18015919bf3119509d1a8b8cf87b3b86f5f (diff) | |
download | wallabag-ab87a7fe6934b5fa0f06964c67a27826774126b4.tar.gz wallabag-ab87a7fe6934b5fa0f06964c67a27826774126b4.tar.zst wallabag-ab87a7fe6934b5fa0f06964c67a27826774126b4.zip |
tag cloud is present, #1122 is implemented
Diffstat (limited to 'themes/default/css/style.css')
-rwxr-xr-x | themes/default/css/style.css | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/themes/default/css/style.css b/themes/default/css/style.css index a122dc54..58d908ee 100755 --- a/themes/default/css/style.css +++ b/themes/default/css/style.css | |||
@@ -455,3 +455,33 @@ pre code { | |||
455 | border: 1px solid #ddd; | 455 | border: 1px solid #ddd; |
456 | font-size: 0.96em; | 456 | font-size: 0.96em; |
457 | } | 457 | } |
458 | |||
459 | /* ========================================================================== | ||
460 | Tags-related styles | ||
461 | ========================================================================== */ | ||
462 | |||
463 | .suggestedtag { | ||
464 | padding: 4px; | ||
465 | cursor: pointer; | ||
466 | display: inline-block; | ||
467 | } | ||
468 | |||
469 | #tagcloud .smallesttag { | ||
470 | font-size: x-small; | ||
471 | } | ||
472 | |||
473 | #tagcloud .smalltag { | ||
474 | font-size: small; | ||
475 | } | ||
476 | |||
477 | #tagcloud .mediumtag { | ||
478 | font-size:medium; | ||
479 | } | ||
480 | |||
481 | #tagcloud .largetag { | ||
482 | font-size:large; | ||
483 | } | ||
484 | |||
485 | #tagcloud .largesttag { | ||
486 | font-size:larger; | ||
487 | } | ||