Created
August 18, 2015 06:45
-
-
Save mirisuzanne/62011257ca577f844c8d 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="page"> | |
<section class="content">content</section> | |
<aside class="sidebar">sidebar</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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
@import "susy"; | |
.page { | |
@include container(1280px 16 show); | |
} | |
.content{ | |
@include span(10 of 16); | |
} | |
.sidebar{ | |
@include span(6 of 16); | |
// or @include span(6 of 16 last); | |
@include 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
.page { | |
max-width: 1280px; | |
margin-left: auto; | |
margin-right: auto; | |
background-image: linear-gradient(to right, rgba(102, 102, 255, 0.25), rgba(179, 179, 255, 0.25) 80%, transparent 80%); | |
background-size: 6.32911%; | |
background-origin: content-box; | |
background-clip: content-box; | |
background-position: left top; | |
} | |
.page:after { | |
content: " "; | |
display: block; | |
clear: both; | |
} | |
.content { | |
width: 62.02532%; | |
float: left; | |
margin-right: 1.26582%; | |
} | |
.sidebar { | |
width: 36.70886%; | |
float: left; | |
margin-right: 1.26582%; | |
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="page"> | |
<section class="content">content</section> | |
<aside class="sidebar">sidebar</aside> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment