Skip to content

Instantly share code, notes, and snippets.

View himynameisdave's full-sized avatar
✌️
livin' the dream...

Dave Lunny himynameisdave

✌️
livin' the dream...
View GitHub Profile
@himynameisdave
himynameisdave / Ultra-Clean-UI-Contact-Us-Form.markdown
Created December 14, 2014 00:51
Ultra-Clean UI 'Contact Us' Form
@himynameisdave
himynameisdave / verbosify
Created November 27, 2014 04:35
Trying to make a mixin that verbosifies a shorthand margin property.
/*
Verbose Margin:
returns a margin value in 'long form',
also alphabatized (breaking the t-r-b-l rule).
Expects paramaters like normal (i.e: 'margin: 1px 2px 3px 4px = .vmar(1px, 2px, 3px, 4px)')
*/
.vmar(@mt, @mr, @mb, @ml ){
margin-bottom: @mb;
margin-left: @ml;