12 lines
209 B
CSS
12 lines
209 B
CSS
/* Mobile Phone */
|
|
@media (max-width: 500px) {
|
|
}
|
|
|
|
/* Tablets and other weird intermediary stuff. */
|
|
@media (min-width: 501px) and (max-width: 1023) {
|
|
}
|
|
|
|
/* Desktops and Laptops */
|
|
@media (min-width: 1024) {
|
|
}
|