32 lines
No EOL
618 B
CSS
32 lines
No EOL
618 B
CSS
.modal {
|
|
display: none;
|
|
position: fixed;
|
|
z-index: 1;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: #ccc; /* Gris uni */
|
|
}
|
|
|
|
.modal-content {
|
|
background-color: white;
|
|
margin: 15% auto;
|
|
padding: 10px;
|
|
border: 2px solid black; /* Bordures noires bien visibles */
|
|
width: 40vw;
|
|
text-align: left; /* Alignement à gauche */
|
|
font-family: Arial, sans-serif; /* Typo basique */
|
|
}
|
|
|
|
.close-btn {
|
|
color: black;
|
|
font-size: 18px;
|
|
}
|
|
|
|
.modal.button {
|
|
padding: 5px 10px;
|
|
background-color: #008CBA; /* Bleu très simple */
|
|
color: white;
|
|
}
|
|
|