An ultra-clean 'Contact Us' form utilizing CSS3 transitions and some other cool stuff. Get at it on the githubs: https://github.com/himynameisdave/CSS3-Form-Clean-UI
A Pen by Dave Lunny on CodePen.
An ultra-clean 'Contact Us' form utilizing CSS3 transitions and some other cool stuff. Get at it on the githubs: https://github.com/himynameisdave/CSS3-Form-Clean-UI
A Pen by Dave Lunny on CodePen.
/* | |
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; |