Skip to content

Instantly share code, notes, and snippets.

@fleeting
Created January 25, 2014 02:38
Show Gist options
  • Save fleeting/8610952 to your computer and use it in GitHub Desktop.
Save fleeting/8610952 to your computer and use it in GitHub Desktop.
/* This */
nav {
margin-top: 45px;
}
@media (max-width: 600px) {
nav {
margin-top: 25px;
}
}
[role="main"] {
float: left;
}
@media (max-width: 600px) {
[role="main"] {
float: none;
}
}
/* Instead of this */
nav {
margin-top: 45px;
}
[role="main"] {
float: left;
}
@media (max-width: 600px) {
nav {
margin-top: 25px;
}
[role="main"] {
float: none;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment