Files
zaccaria.majid feb41fe576 modal show
2023-06-01 11:53:50 +02:00

57 lines
962 B
Plaintext

/* Background scuro del modale */
.modalOrd {
//display: none;
position: fixed;
z-index: 9999;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgb(0,0,0);
background-color: rgba(0,0,0,0.4);
}
/* Modal Content/Box */
.modalOrd-content {
background-color: #fefefe;
margin: 3% auto;
padding: 20px;
border: 1px solid #888;
width: 50%;
border-radius: 1rem;
animation: slideDown .5s;
/* display: flex;
justify-content: space-between;*/
}
/* The Close Button */
.closeOrd {
color: #aaa;
float: right;
font-size: 2.5rem;
font-weight: bold;
}
.closeOrd:hover,
.closeOrd:focus {
color: black;
text-decoration: none;
cursor: pointer;
}
@keyframes slideDown {
0% {
transform: translate(0, -1000px);
}
100% {
transform: translate(0, 0);
}
}
button {
border: none;
border-radius: 0.3rem;
}