Skip to content

Instantly share code, notes, and snippets.

@bibliofille
Created July 21, 2015 14:41
Show Gist options
  • Save bibliofille/381d75b3982cefa5a056 to your computer and use it in GitHub Desktop.
Save bibliofille/381d75b3982cefa5a056 to your computer and use it in GitHub Desktop.
media query issue
/*Mobile styling*/
@media screen and (min-width: 600px){
.site-content {
width: 100%;
}
@media screen and (min-width: 600px) {
.site-branding {
display:none;
}
}
@media screen and (max-width: 600px) {
.menu-item a img {
border: none;
box-shadow: none;
vertical-align: middle;
width: auto;
display: none;
}
}
@media screen and (max-width:600px){
#social{
height: 64px;
width: 400px;
float: right;
/* margin-top: -68px; */
/* margin-right: -114px; */
text-align: justify;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment