mirror of
https://github.com/uhIgnacio/igna.rocks.git
synced 2024-08-15 02:23:12 +00:00
31 lines
490 B
Text
31 lines
490 B
Text
/* Underline From Right */
|
|
.underline-from-right() {
|
|
@duration: @mediumDuration;
|
|
|
|
.hacks();
|
|
position: relative;
|
|
overflow: hidden;
|
|
|
|
&:before {
|
|
content: "";
|
|
position: absolute;
|
|
z-index: -1;
|
|
left: 100%;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: @activeColor;
|
|
height: 4px;
|
|
.prefixed(transition-property, "left");
|
|
.prefixed(transition-duration, @duration);
|
|
.prefixed(transition-timing-function, ease-out);
|
|
}
|
|
|
|
&:hover,
|
|
&:focus,
|
|
&:active {
|
|
|
|
&:before {
|
|
left: 0;
|
|
}
|
|
}
|
|
}
|