Skip to content

Instantly share code, notes, and snippets.

@mirisuzanne
Last active January 1, 2016 18:50
Show Gist options
  • Save mirisuzanne/9ef4e7ae6b85cafe9edb to your computer and use it in GitHub Desktop.
Save mirisuzanne/9ef4e7ae6b85cafe9edb to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<div class="newApp">
<div class="rounded">
<ul>
{{#each tasksToDo}}
{{>task}}
{{/each}}
</ul>
</div>
<div class="rounded2">
<ul>
{{#each taskDone}}
{{>done}}
{{/each}}
</ul>
</div>
</div>
// ----
// libsass (v3.3.2)
// ----
@import 'susy';
$susy: (
columns: 2,
column-width: 440px,
gutters: 100/440,
gutter-position: split,
);
html {
background: black;
}
.newApp {
padding: gutter();
}
.rounded {
@include span(1);
background: white;
}
.rounded2 {
@include span(1);
background: white;
}
html {
background: black;
}
.newApp {
padding: 4.62963%;
}
.rounded {
width: 40.74074%;
float: left;
margin-left: 4.62963%;
margin-right: 4.62963%;
background: white;
}
.rounded2 {
width: 40.74074%;
float: left;
margin-left: 4.62963%;
margin-right: 4.62963%;
background: white;
}
<div class="newApp">
<div class="rounded">
<ul>
{{#each tasksToDo}}
{{>task}}
{{/each}}
</ul>
</div>
<div class="rounded2">
<ul>
{{#each taskDone}}
{{>done}}
{{/each}}
</ul>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment