Files
awx/awx/ui/client/legacy/styles/animations.less
gconsidine c57c17546e Update UI build system
* Faster build times
* Smaller bundle sizes
* Adjust paths
* Cleanup npm dependencies
* Remove unneded Grunt tasks
2017-09-07 18:09:14 -04:00

28 lines
831 B
Plaintext

/*********************************************
* Copyright (c) 2015 Ansible, Inc.
*
* animations.css
*
* custom animation mixins for ansible-ui
*
*/
.pulsate(@duration: 1.5s) {
-webkit-animation:pulsate @duration linear infinite alternate;
-moz-animation:pulsate @duration linear infinite alternate;
animation:pulsate @duration linear infinite alternate;
}
@-webkit-keyframes pulsate {
0% { -moz-transform: scale(.3); opacity: .2; }
100% { -moz-transform: scale(1.1); opacity: 1; }
}
@-webkit-keyframes pulsate {
0% { -webkit-transform: scale(.3); opacity: .2; }
100% { -webkit-transform: scale(1.1); opacity: 1; }
}
@keyframes pulsate {
0% { -webkit-transform: scale(.3); transform:scale(.3); opacity: .2;}
100% { -webkit-transform: scale(1.1); transform:scale(1.1); opacity: 1;}
}