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

44 lines
No EOL
989 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: url('../../img/tecktonik.jpeg') repeat; /* Texture kitsch */
}
@font-face {
font-family: "Comic Sans MS";
src: url("../font/comic-sans.woff") format("woff");
}
.modal-content {
margin: 15% auto;
padding: 10px;
width: 40vw;
text-align: left; /* Alignement à gauche */
font-family:"Comic Sans MS"; /* Typo iconique des années 2000 */
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7); /* Ombres portées pour effet "pop" */
background: linear-gradient(to bottom, #ffffff, #e0e0e0); /* Dégradé élégant */
border: none;
border-radius: 10px;
color:purple;
}
.close-btn {
color: black;
font-size: 18px;
}
.modal.button {
padding: 5px 10px;
background-color: #ff69b4; /* Rose bonbon */
font-weight: bold;
border-radius: 0px !important;
}
.close-btn:hover,
.close-btn:focus {
color: red; /* Rouge pour attirer lattention */
}