49 lines
867 B
CSS
49 lines
867 B
CSS
/* Background scuro del modale */
|
|
.modalOrd {
|
|
position: fixed;
|
|
z-index: 9999;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: auto;
|
|
background-color: #000000;
|
|
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 0.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;
|
|
} |