Advertisement
shopnilSS

Screen Snippet

Jun 25th, 2021
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.75 KB | None | 0 0
  1. /* Default Layout: 992px.
  2. Gutters: 24px.
  3. Outer margins: 48px.
  4. Leftover space for scrollbars @1024px: 32px.
  5. -------------------------------------------------------------------------------
  6. cols 1 2 3 4 5 6 7 8 9 10
  7. px 68 160 252 344 436 528 620 712 804 896 */
  8.  
  9.  
  10. /* Tablet Layout: 768px.
  11. Gutters: 24px.
  12. Outer margins: 28px.
  13. Inherits styles from: Default Layout.
  14. -----------------------------------------------------------------
  15. cols 1 2 3 4 5 6 7 8
  16. px 68 160 252 344 436 528 620 712 */
  17. /**********For Tablet********/
  18. @media only screen and (min-width: 768px) and (max-width: 991px) {
  19.  
  20.  
  21.  
  22. /* Mobile Layout: 320px.
  23. Gutters: 24px.
  24. Outer margins: 34px.
  25. Inherits styles from: Default Layout.
  26. ---------------------------------------------
  27. cols 1 2 3
  28. px 68 160 252 */
  29. /**********For All Mobile********/
  30. @media only screen and (max-width: 767px) {
  31.  
  32.  
  33.  
  34. }
  35.  
  36.  
  37.  
  38. /* Wide Mobile Layout: 480px.
  39. Gutters: 24px.
  40. Outer margins: 22px.
  41. Inherits styles from: Default Layout, Mobile Layout.
  42. ------------------------------------------------------------
  43. cols 1 2 3 4 5
  44. px 68 160 252 344 436 */
  45. /**********For Android********/
  46. @media only screen and (min-width: 480px) and (max-width: 767px) {
  47.  
  48.  
  49.  
  50. }
  51.  
  52.  
  53. /* Retina media query.
  54. Overrides styles for devices with a
  55. device-pixel-ratio of 2+, such as iPhone 4.
  56. ----------------------------------------------- */
  57. /**********For Iphone********/
  58. @media
  59. only screen and (-webkit-min-device-pixel-ratio: 2),
  60. only screen and (min-device-pixel-ratio: 2) {
  61.  
  62.  
  63.  
  64. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement