2016-09-01 11:24:52 -04:00
|
|
|
#onboarding-collect-email {
|
|
|
|
|
background: rgb(17, 209, 166);
|
2016-09-08 15:41:44 -04:00
|
|
|
.scroll-content {
|
|
|
|
|
margin-top: 0;
|
|
|
|
|
height: 101%;
|
|
|
|
|
}
|
2016-09-02 15:55:43 -03:00
|
|
|
.scroll {
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
2016-09-01 11:24:52 -04:00
|
|
|
#success-image {
|
|
|
|
|
margin-top: 4rem;
|
|
|
|
|
}
|
|
|
|
|
.col {
|
|
|
|
|
margin-top: 1rem;
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
}
|
2016-09-08 15:41:44 -04:00
|
|
|
.collect-overlay, .bar-overlay {
|
|
|
|
|
animation-name: opacity;
|
|
|
|
|
animation-iteration-count: 1;
|
|
|
|
|
animation-timing-function: ease-in;
|
|
|
|
|
animation-duration: .2s;
|
|
|
|
|
animation-delay: .8s;
|
|
|
|
|
animation-fill-mode: forwards;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
.collect-overlay{
|
|
|
|
|
top:-1px;
|
|
|
|
|
}
|
|
|
|
|
.bar-overlay{
|
|
|
|
|
background: rgba(0, 0, 0, 0.23);
|
|
|
|
|
.button-clear{
|
|
|
|
|
color:#fff;
|
|
|
|
|
min-width: 100%;
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-09-01 11:24:52 -04:00
|
|
|
#collect-email {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
background: #fff;
|
|
|
|
|
color: rgb(108, 108, 108);
|
2016-09-07 10:49:47 -03:00
|
|
|
height: 14rem;
|
2016-09-01 11:24:52 -04:00
|
|
|
animation-name: topBottom;
|
|
|
|
|
animation-iteration-count: 1;
|
|
|
|
|
animation-timing-function: ease-in;
|
2016-09-08 15:41:44 -04:00
|
|
|
animation-duration: .4s;
|
|
|
|
|
animation-delay: 1s;
|
2016-09-01 11:24:52 -04:00
|
|
|
position: absolute;
|
2016-09-07 10:49:47 -03:00
|
|
|
bottom: -14rem;
|
2016-09-01 11:24:52 -04:00
|
|
|
animation-fill-mode: forwards;
|
2016-09-02 06:50:23 -04:00
|
|
|
z-index: 5;
|
|
|
|
|
margin-top: 0;
|
2016-09-02 15:42:45 -03:00
|
|
|
width: 100%;
|
2016-09-02 06:50:23 -04:00
|
|
|
label {
|
|
|
|
|
background: rgba(200, 200, 200, 0.20);
|
|
|
|
|
height: 3rem;
|
2016-09-08 15:41:44 -04:00
|
|
|
margin-top: 0;
|
2016-09-02 06:50:23 -04:00
|
|
|
input {
|
|
|
|
|
position: absolute;
|
|
|
|
|
}
|
|
|
|
|
i {
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 3%;
|
|
|
|
|
top: 1rem;
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-09-01 11:24:52 -04:00
|
|
|
}
|
|
|
|
|
}
|
2016-09-02 06:50:23 -04:00
|
|
|
|
2016-09-01 11:24:52 -04:00
|
|
|
@keyframes topBottom {
|
|
|
|
|
0% {
|
|
|
|
|
bottom: -100%;
|
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-09-02 06:50:23 -04:00
|
|
|
|
2016-09-08 15:41:44 -04:00
|
|
|
@keyframes opacity {
|
2016-09-01 11:24:52 -04:00
|
|
|
0% {
|
2016-09-08 15:41:44 -04:00
|
|
|
opacity: 0;
|
2016-09-01 11:24:52 -04:00
|
|
|
}
|
|
|
|
|
100% {
|
2016-09-08 15:41:44 -04:00
|
|
|
opacity: 1;
|
2016-09-01 11:24:52 -04:00
|
|
|
}
|
|
|
|
|
}
|