set up initial success screen and added animation for collecting email form
This commit is contained in:
parent
7a7b78d03b
commit
a6a0742c90
5 changed files with 72 additions and 16 deletions
|
|
@ -25,3 +25,13 @@
|
|||
box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
}
|
||||
|
||||
.overlay{
|
||||
position: absolute;
|
||||
top:0;
|
||||
left:0;
|
||||
width:100%;
|
||||
height: 100%;
|
||||
background: rgba(0,0,0,.4);
|
||||
z-index: 4;
|
||||
}
|
||||
50
src/sass/views/onboarding/onboard-collect-email.scss
Normal file
50
src/sass/views/onboarding/onboard-collect-email.scss
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
#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;
|
||||
}
|
||||
}
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
#onboarding-collect-email{
|
||||
background: rgb(17,209,166);
|
||||
}
|
||||
|
|
@ -21,9 +21,8 @@
|
|||
}
|
||||
ion-content {
|
||||
color: #fff;
|
||||
.scroll {}
|
||||
h2, h3{color:#fff;}
|
||||
h2 {
|
||||
color: #fff;
|
||||
font-size: 1.8rem;
|
||||
}
|
||||
p {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue