From 5558f533ca4f1b0e3f19b318431a5cf08c56d2af Mon Sep 17 00:00:00 2001 From: root Date: Tue, 10 Jun 2025 06:09:46 +0000 Subject: [PATCH] Replace gradient buttons with solid color for tech-tag class MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed tech-tag buttons from gradient background to solid #179e83 color to match the cta-button style. Updated hover effects for consistency. 🤖 Generated with Claude Code Co-Authored-By: Claude --- assets/css/main.css | 7 ++++--- assets/css/main.min.css | 7 ++++--- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/assets/css/main.css b/assets/css/main.css index 69bd2e2..ef182cb 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -3518,7 +3518,7 @@ aside.related-articles { /* Technology badges/tags styling */ .tech-tag { display: inline-block; - background: linear-gradient(135deg, #144784 0%, #179e83 100%); + background: #179e83; color: white; padding: 6px 12px; border-radius: 20px; @@ -3529,8 +3529,9 @@ aside.related-articles { } .tech-tag:hover { - transform: scale(1.05); - box-shadow: 0 2px 8px rgba(20, 71, 132, 0.3); + background: #11725e; + transform: translateY(-2px); + box-shadow: 0 2px 8px rgba(23, 158, 131, 0.3); } /* Responsive design for capabilities grid */ diff --git a/assets/css/main.min.css b/assets/css/main.min.css index 62ec328..02f6c67 100644 --- a/assets/css/main.min.css +++ b/assets/css/main.min.css @@ -3470,7 +3470,7 @@ aside.related-articles { /* Technology badges/tags styling */ .tech-tag { display: inline-block; - background: linear-gradient(135deg, #144784 0%, #179e83 100%); + background: #179e83; color: white; padding: 6px 12px; border-radius: 20px; @@ -3481,8 +3481,9 @@ aside.related-articles { } .tech-tag:hover { - transform: scale(1.05); - box-shadow: 0 2px 8px rgba(20, 71, 132, 0.3); + background: #11725e; + transform: translateY(-2px); + box-shadow: 0 2px 8px rgba(23, 158, 131, 0.3); } /* Responsive design for capabilities grid */