45 lines
1000 B
CSS
45 lines
1000 B
CSS
|
.popup-overlay {
|
||
|
display: none;
|
||
|
position: fixed;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
background-color: rgba(0, 0, 0, 0.5);
|
||
|
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;
|
||
|
padding: 20px;
|
||
|
border-radius: 5px;
|
||
|
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
|
||
|
width: 300px;
|
||
|
text-align: center;
|
||
|
font-family: 'Inter', sans-serif; /* Assurer la police Inter dans la popup */
|
||
|
}
|
||
|
.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;
|
||
|
}
|
||
|
|