SAEWEB2.2/ci/assets/CSS/song.css

43 lines
729 B
CSS
Raw Normal View History

/* Style de la liste des chansons */
.list {
display: flex;
flex-direction: column;
align-items: center;
margin: 20px;
}
.list div {
width: 100%;
max-width: 600px;
margin: 10px 0;
border: 1px solid #ccc;
padding: 15px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
background-color: #f9f9f9;
}
2024-06-05 11:14:54 +02:00
.song-header {
display: flex;
justify-content: space-between;
align-items: center;
}
.song-name {
font-size: 18px;
font-weight: bold;
}
2024-06-05 11:14:54 +02:00
.add-to-playlist {
font-size: 16px;
cursor: pointer;
background-color: #4CAF50;
color: white;
border: none;
padding: 5px 10px;
border-radius: 5px;
}
.add-to-playlist:hover {
background-color: #45a049;
}