Retinaディスプレイ(デバイスピクセル比が2以上)向け

SCSS の @mixin で使用

@mixin retina {
	@media only screen and (-webkit-min-device-pixel-ratio: 2),
		only screen and (min-resolution: 2dppx) {
  		@content;
	}
}