Skip to content

Instantly share code, notes, and snippets.

@fredyang
Created January 30, 2014 15:02
Show Gist options
  • Save fredyang/8710317 to your computer and use it in GitHub Desktop.
Save fredyang/8710317 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.0.rc.2)
// Compass (v1.0.0.alpha.17)
// ----
.colorAndWheel {
height: 200px;
width:800px;
&:hover {
height: 20px;
}
.hero & {
height:400px;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
& {
height:800px;
}
}
}
.colorAndWheel {
height: 200px;
width: 800px;
}
.colorAndWheel:hover {
height: 20px;
}
.hero .colorAndWheel {
height: 400px;
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
.colorAndWheel {
height: 800px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment