dd30d2cbf6
- Ok nuova gestione modale - ok crea nuovo - ok btn add se selezionata company ... test clona NON ancora OK
143 lines
2.7 KiB
CSS
143 lines
2.7 KiB
CSS
.cardOrders {
|
|
width: 100%;
|
|
/*border-radius: 18px;*/
|
|
border-radius: 1.3rem;
|
|
padding: 1rem 2.5rem 0.5rem 2.5rem;
|
|
box-shadow: rgba(0, 0, 0, 0.45) 0px 20px 22px 3px;
|
|
margin-top: 0.5rem;
|
|
margin-bottom: 1rem;
|
|
position: relative;
|
|
font-size: 1rem;
|
|
}
|
|
.cardOrders01 {
|
|
width: 100%;
|
|
/*border-radius: 18px;*/
|
|
border-radius: 1.3rem;
|
|
padding: 1rem 2.5rem 0.5rem 2.5rem;
|
|
box-shadow: rgba(0, 0, 0, 0.45) 0px 20px 22px 3px;
|
|
margin-top: 0.5rem;
|
|
margin-bottom: 1rem;
|
|
position: relative;
|
|
font-size: 1rem;
|
|
background-color: #FFFFFF;
|
|
color: #000;
|
|
z-index: 10;
|
|
}
|
|
.cardOrders02 {
|
|
width: 100%;
|
|
/*border-radius: 18px;*/
|
|
border-radius: 1.3rem;
|
|
padding: 1rem 2.5rem 0.5rem 2.5rem;
|
|
box-shadow: rgba(0, 0, 0, 0.45) 0px 20px 22px 3px;
|
|
margin-top: 0.5rem;
|
|
margin-bottom: 1rem;
|
|
position: relative;
|
|
font-size: 1rem;
|
|
background-color: #FFFFFF;
|
|
z-index: 20;
|
|
}
|
|
.cardOrders03 {
|
|
width: 100%;
|
|
/*border-radius: 18px;*/
|
|
border-radius: 1.3rem;
|
|
padding: 1rem 2.5rem 0.5rem 2.5rem;
|
|
box-shadow: rgba(0, 0, 0, 0.45) 0px 20px 22px 3px;
|
|
margin-top: 0.5rem;
|
|
margin-bottom: 1rem;
|
|
position: relative;
|
|
font-size: 1rem;
|
|
background-color: #FFFFFF;
|
|
z-index: 30;
|
|
}
|
|
.wRed01 {
|
|
width: 95%;
|
|
margin-bottom: -1.5rem;
|
|
background-color: #696969;
|
|
color: #FFF;
|
|
animation-name: shrink01;
|
|
animation-duration: 0.5s;
|
|
font-size: 0.9rem;
|
|
}
|
|
.wRed02 {
|
|
width: 90%;
|
|
margin-bottom: -1.5rem;
|
|
background-color: #333333;
|
|
color: white;
|
|
animation-name: shrink02;
|
|
animation-duration: 0.5s;
|
|
font-size: 0.8rem;
|
|
}
|
|
@keyframes shrink01 {
|
|
0% {
|
|
width: 100%;
|
|
background-color: #FFFFFF;
|
|
color: black;
|
|
}
|
|
80% {
|
|
width: 95%;
|
|
background-color: #EFEFEF;
|
|
color: black;
|
|
}
|
|
100% {
|
|
width: 95%;
|
|
background-color: #696969;
|
|
color: #FFF;
|
|
}
|
|
}
|
|
@keyframes shrink02 {
|
|
0% {
|
|
width: 95%;
|
|
background-color: #696969;
|
|
}
|
|
80% {
|
|
width: 90%;
|
|
background-color: #585858;
|
|
}
|
|
100% {
|
|
width: 90%;
|
|
background-color: #333333;
|
|
}
|
|
}
|
|
/* Background scuro del modale */
|
|
.modalNewOrd {
|
|
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 */
|
|
.modalNewOrdContent {
|
|
background-color: #fefefe;
|
|
margin: 3% auto;
|
|
padding: 20px;
|
|
border: 1px solid #888;
|
|
width: 50%;
|
|
border-radius: 1rem;
|
|
animation: slideDown 0.3s;
|
|
}
|
|
/* The Close Button */
|
|
.closeNewOrd {
|
|
color: #aaa;
|
|
float: right;
|
|
font-size: 2.5rem;
|
|
font-weight: bold;
|
|
}
|
|
.closeNewOrd:hover,
|
|
.closeNewOrd:focus {
|
|
color: black;
|
|
text-decoration: none;
|
|
cursor: pointer;
|
|
}
|
|
@keyframes slideDown {
|
|
0% {
|
|
transform: translate(0, -500px);
|
|
}
|
|
100% {
|
|
transform: translate(0, 0);
|
|
}
|
|
} |