apollodec/Apollo/bower_components/animate.css/source/attention_seekers/pulse.css
venbatechnologies@gmail.com d06b1c0cba status file
2017-12-07 11:31:25 +05:30

20 lines
284 B
CSS
Executable File

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
0% {
transform: scale3d(1, 1, 1);
}
50% {
transform: scale3d(1.05, 1.05, 1.05);
}
100% {
transform: scale3d(1, 1, 1);
}
}
.pulse {
animation-name: pulse;
}