2024-06-05 14:57:43 +02:00
|
|
|
/* Style pour les boutons */
|
2024-06-05 13:51:23 +02:00
|
|
|
button[type='submit'].create-button,
|
|
|
|
button[type='submit'].delete-button {
|
2024-06-05 14:57:43 +02:00
|
|
|
background-color: #1ed860;
|
2024-06-05 13:51:23 +02:00
|
|
|
color: white;
|
2024-06-05 14:57:43 +02:00
|
|
|
padding: 8px 12px;
|
2024-06-05 13:51:23 +02:00
|
|
|
border: none;
|
|
|
|
border-radius: 5px;
|
|
|
|
cursor: pointer;
|
|
|
|
margin: 5px;
|
2024-06-05 14:57:43 +02:00
|
|
|
transition: background-color 0.3s, color 0.3s;
|
2024-06-05 13:51:23 +02:00
|
|
|
}
|
2024-06-05 14:57:43 +02:00
|
|
|
|
2024-06-05 13:51:23 +02:00
|
|
|
button.upload-image-button {
|
|
|
|
background-color: transparent;
|
|
|
|
color: green;
|
|
|
|
border: 1px solid green;
|
2024-06-05 14:57:43 +02:00
|
|
|
padding: 8px 12px;
|
2024-06-05 13:51:23 +02:00
|
|
|
border-radius: 5px;
|
|
|
|
cursor: pointer;
|
|
|
|
margin-top: 10px;
|
2024-06-05 14:57:43 +02:00
|
|
|
transition: background-color 0.3s, color 0.3s;
|
2024-06-05 13:51:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
button.upload-image-button:hover {
|
2024-06-12 14:57:59 +02:00
|
|
|
background-color: rgb(0, 255, 0);
|
2024-06-05 13:51:23 +02:00
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
2024-06-05 14:57:43 +02:00
|
|
|
/* Style pour le conteneur de la playlist */
|
2024-06-05 13:51:23 +02:00
|
|
|
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-05 14:57:43 +02:00
|
|
|
padding-top: 20px; /* Ajouter un padding pour éviter que le contenu ne soit caché par la barre de navigation */
|
2024-06-12 14:57:59 +02:00
|
|
|
justify-content: center; /* Centrer les éléments */
|
2024-06-05 13:51:23 +02:00
|
|
|
}
|
|
|
|
|
2024-06-05 14:57:43 +02:00
|
|
|
/* Style pour chaque élément de la playlist */
|
2024-06-05 13:51:23 +02:00
|
|
|
div.playlist-item {
|
2024-06-05 14:57:43 +02:00
|
|
|
padding: 12px;
|
2024-06-05 13:51:23 +02:00
|
|
|
border: 1px solid #ccc;
|
2024-06-05 14:57:43 +02:00
|
|
|
border-radius: 8px;
|
2024-06-05 13:51:23 +02:00
|
|
|
text-align: center;
|
2024-06-05 14:57:43 +02:00
|
|
|
transition: transform 0.3s;
|
|
|
|
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
|
2024-06-05 13:51:23 +02:00
|
|
|
}
|
|
|
|
|
2024-06-12 14:57:59 +02:00
|
|
|
|
2024-06-05 13:51:23 +02:00
|
|
|
div.playlist-item img {
|
|
|
|
max-width: 100%;
|
|
|
|
height: auto;
|
2024-06-05 14:57:43 +02:00
|
|
|
border-radius: 5px;
|
2024-06-05 13:51:23 +02:00
|
|
|
}
|
|
|
|
|