Advertisement
pharmokan

css skeleton responsive breakpoints

Jul 22nd, 2019
374
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. /*
  2. ====================================
  3. Small Screen - Tablet
  4. ====================================
  5. */
  6. @media screen and (min-width: 768px) and (max-width: 991px) {
  7.  
  8. }
  9.  
  10. /*
  11. ====================================
  12. Small Screen - Mobile
  13. ====================================
  14. */
  15. @media screen and (min-width: 576px) and (max-width: 767px) {
  16.  
  17. }
  18.  
  19. /*
  20. ====================================
  21. Xtra Small Screen - Small Mobile
  22. ====================================
  23. */
  24. @media screen and (max-width: 576px) {
  25.  
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement