Created
February 12, 2015 21:10
-
-
Save Snugug/9d2afc029450cc41200e 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 id="map">map</div> | |
| <div id="form">form</div> | |
| <div id="info">info</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.1) | |
| // Breakpoint (v2.5.0) | |
| // Singularity.gs (v1.4.0) | |
| // ---- | |
| @import "singularitygs"; | |
| @import "breakpoint"; | |
| @import "compass"; | |
| @include add-grid(12); | |
| @include add-gutter (1/3); | |
| #map { | |
| @include grid-span(8,1); | |
| background: green; | |
| height: 300px; | |
| } | |
| #form { | |
| @include grid-span(4,9); | |
| background: gold; | |
| height: 500px; | |
| } | |
| #info { | |
| @include grid-span(8,1); | |
| background: purple; | |
| height: 200px; | |
| clear: left; | |
| margin-top: gutter-span(); | |
| } |
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
| #map { | |
| width: 65.95745%; | |
| float: left; | |
| margin-right: -100%; | |
| margin-left: 0; | |
| clear: none; | |
| background: green; | |
| height: 300px; | |
| } | |
| #form { | |
| width: 31.91489%; | |
| float: right; | |
| margin-left: 0; | |
| margin-right: 0; | |
| clear: none; | |
| background: gold; | |
| height: 500px; | |
| } | |
| #info { | |
| width: 65.95745%; | |
| float: left; | |
| margin-right: -100%; | |
| margin-left: 0; | |
| clear: none; | |
| background: purple; | |
| height: 200px; | |
| clear: left; | |
| margin-top: 2.12766%; | |
| } |
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 id="map">map</div> | |
| <div id="form">form</div> | |
| <div id="info">info</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment