Blame view
public/css/pages/main/machines.css
3.29 KB
b80175387 Начальный проект ... |
1 |
.machines { |
2f5f2c1a4 Баг с версткой ка... |
2 3 4 5 6 7 |
padding-top: 36px; } @media (min-width: 640px) { .machines { padding-top: 74px; } |
b80175387 Начальный проект ... |
8 9 10 |
} .machines__main-title { font-weight: 600; |
2f5f2c1a4 Баг с версткой ка... |
11 12 |
font-size: 20px; line-height: 24px; |
b80175387 Начальный проект ... |
13 14 15 |
letter-spacing: -0.01em; color: #333B49; max-width: 469px; |
2f5f2c1a4 Баг с версткой ка... |
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 |
width: 70%; margin-bottom: 24px; } @media (min-width: 480px) { .machines__main-title { font-size: 23px; line-height: 25px; } } @media (min-width: 780px) { .machines__main-title { font-size: 32px; line-height: 36px; } } @media (min-width: 1024px) { .machines__main-title { font-size: 36px; line-height: 42px; width: 100%; margin-bottom: 50px; } } .machines__mob-btn { display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; border: 1px solid #ABB2BF; border-radius: 10px; |
b80175387 Начальный проект ... |
51 |
width: 100%; |
2f5f2c1a4 Баг с версткой ка... |
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
padding: 12px 0; font-weight: 600; font-size: 14px; line-height: 16px; color: #333B49; margin-top: 24px; } @media (min-width: 780px) { .machines__mob-btn { display: none; } } .machines-container { padding-right: 0; } @media (min-width: 780px) { .machines-container { padding-right: 15px; } |
b80175387 Начальный проект ... |
72 73 74 |
} .swiper-slide-machines { |
2f5f2c1a4 Баг с версткой ка... |
75 |
max-width: 252px; |
b80175387 Начальный проект ... |
76 77 78 79 |
width: 100%; background: #F7F7F9; border-radius: 10px; cursor: pointer; |
2f5f2c1a4 Баг с версткой ка... |
80 |
height: 165px !important; |
b80175387 Начальный проект ... |
81 82 83 84 85 86 87 |
position: relative; -webkit-transition: -webkit-transform 0.4s ease-in-out; transition: -webkit-transform 0.4s ease-in-out; -o-transition: transform 0.4s ease-in-out; transition: transform 0.4s ease-in-out; transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out; } |
2f5f2c1a4 Баг с версткой ка... |
88 89 90 91 92 93 94 95 96 97 98 99 100 101 |
@media (min-width: 780px) { .swiper-slide-machines { max-width: 217px; height: 220px !important; } .swiper-slide-machines:hover { background: #DFE1E7; -webkit-box-shadow: 0px 5px 12.5px rgba(0, 0, 0, 0.15); box-shadow: 0px 5px 12.5px rgba(0, 0, 0, 0.15); -webkit-transform: scale(1.045); -ms-transform: scale(1.045); transform: scale(1.045); max-width: 229px; } |
b80175387 Начальный проект ... |
102 103 |
} .swiper-slide-machines__img { |
2f5f2c1a4 Баг с версткой ка... |
104 |
width: 220px; |
b80175387 Начальный проект ... |
105 |
width: 100%; |
2f5f2c1a4 Баг с версткой ка... |
106 |
height: 109px; |
b80175387 Начальный проект ... |
107 |
margin: 0 auto; |
2f5f2c1a4 Баг с версткой ка... |
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 |
padding-top: 0px; margin-top: 11px; -o-object-fit: contain; object-fit: contain; -o-object-position: center center; object-position: center center; } @media (min-width: 640px) { .swiper-slide-machines__img { min-height: 114px; } } @media (min-width: 780px) { .swiper-slide-machines__img { width: 140px; min-height: 122px; padding-top: 20px; } } .swiper-slide-machines__img.img2 { margin-top: 0; |
b80175387 Начальный проект ... |
129 130 131 132 133 134 135 136 |
} .swiper-slide-machines__block { position: absolute; bottom: 0; left: 0; margin-left: 14px; } .swiper-slide-machines__title { |
2f5f2c1a4 Баг с версткой ка... |
137 138 |
font-size: 16px; line-height: 20px; |
b80175387 Начальный проект ... |
139 |
font-weight: 600; |
2f5f2c1a4 Баг с версткой ка... |
140 141 142 143 144 145 |
} @media (min-width: 780px) { .swiper-slide-machines__title { font-size: 20px; line-height: 24px; } |
b80175387 Начальный проект ... |
146 147 |
} .swiper-slide-machines__text { |
2f5f2c1a4 Баг с версткой ка... |
148 149 |
font-size: 12px; line-height: 14px; |
b80175387 Начальный проект ... |
150 |
color: #ABB2BF; |
2f5f2c1a4 Баг с версткой ка... |
151 152 153 154 155 156 157 158 |
margin-bottom: 8px; } @media (min-width: 780px) { .swiper-slide-machines__text { font-size: 16px; line-height: 22px; margin-bottom: 20px; } |
b80175387 Начальный проект ... |
159 160 161 162 163 |
} .swiper-wrapper-machines > :not(:last-child) { margin-right: 3px; } |