Skip to content

Commit 18f547c

Browse files
committed
Merge remote-tracking branch 'upstream/main' into fix/dual-color-on-darktheme
2 parents ef13a13 + edb6395 commit 18f547c

1 file changed

Lines changed: 76 additions & 0 deletions

File tree

src/css/custom.css

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,82 @@
55
color: inherit;
66
}
77

8+
/* Careers testimonials */
9+
.testimonials-section .testimonial-carousel {
10+
background: #ffffff;
11+
border: 1px solid rgba(15, 23, 42, 0.06);
12+
color: #111827;
13+
}
14+
15+
/* Ensure testimonial cards are visible by default (override animation initial states) */
16+
.testimonials-section .testimonial-carousel {
17+
opacity: 1 !important;
18+
transform: none !important;
19+
}
20+
21+
.testimonials-section .testimonial-carousel--light {
22+
background: #ffffff;
23+
border: 1px solid rgba(15, 23, 42, 0.06);
24+
box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
25+
}
26+
27+
.testimonials-section .testimonial-content {
28+
color: #0f172a;
29+
}
30+
31+
.testimonials-section .testimonial-content blockquote {
32+
color: #0f172a;
33+
}
34+
35+
.testimonials-section .testimonial-author {
36+
display: inline-flex;
37+
flex-direction: column;
38+
align-items: center;
39+
gap: 0.25rem;
40+
padding: 0.85rem 1.1rem;
41+
border-radius: 1rem;
42+
background: rgba(255, 255, 255, 0.98);
43+
border: 1px solid rgba(15, 23, 42, 0.08);
44+
box-shadow: 0 10px 30px rgba(15, 23, 42, 0.16);
45+
opacity: 1;
46+
mix-blend-mode: normal;
47+
isolation: isolate;
48+
}
49+
50+
/* Strong override to ensure author text is always visible */
51+
.testimonials-section .testimonial-author {
52+
background: rgba(255, 255, 255, 0.98) !important;
53+
border: 1px solid rgba(15, 23, 42, 0.08) !important;
54+
box-shadow: 0 10px 30px rgba(15, 23, 42, 0.16) !important;
55+
opacity: 1 !important;
56+
mix-blend-mode: normal !important;
57+
}
58+
59+
.testimonials-section .testimonial-author-name,
60+
.testimonials-section .testimonial-author-role {
61+
color: #111827 !important;
62+
-webkit-text-fill-color: #111827 !important;
63+
opacity: 1 !important;
64+
mix-blend-mode: normal !important;
65+
text-shadow: none !important;
66+
}
67+
68+
.testimonials-section .testimonial-author-name {
69+
color: #111827;
70+
-webkit-text-fill-color: #111827;
71+
text-shadow: none;
72+
opacity: 1;
73+
mix-blend-mode: normal;
74+
font-weight: 900;
75+
}
76+
77+
.testimonials-section .testimonial-author-role {
78+
color: #334155;
79+
-webkit-text-fill-color: #334155;
80+
opacity: 1;
81+
mix-blend-mode: normal;
82+
}
83+
884
/* You can override the default Infima variables here. */
985
@import "tailwindcss";
1086

0 commit comments

Comments
 (0)