Advertisement
TheTintin

Untitled

Oct 22nd, 2020
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. // Media Queries
  2. $small-screen-up: 601px;
  3. $medium-screen-up: 993px;
  4. $large-screen-up: 1201px;
  5. $small-screen: 600px;
  6. $medium-screen: 992px;
  7. $large-screen: 1200px;
  8. $extra-large-screen: 1800px;
  9.  
  10. $medium-and-up: "only screen and (min-width : #{$small-screen-up})";
  11. $large-and-up: "only screen and (min-width : #{$medium-screen-up})";
  12. $extra-large-and-up: "only screen and (min-width : #{$large-screen-up})";
  13. $small-and-down: "only screen and (max-width : #{$small-screen})";
  14. $medium-and-down: "only screen and (max-width : #{$medium-screen})";
  15. $large-and-down: "only screen and (max-width : #{$large-screen})";
  16. $extra-large-and-down: "only screen and (max-width : #{$extra-large-screen})";
  17. $medium-only: "only screen and (min-width : #{$small-screen-up}) and (max-width : #{$medium-screen})";
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement