Blame view

frontend/web/css/_slider-brand.scss 571 Bytes
e97db116   Timur Kastemirov   index page
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
  .section-box-slider-brands {
    margin-top: 33px;
  }
  .slider-brands {
    overflow: hidden;
    div {
      text-align: center;
      float: left;
    }
    a {
      display: block;
      float: left;
      margin-right: 13px;
      margin-top: 20px;
  
      img {
        @include filter-gray(100%);
        @include Transition(0.7);
      }
      &:hover {
        img {
          @include filter-none;
        }
      }
    }
  
    &.owl-carousel {
  
      a {
        margin: 0 !important;
        float: none;
      }
    }
  
  }
  
  
  @media (max-width: 767px) {
    .slider-brands {
      a {
        margin-right: 30px;
      }
    }
  }