2024-06-04 15:00:24 +02:00
|
|
|
/* artiste.css */
|
|
|
|
|
|
|
|
/* Corps principal */
|
|
|
|
body {
|
|
|
|
font-family: Arial, sans-serif;
|
|
|
|
background-color: #f4f4f4;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Conteneur principal */
|
|
|
|
.container {
|
2024-06-05 11:14:54 +02:00
|
|
|
width: 100%;
|
2024-06-04 15:00:24 +02:00
|
|
|
margin: auto;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Section des artistes */
|
|
|
|
.artiste {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Style des liens des artistes */
|
|
|
|
.artiste a {
|
|
|
|
display: block;
|
|
|
|
width: 80%;
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
padding: 10px;
|
|
|
|
margin: 10px 0;
|
|
|
|
text-align: center;
|
|
|
|
background-color: #fff;
|
|
|
|
text-decoration: none;
|
|
|
|
color: #333;
|
|
|
|
border-radius: 5px;
|
|
|
|
transition: background-color 0.3s, border-color 0.3s;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Effet au survol des liens des artistes */
|
|
|
|
.artiste a:hover {
|
|
|
|
background-color: #f0f0f0;
|
|
|
|
border-color: #ccc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Couleur des liens visités */
|
|
|
|
.artiste a:visited {
|
|
|
|
color: #333;
|
|
|
|
}
|