spaCy/website/assets/css/_base/_animations.sass
2016-04-01 01:24:48 +11:00

24 lines
406 B
Sass

// Animations
// ============================================================================
// Element slides in from the top
@keyframes slideInDown
from
transform: translate3d(0, -100%, 0);
visibility: visible;
to
transform: translate3d(0, 0, 0);
// Element blinks
@keyframes blink
0%
opacity: 1
50%
opacity: 0
100%
opacity: 1