Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.16 KB | None | 0 0
  1. @import '../media.css';
  2. @import '../variables.css';
  3.  
  4. .images-carousel {
  5.     &__slide-inner {
  6.         display: flex;
  7.         align-items: center;
  8.         justify-content: space-between;
  9.     }
  10.     &__controls {
  11.         lost-center: 100%;
  12.         justify-content: space-between;
  13.         margin-top: 60px;
  14.     }
  15.     &__progress-bar {
  16.         height: 2px;
  17.         width: 100%;
  18.         max-width: 620px;
  19.         display: flex;
  20.         align-items: center;
  21.         @media (--tablet-below) {
  22.             max-width: auto;
  23.         }
  24.     }
  25.     &__arrows {
  26.         display: flex;
  27.         @media (--tablet-below) {
  28.             display: none;
  29.         }
  30.     }
  31.     &__arrow-next {
  32.         margin-left: 30px;
  33.         cursor: pointer;
  34.         outline: none;
  35.         transition: .3s;
  36.         svg {
  37.             fill: var(--c-gray-neutral);
  38.         }
  39.         &:hover svg {
  40.             fill: var(--c-blue-border);
  41.         }
  42.     }
  43.     &__arrow-prev {
  44.         cursor: pointer;
  45.         outline: none;
  46.         svg {
  47.             fill: var(--c-gray-neutral);
  48.         }
  49.         &:hover svg {
  50.             fill: var(--c-blue-border);
  51.         }
  52.     }
  53.     /* &__pagination {
  54.         font-size: 16px;
  55.         line-height: 16px;
  56.         @mixin font-bold;
  57.         color: var(--c-gray);
  58.         display: flex;
  59.         align-items: center;
  60.     }
  61.     &__current-slide {
  62.         color: var(--c-blue-border);
  63.     }
  64.     &__pagination-separator {
  65.         font-size: 32px;
  66.     }
  67.     &__pagination-separator {
  68.         padding-left: 3px;
  69.         padding-right: 3px;
  70.     } */
  71.     .swiper-slide {
  72.         a {
  73.             display: block;
  74.             opacity: .7;
  75.             transition: opacity .3s;
  76.             &:hover {
  77.                 opacity: 1;
  78.             }
  79.         }
  80.         img {
  81.             pointer-events: none;    
  82.         }
  83.     }
  84.     &__controls {
  85.         @media (--tablet-below) {
  86.             .lost-col-6 {
  87.                 lost-column: 10/12;
  88.                 margin-right: 0 !important;
  89.             }
  90.             .lost-col-1:first-child {
  91.                 lost-column: 2/12;
  92.             }
  93.         }
  94.     }
  95.     .swiper-wrapper {
  96.         height: auto;
  97.     }
  98. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement