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