Blame view

public/css/pages/main/slider-main-mob.css 2.25 KB
2f5f2c1a4   Андрей Ларионов   Баг с версткой ка...
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
  .slider-mobile {
    display: block;
    margin-top: 25px;
    padding-bottom: 53px;
    position: relative;
  }
  @media (min-width: 780px) {
    .slider-mobile {
      display: none;
    }
  }
  
  .swiper-slide-mob {
    background: -webkit-gradient(linear, right top, left top, color-stop(-15%, #ABB2BF), color-stop(116.32%, rgba(171, 178, 191, 0.2)));
    background: -o-linear-gradient(right, #ABB2BF -15%, rgba(171, 178, 191, 0.2) 116.32%);
    background: linear-gradient(270deg, #ABB2BF -15%, rgba(171, 178, 191, 0.2) 116.32%);
    border-radius: 10px;
    width: 100%;
    min-height: 205px;
  }
  .swiper-slide-mob:after {
    position: absolute;
    background-image: url("../img/main/slider/slider-bg1.png");
    background-repeat: no-repeat;
    background-size: contain;
    left: 0;
    top: 0;
  }
  .swiper-slide-mob__name {
    font-weight: 400;
    font-size: 13px;
    line-height: 15px;
    color: #333B49;
    max-width: 260px;
    width: 100%;
    margin-left: 14px;
    padding-top: 20px;
    margin-bottom: 12px;
  }
  @media (min-width: 375px) {
    .swiper-slide-mob__name {
      font-size: 14px;
      line-height: 16px;
      padding-top: 12px;
    }
  }
  
  .swiper-slide-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 10px;
  }
  .swiper-slide-main__title {
    font-weight: 600;
    font-size: 16px;
    line-height: 17px;
    color: #333B49;
    margin-top: 15px;
    margin-left: 14px;
    max-width: 200px;
    width: 100%;
  }
  @media (min-width: 375px) {
    .swiper-slide-main__title {
      font-size: 18px;
      line-height: 22px;
    }
  }
  @media (min-width: 640px) {
    .swiper-slide-main__title {
      font-size: 23px;
      line-height: 29px;
      max-width: 265px;
    }
  }
  .swiper-slide-main__img {
    min-width: 140px;
    min-height: 105px;
    margin-left: 0;
    margin-top: 0;
  }
  @media (min-width: 640px) {
    .swiper-slide-main__img {
      margin-left: 60px;
      margin-top: 10px;
    }
  }
  
  .mob-pagination {
    position: absolute !important;
    bottom: 31px !important;
    left: 50% !important;
  }
  .mob-pagination .swiper-pagination-bullet {
    width: 7px !important;
    height: 7px !important;
    background: #636B78 !important;
    opacity: 0.5 !important;
  }
  .mob-pagination .swiper-pagination-bullet-active {
    width: 26px !important;
    height: 5px !important;
    border-radius: 6.38736px !important;
    background-color: #636B78 !important;
    top: -1px !important;
  }