Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save wpmu-authors/b72827e417123a981c6b42f048661b07 to your computer and use it in GitHub Desktop.
Save wpmu-authors/b72827e417123a981c6b42f048661b07 to your computer and use it in GitHub Desktop.
/* default styling for desktop */
body, header, .main, footer {
width: 96%;
max-width: 1200px;
margin: 0 auto;
}
.content {
width: 60%;
float: left;
margin-right: 5%;
}
.sidebar {
width: 35%;
float: right;
clear: left
}
.footer .widget-area {
width: 23.5%;
float: left;
margin-right: 2%;
}
.footer .widget-area.fourth {
margin-right: 0;
}
/* media queries */
@media screen and ( max-width: 700px ) {
.content, .sidebar {
width: 100%;
margin-right: 0;
}
footer.widget-area {
width: 49%;
margin-right: 2%;
}
footer .widget-area.second,
footer .widget-area.fourth {
margin-right: 0;
}
}
@media screen and ( max-width: 400px ) {
footer .widget-area,
footer .widget-area.second,
footer .widget-area.fourth {
width: 100%;
margin-right: 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment