Created
February 4, 2011 16:34
-
-
Save kriszyp/811324 to your computer and use it in GitHub Desktop.
CSS template
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
{ | |
"cars": [ | |
{"make": "Honda", "model": "Accord"}, | |
{"make": "Ford", "model": "Taurus"}, | |
] | |
} |
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
@ul { | |
border: 1px; | |
border-radius: 5px; | |
@li cars { | |
padding: 5px; | |
@span make { | |
color: blue; | |
} | |
@span model { | |
color: black; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Just trying to build a schema browser for https://github.com/salesking/sk_api_schema, this would come really handy