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"> |
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) | |
// ---- | |
.test { | |
@each $item in 'one' { | |
item: $item; | |
} | |
} |
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) | |
// ---- | |
$function: 'hsl'; | |
$hue: 360; | |
$value: (30%, 40%); | |
.test { | |
// This doesn't work in libsass |
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="container"> | |
<div class="test">hello</div> | |
<div class="test2">hello</div> | |
<div class="test">hello</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
<div class="container"> | |
<div class="test">hello</div> | |
<div class="test2">hello</div> | |
<div class="test">hello</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
// # Current Settings | |
// `columns` [integer | list] - the number, or asymmetric distribution of columns in a grid | |
// `gutters` [float] - the ratio of a gutter to a column | |
// `column-width` [null | length] - the width of a column, used for calculating static columns and gutters | |
$susy: ( | |
'columns': 4, | |
'gutters': 0.25, | |
'column-width': null, | |
); |
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
<ul class="sg-colors"> | |
<li class="sg-color"></li> | |
<li class="sg-color"></li> | |
<li class="sg-color"></li> | |
<li class="sg-color"></li> | |
<li class="sg-color"></li> | |
<li class="sg-color"></li> | |
<li class="sg-color"></li> | |
<li class="sg-color"></li> | |
<li class="sg-color"></li> |
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
<main id="grid"> | |
<section id="main_background_container"> | |
<div id="main_side_img">main_side_img</div> | |
<div id="main_primary_container">main_primary_container</div> | |
</section> | |
</main> |
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="container"> | |
<main>main (8 at 1)</main> | |
<aside>aside (4 at 9)</aside> | |
<div class="box">box (last 3)</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
<main class="container"> | |
<div class="narrow">narrow</div> | |
<div class="wide">wide</div> | |
<div class="wider">wider</div> | |
</main> |