mirror of
https://github.com/ansible/awx.git
synced 2026-01-11 10:00:01 -03:30
27 lines
870 B
Plaintext
27 lines
870 B
Plaintext
/*********************************************
|
|
* Copyright (c) 2015 Ansible, Inc. (formerly AnsibleWorks, 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;}
|
|
} |