Last active
October 8, 2019 08:36
-
-
Save jeremyben/82de0de730b0f8af51e6 to your computer and use it in GitHub Desktop.
Size Generators (margin, padding, font-size) #scss #stylus
This file contains 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
// Generate class helpers for size properties such as margin, padding, font-size | |
// Usage : | |
// @include marginer(5, 60, 5) | |
// .mt5 will then add margin-top:5px to the element, | |
// and so on for each side, from 5px to 60px with a 5px step. | |
@mixin marginer($min, $max, $step) { | |
.mt#{$min} {margin-top: $min*1px} | |
.mb#{$min} {margin-bottom: $min*1px} | |
.ml#{$min} {margin-left: $min*1px} | |
.mr#{$min} {margin-right: $min*1px} | |
@if $min < $max { | |
@include marginer($min + $step, $max, $step); | |
} | |
} | |
@mixin paddinger($min, $max, $step) { | |
.pt#{$min} {padding-top: $min*1px} | |
.pb#{$min} {padding-bottom: $min*1px} | |
.pl#{$min} {padding-left: $min*1px} | |
.pr#{$min} {padding-right: $min*1px} | |
@if $min < $max { | |
@include paddinger($min + $step, $max, $step); | |
} | |
} | |
@mixin fontsizer($min, $max, $step) { | |
.fs#{$min} {font-size: $min*1px} | |
@if $min < $max { | |
@include marginer($min + $step, $max, $step); | |
} | |
} |
This file contains 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
// Generate class helpers for size properties such as margin, padding, font-size | |
// Usage : | |
// marginer(5, 60, 5) | |
// .mt5 will then add margin-top:5px to the element, | |
// and so on for each side, from 5px to 60px with a 5px step. | |
marginer(min, max, step) | |
.mt{min} | |
margin-top (min px) | |
.mb{min} | |
margin-bottom (min px) | |
.ml{min} | |
margin-left (min px) | |
.mr{min} | |
margin-right (min px) | |
if min < max | |
marginer(min + step, max, step) | |
paddinger(min, max, step) | |
.pt{min} | |
padding-top (min px) | |
.pb{min} | |
padding-bottom (min px) | |
.pl{min} | |
padding-left (min px) | |
.pr{min} | |
padding-right (min px) | |
if min < max | |
paddinger(min + step, max, step) | |
fontsizer(min, max, step) | |
.fs{min} | |
font-size (min px) | |
if min < max |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment