mirror of
https://github.com/uhIgnacio/igna.rocks.git
synced 2024-08-15 02:23:12 +00:00
33 lines
544 B
SCSS
33 lines
544 B
SCSS
|
/* Icon Down */
|
||
|
@include keyframes(#{$nameSpace}-icon-down) {
|
||
|
0%,
|
||
|
50%,
|
||
|
100% {
|
||
|
@include prefixed(transform, translateY(0));
|
||
|
}
|
||
|
25%,
|
||
|
75% {
|
||
|
@include prefixed(transform, translateY(6px));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/* Icon Down */
|
||
|
@mixin icon-down {
|
||
|
@include hacks();
|
||
|
|
||
|
.hvr-icon {
|
||
|
@include prefixed(transform, translateZ(0));
|
||
|
}
|
||
|
|
||
|
&:hover,
|
||
|
&:focus,
|
||
|
&:active {
|
||
|
|
||
|
.hvr-icon {
|
||
|
@include prefixed(animation-name, #{$nameSpace}-icon-down);
|
||
|
@include prefixed(animation-duration, .75s);
|
||
|
@include prefixed(animation-timing-function, ease-out);
|
||
|
}
|
||
|
}
|
||
|
}
|