44 lines
No EOL
989 B
CSS
44 lines
No EOL
989 B
CSS
.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 l’attention */
|
||
}
|
||
|