Advertisement
Guest User

CSS mobile fix

a guest
Feb 22nd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.28 KB | None | 0 0
  1. @media(max-width:1500px) {
  2.     header, footer {
  3.         height:30px;
  4.     }
  5.  
  6.     .loginFormWrap {
  7.         width: 80%;
  8.     }
  9. }
  10.  
  11. @media(max-width:870px) {
  12.     header, footer {
  13.         height:5px;
  14.     }
  15.  
  16.     .loginFormWrap {
  17.         width: 100%;
  18.     }
  19. }
  20.  
  21. @media(max-width:1000px) {
  22.  
  23.     #main{
  24.         width: 100%;
  25.     }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement