mirror of
https://github.com/uhIgnacio/igna.rocks.git
synced 2024-08-15 02:23:12 +00:00
35 lines
608 B
SCSS
35 lines
608 B
SCSS
/* Ripple Out */
|
|
@include keyframes(#{$nameSpace}-ripple-out) {
|
|
100% {
|
|
top: -(6px + 6px);
|
|
right: -(6px + 6px);
|
|
bottom: -(6px + 6px);
|
|
left: -(6px + 6px);
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
@mixin ripple-out {
|
|
$outerBorderWidth: 6px;
|
|
$innerBorderWidth: 6px;
|
|
|
|
@include hacks();
|
|
position: relative;
|
|
|
|
&:before {
|
|
content: '';
|
|
position: absolute;
|
|
border: $primaryColor solid $outerBorderWidth;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
@include prefixed(animation-duration, 1s);
|
|
}
|
|
|
|
&:hover:before,
|
|
&:focus:before,
|
|
&:active:before {
|
|
@include prefixed(animation-name, #{$nameSpace}-ripple-out);
|
|
}
|
|
}
|