Zwii-Modules/calendar/view/index/index.css

53 lines
1.1 KiB
CSS
Raw Normal View History

2024-08-16 15:57:50 +02:00
.popup-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
/*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;
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);
width: 350px;
max-width: 80%;
2024-08-16 15:57:50 +02:00
text-align: center;
font-family: 'Inter', sans-serif; /* Assurer la police Inter dans la popup */
}
div .gc-event {
color: #38385C;
text-align: center;
}
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;
}