2016-09-24 01:50:03 +02:00
|
|
|
@mixin hourglass($color) {
|
2016-09-22 23:12:38 +02:00
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
@include color-svg('/images/hourglass_full.svg', transparent);
|
|
|
|
background-size: 100%;
|
|
|
|
|
2016-09-24 01:19:29 +02:00
|
|
|
&, .sand, &:before, &:after {
|
2016-09-24 01:50:03 +02:00
|
|
|
width: 13px;
|
|
|
|
height: 11px;
|
2016-09-22 23:12:38 +02:00
|
|
|
}
|
2016-09-24 01:19:29 +02:00
|
|
|
.sand, &:before, &:after {
|
2016-09-22 23:12:38 +02:00
|
|
|
content: '';
|
|
|
|
display: inline-block;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
}
|
2016-09-24 01:19:29 +02:00
|
|
|
.sand {
|
2016-09-22 23:12:38 +02:00
|
|
|
background: $color;
|
|
|
|
}
|
|
|
|
&:after {
|
|
|
|
@include color-svg('/images/hourglass_empty.svg', $color);
|
|
|
|
}
|
|
|
|
}
|