Skip to content

Instantly share code, notes, and snippets.

@sioniks
Created November 28, 2017 14:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save sioniks/8338068e9bac874e52c4de32d5316595 to your computer and use it in GitHub Desktop.
Save sioniks/8338068e9bac874e52c4de32d5316595 to your computer and use it in GitHub Desktop.
media sass
// standart project
$information-large-devise: "only screen and (max-width : 1600px)"
$information-medium-devise: "only screen and (max-width : 1200px)"
$information-small-devise: "only screen and (max-width : 992px)"
$information-esmall-devise: "only screen and (max-width : 768px)"
$information-custom-devise: "all and (max-width : 480px)"
$landscape: "screen and (max-width: 992px)"
//mobile first
$landscape2: "only screen and (max-width: 720px) and (orientation: landscape)"
$information-esmall-devise2: "only screen and (min-width : 480px)"
$information-small-devise2: "only screen and (min-width : 768px)"
$information-medium-devise2: "only screen and (min-width : 992px)"
$information-large-devise2: "only screen and (min-width : 1200px)"
$landscape2: "screen and (min-width: 992px)"
$Large: "screen and (min-width: 1600px)"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment