_carousel.scss in Easy Hotel – Powerful Hotel Booking 2.0.2, at public/assets/css/_carousel.scss
| 1 | body.single .accomodation-gallery { |
| 2 | .swiper-wrapper { |
| 3 | height: auto; |
| 4 | } |
| 5 | |
| 6 | img { |
| 7 | height: 600px; |
| 8 | width: 100%; |
| 9 | object-fit: cover; |
| 10 | |
| 11 | @media (max-width: 782px) { |
| 12 | height: 450px; |
| 13 | } |
| 14 | } |
| 15 | |
| 16 | .swiper-button-prev, |
| 17 | .swiper-button-next { |
| 18 | width: 40px; |
| 19 | height: 50px; |
| 20 | line-height: 40px; |
| 21 | display: flex; |
| 22 | padding: 5px 0; |
| 23 | background: var(--eshb-primary-color); |
| 24 | text-align: center; |
| 25 | |
| 26 | .swiper-navigation-icon { |
| 27 | width: 10px; |
| 28 | path { |
| 29 | fill: #ffffff; |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | &::after { |
| 34 | display: none; |
| 35 | color: #ffffff; |
| 36 | font-size: 18px; |
| 37 | background: none !important; |
| 38 | } |
| 39 | } |
| 40 | |
| 41 | .swiper-button-prev { |
| 42 | border-radius: 0 20px 20px 0; |
| 43 | left: 0px !important; |
| 44 | |
| 45 | &::after { |
| 46 | margin-left: -5px; |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | .swiper-button-next { |
| 51 | border-radius: 20px 0 0 20px; |
| 52 | right: 0px !important; |
| 53 | |
| 54 | &::after { |
| 55 | margin-right: -5px; |
| 56 | } |
| 57 | } |
| 58 | } |