Guest User

Untitled

a guest
Dec 8th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. @mixin for-size($range) {
  2. $phone-upper-boundary: 600px;
  3. $tablet-portrait-upper-boundary: 900px;
  4. $tablet-landscape-upper-boundary: 1200px;
  5. $desktop-upper-boundary: 1800px;
  6.  
  7. @if $range == phone-only {
  8. @media (max-width: #{$phone-upper-boundary - 1}) { @content; }
  9. } @else if $range == tablet-portrait-up {
  10. @media (min-width: $phone-upper-boundary) { @content; }
  11. } @else if $range == tablet-landscape-up {
  12. @media (min-width: $tablet-landscape-upper-boundary) { @content; }
  13. } @else if $range == desktop-up {
  14. @media (min-width: $tablet-landscape-upper-boundary) { @content; }
  15. } @else if $range == big-desktop-up {
  16. @media (min-width: $desktop-upper-boundary) { @content; }
  17. }
  18. }
  19.  
  20. // usage
  21. .my-box {
  22. padding: 10px;
  23.  
  24. @include for-size(desktop-up) {
  25. padding: 20px;
  26. }
  27. }
Add Comment
Please, Sign In to add comment