mirror of
https://github.com/uhIgnacio/igna.rocks.git
synced 2024-08-15 02:23:12 +00:00
12 lines
239 B
Text
12 lines
239 B
Text
/* Bounce In */
|
|
.bounce-in() {
|
|
.hacks();
|
|
.prefixed(transition-duration, @slowDuration);
|
|
|
|
&:hover,
|
|
&:focus,
|
|
&:active {
|
|
.prefixed(transform, scale(1.2));
|
|
.prefixed(transition-timing-function, cubic-bezier(.47,2.02,.31,-0.36));
|
|
}
|
|
}
|