2024-06-16 17:39:26 +02:00
|
|
|
/* style.css */
|
|
|
|
|
|
|
|
.card {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card-image {
|
|
|
|
flex-shrink: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card-content {
|
|
|
|
flex-grow: 1;
|
2024-05-29 10:29:40 +02:00
|
|
|
}
|
2024-06-16 17:39:26 +02:00
|
|
|
|
|
|
|
.card-footer {
|
|
|
|
flex-shrink: 0;
|
2024-05-29 10:29:40 +02:00
|
|
|
}
|
|
|
|
|
2024-06-16 17:39:26 +02:00
|
|
|
.album-title, .artist-title, .music-title {
|
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
-webkit-line-clamp: 2; /* Limite à 2 lignes */
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
height: 3em; /* Ajuste en fonction de la taille de la police */
|
2024-05-29 10:29:40 +02:00
|
|
|
}
|
2024-06-16 17:39:26 +02:00
|
|
|
|
|
|
|
.columns {
|
|
|
|
justify-content: center; /* Centre les colonnes */
|
2024-05-29 10:29:40 +02:00
|
|
|
}
|
|
|
|
|
2024-06-16 17:39:26 +02:00
|
|
|
.card img {
|
|
|
|
object-fit: cover; /* Assure que les images couvrent bien les figures */
|
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
|
|
|
}
|