Created
December 4, 2015 04:47
-
-
Save kpennell/7dec96d77b4e221aed6c 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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
nav { | |
ul { | |
list-style: none; | |
li { | |
display: inline-block; | |
a { | |
color: #111; | |
text-decoration: none; | |
} | |
} | |
} | |
} |
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
nav ul { | |
list-style: none; | |
} | |
nav ul li { | |
display: inline-block; | |
} | |
nav ul li a { | |
color: #111; | |
text-decoration: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment