igna.rocks/assets/js/less/effects/border-transitions/_underline-from-center.less

33 lines
513 B
Plaintext

/* Underline From Center */
.underline-from-center() {
@duration: @mediumDuration;
.hacks();
position: relative;
overflow: hidden;
&:before {
content: "";
position: absolute;
z-index: -1;
left: 51%;
right: 51%;
bottom: 0;
background: @activeColor;
height: 4px;
.prefixed(transition-property, "left, right");
.prefixed(transition-duration, @duration);
.prefixed(transition-timing-function, ease-out);
}
&:hover,
&:focus,
&:active {
&:before {
left: 0;
right: 0;
}
}
}