mirror of
https://github.com/uhIgnacio/igna.rocks.git
synced 2024-08-15 02:23:12 +00:00
33 lines
708 B
SCSS
33 lines
708 B
SCSS
/* Sweep To Top */
|
|
@mixin sweep-to-top {
|
|
@include hacks();
|
|
position: relative;
|
|
@include prefixed(transition-property, color);
|
|
@include prefixed(transition-duration, $mediumDuration);
|
|
|
|
&:before {
|
|
content: "";
|
|
position: absolute;
|
|
z-index: -1;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: $activeColor;
|
|
@include prefixed(transform, scaleY(0));
|
|
@include prefixed(transform-origin, 50% 100%);
|
|
@include prefixed(transition-property, transform);
|
|
@include prefixed(transition-duration, $mediumDuration);
|
|
@include prefixed(transition-timing-function, ease-out);
|
|
}
|
|
|
|
&:hover,
|
|
&:focus,
|
|
&:active {
|
|
color: white;
|
|
|
|
&:before {
|
|
@include prefixed(transform, scaleY(1));
|
|
}
|
|
}
|
|
}
|