2024-08-16 15:57:50 +02:00
|
|
|
.popup-overlay {
|
|
|
|
display: none;
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2024-08-25 02:36:26 +02:00
|
|
|
/*background-color: rgba(0, 0, 0, 0.5);*/
|
2024-08-16 15:57:50 +02:00
|
|
|
z-index: 9999;
|
|
|
|
font-family: 'Inter', sans-serif; /* Utilisation de la police Inter */
|
|
|
|
font-size: 18px; /* Taille de police de 24px */
|
|
|
|
}
|
|
|
|
|
|
|
|
.popup-content, .popup-listcontent{
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
background-color: white;
|
2024-08-25 02:36:26 +02:00
|
|
|
color: #38385C;
|
2024-08-16 15:57:50 +02:00
|
|
|
padding: 20px;
|
|
|
|
border-radius: 5px;
|
|
|
|
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
|
2024-08-25 02:36:26 +02:00
|
|
|
width: 400px;
|
2024-08-16 15:57:50 +02:00
|
|
|
text-align: center;
|
|
|
|
font-family: 'Inter', sans-serif; /* Assurer la police Inter dans la popup */
|
|
|
|
}
|
2024-08-25 02:36:26 +02:00
|
|
|
|
|
|
|
div .gc-event {
|
|
|
|
color: #38385C;
|
|
|
|
}
|
|
|
|
|
2024-08-16 15:57:50 +02:00
|
|
|
.popup-content {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.popup-listcontent {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.close-btn {
|
|
|
|
position: absolute;
|
|
|
|
top: 10px;
|
|
|
|
right: 10px;
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: 12px; /* Taille de la croix de fermeture */
|
|
|
|
}
|
|
|
|
|
|
|
|
.gc-calendar-month-year {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|