mirror of
https://github.com/uhIgnacio/igna.rocks.git
synced 2024-08-15 02:23:12 +00:00
32 lines
531 B
Text
32 lines
531 B
Text
/* Icon Sink Away */
|
|
.keyframes(~"@{nameSpace}-icon-sink-away", {
|
|
0% {
|
|
opacity: 1;
|
|
}
|
|
|
|
100% {
|
|
opacity: 0;
|
|
.prefixed(transform, translateY(1em));
|
|
}
|
|
});
|
|
|
|
/* Icon Sink Away */
|
|
.icon-sink-away() {
|
|
.hacks();
|
|
|
|
.hvr-icon {
|
|
.prefixed(transform, translateZ(0));
|
|
.prefixed(animation-duration, @slowDuration);
|
|
.prefixed(animation-fill-mode, forwards);
|
|
}
|
|
|
|
&:hover,
|
|
&:focus,
|
|
&:active {
|
|
|
|
.hvr-icon {
|
|
.prefixed(animation-name, ~"@{nameSpace}-icon-sink-away");
|
|
.prefixed(animation-timing-function, ease-out);
|
|
}
|
|
}
|
|
}
|