riceathon/docs/gallery/carousel.css
2025-01-01 15:44:06 -05:00

24 lines
No EOL
328 B
CSS

.carousel-container {
position: relative;
width: 80%;
max-width: 800px;
margin: auto;
overflow: hidden;
}
.carousel {
display: flex;
transition: transform 0.5s ease-in-out;
}
.carousel img {
width: 100%;
height: auto;
}
.prev {
left: 0;
}
.next {
right: 0;
}