diaspora/app/assets/stylesheets/new_styles/_animations.scss
Florian Staudacher ea397ffdfb Add connection test for pods in the network
* add a class for checking pod connectivity
* extend pod model to handle new functionality
* add an admin frontend to list pods and re-trigger checks manually
* add a daily worker to run through all the pods
* add unit tests for most of the new code
2015-08-24 22:04:53 +02:00

22 lines
382 B
SCSS

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