https://github.com/sha-red/compass-mixins/tree/master/lib
extended with more sass frameworks and as django app.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
738 B
19 lines
738 B
7 years ago
|
// ---------------------------------------------------------------------------
|
||
|
// Imports
|
||
|
|
||
|
@import "compass/layout/grid-background";
|
||
|
@import "compass/css3/background-origin";
|
||
|
@import "compass/css3/background-clip";
|
||
|
|
||
|
// ---------------------------------------------------------------------------
|
||
|
// Susy Grid Background
|
||
|
//
|
||
|
// A wrapper for the compass "column-grid-background" mixin
|
||
|
// Uses all your settings to create a grid background for a container element.
|
||
|
// Note: Sub-pixel rounding can lead to several pixels of variation between browsers.
|
||
|
@mixin susy-grid-background(){
|
||
|
@include column-grid-background($total-columns, column(), gutter(), 0);
|
||
|
@include background-origin(content-box);
|
||
|
@include background-clip(content-box);
|
||
|
}
|