mirror of
https://github.com/uhIgnacio/igna.rocks.git
synced 2024-08-15 02:23:12 +00:00
23 lines
381 B
Text
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);
|
|
}
|
|
}
|