Created
January 6, 2016 17:27
-
-
Save DannyJoris/4ef91ca67f9666a64c55 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.container | |
ul.list | |
each val in [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] | |
li.list-item= val |
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"; | |
* {box-sizing: border-box;} | |
ul { | |
margin: 0; | |
padding: 0; | |
list-style: none; | |
} | |
.container { | |
max-width: 1240px; | |
margin: 0 auto; | |
} | |
.list { | |
} | |
.list-item { | |
padding-top: 10px; | |
padding-bottom: 10px; | |
font-family: sans-serif; | |
text-align: center; | |
background: pink; | |
color: 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
* { | |
box-sizing: border-box; | |
} | |
ul { | |
margin: 0; | |
padding: 0; | |
list-style: none; | |
} | |
.container { | |
max-width: 1240px; | |
margin: 0 auto; | |
} | |
.list-item { | |
padding-top: 10px; | |
padding-bottom: 10px; | |
font-family: sans-serif; | |
text-align: center; | |
background: pink; | |
color: 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="container"> | |
<ul class="list"> | |
<li class="list-item">1</li> | |
<li class="list-item">2</li> | |
<li class="list-item">3</li> | |
<li class="list-item">4</li> | |
<li class="list-item">5</li> | |
<li class="list-item">6</li> | |
<li class="list-item">7</li> | |
<li class="list-item">8</li> | |
<li class="list-item">9</li> | |
<li class="list-item">10</li> | |
<li class="list-item">11</li> | |
<li class="list-item">12</li> | |
</ul> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment