You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
758 B
SCSS
37 lines
758 B
SCSS
@mixin hourglass($width, $height, $color) {
|
|
display: inline-block;
|
|
position: relative;
|
|
vertical-align: text-bottom;
|
|
@include color-svg('/images/hourglass_full.svg', transparent);
|
|
background-size: 100%;
|
|
|
|
&, &:before, &:after {
|
|
width: $width;
|
|
height: $height;
|
|
}
|
|
&:before, &:after {
|
|
content: '';
|
|
display: inline-block;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
}
|
|
&:before {
|
|
background: $color;
|
|
animation: moveDown 5s linear;
|
|
animation-duration: inherit;
|
|
animation-fill-mode: forwards;
|
|
}
|
|
&:after {
|
|
@include color-svg('/images/hourglass_empty.svg', $color);
|
|
}
|
|
@keyframes moveDown {
|
|
from {
|
|
transform: translateY(0);
|
|
}
|
|
to {
|
|
transform: translateY($height);
|
|
}
|
|
}
|
|
}
|