mirror of
https://github.com/uhIgnacio/igna.rocks.git
synced 2024-08-15 02:23:12 +00:00
31 lines
579 B
Text
31 lines
579 B
Text
/* Icon Buzz */
|
|
.keyframes(~"@{nameSpace}-icon-buzz", {
|
|
50% {
|
|
.prefixed(transform, translateX(3px) rotate(2deg));
|
|
}
|
|
|
|
100% {
|
|
.prefixed(transform, translateX(-3px) rotate(-2deg));
|
|
}
|
|
});
|
|
|
|
.icon-buzz() {
|
|
.hacks();
|
|
.prefixed(transition-duration, @mediumDuration);
|
|
|
|
.hvr-icon {
|
|
.prefixed(transform, translateZ(0));
|
|
}
|
|
|
|
&:hover,
|
|
&:focus,
|
|
&:active {
|
|
|
|
.hvr-icon {
|
|
.prefixed(animation-name, ~"@{nameSpace}-icon-buzz");
|
|
.prefixed(animation-duration, .15s);
|
|
.prefixed(animation-timing-function, linear);
|
|
.prefixed(animation-iteration-count, infinite);
|
|
}
|
|
}
|
|
}
|