Skip to content

Instantly share code, notes, and snippets.

@danxshap
Created September 12, 2014 17:25
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 danxshap/32b8f305bc8d2057fb1b to your computer and use it in GitHub Desktop.
Save danxshap/32b8f305bc8d2057fb1b to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<div id="homepage">
<div class="navbar">
</div>
</div>
// ----
// Sass (v3.4.3)
// Compass (v1.0.1)
// ----
/* Navbar styles common to all pages */
.navbar {
height: 100px;
background: blue;
}
/* Navbar styles specific to homepage */
#homepage {
background: yellow;
height:1000px;
.navbar {
background: green;
}
}
/* Navbar styles common to all pages */
.navbar {
height: 100px;
background: blue;
}
/* Navbar styles specific to homepage */
#homepage {
background: yellow;
height: 1000px;
}
#homepage .navbar {
background: green;
}
<div id="homepage">
<div class="navbar">
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment