Skip to content

Instantly share code, notes, and snippets.

@ianaz
Created August 25, 2014 15:54
Show Gist options
  • Save ianaz/a12ac532e99f0067a542 to your computer and use it in GitHub Desktop.
Save ianaz/a12ac532e99f0067a542 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// 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();
@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