This commit is contained in:
2024-06-16 17:39:26 +02:00
parent 15d9fe89b9
commit 9436fd05cc
22 changed files with 928 additions and 276 deletions

0
assets/common.css Normal file
View File

BIN
assets/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 61 KiB

View File

@@ -1,20 +1,38 @@
section.list
{
display : flex;
justify-content : space-between;
flex-wrap:wrap;
}
section.list > div
{
width : 30%;
}
section.list img {
display:inline-block;
/* style.css */
}
.short-text {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
.card {
display: flex;
flex-direction: column;
height: 100%;
}
.card-image {
flex-shrink: 0;
}
.card-content {
flex-grow: 1;
}
.card-footer {
flex-shrink: 0;
}
.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 */
}
.columns {
justify-content: center; /* Centre les colonnes */
}
.card img {
object-fit: cover; /* Assure que les images couvrent bien les figures */
width: 100%;
height: auto;
}