Created
September 8, 2014 09:12
-
-
Save robertlyall/4a6f57185bfe58c36a2c to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or 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="container"> | |
| <div class="content" role="main"> | |
| <h1>This is the heading</h1> | |
| </div> | |
| <aside class="sidebar"> | |
| <p>This is the sidebar</p> | |
| </aside> | |
| </div> |
This file contains hidden or 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
| // ---- | |
| // Sass (v3.3.14) | |
| // Compass (v1.0.0) | |
| // Susy (v2.1.3) | |
| // ---- | |
| * { | |
| box-sizing: border-box; | |
| } | |
| @import "susy"; | |
| .container { | |
| @include container(60em); | |
| } | |
| .content { | |
| @include span(8 of 12); | |
| } | |
| .sidebar { | |
| @include span(4 of 12 omega); | |
| } |
This file contains hidden or 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; } | |
| .container { | |
| max-width: 60em; | |
| margin-left: auto; | |
| margin-right: auto; } | |
| .container:after { | |
| content: " "; | |
| display: block; | |
| clear: both; } | |
| .content { | |
| width: 66.10169%; | |
| float: left; | |
| margin-right: 1.69492%; } | |
| .sidebar { | |
| width: 32.20339%; | |
| float: right; | |
| margin-right: 0; } |
This file contains hidden or 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="container"> | |
| <div class="content" role="main"> | |
| <h1>This is the heading</h1> | |
| </div> | |
| <aside class="sidebar"> | |
| <p>This is the sidebar</p> | |
| </aside> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment