Add subtle intro animation to elements and fix z-index stacking issues
This commit is contained in:
14
assets/_scss/_animations.scss
Normal file
14
assets/_scss/_animations.scss
Normal file
@@ -0,0 +1,14 @@
|
||||
/* ==========================================================================
|
||||
ANIMATIONS
|
||||
========================================================================== */
|
||||
|
||||
@keyframes intro {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translate3d(0, -25px, 0)
|
||||
}
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: translate3d(0, 0, 0)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user