100 lines
2.0 KiB
CSS
100 lines
2.0 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;
|
|
}
|
|
} |