_responsive.scss 453 B

123456789101112131415
  1. /* Normal desktop :1200px. */
  2. $large_device:'(min-width: 1200px) and (max-width: 1500px)';
  3. /* Normal desktop :992px. */
  4. $mid_device:'(min-width: 992px) and (max-width: 1200px)';
  5. /* Tablet desktop :768px. */
  6. $tablet_device:'(min-width: 768px) and (max-width: 991px)';
  7. /* small mobile :320px. */
  8. $mobile_device:'(max-width: 767px)';
  9. /* Large Mobile :480px. */
  10. $large_mobile:'only screen and (min-width: 480px) and (max-width: 767px)';