More actions
No edit summary |
No edit summary |
||
| Line 11: | Line 11: | ||
width: 200px; | width: 200px; | ||
border: 1px solid #ccc; | border: 1px solid #ccc; | ||
border-radius: 8px; | border-radius: 8px; | ||
background: #f9f9f9; | background: #f9f9f9; | ||
Revision as of 00:28, 25 May 2025
/* CSS placed here will be applied to all skins */
.carousel-container {
display: flex;
overflow-x: auto;
gap: 1rem;
padding: 1rem 0;
}
.card {
flex: 0 0 auto;
width: 200px;
border: 1px solid #ccc;
border-radius: 8px;
background: #f9f9f9;
overflow: hidden;
text-align: center;
}
.card img {
max-width: 100%;
height: auto;
}
.card-title {
font-weight: bold;
margin-top: 0.5rem;
}
.card-snippet {
font-size: 0.9em;
color: #444;
}
.no-display {
display: none;
}