mirror of
https://github.com/uhIgnacio/igna.rocks.git
synced 2024-08-15 02:23:12 +00:00
14 lines
250 B
Text
14 lines
250 B
Text
/* Fade */
|
|
.fade() {
|
|
.hacks();
|
|
overflow: hidden;
|
|
.prefixed(transition-duration, @mediumDuration);
|
|
.prefixed(transition-property, ~"color, background-color");
|
|
|
|
&:hover,
|
|
&:focus,
|
|
&:active {
|
|
background-color: @activeColor;
|
|
color: white;
|
|
}
|
|
}
|