This commit is contained in:
2026-04-03 10:16:36 -05:00
parent 17da901a23
commit cad8a343ef

View File

@@ -10548,7 +10548,14 @@ header.main-header .header-sticky.active {
animation: orbDrift 15s ease-in-out infinite; animation: orbDrift 15s ease-in-out infinite;
} }
/* ---- Animated gradient on accent spans ---- */ /* ---- Accent spans: solid colour guaranteed on every device ---- */
.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 h2 span,
.section-title h1 span { .section-title h1 span {
background: linear-gradient(90deg, #d92800 0%, #ff5c38 40%, #d92800 100%); background: linear-gradient(90deg, #d92800 0%, #ff5c38 40%, #d92800 100%);
@@ -10556,8 +10563,10 @@ header.main-header .header-sticky.active {
-webkit-background-clip: text; -webkit-background-clip: text;
-webkit-text-fill-color: transparent; -webkit-text-fill-color: transparent;
background-clip: text; background-clip: text;
color: transparent;
animation: textGradientShift 4s ease infinite; animation: textGradientShift 4s ease infinite;
} }
}
@keyframes textGradientShift { @keyframes textGradientShift {
0% { background-position: 0% center; } 0% { background-position: 0% center; }
@@ -10969,3 +10978,4 @@ body {
transition: color 0.35s ease, text-shadow 0.35s ease; transition: color 0.35s ease, text-shadow 0.35s ease;
} }