Created
March 19, 2013 16:26
-
-
Save mwadams/5197597 to your computer and use it in GitHub Desktop.
Extra hidden/visible classes for bootstrap
This file contains hidden or 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
/* ----------------------------------------------- | |
Extra hidden/visible classes | |
----------------------------------------------- */ | |
.visible-narrow-desktop { | |
display: none !important; | |
} | |
@media (min-width: 980px) and (max-width: 1199px) { | |
.visible-narrow-desktop { | |
display: inherit !important; | |
} | |
.hidden-narrow-desktop { | |
display: none !important; | |
} | |
.hidden-desktop { | |
display: inherit !important; | |
} | |
.visible-desktop { | |
display: none !important; | |
} | |
} | |
@media (max-width: 767px) { | |
.hidden-narrow-desktop { | |
display: inherit !important; | |
} | |
.visible-narrow-desktop { | |
display: none !important; | |
} | |
.hidden-desktop { | |
display: inherit !important; | |
} | |
.visible-desktop { | |
display: none !important; | |
} | |
.visible-phone { | |
display: inherit !important; | |
} | |
.hidden-phone { | |
display: none !important; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment