Skip to content

Instantly share code, notes, and snippets.

@hatefulcrawdad
Created August 22, 2012 07:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hatefulcrawdad/3423644 to your computer and use it in GitHub Desktop.
Save hatefulcrawdad/3423644 to your computer and use it in GitHub Desktop.
BuzzApp | Medium Query
/* Medium Breakpoint Styles - CSS */
@media only screen and (max-width: 1000px) {
/* Globals */
.column, .columns {
padding: 0 34px !important;
}
/* Header */
#mast hgroup {
margin-left: 0 !important;
}
/* Features */
#features article {
padding-top: 146px !important;
background-position: 34px 34px;
}
}
--------------------------------------------------------
/* Medium Breakpoint Styles - SCSS */
@media only screen and (max-width: 1000px) {
/* Globals */
.column, .columns {
padding: 0 ms(3) !important;
}
/* Header */
#mast hgroup {
margin-left: 0 !important;
}
/* Features */
#features {
article {
padding-top: ms(9) !important;
background-position: ms(3) ms(3);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment