Replace gradient buttons with solid color for tech-tag class
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 <noreply@anthropic.com>
This commit is contained in:
@@ -3518,7 +3518,7 @@ aside.related-articles {
|
|||||||
/* Technology badges/tags styling */
|
/* Technology badges/tags styling */
|
||||||
.tech-tag {
|
.tech-tag {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
background: linear-gradient(135deg, #144784 0%, #179e83 100%);
|
background: #179e83;
|
||||||
color: white;
|
color: white;
|
||||||
padding: 6px 12px;
|
padding: 6px 12px;
|
||||||
border-radius: 20px;
|
border-radius: 20px;
|
||||||
@@ -3529,8 +3529,9 @@ aside.related-articles {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.tech-tag:hover {
|
.tech-tag:hover {
|
||||||
transform: scale(1.05);
|
background: #11725e;
|
||||||
box-shadow: 0 2px 8px rgba(20, 71, 132, 0.3);
|
transform: translateY(-2px);
|
||||||
|
box-shadow: 0 2px 8px rgba(23, 158, 131, 0.3);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Responsive design for capabilities grid */
|
/* Responsive design for capabilities grid */
|
||||||
|
|||||||
7
assets/css/main.min.css
vendored
7
assets/css/main.min.css
vendored
@@ -3470,7 +3470,7 @@ aside.related-articles {
|
|||||||
/* Technology badges/tags styling */
|
/* Technology badges/tags styling */
|
||||||
.tech-tag {
|
.tech-tag {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
background: linear-gradient(135deg, #144784 0%, #179e83 100%);
|
background: #179e83;
|
||||||
color: white;
|
color: white;
|
||||||
padding: 6px 12px;
|
padding: 6px 12px;
|
||||||
border-radius: 20px;
|
border-radius: 20px;
|
||||||
@@ -3481,8 +3481,9 @@ aside.related-articles {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.tech-tag:hover {
|
.tech-tag:hover {
|
||||||
transform: scale(1.05);
|
background: #11725e;
|
||||||
box-shadow: 0 2px 8px rgba(20, 71, 132, 0.3);
|
transform: translateY(-2px);
|
||||||
|
box-shadow: 0 2px 8px rgba(23, 158, 131, 0.3);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Responsive design for capabilities grid */
|
/* Responsive design for capabilities grid */
|
||||||
|
|||||||
Reference in New Issue
Block a user