39 lines
No EOL
757 B
CSS
39 lines
No EOL
757 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 */
|
||
border-radius: 5px; /* Bordures légèrement arrondies */
|
||
border: 1px solid gray;
|
||
}
|
||
|
||
.close-btn {
|
||
color: black;
|
||
font-size: 18px;
|
||
}
|
||
|
||
.modal.button {
|
||
padding: 5px 10px;
|
||
background-color: #008CBA; /* Bleu très simple */
|
||
color: white;
|
||
}
|
||
|
||
.close-btn:hover,
|
||
.close-btn:focus {
|
||
color: red; /* Rouge pour attirer l’attention */
|
||
}
|
||
|