* 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
22 lines
382 B
SCSS
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;
|
|
}
|
|
}
|