ali_siddique

CSS Media Queries

Nov 23rd, 2015
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.60 KB | None | 0 0
  1. /*  ==========================================================================
  2.     Large desktops and laptops
  3.     ========================================================================== */
  4.     @media (min-width: 1200px) {
  5.        
  6.     }
  7. /*  ==========================================================================
  8.     Portrait tablets and medium desktops
  9.     ========================================================================== */
  10.     @media (min-width: 992px) and (max-width: 1199px) {
  11.  
  12.     }
  13. /*  ==========================================================================
  14.     Portrait tablets and small desktops
  15.     ========================================================================== */
  16.     @media (min-width: 768px) and (max-width: 991px) {
  17.  
  18.     }
  19. /*  ==========================================================================
  20.     Landscape phone to portrait tablet
  21.     ========================================================================== */
  22.     @media (max-width: 767px) {
  23.        
  24.     }
  25. /*  ==========================================================================
  26.     Landscape phones
  27.     ========================================================================== */
  28.     @media (max-width: 480px) {
  29.        
  30. /*  ==========================================================================
  31.     Portrait Mobile
  32.     ========================================================================== */
  33.     @media (max-width: 320px) {
  34.        
  35.     }
  36. /*  ==========================================================================
  37.     Mobile
  38.     ========================================================================== */
  39.     @media (min-width: 240px) and  (max-width: 319px){
  40.    
  41.     }
Advertisement
Add Comment
Please, Sign In to add comment