Created
August 4, 2015 15:31
-
-
Save scottdavis/faf8f2ea2039b8bc2a92 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains 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='agent'> | |
<div class='profile'> | |
<img src='http://www.placecage.com/200/300' /> | |
</div> | |
</div> | |
<div class='agent'> | |
<div class='profile'> | |
<img src='http://www.placecage.com/200/300' /> | |
</div> | |
</div> | |
<div class='agent'> | |
<div class='profile'> | |
<img src='http://www.placecage.com/200/300' /> | |
</div> | |
</div> | |
<div class='agent'> | |
<div class='profile'> | |
<img src='http://www.placecage.com/200/300' /> | |
</div> | |
</div> | |
</div> |
This file contains 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) | |
// ---- | |
@import "susy"; | |
.container { | |
@include layout(12); | |
} | |
.agent { | |
@include span(6 of 12 last); | |
background-color: red; | |
border: 1px solid black; | |
&:nth-child(2n+0) { | |
background-color: blue; | |
} | |
} |
This file contains 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
.agent { | |
width: 49.15254%; | |
float: right; | |
margin-right: 0; | |
background-color: red; | |
border: 1px solid black; | |
} | |
.agent:nth-child(2n+0) { | |
background-color: blue; | |
} |
This file contains 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='agent'> | |
<div class='profile'> | |
<img src='http://www.placecage.com/200/300' /> | |
</div> | |
</div> | |
<div class='agent'> | |
<div class='profile'> | |
<img src='http://www.placecage.com/200/300' /> | |
</div> | |
</div> | |
<div class='agent'> | |
<div class='profile'> | |
<img src='http://www.placecage.com/200/300' /> | |
</div> | |
</div> | |
<div class='agent'> | |
<div class='profile'> | |
<img src='http://www.placecage.com/200/300' /> | |
</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment