@kyssii_gtml/modal-lib-p14
Version:
Package-modal_P14
40 lines • 742 B
CSS
.modal {
position: fixed;
background: rgba(240, 240, 240, 0.85);
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: 99;
backdrop-filter: blur(4px); /* optionnel : effet flou */
display: flex;
justify-content: center;
align-items: center;
}
.modal-content {
background-color: #fff;
border-radius: 1rem;
max-width: 300px;
height: 140px;
}
.modal-text {
position: relative;
padding: 1rem;
color: #000;
line-height: 32px;
}
.modal a {
padding: 1rem;
text-decoration: none;
}
.modal-btnClose {
color: whitesmoke;
background-color: #000;
position: absolute;
height: 40px;
width: 40px;
top: -15px;
right: -15px;
border-radius: 50%;
cursor: pointer;
}/*# sourceMappingURL=modal.css.map */