mirror of
https://github.com/uhIgnacio/igna.rocks.git
synced 2024-08-15 02:23:12 +00:00
20 lines
430 B
Text
20 lines
430 B
Text
/* Pulse Shrink */
|
|
.keyframes(~"@{nameSpace}-pulse-shrink", {
|
|
to {
|
|
.prefixed(transform, scale(.9));
|
|
}
|
|
});
|
|
|
|
.pulse-shrink() {
|
|
.hacks();
|
|
|
|
&:hover,
|
|
&:focus,
|
|
&:active {
|
|
.prefixed(animation-name, ~"@{nameSpace}-pulse-shrink");
|
|
.prefixed(animation-duration, @mediumDuration);
|
|
.prefixed(animation-timing-function, linear);
|
|
.prefixed(animation-iteration-count, infinite);
|
|
.prefixed(animation-direction, alternate);
|
|
}
|
|
}
|