Advertisement
Guest User

Untitled

a guest
Mar 6th, 2015
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.50 KB | None | 0 0
  1. /* Smartphones (portrait and landscape) ----------- */
  2. @media only screen
  3. and (min-device-width : 320px)
  4. and (max-device-width : 480px) {
  5.     .playertable body {
  6.         padding: 0;
  7.         margin: 0;
  8.         width: 320px; }
  9.     }
  10.     .playertable #page-wrap {
  11.         margin: 80px 10px;
  12.     }
  13.  
  14. /* iPads (portrait and landscape) ----------- */
  15. @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  16.     .playertable body {
  17.         width: 495px;
  18.     }
  19.     .playertable #page-wrap {
  20.         margin: 80px 10px;
  21.     }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement