Advertisement
Guest User

Untitled

a guest
Nov 26th, 2015
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. /*==================================================
  2. = Bootstrap 3 Media Queries =
  3. ==================================================*/
  4.  
  5. /*========== Mobile First Method ==========*/
  6.  
  7. /* Custom, iPhone Retina */
  8. @media only screen and (min-width : 320px) {
  9. /*-- example usage : custom grid spacing --*/
  10. .row{
  11. margin-left:-8px; margin-right:-8px;
  12. }
  13. .container,
  14. .row > [class^="col-"],
  15. .row > [class*=" col-"]{
  16. padding-left:8px; padding-right:8px;
  17. }
  18. }
  19.  
  20. /* Extra Small Devices, Phones */
  21. @media only screen and (min-width : 480px) {
  22.  
  23. }
  24.  
  25. /* Small Devices, Tablets */
  26. @media only screen and (min-width : 768px) {
  27.  
  28. }
  29.  
  30. /* Medium Devices, Desktops */
  31. @media only screen and (min-width : 992px) {
  32.  
  33. }
  34.  
  35. /* Large Devices, Wide Screens */
  36. @media only screen and (min-width : 1200px) {
  37.  
  38. }
  39.  
  40.  
  41. /*========== Non-Mobile First Method ==========*/
  42.  
  43. /* Large Devices, Wide Screens */
  44. @media only screen and (max-width : 1200px) {
  45.  
  46. }
  47.  
  48. /* Medium Devices, Desktops */
  49. @media only screen and (max-width : 992px) {
  50.  
  51. }
  52.  
  53. /* Small Devices, Tablets */
  54. @media only screen and (max-width : 768px) {
  55.  
  56. }
  57.  
  58. /* Extra Small Devices, Phones */
  59. @media only screen and (max-width : 480px) {
  60.  
  61. }
  62.  
  63. /* Custom, iPhone Retina */
  64. @media only screen and (max-width : 320px) {
  65.  
  66. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement