Skip to content

Instantly share code, notes, and snippets.

@timhettler
Created July 16, 2014 18:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save timhettler/7e628090c9490a73694f to your computer and use it in GitHub Desktop.
Save timhettler/7e628090c9490a73694f to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.10)
// Compass (v1.0.0.alpha.20)
// ----
/* Example 1 */
@media (max-width: 600px) {
.facet_sidebar {
display: none;
}
}
/* Example 2 */
.facet_sidebar {
@media (max-width: 600px) {
display: none;
}
}
/* Example 3 */
.headline {
font-size: 16px;
text-align: center;
@media (max-width: 600px) {
font-size: 22px;
}
@media (max-width: 1200px) {
font-size: 38px;
}
@media (orientation: portrait) {
text-align: left;
}
}
/* Example 1 */
@media (max-width: 600px) {
.facet_sidebar {
display: none;
}
}
/* Example 2 */
@media (max-width: 600px) {
.facet_sidebar {
display: none;
}
}
/* Example 3 */
.headline {
font-size: 16px;
text-align: center;
}
@media (max-width: 600px) {
.headline {
font-size: 22px;
}
}
@media (max-width: 1200px) {
.headline {
font-size: 38px;
}
}
@media (orientation: portrait) {
.headline {
text-align: left;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment