-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
first commit. pushing local project to repo
- Loading branch information
Jeff Horner
committed
Dec 28, 2018
0 parents
commit 8bbb697
Showing
24 changed files
with
3,183 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,186 @@ | ||
/* ANIMATIONS */ | ||
|
||
.slide-in { | ||
transform: translateY(150px); | ||
animation: slide-in 1s ease forwards; | ||
} | ||
|
||
.slide-in:nth-child(even) { | ||
animation-duration: 1.3s; | ||
/* So they look staggered */ | ||
} | ||
|
||
@-webkit-keyframes slide-in { | ||
to { | ||
transform: translateY(0); | ||
} | ||
} | ||
|
||
@keyframes slide-in { | ||
to { | ||
transform: translateY(0); | ||
} | ||
} | ||
|
||
.fadeInSlow1 { | ||
animation: fadeInLeft 3.55s; | ||
} | ||
|
||
.fadeInSlow2 { | ||
animation: fadeInLeft 2.25s; | ||
} | ||
|
||
.fadeInSlow3 { | ||
animation: fadeInLeft 1.5s; | ||
} | ||
|
||
@-webkit-keyframes fadeInLeft { | ||
from { | ||
opacity: 0; | ||
-webkit-transform: translate3d(-100%, 0, 0); | ||
transform: translate3d(-100%, 0, 0); | ||
} | ||
to { | ||
opacity: 1; | ||
-webkit-transform: translate3d(0, 0, 0); | ||
transform: translate3d(0, 0, 0); | ||
} | ||
} | ||
|
||
@keyframes fadeInLeft { | ||
from { | ||
opacity: 0; | ||
-webkit-transform: translate3d(-100%, 0, 0); | ||
transform: translate3d(-100%, 0, 0); | ||
} | ||
to { | ||
opacity: 1; | ||
-webkit-transform: translate3d(0, 0, 0); | ||
transform: translate3d(0, 0, 0); | ||
} | ||
} | ||
|
||
.slideInFromLeft1 { | ||
animation: slideInLeft 2.9s; | ||
} | ||
|
||
.slideInFromLeft2 { | ||
animation: slideInLeft 2s; | ||
} | ||
|
||
.slideInFromLeft3 { | ||
animation: slideInLeft 1.25s; | ||
} | ||
|
||
@-webkit-keyframes slideInLeft { | ||
from { | ||
-webkit-transform: translate3d(-100%, 0, 0); | ||
transform: translate3d(-100%, 0, 0); | ||
visibility: visible; | ||
} | ||
to { | ||
-webkit-transform: translate3d(0, 0, 0); | ||
transform: translate3d(0, 0, 0); | ||
} | ||
} | ||
|
||
@keyframes slideInLeft { | ||
from { | ||
-webkit-transform: translate3d(-100%, 0, 0); | ||
transform: translate3d(-100%, 0, 0); | ||
visibility: visible; | ||
} | ||
to { | ||
-webkit-transform: translate3d(0, 0, 0); | ||
transform: translate3d(0, 0, 0); | ||
} | ||
} | ||
|
||
.fadeInSlow { | ||
animation: fadeIn 2.4s; | ||
} | ||
|
||
.fadeInNow { | ||
animation: fadeIn 2.75s; | ||
} | ||
|
||
@-webkit-keyframes fadeIn { | ||
from { | ||
opacity: 0; | ||
} | ||
to { | ||
opacity: 1; | ||
} | ||
} | ||
|
||
@keyframes fadeIn { | ||
from { | ||
opacity: 0; | ||
} | ||
to { | ||
opacity: 1; | ||
} | ||
} | ||
|
||
.fadeIn { | ||
-webkit-animation-name: fadeIn; | ||
animation-name: fadeIn; | ||
} | ||
|
||
@-webkit-keyframes rollIn { | ||
from { | ||
opacity: 0; | ||
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); | ||
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); | ||
} | ||
to { | ||
opacity: 1; | ||
-webkit-transform: translate3d(0, 0, 0); | ||
transform: translate3d(0, 0, 0); | ||
} | ||
} | ||
|
||
@keyframes rollIn { | ||
from { | ||
opacity: 0; | ||
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); | ||
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); | ||
} | ||
to { | ||
opacity: 1; | ||
-webkit-transform: translate3d(0, 0, 0); | ||
transform: translate3d(0, 0, 0); | ||
} | ||
} | ||
|
||
.rollIn { | ||
-webkit-animation-name: rollIn; | ||
animation-name: rollIn; | ||
} | ||
|
||
|
||
/* .typing { | ||
width: 220px; | ||
overflow: hidden; | ||
border-right: .15em solid #fcfcfc; | ||
white-space: nowrap; | ||
margin: 0 auto; | ||
animation: | ||
typing 3.5s steps(40, end), | ||
blink-caret .75s step-end infinite; | ||
} | ||
@keyframes typing { | ||
from { width: 0 } | ||
to { width: 50% } | ||
} | ||
@keyframes blink-caret { | ||
from, to { border-color: transparent } | ||
50% { border-color: #262626; } | ||
} */ | ||
|
||
/* The Modal (background) */ | ||
|
||
|
||
|
Oops, something went wrong.