Advertisement
Guest User

Untitled

a guest
Aug 24th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. // Dimensions
  2. $desktop-width-min: 1024px;
  3. $desktop-width-max: 1920px;
  4. $phone-width-min: 320px;
  5. $phone-width-max: 480px;
  6. $tablet-width-min: 768px;
  7. $tablet-width-max: 1024px;
  8.  
  9. $mobile-view: '(max-width: #{$tablet-width-min - 1})';
  10. $tablet-view: '(min-width: #{$tablet-width-min}) and (max-width: #{$tablet-width-max})';
  11. $desktop-view: '(min-width: #{$tablet-width-max + 1})';
  12.  
  13. @mixin mobile {
  14. @media #{$mobile-view} {
  15. @content;
  16. }
  17. }
  18.  
  19. @mixin tablet {
  20. @media #{$tablet-view} {
  21. @content;
  22. }
  23. }
  24.  
  25. @mixin desktop {
  26. @media #{$desktop-view} {
  27. @content;
  28. }
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement