mirror of
https://github.com/uhIgnacio/igna.rocks.git
synced 2024-08-15 02:23:12 +00:00
34 lines
671 B
Text
34 lines
671 B
Text
/* Shutter Out Vertical */
|
|
.shutter-out-vertical() {
|
|
.hacks();
|
|
position: relative;
|
|
background: @primaryColor;
|
|
.prefixed(transition-property, color);
|
|
.prefixed(transition-duration, @mediumDuration);
|
|
|
|
&:before {
|
|
content: "";
|
|
position: absolute;
|
|
z-index: -1;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
background: @activeColor;
|
|
.prefixed(transform, scaleY(0));
|
|
.prefixed(transform-origin, 50%);
|
|
.prefixed(transition-property, transform);
|
|
.prefixed(transition-duration, @mediumDuration);
|
|
.prefixed(transition-timing-function, ease-out);
|
|
}
|
|
|
|
&:hover,
|
|
&:focus,
|
|
&:active {
|
|
color: white;
|
|
|
|
&:before {
|
|
.prefixed(transform, scaleY(1));
|
|
}
|
|
}
|
|
}
|