Skip to content

Instantly share code, notes, and snippets.

@Padilo300
Forked from sioniks/_variables.sass
Created December 11, 2017 10:24
Show Gist options
  • Save Padilo300/938e02a834ec6e73fb2d3fa2d102ca8b to your computer and use it in GitHub Desktop.
Save Padilo300/938e02a834ec6e73fb2d3fa2d102ca8b 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