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