Created
September 30, 2014 15:49
-
-
Save jshawl/c9a61ac061fe7a7ed758 to your computer and use it in GitHub Desktop.
a precess production
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
| li{ | |
| display:inline-block; | |
| a{ | |
| display:block; | |
| padding:1em; | |
| text-decoration:none; | |
| &:hover{ | |
| text-decoration:underline; | |
| } | |
| } | |
| } | |
| $myColor: green; | |
| a{ | |
| color:$myColor; | |
| } | |
| li{ | |
| list-style:none; | |
| border:1px solid $myColor; | |
| } | |
| h3{ | |
| color:$myColor; | |
| } |
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
| li { | |
| display: inline-block; | |
| } | |
| li a { | |
| display: block; | |
| padding: 1em; | |
| text-decoration: none; | |
| } | |
| li a:hover { | |
| text-decoration: underline; | |
| } | |
| a { | |
| color: green; | |
| } | |
| li { | |
| list-style: none; | |
| border: 1px solid green; | |
| } | |
| h3 { | |
| color: green; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment