Remove trailing whitespace

This commit is contained in:
Craig Dodd
2015-04-17 11:43:36 +01:00
parent 3d685a192f
commit f06b4c163d
31 changed files with 345 additions and 345 deletions

View File

@@ -2,7 +2,7 @@
Grid mixins
========================================================================== */
/*
/*
Define number of columns in the grid
Common values would be 12, 16 or 24
========================================================================== */
@@ -16,7 +16,7 @@ $margin: 0;
width:$width;
}
/*
/*
Works out the width of elements based on total number of columns and width
number of columns being displayed. Removes 20px for margins.
========================================================================== */
@@ -25,9 +25,9 @@ $margin: 0;
display:$display;
float:$float;
width:(100%/$grid * $cols) - ($margin * 2);
}
}
/*
/*
Add x amount of column padding before an element
Example: @include prefix(1,12);
========================================================================== */
@@ -36,16 +36,16 @@ $margin: 0;
margin-left:(100%/$grid * $cols);
}
/*
/*
Add x amount of column padding after an element
Example: @include suffix(2,12);
========================================================================== */
@mixin suffix($grid:$def_grid,$cols:''){
margin-right:(100%/$grid * $cols);
@mixin suffix($grid:$def_grid,$cols:''){
margin-right:(100%/$grid * $cols);
}
/*
/*
Remove left margin
Example: @include first;
========================================================================== */
@@ -54,7 +54,7 @@ $margin: 0;
margin-left:0;
}
/*
/*
Remove right margin
Example: @include last;
========================================================================== */
@@ -63,7 +63,7 @@ $margin: 0;
margin-right:0;
}
/*
/*
Push an element x amount of column(s) to the right
Example: @include push(2,12);
========================================================================== */
@@ -71,9 +71,9 @@ $margin: 0;
@mixin push($grid:$def_grid,$move:'') {
position:relative;
left:(100%/$grid * $move);
}
}
/*
/*
Pull an element x amount of column(s) to the left
Example: @include pull(1,12);
========================================================================== */