spaCy/website/assets/css/_base/_animations.sass

24 lines
406 B
Sass
Raw Normal View History

2016-03-31 17:24:48 +03:00
// 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