This is an automated email from the ASF dual-hosted git repository.
piotr pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iggy-website.git
The following commit(s) were added to refs/heads/main by this push:
new c6fa62df Fix styling for blog tags list
c6fa62df is described below
commit c6fa62df2fc7d4044ea12c005e8bbbcb91ad00f3
Author: spetz <[email protected]>
AuthorDate: Mon Nov 17 15:50:30 2025 +0100
Fix styling for blog tags list
---
src/css/blog.css | 21 ++++++++++++++-------
1 file changed, 14 insertions(+), 7 deletions(-)
diff --git a/src/css/blog.css b/src/css/blog.css
index 00657839..f1ba9f4a 100644
--- a/src/css/blog.css
+++ b/src/css/blog.css
@@ -1327,9 +1327,13 @@ hr {
opacity: 0.8;
}
-.blog-tags-post-list-page article h2,
-.blog-tags-post-list-page .title_f1Hy {
- font-size: 2rem !important;
+/* Tag pages title styling - match blog list page */
+.blog-tags-post-list-page article header h2,
+.blog-tags-post-list-page .title_f1Hy,
+.blog-tags-post-list-page article header a[href*="/blogs/"],
+h2.title_f1Hy,
+h2.title_f1Hy a {
+ font-size: 2.75rem !important;
font-weight: 700 !important;
letter-spacing: -0.02em !important;
margin-bottom: 1.5rem !important;
@@ -1337,15 +1341,18 @@ hr {
margin-top: 0 !important;
}
-.blog-tags-post-list-page article h2 a,
-.blog-tags-post-list-page .title_f1Hy a {
+.blog-tags-post-list-page article header h2 a,
+.blog-tags-post-list-page .title_f1Hy a,
+h2.title_f1Hy a {
color: var(--text-1) !important;
text-decoration: none !important;
transition: opacity 0.2s ease;
+ font-size: 2.75rem !important;
}
-.blog-tags-post-list-page article h2 a:hover,
-.blog-tags-post-list-page .title_f1Hy a:hover {
+.blog-tags-post-list-page article header h2 a:hover,
+.blog-tags-post-list-page .title_f1Hy a:hover,
+h2.title_f1Hy a:hover {
opacity: 0.7;
}