Files
medicalalert-web-reloaded/wp/wp-content/themes/medicalalert/src/scss/testimonial-carousel.scss
2024-06-17 14:43:43 -04:00

55 lines
1.2 KiB
SCSS

.testimonial-carousel-slice-container {
.testimonials {
.testimonial-image {
img {
width: 225px;
height: 225px;
border-radius: 50%;
}
}
.title {
color: $consumer-primary;
text-align: start;
}
.quote-attribution {
text-align: start;
}
.slick-dots li button::before {
font-size: 12px;
}
}
}
.consumer-brand {
.testimonial-carousel-slice-container {
.slick-dots {
li {
button {
&::before {
color: rgba(102, 0, 55, 0.5);
}
}
}
.slick-active button::before {
color: $consumer-primary;
}
}
}
}
.business-brand {
.testimonial-carousel-slice-container {
.slick-dots {
li {
button {
&::before {
color: rgba(0, 68, 124, 0.5);
}
}
}
.slick-active button::before {
color: $business-primary;
}
}
}
}