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

39 lines
784 B
CSS
Raw Normal View History

/* Style pour les boutons */
2024-06-05 13:51:23 +02:00
button[type='submit'].delete-button {
background-color: #1ed860;
2024-06-05 13:51:23 +02:00
color: white;
padding: 8px 12px;
2024-06-05 13:51:23 +02:00
border: none;
border-radius: 5px;
cursor: pointer;
margin: 5px;
transition: background-color 0.3s, color 0.3s;
2024-06-05 13:51:23 +02:00
}
2024-06-17 22:08:57 +02:00
label.playlist-label{
2024-06-05 13:51:23 +02:00
color: white;
}
div.playlist-container {
2024-06-12 14:57:59 +02:00
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 20px;
2024-06-17 22:08:57 +02:00
justify-content: center;
padding-top: 20px;
2024-06-05 13:51:23 +02:00
}
div.playlist-item {
padding: 12px;
2024-06-05 13:51:23 +02:00
border: 1px solid #ccc;
border-radius: 8px;
2024-06-05 13:51:23 +02:00
text-align: center;
transition: transform 0.3s;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
2024-06-05 13:51:23 +02:00
}
div.playlist-item img {
max-width: 100%;
height: auto;
border-radius: 5px;
2024-06-05 13:51:23 +02:00
}