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/_reveal.less
2021-08-31 11:30:22 -04:00

34 lines
552 B
Text

/* Reveal */
.reveal() {
@duration: @fastDuration;
.hacks();
position: relative;
overflow: hidden;
&:before {
content: "";
position: absolute;
z-index: -1;
left: 0;
right: 0;
top: 0;
bottom: 0;
border-color: @activeColor;
border-style: solid;
border-width: 0;
.prefixed(transition-property, border-width);
.prefixed(transition-duration, @duration);
.prefixed(transition-timing-function, ease-out);
}
&:hover,
&:focus,
&:active {
&:before {
.prefixed(transform, translateY(0));
border-width: 4px;
}
}
}