Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. $tablet: 800px
  2. $desktop: 1000px
  3.  
  4. =media-min-height($height)
  5. @media screen and (min-height: $height)
  6. @content
  7.  
  8. =media-min-width($width)
  9. @media screen and (min-width: $width)
  10. @content
  11.  
  12. =media-portrait
  13. @media screen and (orientation: portrait)
  14. @content
  15.  
  16. =media-landscape
  17. @media screen and (orientation: landscape)
  18. @content
  19.  
  20. =media-webkit
  21. @media screen and (-webkit-min-device-pixel-ratio: 0)
  22. @content
  23.  
  24. =media-print
  25. @media print
  26. @content
  27.  
  28. =media-tablet
  29. +media-min-width($tablet)
  30. @content
  31.  
  32. =media-desktop
  33. +media-min-width($desktop)
  34. @content
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement