Skip to content

Instantly share code, notes, and snippets.

@mturjak
Created November 24, 2013 16:04
Show Gist options
  • Select an option

  • Save mturjak/7628729 to your computer and use it in GitHub Desktop.

Select an option

Save mturjak/7628729 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.1)
// Compass (v0.13.alpha.10)
// ----
$max-mobile: 300px;
@mixin isMobile() {
@media only screen and (max-width: $max-mobile) { @content; }
}
.reset-values {
width: 100%;
height: 100px;
left: auto;
right: auto;
top: auto;
bottom: auto;
}
.box {
top: 0;
left: 0;
width: 25%;
height: 50%;
@extend .reset-values;
@include isMobile() {
/* mobile specific properties */
}
}
.reset-values, .box {
width: 100%;
height: 100px;
left: auto;
right: auto;
top: auto;
bottom: auto;
}
.box {
top: 0;
left: 0;
width: 25%;
height: 50%;
}
@media only screen and (max-width: 300px) {
.box {
/* mobile specific properties */
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment