Ei kuvausta
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ui-carousel.scss 1.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /* Carousel
  2. ? Swiper page specif style only, refer swiper.scss for swiper component style
  3. ******************************************************************************* */
  4. .swiper {
  5. block-size: 400px;
  6. inline-size: 100%;
  7. .swiper-slide {
  8. background-color: #ecebed;
  9. background-position: center;
  10. background-size: cover;
  11. font-size: 1.5rem;
  12. padding-block: 2rem;
  13. padding-inline: 0;
  14. text-align: center;
  15. }
  16. }
  17. /* Multiple slides, 3D cover flow effect */
  18. #swiper-multiple-slides,
  19. #swiper-3d-coverflow-effect {
  20. block-size: 300px;
  21. }
  22. #swiper-3d-coverflow-effect {
  23. .swiper-slide {
  24. max-inline-size: 300px;
  25. }
  26. }
  27. /* 3D cube effect */
  28. #swiper-3d-cube-effect {
  29. max-inline-size: 400px;
  30. }
  31. /* 3D flip effect */
  32. #swiper-3d-flip-effect {
  33. padding: 50px;
  34. }
  35. /* Gallery */
  36. #swiper-gallery {
  37. block-size: 500px;
  38. .gallery-top {
  39. block-size: 80%;
  40. inline-size: 100%;
  41. }
  42. .gallery-thumbs {
  43. box-sizing: border-box;
  44. block-size: 20%;
  45. padding-block: 10px;
  46. padding-inline: 0;
  47. .swiper-slide {
  48. block-size: 100%;
  49. cursor: pointer;
  50. inline-size: 25%;
  51. opacity: .4;
  52. }
  53. .swiper-slide-thumb-active {
  54. opacity: 1;
  55. }
  56. }
  57. }