From 770951d5138d70fdc70ea14ac5a31fb94fc2f2f1 Mon Sep 17 00:00:00 2001 From: Richard Bos Date: Tue, 27 Jul 2021 11:17:28 +0200 Subject: [PATCH] Added support for tag_cloud --- static/stylesheet/tag_cloud.css | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 static/stylesheet/tag_cloud.css diff --git a/static/stylesheet/tag_cloud.css b/static/stylesheet/tag_cloud.css new file mode 100644 index 0000000..aedc0b9 --- /dev/null +++ b/static/stylesheet/tag_cloud.css @@ -0,0 +1,29 @@ +ul.tagcloud { + list-style: none; + padding: 0 3em 0 1.5em; + width: fit-content; +} + +ul.tagcloud li { + display: inline-block; +} + +li.tag-1 { + font-size: 150%; +} + +li.tag-2 { + font-size: 120%; +} + +li.tag-3 { + font-size: 100%; +} + +li.tag-4 { + font-size: 85%; +} + +li.tag-5 { + font-size: 75%; +}