mirror of
https://github.com/System-End/riceathon.git
synced 2026-04-19 22:05:16 +00:00
24 lines
No EOL
328 B
CSS
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;
|
|
} |