I have: Bonavita BV382510V 1-Liter
Great option: OXO Brew Adjustable Temperature Electric Pour-Over Kettle
I have: OXO Good Grips 5-Pound Food Scale with Pull-Out Display, Black
// Sprite mappers | |
$sprite: sprite-map('sprite/standard/*.png', $layout: 'smart'); | |
$sprite-hd: sprite-map('sprite/hd/*.png', $layout: 'smart'); | |
// HD media query | |
$hd: 'print, (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi)'; | |
// HD mixin sprite | |
// Your HD files should necessarily be twice the size of the standard ones | |
@mixin hd-sprite { |
$font-size: 16; | |
$px-only: true; | |
@function u($values){ | |
$list: (); | |
@each $value in $values { | |
@if $value == 'auto' { |
$font-size: 16; | |
@function strip-unit($num) { | |
@return $num / ($num * 0 + 1); | |
} | |
@mixin rem($property, $values...) { | |
$max: length($values); | |
$pxValues: ''; | |
$remValues: ''; |