You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
449 B

  1. /* Normal desktop :1200px. */
  2. @media (min-width: 1200px) and (max-width: 1500px) {
  3. }
  4. /* Normal desktop :992px. */
  5. @media (min-width: 992px) and (max-width: 1200px) {
  6. }
  7. /* Tablet desktop :768px. */
  8. @media (min-width: 768px) and (max-width: 991px) {
  9. }
  10. /* small mobile :320px. */
  11. @media (max-width: 767px) {
  12. }
  13. /* Large Mobile :480px. */
  14. @media only screen and (min-width: 480px) and (max-width: 767px) {
  15. .container {width:450px}
  16. }