Skip to content

Instantly share code, notes, and snippets.

@robertlyall
Created September 8, 2014 09:12
Show Gist options
  • Save robertlyall/4a6f57185bfe58c36a2c to your computer and use it in GitHub Desktop.
Save robertlyall/4a6f57185bfe58c36a2c to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<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>
// ----
// 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);
}
* {
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; }
<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