2024-05-20 22:42:38 +02:00
|
|
|
/* Styles pour la mise en page générale */
|
|
|
|
.artist-details {
|
|
|
|
max-width: 800px;
|
|
|
|
margin: 0 auto;
|
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Styles pour le titre principal */
|
|
|
|
.artist-details h1 {
|
|
|
|
font-size: 24px;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Styles pour la liste des albums */
|
|
|
|
.albums-list {
|
|
|
|
list-style: none;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.albums-list li {
|
|
|
|
margin-bottom: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.album-details {
|
|
|
|
border: 1px solid #ccc;
|
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.album-details h3 {
|
|
|
|
font-size: 20px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.album-details p {
|
|
|
|
margin: 5px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.album-details img {
|
|
|
|
max-width: 100%;
|
|
|
|
height: auto;
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.album-details .no-cover {
|
|
|
|
font-style: italic;
|
|
|
|
color: #888;
|
|
|
|
}
|
2024-06-06 14:00:12 +02:00
|
|
|
|
|
|
|
.select-playlist {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
padding: 8px;
|
|
|
|
font-size: 16px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-add-to-playlist {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
padding: 10px 20px;
|
|
|
|
background-color: #6814c7;
|
|
|
|
color: white;
|
|
|
|
font-size: 16px;
|
|
|
|
border: none;
|
|
|
|
cursor: pointer;
|
|
|
|
border-radius: 5px;
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-add-to-playlist:hover {
|
|
|
|
background-color: #45087a;
|
|
|
|
}
|
|
|
|
|
|
|
|
.no-playlist {
|
|
|
|
color: red;
|
|
|
|
}
|