Skip to content

Instantly share code, notes, and snippets.

@foxydot
Created October 28, 2014 18:12
Show Gist options
  • Save foxydot/e634e5321dc4891d46b7 to your computer and use it in GitHub Desktop.
Save foxydot/e634e5321dc4891d46b7 to your computer and use it in GitHub Desktop.
Grid for content area.
//Goes in custom.less
.leadership{
.entry-content{
ul{
margin: 0;
li{
list-style: none outside none;
float: left;
width: 49%;
padding-top: 1.5rem;
padding-bottom: 1.5rem;
border-bottom: 1px dashed #a7bbc9;
min-height: 10rem;
}
li.odd{
border-right: 1px dashed #a7bbc9;
padding-right: 1.5rem;
}
li.even{
padding-left: 1.5rem;
}
}
}
}
//goes in responsive-main.less inside the 480px block
.leadership{
.entry-content{
ul{
li{
float: none;
width: 100%;
}
li.odd{
border-right: 0;
}
li.even{
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment