Guest User

Untitled

a guest
Mar 24th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. /* FOUNDATION MEDIA QUERIES */
  2.  
  3. /* Small only */
  4. @mixin smallOnly {
  5. @media screen and (max-width: 39.9375em) {
  6. @content;
  7. }
  8. }
  9.  
  10. /* Medium and up */
  11. @mixin mediumUp {
  12. @media screen and (min-width: 40em) {
  13. @content;
  14. }
  15. }
  16.  
  17. /* Medium only */
  18. @mixin mediumOnly {
  19. @media screen and (min-width: 40em) and (max-width: 63.9375em) {
  20. @content;
  21. }
  22. }
  23.  
  24. /* Large and up */
  25. @mixin largeUp {
  26. @media screen and (min-width: 64em) {
  27. @content;
  28. }
  29. }
  30.  
  31. /* Large only */
  32. @mixin largeOnly {
  33. @media screen and (min-width: 64em) and (max-width: 74.9375em) {
  34. @content;
  35. }
  36. }
Add Comment
Please, Sign In to add comment