50 lines
912 B
SCSS
50 lines
912 B
SCSS
|
|
#onboarding-collect-email {
|
||
|
|
background: rgb(17, 209, 166);
|
||
|
|
#success-image {
|
||
|
|
margin-top: 4rem;
|
||
|
|
}
|
||
|
|
.col {
|
||
|
|
margin-top: 1rem;
|
||
|
|
margin-bottom: 1rem;
|
||
|
|
}
|
||
|
|
#collect-email {
|
||
|
|
opacity: 1;
|
||
|
|
background: #fff;
|
||
|
|
color: rgb(108, 108, 108);
|
||
|
|
height: 8rem;
|
||
|
|
animation-name: topBottom;
|
||
|
|
animation-iteration-count: 1;
|
||
|
|
animation-timing-function: ease-in;
|
||
|
|
animation-duration: 1s;
|
||
|
|
animation-delay: 2s;
|
||
|
|
position: absolute;
|
||
|
|
bottom: -100%;
|
||
|
|
animation-fill-mode: forwards;
|
||
|
|
z-index:5;
|
||
|
|
}
|
||
|
|
.overlay {
|
||
|
|
animation-name: bottomTop;
|
||
|
|
animation-iteration-count: 1;
|
||
|
|
animation-timing-function: ease-in;
|
||
|
|
animation-duration: 1s;
|
||
|
|
animation-delay: 2s;
|
||
|
|
animation-fill-mode: forwards;
|
||
|
|
top:100%;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
@keyframes topBottom {
|
||
|
|
0% {
|
||
|
|
bottom: -100%;
|
||
|
|
}
|
||
|
|
100% {
|
||
|
|
bottom: 0;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
@keyframes bottomTop {
|
||
|
|
0% {
|
||
|
|
top: 100%;
|
||
|
|
}
|
||
|
|
100% {
|
||
|
|
top: 0;
|
||
|
|
}
|
||
|
|
}
|