Guest User

Untitled

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