Skip to content

Instantly share code, notes, and snippets.

@robwent
Created November 22, 2017 18:11
Show Gist options
  • Save robwent/d8f43866d1c3409b4be0b3c20f75a9ec to your computer and use it in GitHub Desktop.
Save robwent/d8f43866d1c3409b4be0b3c20f75a9ec to your computer and use it in GitHub Desktop.
All the media queries found in the Wordpress Divi theme (Typos copied verbatim)
/* Responsive Styles Large Desktop And Above */
@media all and (min-width: 1405px) {
}
/* Responsive Styles Standard Desktop Only */
@media all and (min-width: 1100px) and (max-width: 1405px) {
}
/* Responsive Styles Desktop Only */
@media all and (min-width: 981px) {
}
/* Responsive Styles 981px - 1100px */
@media all and (min-width: 981px) and (max-width: 1100px) {
}
/* Responsive Styles Tablet And Below */
@media all and (max-width: 980px) {
}
/* Responsive Styles 782px */
@media screen and (max-width: 782px) {
}
/* Responsive Styles Tablet Portrait */
@media all and (max-width: 768px) {
}
/* Responsive Styles Smartphone Only */
@media all and (max-width: 767px) {
}
/* Responsive Styles Smartphone Portrait */
@media all and (max-width: 479px) {
}
/* Responsive Styles Tablet Portrait And Below */
@media all and (max-width: 768px) {
}
/* Responsive Styles Standard Desktop Only */
@media all and (min-width: 981px) and (max-width: 1405px) {
}
/* Responsive Smartphone Ladnscape And Above */
@media all and (min-width: 480px) {
}
/* Responsive Styles Tablet Only */
@media all and (min-width: 768px) and (max-width: 980px) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment