Skip to content

Instantly share code, notes, and snippets.

View stephencostello's full-sized avatar

Stephen Costello stephencostello

View GitHub Profile
@stephencostello
stephencostello / spacing.scss
Last active February 2, 2023 15:05 — forked from Eomerx/sass-space.scss
Responsive CSS Spacing Map built with SASS
$space-values : (
0,4,8,12,16,20,24,32,40,48,64,80,120,160
) !default;
$space-prefixes : (
p : padding,
pt : padding-top,
pb : padding-bottom,
pl : padding-left,
pr : padding-right,
@stephencostello
stephencostello / _spacing-helpers.scss
Created July 6, 2018 08:55 — forked from jacurtis/_spacing-helpers.scss
SASS Margin and Padding Helpers Loop. Generates .m-t-10 type helper classes.
/*
This .scss loop will create "margin helpers" and "padding helpers" for use in your web projects.
It will generate several classes such as:
.m-r-10 which gives margin-right 10 pixels.
.m-r-15 gives MARGIN to the RIGHT 15 pixels.
.m-t-15 gives MARGIN to the TOP 15 pixels and so on.
.p-b-5 gives PADDING to the BOTTOM of 5 pixels
.p-l-40 gives PADDING to the LEFT of 40 pixels