39 lines
698 B
Plaintext
39 lines
698 B
Plaintext
/* Background scuro del modale */
|
|
.modalHwDets {
|
|
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 */
|
|
.modalHwDetsContent {
|
|
background-color: #fefefe;
|
|
margin: 3% auto;
|
|
padding: 20px;
|
|
border: 1px solid #888;
|
|
width: 50%;
|
|
border-radius: 1rem;
|
|
animation: slideDown .3s;
|
|
}
|
|
|
|
/* The Close Button */
|
|
.closeHwDets {
|
|
color: #aaa;
|
|
float: right;
|
|
font-size: 2.5rem;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.closeHwDets:hover,
|
|
.closeHwDets:focus {
|
|
color: black;
|
|
text-decoration: none;
|
|
cursor: pointer;
|
|
}
|