remove effect in css

This commit is contained in:
2026-04-03 10:43:12 -05:00
parent 48fb1a585f
commit 71b0897f48

View File

@@ -517,30 +517,15 @@ header.main-header .header-sticky.active {
animation: orbDrift 15s ease-in-out infinite;
}
/* ---- Accent spans: solid colour guaranteed on every device ---- */
/* ---- Accent spans solid colour, no gradient tricks ---- */
.section-title h2 span,
.section-title h1 span {
color: #d92800;
}
/* ---- Upgrade to animated gradient where background-clip:text works ---- */
@supports (-webkit-background-clip: text) or (background-clip: text) {
.section-title h2 span,
.section-title h1 span {
background: linear-gradient(90deg, #d92800 0%, #ff5c38 40%, #d92800 100%);
background-size: 200% auto;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
color: transparent;
animation: textGradientShift 4s ease infinite;
}
}
@keyframes textGradientShift {
0% { background-position: 0% center; }
50% { background-position: 100% center; }
100% { background-position: 0% center; }
color: #d92800 !important;
background: none !important;
-webkit-background-clip: unset !important;
background-clip: unset !important;
-webkit-text-fill-color: unset !important;
animation: none !important;
}
/* ---- Preloader gradient ---- */
@@ -947,3 +932,4 @@ body {
transition: color 0.35s ease, text-shadow 0.35s ease;
}