mirror of
https://github.com/uhIgnacio/igna.rocks.git
synced 2024-08-15 02:23:12 +00:00
31 lines
542 B
Text
31 lines
542 B
Text
/* Icon Pulse */
|
|
.keyframes(~"@{nameSpace}-icon-pulse", {
|
|
25% {
|
|
.prefixed(transform, scale(1.3));
|
|
}
|
|
|
|
75% {
|
|
.prefixed(transform, scale(.8));
|
|
}
|
|
});
|
|
|
|
.icon-pulse() {
|
|
.hacks();
|
|
|
|
.hvr-icon {
|
|
.prefixed(transform, translateZ(0));
|
|
.prefixed(transition-timing-function, ease-out);
|
|
}
|
|
|
|
&:hover,
|
|
&:focus,
|
|
&:active {
|
|
|
|
.hvr-icon {
|
|
.prefixed(animation-name, ~"@{nameSpace}-icon-pulse");
|
|
.prefixed(animation-duration, 1s);
|
|
.prefixed(animation-timing-function, linear);
|
|
.prefixed(animation-iteration-count, infinite);
|
|
}
|
|
}
|
|
}
|