paulomartinhago
3/28/2013 - 3:54 AM

Media query boilerplate

Media query boilerplate

/*  Media Queries ---------------------- */

/* iPhone portrait ---- */
@media only screen and (min-width: 320px) {
    
}

/* iPhone landscape ---- */
@media only screen and (min-width: 480px) {

}

/* iPad, tablets portrait ---- */
@media only screen and (min-width: 768px) {

}

/* Laptops, Desktops ---- */
@media only screen and (min-width: 1024px) {

}

/* Desktops ---- */
@media only screen and (min-width: 1200px) {

}