Created
September 12, 2014 17:27
-
-
Save danxshap/c91d65414ffe542d6db8 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="homepage"> | |
<div class="homepage-navbar"> | |
</div> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// 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; | |
} | |
.homepage-navbar { | |
@extend %navbar; | |
background: green; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Navbar styles common to all pages */ | |
.homepage-navbar { | |
height: 100px; | |
background: blue; | |
} | |
/* Navbar styles specific to homepage */ | |
#homepage { | |
background: yellow; | |
height: 1000px; | |
} | |
.homepage-navbar { | |
background: green; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="homepage"> | |
<div class="homepage-navbar"> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment