952 days continuous production uptime, 40k+ tp/s single node. Original corpo Bitbucket history not included — clean archive commit.
42 lines
1.0 KiB
SCSS
Executable File
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;
|
|
}
|
|
}
|
|
}
|
|
}
|