Modèle:Accueil/Nouvelles/style.css
De Wiki Lylat
.caroussel {
width: 95%;
display: flex;
gap: 1rem;
overflow-x: auto;
color: black;
}
.caroussel-item {
flex: 0 0 auto;
width: 300px;
background: #fff;
border-radius: 10px;
box-shadow: 0 2px 6px rgba(0,0,0,0.1);
text-align: center;
padding: 1rem;
display: flex;
flex-direction: column;
justify-content: flex-start;
}
.caroussel img {
max-width: 100%;
max-height: 150px;
border-radius: 8px;
object-fit: cover;
height: auto;
}
.caroussel-item h3 {
min-height: 3em;
display: flex;
align-items: center;
justify-content: center;
margin-top: 1rem;
font-size: 1rem;
}
.item-title
{
color: green;
font-weight: bold;
}