| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- // Carousel
- // *******************************************************************************
-
- .carousel {
- .carousel-item.active,
- .carousel-item.carousel-item-start {
- h1,
- .h1,
- h2,
- .h2,
- h3,
- .h3,
- h4,
- .h4,
- h5,
- .h5,
- h6,
- .h6 {
- color: $carousel-caption-color;
- }
- }
- .carousel-control-prev-icon,
- .carousel-control-next-icon {
- filter: invert(1);
- }
- }
-
- .carousel.carousel-dark {
- .carousel-item.active,
- .carousel-item.carousel-item-start {
- h1,
- .h1,
- h2,
- .h2,
- h3,
- .h3,
- h4,
- .h4,
- h5,
- .h5,
- h6,
- .h6 {
- color: $carousel-dark-caption-color;
- }
- }
- .carousel-control-prev-icon,
- .carousel-control-next-icon {
- filter: invert(0);
- }
- }
-
- [data-bs-theme="dark"] {
- .carousel:not(.carousel-dark) .carousel-caption,
- &.carousel:not(.carousel-dark) .carousel-caption {
- color: $carousel-caption-color;
- }
- }
|