85 lines
1.5 KiB
CSS
85 lines
1.5 KiB
CSS
.calendar {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.calendar-header {
|
|
display: flex;
|
|
}
|
|
|
|
.calendar-day {
|
|
flex: 1;
|
|
text-align: center;
|
|
font-weight: bold;
|
|
padding: 10px;
|
|
border: 1px solid #ddd;
|
|
}
|
|
|
|
.calendar-body {
|
|
display: flex;
|
|
}
|
|
|
|
.calendar-column {
|
|
flex: 1;
|
|
min-height: 400px;
|
|
border: 1px solid #ddd;
|
|
padding: 5px;
|
|
position: relative;
|
|
}
|
|
|
|
.reservation {
|
|
margin: 5px 0;
|
|
padding: 5px;
|
|
border-radius: 5px;
|
|
font-size: 14px;
|
|
text-align: center;
|
|
}
|
|
|
|
/* Conteneur pour les boutons de navigation */
|
|
.calendar-nav {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
/* Boutons de navigation (Semaine précédente / Semaine suivante) */
|
|
.calendar-nav a {
|
|
padding: 10px 15px;
|
|
text-decoration: none;
|
|
font-size: 16px;
|
|
font-weight: bold;
|
|
color: white;
|
|
background-color: #db5559;
|
|
border-radius: 5px;
|
|
transition: background-color 0.3s ease-in-out;
|
|
}
|
|
|
|
.calendar-nav a:hover {
|
|
background-color: #b52b31;
|
|
}
|
|
|
|
/* Conteneur pour le bouton d'ajout */
|
|
.add-reservation {
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
/* Bouton pour créer une réservation */
|
|
.add-reservation a {
|
|
padding: 12px 20px;
|
|
text-decoration: none;
|
|
font-size: 18px;
|
|
font-weight: bold;
|
|
color: white;
|
|
background-color: #4CAF50;
|
|
border-radius: 8px;
|
|
transition: background-color 0.3s ease-in-out;
|
|
}
|
|
|
|
.add-reservation a:hover {
|
|
background-color: #388E3C;
|
|
}
|
|
|