projet-clicodrome/css/alerte/a2.css
2024-12-15 20:55:30 +01:00

39 lines
No EOL
757 B
CSS
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

.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 lattention */
}