igna.rocks/assets/js/less/effects/background-transitions/_rectangle-in.less

34 lines
617 B
Plaintext

/* Rectangle In */
.rectangle-in() {
.hacks();
position: relative;
background: @activeColor;
.prefixed(transition-property, color);
.prefixed(transition-duration, @mediumDuration);
&:before {
content: "";
position: absolute;
z-index: -1;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: @primaryColor;
.prefixed(transform, scale(1));
.prefixed(transition-property, transform);
.prefixed(transition-duration, @mediumDuration);
.prefixed(transition-timing-function, ease-out);
}
&:hover,
&:focus,
&:active {
color: white;
&:before {
.prefixed(transform, scale(0));
}
}
}