34 lines
No EOL
516 B
CSS
34 lines
No EOL
516 B
CSS
.modal {
|
|
display: none;
|
|
position: fixed;
|
|
z-index: 1;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.modal-content {
|
|
margin: 15% auto;
|
|
padding: 10px;
|
|
width: 40vw;
|
|
text-align: left; /* Alignement à gauche */
|
|
background-color: white;
|
|
border: 2px solid #33ff00;
|
|
box-shadow: none;
|
|
color: #33ff00;
|
|
}
|
|
|
|
.close-btn {
|
|
color: black;
|
|
font-size: 18px;
|
|
}
|
|
|
|
.modal.button {
|
|
background-color: #33ff00;
|
|
color: white;
|
|
border-radius: 3px;
|
|
border: none;
|
|
}
|
|
|
|
|