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.
		
		
		
		
		
			
		
			
				
	
	
		
			25 lines
		
	
	
		
			485 B
		
	
	
	
		
			SCSS
		
	
			
		
		
	
	
			25 lines
		
	
	
		
			485 B
		
	
	
	
		
			SCSS
		
	
@mixin hourglass($color) {
 | 
						|
  display: inline-block;
 | 
						|
  position: relative;
 | 
						|
  @include color-svg('../images/hourglass_full.svg', transparent);
 | 
						|
  background-size: 100%;
 | 
						|
 | 
						|
  &, .sand, &:before, &:after {
 | 
						|
    width: 13px;
 | 
						|
    height: 11px;
 | 
						|
  }
 | 
						|
  .sand, &:before, &:after {
 | 
						|
    content: '';
 | 
						|
    display: inline-block;
 | 
						|
    position: absolute;
 | 
						|
    top: 0;
 | 
						|
    left: 0;
 | 
						|
  }
 | 
						|
  .sand {
 | 
						|
    background: $color;
 | 
						|
  }
 | 
						|
  &:after {
 | 
						|
    @include color-svg('../images/hourglass_empty.svg', $color);
 | 
						|
  }
 | 
						|
}
 |