Created
August 25, 2014 15:54
-
-
Save ianaz/a12ac532e99f0067a542 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
// ---- | |
// Sass (v3.2.19) | |
// Compass (v0.12.6) | |
// ---- | |
$screen-resolutions: ( | |
240 320 360 | |
); | |
@mixin topteaser-font-size { | |
@each $resolution in $screen-resolutions { | |
$resolutionString: $resolution + px; | |
.topTeaser { | |
.title { | |
@media (min-width: $resolutionString) { | |
width: $resolutionString; | |
} | |
} | |
} | |
} | |
} | |
@include topteaser-font-size(); |
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
@media (min-width: 240px) { | |
.topTeaser .title { | |
width: 240px; | |
} | |
} | |
@media (min-width: 320px) { | |
.topTeaser .title { | |
width: 320px; | |
} | |
} | |
@media (min-width: 360px) { | |
.topTeaser .title { | |
width: 360px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment