Files
namaste/html/scss/pro/sections/_testimonials.scss
gramps 373ebc8c93 Archive: Namaste PHP AMQP framework v1.0 (2017-2020)
952 days continuous production uptime, 40k+ tp/s single node.
Original corpo Bitbucket history not included — clean archive commit.
2026-04-05 09:49:30 -07:00

42 lines
1.0 KiB
SCSS
Executable File

// Testimonials section
.testimonial-carousel {
.carousel-control {
background-image: none;
top: $testimonial-carousel-control-top;
transform: $testimonial-carousel-control-transform;
&:before {
font-size: $testimonial-carousel-control-font-size;
color: $testimonial-carousel-control-color;
transition: $testimonial-carousel-control-hover-transition;
}
&:hover {
&:before {
color: $testimonial-carousel-control-hover-color;
transition: $testimonial-carousel-control-hover-transition;
}
}
&.left {
left: $testimonial-carousel-control-mx;
&:before {
content: "\2039";
}
}
&.right {
right: $testimonial-carousel-control-mx;
&:before {
content: "\203a";
}
}
}
.testimonial {
margin-right: $testimonial-carousel-mx;
margin-left: $testimonial-carousel-mx;
.avatar {
img {
box-shadow: $z-depth-1-half;
max-width: $testimonial-carousel-avatar-max-width;
}
}
}
}