Created
July 4, 2013 13:29
-
-
Save benfoxall/5927731 to your computer and use it in GitHub Desktop.
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
// bit of a hack to get lines mid-gutter | |
.row-fluid{ | |
position: relative | |
} | |
[class*="span"]:before{ | |
content:''; | |
border-right: 1px solid #fff; | |
position: absolute; | |
top:0; | |
height:100%; | |
background-color:#f08; | |
display:block; | |
margin-left:-10px; | |
@media (min-width: 1200px) { | |
margin-left:-15px; | |
} | |
@media (min-width: 768px) and (max-width: 979px) { | |
margin-left:-10px; | |
} | |
@media (max-width: 767px) { | |
display:none; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment