60 lines
1.2 KiB
CSS
60 lines
1.2 KiB
CSS
/* Style for the buttons */
|
|
button[type='submit'].create-button,
|
|
button[type='submit'].delete-button {
|
|
background-color: #1ed860 !important;
|
|
color: white;
|
|
padding: 5px 10px;
|
|
border: none;
|
|
border-radius: 5px;
|
|
cursor: pointer;
|
|
margin: 5px;
|
|
}
|
|
button.upload-image-button {
|
|
background-color: transparent;
|
|
color: green;
|
|
border: 1px solid green;
|
|
padding: 5px 10px;
|
|
border-radius: 5px;
|
|
cursor: pointer;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
button.upload-image-button:hover {
|
|
background-color: green;
|
|
color: white;
|
|
}
|
|
|
|
/* Style for the playlist container */
|
|
div.playlist-container {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-around;
|
|
padding-top: 20px; /* Ajoutez un padding pour éviter que le contenu ne soit caché par la barre de navigation */
|
|
}
|
|
|
|
/* Style for each playlist */
|
|
div.playlist-item {
|
|
width: 200px;
|
|
margin: 10px;
|
|
padding: 10px;
|
|
border: 1px solid #ccc;
|
|
border-radius: 5px;
|
|
text-align: center;
|
|
}
|
|
|
|
div.playlist-item img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
/* Style for the playlist name */
|
|
div.playlist-item h3 {
|
|
margin-top: 10px;
|
|
font-size: 18px;
|
|
}
|
|
|
|
div.playlist-item:hover {
|
|
transform: scale(1.05);
|
|
}
|
|
|