diaspora/app/assets/stylesheets/animations.scss
2015-10-10 12:34:59 +02:00

23 lines
367 B
SCSS

// flash message animations - header height is about 50px
@keyframes expose {
0% { top: -100px; }
12% { top: 50px; }
88% { top: 50px; }
100% { top: -100px; }
}
// spinner animation
@keyframes spinner {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
@keyframes pulsate {
from {
opacity: 1;
}
to {
opacity: .1;
}
}