Created
May 15, 2015 13:19
-
-
Save dcouto/edc079cff156fd3dfc3e to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
<h1>Susy Grid System Example</h1> | |
<div class="twelve-columns"> | |
<div>a few words</div> | |
<div>a few words</div> | |
<div>a few words</div> | |
<div>a few words</div> | |
<div>a few words</div> | |
<div>a few words</div> | |
<div>a few words</div> | |
<div>a few words</div> | |
<div>a few words</div> | |
<div>a few words</div> | |
<div>a few words</div> | |
<div>a few words</div> | |
</div> |
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
// ---- | |
// libsass (v3.2.4) | |
// ---- | |
@import "susy"; | |
$susy: ( | |
columns: 12, | |
gutters: .25, | |
gutter-position: inside, | |
); | |
.twelve-columns { | |
* { | |
@include span(1 of 12); | |
} | |
} |
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
.twelve-columns * { | |
-moz-box-sizing: border-box; | |
-webkit-box-sizing: border-box; | |
box-sizing: border-box; | |
width: 8.33333%; | |
float: left; | |
padding-left: 0.83333%; | |
padding-right: 0.83333%; | |
} |
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
<h1>Susy Grid System Example</h1> | |
<div class="twelve-columns"> | |
<div>a few words</div> | |
<div>a few words</div> | |
<div>a few words</div> | |
<div>a few words</div> | |
<div>a few words</div> | |
<div>a few words</div> | |
<div>a few words</div> | |
<div>a few words</div> | |
<div>a few words</div> | |
<div>a few words</div> | |
<div>a few words</div> | |
<div>a few words</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment