Commit de Louay (problème de PC)

This commit is contained in:
stiti
2024-05-22 20:03:53 +02:00
parent 4e02203e84
commit 6fa5b60331
7 changed files with 164 additions and 26 deletions

View File

@@ -5,7 +5,7 @@ body {
padding: 0;
}
.album-details {
.artist-list-container {
max-width: 800px;
margin: 20px auto;
padding: 20px;
@@ -14,33 +14,57 @@ body {
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.album-details h1 {
.artist-list-container h1 {
font-size: 2em;
margin-bottom: 10px;
text-align: center;
color: #800080; /* Couleur violette */
}
.album-details p {
font-size: 1.2em;
margin: 5px 0;
}
.album-details img {
max-width: 100%;
height: auto;
margin: 20px 0;
}
.album-details h2 {
font-size: 1.5em;
margin-top: 20px;
}
.album-details ul {
.artist-list {
list-style-type: none;
padding: 0;
}
.album-details ul li {
.artist-list li {
display: flex;
align-items: center;
padding: 10px 0;
border-bottom: 1px solid #ddd;
}
.artist-list li:last-child {
border-bottom: none;
}
.artist-list img {
width: 50px;
height: 50px;
border-radius: 50%;
margin-right: 15px;
}
.artist-list .artist-details {
display: flex;
flex-direction: column;
}
.artist-list .artist-details h2 {
font-size: 1.2em;
margin: 0;
}
.artist-list .artist-details p {
font-size: 1em;
margin: 5px 0;
color: #666;
}
.artist-list .artist-details a {
text-decoration: none;
color: #9500ff;
}
.artist-list .artist-details a:hover {
text-decoration: underline;
}