48 lines
856 B
CSS
48 lines
856 B
CSS
/* 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;
|
|
}
|
|
|
|
.short-text {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.short-text form {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.delete-button, .add-to-playlist {
|
|
font-size: 16px;
|
|
cursor: pointer;
|
|
background-color: #4CAF50;
|
|
color: white;
|
|
border: none;
|
|
padding: 5px 10px;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.delete-button:hover, .add-to-playlist:hover {
|
|
background-color: #45a049;
|
|
}
|
|
|
|
.short-text select {
|
|
margin-right: 10px;
|
|
}
|