Skip to content

Instantly share code, notes, and snippets.

@aebsr
Last active December 17, 2015 22:19
Show Gist options
  • Save aebsr/5681036 to your computer and use it in GitHub Desktop.
Save aebsr/5681036 to your computer and use it in GitHub Desktop.
proposed css preproccesor syntax borrowing heavily from coffeescript
// 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
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