1/* BOOSTRAP MEDIA BREAKPOINTS */
2/* Small devices (landscape phones, 576px and up) */
3@media (min-width: 576px) {
4 .selector {
5 background-color:#f00;
6 }
7}
8/* Medium devices (tablets, 768px and up) The navbar toggle appears at this breakpoint */
9@media (min-width: 768px) {}
10/* Large devices (desktops, 992px and up) */
11@media (min-width: 992px) {}
12/* Extra large devices (large desktops, 1200px and up) */
13@media (min-width: 1200px) {}
1@supports (-webkit-touch-callout: none) {
2 /* CSS specific to iOS devices */
3}
4
5@supports not (-webkit-touch-callout: none) {
6 /* CSS for other than iOS devices */
7}
1@media only screen
2and (min-device-width : 768px)
3and (max-device-width : 1024px) { /* STYLES GO HERE */}
4