Last active
December 17, 2015 22:19
-
-
Save aebsr/5681036 to your computer and use it in GitHub Desktop.
proposed css preproccesor syntax borrowing heavily from coffeescript
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
// cssNess | |
// it's css with ness on the end | |
// http://www.imdb.com/title/tt0463034/quotes#qt1415897 | |
@import size | |
.square | |
size 6em | |
.rectangle | |
size 6em, 3em |
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
size = (@height, @width) -> | |
height: @height | |
if not @width.length | |
width: @height | |
else | |
width: @width |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment