1
0
Fork 0
mirror of https://github.com/uhIgnacio/igna.rocks.git synced 2024-08-15 02:23:12 +00:00
igna.rocks/assets/js/less/effects/border-transitions/_outline-out.less
2021-08-31 11:30:22 -04:00

29 lines
628 B
Text

/* Outline Out */
.outline-out() {
@outerBorderWidth: 4px;
@innerBorderWidth: 4px;
.hacks();
position: relative;
&:before {
content: '';
position: absolute;
border: @primaryColor solid @outerBorderWidth;
top: 0;
right: 0;
bottom: 0;
left: 0;
.prefixed(transition-duration, .3s);
.prefixed(transition-property, "top, right, bottom, left");
}
&:hover:before,
&:focus:before,
&:active:before {
top: -(@outerBorderWidth + @innerBorderWidth);
right: -(@outerBorderWidth + @innerBorderWidth);
bottom: -(@outerBorderWidth + @innerBorderWidth);
left: -(@outerBorderWidth + @innerBorderWidth);
}
}