Advertisement
SrJefers_Loading

queries responsive

Feb 21st, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.48 KB | None | 0 0
  1. /* ESTILOS NORMALES (para móviles en vertical)
  2. ========================================================================= /
  3.  
  4. body { ... }
  5. p { ... }
  6.  
  7. / RESPONSIVE
  8. ========================================================================= /
  9.  
  10. / Móviles en horizontal o tablets en vertical
  11. ------------------------------------------------------------------------- /
  12. @media (min-width: 768px) { }
  13.  
  14. / Tablets en horizonal y escritorios normales
  15. ------------------------------------------------------------------------- /
  16. @media (min-width: 1024px) { }
  17.  
  18. / Escritorios muy anchos
  19. ------------------------------------------------------------------------- */
  20. @media (min-width: 1200px) { }
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38. /* ESTILOS NORMALES (para escritorios muy grandes)
  39. ========================================================================= /
  40.  
  41. body { ... }
  42. p { ... }
  43.  
  44. / RESPONSIVE
  45. ========================================================================= /
  46.  
  47. / Tablets en horizonal y escritorios normales
  48. ------------------------------------------------------------------------- /
  49. @media (min-width: 768px) and (max-width: 1199px) { ... }
  50.  
  51. / Móviles en horizontal o tablets en vertical
  52. ------------------------------------------------------------------------- /
  53. @media (max-width: 767px) { ... }
  54.  
  55. / Móviles en vertical
  56. ------------------------------------------------------------------------- */
  57. @media (max-width: 480px) { ... }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement