Advertisement
Guest User

Untitled

a guest
Oct 25th, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. /*==================================================
  2. = Bootstrap 3 Media Queries =
  3. ==================================================*/
  4.  
  5. /*========== Desktop First Method ==========*/
  6.  
  7. /* Large Devices, Wide Screens */
  8. @media only screen and (max-width : 1199px) {
  9.  
  10. }
  11.  
  12. /* Medium Devices, Desktops */
  13. @media only screen and (max-width : 991px) {
  14.  
  15. }
  16.  
  17. /* Small Devices, Tablets */
  18. @media only screen and (max-width : 767px) {
  19.  
  20. }
  21.  
  22. /* Extra Small Devices, Phones */
  23. @media only screen and (max-width : 480px) {
  24.  
  25. }
  26.  
  27.  
  28.  
  29. /*========== Mobile First Method ==========*/
  30.  
  31. /* Custom, iPhone Retina */
  32. @media only screen and (min-width : 320px) {
  33.  
  34. }
  35.  
  36. /* Extra Small Devices, Phones */
  37. @media only screen and (min-width : 480px) {
  38.  
  39. }
  40.  
  41. /* Small Devices, Tablets */
  42. @media only screen and (min-width : 768px) {
  43.  
  44. }
  45.  
  46. /* Medium Devices, Desktops */
  47. @media only screen and (min-width : 992px) {
  48.  
  49. }
  50.  
  51. /* Large Devices, Wide Screens */
  52. @media only screen and (min-width : 1200px) {
  53.  
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement