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