mirror of
https://github.com/uhIgnacio/igna.rocks.git
synced 2024-08-15 02:23:12 +00:00
21 lines
392 B
Text
21 lines
392 B
Text
/* Icon Shrink */
|
|
.icon-shrink() {
|
|
.hacks();
|
|
.prefixed(transition-duration, @mediumDuration);
|
|
|
|
.hvr-icon {
|
|
.prefixed(transform, translateZ(0));
|
|
.prefixed(transition-duration, @mediumDuration);
|
|
.prefixed(transition-property, transform);
|
|
.prefixed(transition-timing-function, ease-out);
|
|
}
|
|
|
|
&:hover,
|
|
&:focus,
|
|
&:active {
|
|
|
|
.hvr-icon {
|
|
.prefixed(transform, scale(.8));
|
|
}
|
|
}
|
|
}
|