mirror of
https://github.com/uhIgnacio/igna.rocks.git
synced 2024-08-15 02:23:12 +00:00
29 lines
628 B
Text
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);
|
|
}
|
|
}
|