SAEWEB2.2/ci/assets/artiste.css

51 lines
910 B
CSS

/* artiste.css */
/* Corps principal */
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
/* Conteneur principal */
.container {
width: 100%;
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;
}