/* Overline From Center */ .overline-from-center() { @duration: @mediumDuration; .hacks(); position: relative; overflow: hidden; &:before { content: ""; position: absolute; z-index: -1; left: 51%; right: 51%; top: 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; } } }