jaymascarenas
10/10/2015 - 11:37 PM

BS3 Media Queries

BS3 Media Queries

/* Portrait phones and smaller */
@media (max-width: 480px) {

}
/* Landscape phones and portrait tablets */
@media (max-width: 767px) {

}

/* Portrait tablets and small desktops */
@media (min-width: 768px) and (max-width: 991px) {

}
/* Landscape tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {

}
/* Large desktops and laptops */
@media (min-width: 1200px) {

}