Created
June 26, 2015 07:34
-
-
Save maddesigns/643d8ba505b728ce586d 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
- (1...13).each do |i| | |
.column= i |
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.5) | |
// ---- | |
@import "singularitygs"; | |
@include add-grid(12); | |
@include add-gutter(20px); | |
@include add-gutter-style('split'); | |
* { | |
box-sizing: border-box; | |
} | |
.column { | |
@include float-span(1); | |
background-color: green; | |
} |
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
* { | |
box-sizing: border-box; | |
} | |
.column { | |
width: 8.33333%; | |
clear: right; | |
float: left; | |
padding-left: 10px; | |
padding-right: 10px; | |
background-color: green; | |
} |
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
<div class='column'>1</div> | |
<div class='column'>2</div> | |
<div class='column'>3</div> | |
<div class='column'>4</div> | |
<div class='column'>5</div> | |
<div class='column'>6</div> | |
<div class='column'>7</div> | |
<div class='column'>8</div> | |
<div class='column'>9</div> | |
<div class='column'>10</div> | |
<div class='column'>11</div> | |
<div class='column'>12</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment