Skip to content

Instantly share code, notes, and snippets.

@jackmakesthings
Created July 21, 2015 15:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jackmakesthings/a591450b5a549d505237 to your computer and use it in GitHub Desktop.
Save jackmakesthings/a591450b5a549d505237 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
@import "susy";
.row {
.item {
float: left;
width: 30%;
background: gray;
margin-right: 3%;
min-height: 100px;
margin-bottom: 20px;
}
}
@media(max-width: 1200px) {
.row {
.item {
width: 45%;
margin: 2.5%;
&:nth-child(3) {
width: 95%;
margin: 2.5%;
}
}
}
}
.row .item {
float: left;
width: 30%;
background: gray;
margin-right: 3%;
min-height: 100px;
margin-bottom: 20px;
}
@media (max-width: 1200px) {
.row .item {
width: 45%;
margin: 2.5%;
}
.row .item:nth-child(3) {
width: 95%;
margin: 2.5%;
}
}
<div class="row">
<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment