mirror of
https://github.com/uhIgnacio/igna.rocks.git
synced 2024-08-15 02:23:12 +00:00
19 lines
254 B
Text
19 lines
254 B
Text
/* Icon Fade */
|
|
.icon-fade() {
|
|
.hacks();
|
|
|
|
.hvr-icon {
|
|
.prefixed(transform, translateZ(0));
|
|
.prefixed(transition-duration, .5s);
|
|
.prefixed(transition-property, color);
|
|
}
|
|
|
|
&:hover,
|
|
&:focus,
|
|
&:active {
|
|
|
|
.hvr-icon {
|
|
color: #0F9E5E;
|
|
}
|
|
}
|
|
}
|