Last active
January 1, 2016 18:50
-
-
Save mirisuzanne/9ef4e7ae6b85cafe9edb 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="newApp"> | |
<div class="rounded"> | |
<ul> | |
{{#each tasksToDo}} | |
{{>task}} | |
{{/each}} | |
</ul> | |
</div> | |
<div class="rounded2"> | |
<ul> | |
{{#each taskDone}} | |
{{>done}} | |
{{/each}} | |
</ul> | |
</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.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; | |
} | |
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
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; | |
} |
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="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