Created
October 6, 2012 18:27
-
-
Save SpencerCooley/3845715 to your computer and use it in GitHub Desktop.
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
@media only screen and (max-width: 1280px) and (min-width: 768px) { | |
.touch table.hide-on-phones { display: table !important; } | |
.touch table.hide-on-desktops { display: table !important; } | |
.touch table.show-on-tablets { display: table !important; } | |
body.home #header-logo { | |
width:auto; | |
position:absolute; | |
top:25px; | |
left:-15px; | |
float:left; | |
z-index:1; | |
width:200px; | |
} | |
} | |
@media only screen and (max-width: 767px) { | |
table.hide-on-tablets { display: table !important; } | |
table.hide-on-desktops { display: table !important; } | |
table.show-on-phones { display: table !important; } | |
body.home #header-logo { | |
width:auto; | |
position:absolute; | |
top:55px; | |
left:-15px; | |
float:left; | |
z-index:1; | |
width:100px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment