1
0
Fork 0
mirror of https://github.com/uhIgnacio/igna.rocks.git synced 2024-08-15 02:23:12 +00:00
igna.rocks/assets/js/less/effects/2d-transitions/_push.less
2021-08-31 11:30:22 -04:00

23 lines
381 B
Text

/* Push */
.keyframes(~"@{nameSpace}-push", {
50% {
.prefixed(transform, scale(.8));
}
100% {
.prefixed(transform, scale(1));
}
});
.push() {
.hacks();
&:hover,
&:focus,
&:active {
.prefixed(animation-name, ~"@{nameSpace}-push");
.prefixed(animation-duration, .3s);
.prefixed(animation-timing-function, linear);
.prefixed(animation-iteration-count, 1);
}
}