animate.css/source/attention_seekers/pulse.css
Sarbbottam Bandyopadhyay 9310cf98ed Unified formatting across files
indent_style = space
indent_size = 2
insert_final_newline = true
each line within { } to specify single rule
2014-02-24 02:09:02 +05:30

20 lines
251 B
CSS

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