flight-screen-info/static/animation.css
2024-04-01 00:57:50 +02:00

24 lines
611 B
CSS

/* Style for the container of the carousel */
.carousel-container {
width: 70px;
height: 15px;
overflow: hidden;
position: relative;
}
/* Style for the list inside the carousel */
.carousel-list {
list-style: none;
padding: 0;
margin: 0;
position: absolute;
top: 0;
transition: top 0.5s ease-in-out;
}
/* Style for individual items in the carousel */
.carousel-item {
height: 15px; /* Adjust height as needed */
line-height: 15px; /* Adjust line-height to vertically center text */
/*border-bottom: 1px solid #ccc; /* Optional: Add border between items */
}