Add subtle intro animation to elements and fix z-index stacking issues

This commit is contained in:
Michael Rose
2016-04-12 10:00:32 -04:00
parent 1dbc92d08c
commit 944629b422
7 changed files with 32 additions and 6 deletions

View File

@@ -0,0 +1,14 @@
/* ==========================================================================
ANIMATIONS
========================================================================== */
@keyframes intro {
0% {
opacity: 0;
transform: translate3d(0, -25px, 0)
}
100% {
opacity: 1;
transform: translate3d(0, 0, 0)
}
}