Created
October 13, 2015 09:09
-
-
Save adgad/09e54375b09e52e0e4a0 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or 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
<nav class="nav"> | |
<ul> | |
<li class="nav__item"> | |
<a href="#" class="nav__item__link">The Workshop</a> | |
</li> | |
<li class="nav__item"> | |
<a href="#" class="nav__item__link">2013 Schedule</a> | |
</li> | |
<li class="nav__item nav__item__link--active"> | |
<a href="#" class="nav__item__link">About CSSWizardry</a> | |
</li> | |
<li class="nav__item"> | |
<a href="#" class="nav__item__link">Contact</a> | |
</li> | |
</ul> | |
</nav> |
This file contains hidden or 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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
.nav { | |
&__item { | |
display: block; | |
float: left; | |
&__link { | |
display: block; | |
padding: 10px; | |
color: #000; | |
text-decoration: none; | |
text-transform: uppercase; | |
border: 1px solid #eee; | |
border-right-width: none; | |
&--active & { | |
text-decoration: underline; | |
} | |
&:hover { | |
background-color: #f00; | |
} | |
} | |
} | |
} |
This file contains hidden or 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
.nav__item { | |
display: block; | |
float: left; | |
} | |
.nav__item__link { | |
display: block; | |
padding: 10px; | |
color: #000; | |
text-decoration: none; | |
text-transform: uppercase; | |
border: 1px solid #eee; | |
border-right-width: none; | |
} | |
.nav__item__link--active .nav__item__link { | |
text-decoration: underline; | |
} | |
.nav__item__link:hover { | |
background-color: #f00; | |
} |
This file contains hidden or 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
<nav class="nav"> | |
<ul> | |
<li class="nav__item"> | |
<a href="#" class="nav__item__link">The Workshop</a> | |
</li> | |
<li class="nav__item"> | |
<a href="#" class="nav__item__link">2013 Schedule</a> | |
</li> | |
<li class="nav__item nav__item__link--active"> | |
<a href="#" class="nav__item__link">About CSSWizardry</a> | |
</li> | |
<li class="nav__item"> | |
<a href="#" class="nav__item__link">Contact</a> | |
</li> | |
</ul> | |
</nav> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment