Created
October 28, 2014 18:12
-
-
Save foxydot/e634e5321dc4891d46b7 to your computer and use it in GitHub Desktop.
Grid for content area.
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
//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