Skip to content

Instantly share code, notes, and snippets.

@zthornto
zthornto / made-assets-prep-web.md
Last active July 25, 2017 19:11
Made Assets Prep for Web
@zthornto
zthornto / retina-mixins.scss
Last active December 30, 2015 10:29
Retina Images Mixin
//create mixin to handle scaling of retina images
@mixin image-2x($image, $width, $height) {
@media (min--moz-device-pixel-ratio: 1.3),
(-o-min-device-pixel-ratio: 2.6/2),
(-webkit-min-device-pixel-ratio: 1.3),
(min-device-pixel-ratio: 1.3),
(min-resolution: 1.3dppx) {
background-image: url($image);
background-size: $width $height;
}