summaryrefslogtreecommitdiff
path: root/static/css/style.css
diff options
context:
space:
mode:
authorJakob L. Kreuze <zerodaysfordays@sdf.org>2026-02-18 17:56:13 -0500
committerJakob L. Kreuze <zerodaysfordays@sdf.org>2026-02-19 13:51:00 -0500
commit995c709915957f9932ae0f3fa137b8bb9877886a (patch)
tree31507b64d284e5f91e6ac32140a33625008fe67e /static/css/style.css
parent3330177ae946da9f347f9ac95ac14025f578a089 (diff)
Stylize bookmark and blogroll pages
Diffstat (limited to 'static/css/style.css')
-rw-r--r--static/css/style.css37
1 files changed, 37 insertions, 0 deletions
diff --git a/static/css/style.css b/static/css/style.css
index b096ca0..01d139a 100644
--- a/static/css/style.css
+++ b/static/css/style.css
@@ -1084,3 +1084,40 @@ tbody tr:last-child td {
background-color: #eee;
color: #2e8b57
}
+
+#tag-cloud {
+ list-style-type: none;
+ padding: 0;
+ margin: 20px 0;
+ display: flex;
+ flex-wrap: wrap;
+ gap: 8px;
+ line-height: 1.8
+}
+
+#tag-cloud a {
+ border-bottom: none
+}
+
+#tag-cloud li {
+ background-color: #f9f9f9;
+ border: 1px solid #ccc;
+ padding: 2px 8px;
+ font-size: 9px;
+ text-transform: uppercase;
+ color: #666;
+ transition: all .2s ease;
+ display: inline-block
+}
+
+#tag-cloud a:hover li {
+ background-color: #eee;
+ border-color: #2e8b57;
+ color: #2e8b57;
+ box-shadow: 1px 1px 0#ccc
+}
+
+#tag-cloud li::after {
+ color: #999;
+ font-weight: 400
+}