Skip to content

Instantly share code, notes, and snippets.

@lineharo
lineharo / css-generators.styl
Last active April 14, 2019 15:13 — forked from jeremyben/generators.scss
Css space around element generators (margin, padding) #css #stylus
// Generate class helpers for size properties such as margin, padding
// Usage :
// marginer(0.5, 3, 0.5)
// .mt3 will then add margin-top: 2.5rem; to the element,
// and so on for each side, from 0.5rem to 2,5rem with a 0.5rem step.
paddinger(min, max, step, counter=0)
.pt{counter}
padding-top (min rem)
.pb{counter}