| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- * {
- box-sizing: border-box;
- margin: 0;
- padding: 0;
- }
- body {
- display: flex;
- justify-content: center;
- align-items: center;
- height: 100vh;
- background-color: #f4f4f4;
- }
- .carousel-container {
- display: flex;
- flex-direction: column;
- align-items: center;
- position: relative;
- }
- .carousel {
- display: flex;
- transition: transform 0.4s ease-in-out;
- overflow: hidden;
- width: 300px;
- height: 200px;
- }
- .carousel-track {
- display: flex;
- transition: transform 0.4s ease-in-out;
- }
- .card {
- min-width: 100%;
- height: 100%;
- background-color: #fff;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 24px;
- border: 1px solid #ddd;
- border-radius: 10px;
- box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
- }
- .carousel-controls {
- display: flex;
- justify-content: space-between;
- margin-top: 15px;
- }
- .carousel-btn {
- background-color: #333;
- color: #fff;
- border: none;
- padding: 10px;
- cursor: pointer;
- border-radius: 50%;
- }
|