Files
web-dev/fast-api/bower_components/animate.css/source/attention_seekers/pulse.css
2020-02-17 02:37:02 +00:00

20 lines
284 B
CSS

/* 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;
}