Advertisement
s-sols

Untitled

Apr 2nd, 2025
420
0
29 days
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.99 KB | None | 0 0
  1. :is(.d-lg-block, .d-lg-none) .swiper:not(.swiper-initialized) > .swiper-wrapper {
  2. justify-content: center;
  3. left: 12px;
  4. }
  5.  
  6. :is(.d-lg-block, .d-lg-none) .swiper:not(.swiper-initialized) > .swiper-wrapper > .swiper-slide {
  7. width: calc(100% / 7);
  8. display: none;
  9. }
  10.  
  11. :is(.d-lg-block, .d-lg-none) .swiper:not(.swiper-initialized) > .swiper-wrapper > .swiper-slide:nth-of-type(-n+4) {
  12. display: block;
  13. }
  14. :is(.d-lg-block, .d-lg-none) .swiper:not(.swiper-initialized) > .swiper-wrapper > .swiper-slide:nth-last-of-type(-n+3) {
  15. display: block;
  16. }
  17.  
  18. :is(.d-lg-block, .d-lg-none) .swiper:not(.swiper-initialized) > .swiper-wrapper > .swiper-slide:nth-last-of-type(1) {
  19. order: -1;
  20. }
  21.  
  22. :is(.d-lg-block, .d-lg-none) .swiper:not(.swiper-initialized) > .swiper-wrapper > .swiper-slide:nth-last-of-type(2) {
  23. order: -2;
  24. }
  25.  
  26. :is(.d-lg-block, .d-lg-none) .swiper:not(.swiper-initialized) > .swiper-wrapper > .swiper-slide:nth-last-of-type(3) {
  27. order: -3;
  28. }
  29.  
  30. @media screen and (max-width: 1599px) {
  31. :is(.d-lg-block, .d-lg-none) .swiper:not(.swiper-initialized) > .swiper-wrapper > .swiper-slide {
  32. width: calc(100% / 6);
  33. }
  34. }
  35.  
  36. @media screen and (max-width: 1399px) {
  37. :is(.d-lg-block, .d-lg-none) .swiper:not(.swiper-initialized) > .swiper-wrapper > .swiper-slide {
  38. width: calc(100% / 5);
  39. }
  40. }
  41.  
  42. @media screen and (max-width: 1199px) {
  43. :is(.d-lg-block, .d-lg-none) .swiper:not(.swiper-initialized) > .swiper-wrapper > .swiper-slide {
  44. width: calc(100% / 4);
  45. }
  46. }
  47.  
  48. @media screen and (max-width: 991px) {
  49. :is(.d-lg-block, .d-lg-none) .swiper:not(.swiper-initialized) > .swiper-wrapper {
  50. justify-content: center;
  51. left: 85px;
  52. }
  53. :is(.d-lg-block, .d-lg-none) .swiper:not(.swiper-initialized) > .swiper-wrapper > .swiper-slide {
  54. }
  55. }
  56.  
  57. @media screen and (max-width: 799px) {
  58. :is(.d-lg-block, .d-lg-none) .swiper:not(.swiper-initialized) > .swiper-wrapper {
  59. justify-content: center;
  60. left: 60px;
  61. }
  62. :is(.d-lg-block, .d-lg-none) .swiper:not(.swiper-initialized) > .swiper-wrapper > .swiper-slide {
  63. width: calc(100% / 3);
  64. }
  65. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement