/*
-
Skeleton V2.0.4
-
Copyright 2014, Dave Gamache
-
Free to use under the MIT license.
-
12/9/2014
-
Sass Version by Seth Coelen github.com/whatsnewsaes
*/
@function grid-column-width($n) {
@return $column-width * $n - ($column-margin*($total-columns - $n)/$total-columns);
}
@function grid-offset-length($n) {
@return grid-column-width($n) + $column-margin;
}