Created
October 28, 2012 17:47
-
-
Save anonymous/3969256 to your computer and use it in GitHub Desktop.
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
| // over qualified nested rules that replicate the DOM structure in LESS | |
| // this is more readable and reduces the chance of conflicts | |
| .view { | |
| .widget-a { | |
| h1 { | |
| font-size: 16px; | |
| } | |
| .region1, .region2 { | |
| padding: 10px; | |
| li { | |
| color: #333; | |
| } | |
| li.active { // if it is not a div then it gets an element qualifier | |
| color: #ff0000; | |
| } | |
| h2 { | |
| font-size: 14px; | |
| } | |
| } | |
| .region2 { | |
| padding-top: 0; | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment