mirror of
https://grond.iut-fbleau.fr/stiti/SAE_2.02
synced 2024-11-10 05:11:42 +01:00
98 lines
1.6 KiB
CSS
98 lines
1.6 KiB
CSS
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f0f0f0;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.album-details {
|
|
max-width: 800px;
|
|
margin: 20px auto;
|
|
padding: 20px;
|
|
background-color: #ffffff;
|
|
border-radius: 8px;
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.album-details h1 {
|
|
font-size: 2em;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.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 {
|
|
list-style-type: none;
|
|
padding: 0;
|
|
}
|
|
|
|
.album-details ul li {
|
|
padding: 10px 0;
|
|
border-bottom: 1px solid #ddd;
|
|
}
|
|
|
|
.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: #400d7b;
|
|
}
|
|
|
|
.btn-add-music-to-playlist {
|
|
font-size: 12px;
|
|
padding: 5px 10px;
|
|
background-color: #45087a;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 5px;
|
|
float: right; /* Alignement à droite */
|
|
margin-left: 10px; /* Laissez une marge entre le bouton et le texte */
|
|
}
|
|
|
|
|
|
.btn-add-music-to-playlist:hover {
|
|
background-color: #45087a;
|
|
}
|
|
|
|
.track-details {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.track-info {
|
|
flex-grow: 1;
|
|
}
|