Created
August 24, 2015 23:11
-
-
Save jdsteinbach/c3766dd91e8483b850d4 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">Content</div> | |
| <div class="sidebar">Sidebar</div> | |
| </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
| // ---- | |
| // libsass (v3.2.5) | |
| // ---- | |
| @import "susy"; | |
| @import "breakpoint"; | |
| $susy: ( | |
| columns: 1.618 1, | |
| gutters: 1/32, | |
| debug: (image: show) | |
| ); | |
| .container { | |
| @include container; | |
| } | |
| .content { | |
| @include span(1 first); | |
| } | |
| .sidebar { | |
| @include span(1 last); | |
| } |
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
| .container { | |
| max-width: 100%; | |
| margin-left: auto; | |
| margin-right: auto; | |
| background-image: linear-gradient(to right, rgba(102, 102, 255, 0.25), rgba(179, 179, 255, 0.25) 61.07389%, transparent 61.07389%, transparent 62.25347%, rgba(102, 102, 255, 0.25) 62.25347%, rgba(179, 179, 255, 0.25)); | |
| background-origin: content-box; | |
| background-clip: content-box; | |
| background-position: left top; | |
| } | |
| .container:after { | |
| content: " "; | |
| display: block; | |
| clear: both; | |
| } | |
| .content { | |
| width: 61.07389%; | |
| float: left; | |
| margin-right: 1.17958%; | |
| } | |
| .sidebar { | |
| width: 37.74653%; | |
| 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">Content</div> | |
| <div class="sidebar">Sidebar</div> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment