Skip to content

Instantly share code, notes, and snippets.

@tiborp
Created April 25, 2014 19:47
Show Gist options
  • Star 14 You must be signed in to star a gist
  • Fork 10 You must be signed in to fork a gist
  • Save tiborp/11300948 to your computer and use it in GitHub Desktop.
Save tiborp/11300948 to your computer and use it in GitHub Desktop.
Extra media queries for BIG screens
// Extra big for Twitter Bootstrap
@media screen and (min-width: 1400px) {
.container {
width: 1370px;
}
}
@media screen and (min-width: 1600px) {
.container {
width: 1570px;
}
}
@media screen and (min-width: 1900px) {
.container {
width: 1870px;
}
}
@arthurbernierjr
Copy link

cool this helped me solve a different problem

@BritoDev
Copy link

Worked for me. Thank you.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment