Created
February 27, 2014 23:32
-
-
Save dannyconnolly/9261987 to your computer and use it in GitHub Desktop.
Sass Mixins
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@mixin breakpoint($point) { | |
@if $point == large { | |
@media (min-width: 64.375em) { @content; } | |
} | |
@else if $point == medium { | |
@media (min-width: 50em) { @content; } | |
} | |
@else if $point == small { | |
@media (min-width: 37.5em) { @content; } | |
} | |
} | |
/* | |
.page-wrap { | |
width: 75%; | |
@include breakpoint(large) { width: 60%; } | |
@include breakpoint(medium) { width: 80%; } | |
@include breakpoint(small) { width: 95%; } | |
} | |
*/ | |
@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) { | |
/* on retina, use image that's scaled by 2 */ | |
background-image: url($image); | |
background-size: $width $height; | |
} | |
} | |
/* | |
div.logo { | |
background: url("logo.png") no-repeat; | |
@include image-2x("logo2x.png", 100px, 25px); | |
} | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment