2024-05-23 09:59:04 +02:00
|
|
|
/* Styles généraux */
|
2024-05-22 20:03:53 +02:00
|
|
|
body {
|
|
|
|
font-family: Arial, sans-serif;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2024-05-23 09:59:04 +02:00
|
|
|
background-color: #f8f8f8;
|
2024-05-22 20:03:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.artist-list-container {
|
2024-05-23 09:59:04 +02:00
|
|
|
max-width: 1200px;
|
|
|
|
margin: 0 auto;
|
2024-05-22 20:03:53 +02:00
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.artist-list-container h1 {
|
2024-05-23 09:59:04 +02:00
|
|
|
color: #6a0dad;
|
2024-05-22 20:03:53 +02:00
|
|
|
text-align: center;
|
2024-05-23 09:59:04 +02:00
|
|
|
margin-top: 20px;
|
2024-05-22 20:03:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.sort-options {
|
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sort-options a {
|
2024-05-23 09:59:04 +02:00
|
|
|
color: #6a0dad;
|
2024-05-22 20:03:53 +02:00
|
|
|
text-decoration: none;
|
|
|
|
margin: 0 10px;
|
2024-05-23 09:59:04 +02:00
|
|
|
transition: color 0.3s ease;
|
2024-05-22 20:03:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.sort-options a:hover {
|
2024-05-23 09:59:04 +02:00
|
|
|
color: #4a0772;
|
2024-05-22 20:03:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.artist-list {
|
2024-05-23 09:59:04 +02:00
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: space-between;
|
2024-05-22 20:03:53 +02:00
|
|
|
list-style-type: none;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.artist-list li {
|
2024-05-23 09:59:04 +02:00
|
|
|
width: 30%;
|
|
|
|
margin-bottom: 20px;
|
2024-05-22 20:03:53 +02:00
|
|
|
}
|
|
|
|
|
2024-05-23 09:59:04 +02:00
|
|
|
.artist-details {
|
|
|
|
background-color: #fff;
|
|
|
|
border-radius: 8px;
|
|
|
|
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
|
|
|
overflow: hidden;
|
|
|
|
transition: transform 0.3s ease;
|
|
|
|
padding: 10px;
|
|
|
|
text-align: center;
|
2024-05-22 20:03:53 +02:00
|
|
|
}
|
|
|
|
|
2024-05-23 09:59:04 +02:00
|
|
|
.artist-details:hover {
|
|
|
|
transform: translateY(-5px);
|
2024-05-22 20:03:53 +02:00
|
|
|
}
|
|
|
|
|
2024-05-23 09:59:04 +02:00
|
|
|
.artist-details h2 {
|
|
|
|
color: #6a0dad;
|
|
|
|
font-size: 1.5em;
|
|
|
|
margin: 10px 0;
|
2024-05-22 20:03:53 +02:00
|
|
|
}
|
|
|
|
|
2024-05-23 09:59:04 +02:00
|
|
|
.artist-details a {
|
|
|
|
color: #6a0dad;
|
|
|
|
text-decoration: none;
|
|
|
|
transition: color 0.3s ease;
|
2024-05-22 20:03:53 +02:00
|
|
|
}
|
|
|
|
|
2024-05-23 09:59:04 +02:00
|
|
|
.artist-details a:hover {
|
|
|
|
color: #4a0772;
|
2024-05-22 20:03:53 +02:00
|
|
|
}
|
|
|
|
|
2024-05-23 09:59:04 +02:00
|
|
|
/* Responsive styles */
|
|
|
|
@media screen and (max-width: 768px) {
|
|
|
|
.artist-list li {
|
|
|
|
width: 45%;
|
|
|
|
}
|
2024-05-22 20:03:53 +02:00
|
|
|
}
|
2024-05-22 20:59:59 +02:00
|
|
|
|
2024-05-23 09:59:04 +02:00
|
|
|
@media screen and (max-width: 576px) {
|
|
|
|
.artist-list li {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
2024-05-26 18:05:12 +02:00
|
|
|
|
|
|
|
.artist-details p {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.artist-details p a {
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.artist-details p a img {
|
|
|
|
width: 30px;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.artist-details a.spotify,
|
|
|
|
.artist-details a.deezer,
|
|
|
|
.artist-details a.youtube {
|
|
|
|
color: white;
|
|
|
|
padding: 8px 12px;
|
|
|
|
border-radius: 5px;
|
|
|
|
text-decoration: none;
|
|
|
|
transition: background-color 0.3s, color 0.3s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.artist-details a.spotify {
|
|
|
|
background-color: #1DB954; /* Vert Spotify */
|
|
|
|
}
|
|
|
|
|
|
|
|
.artist-details a.deezer {
|
|
|
|
background-color: #8826df; /* Violet Deezer */
|
|
|
|
}
|
|
|
|
|
|
|
|
.artist-details a.youtube {
|
|
|
|
background-color: #FF0000; /* Rouge YouTube */
|
|
|
|
}
|
|
|
|
|
|
|
|
.artist-details a.spotify:hover,
|
|
|
|
.artist-details a.deezer:hover,
|
|
|
|
.artist-details a.youtube:hover {
|
|
|
|
color: black;
|
|
|
|
background-color: rgba(255, 255, 255, 0.8); /* Fond légèrement plus clair au survol */
|
|
|
|
}
|