front.css
30 lines
| 1 | .great_caroussel { |
| 2 | overflow: hidden; |
| 3 | position: relative; |
| 4 | padding: 40px; |
| 5 | box-sizing: border-box; |
| 6 | } |
| 7 | .great_caroussel .rotator { |
| 8 | position: relative; |
| 9 | transition: all 2s; |
| 10 | } |
| 11 | .great_caroussel .content { |
| 12 | width: 25%; |
| 13 | height: 150px; |
| 14 | position: absolute; |
| 15 | top: calc(50% - 75px); |
| 16 | left: calc(50% - 12.5%); |
| 17 | } |
| 18 | .great_caroussel .content * { |
| 19 | max-width: 100%; |
| 20 | } |
| 21 | .great_caroussel .prev { |
| 22 | position: absolute; |
| 23 | bottom: 0; |
| 24 | left: calc(50% - 48px); |
| 25 | } |
| 26 | .great_caroussel .next { |
| 27 | position: absolute; |
| 28 | bottom: 0; |
| 29 | right: calc(50% - 48px); |
| 30 | } |