Advertisement
DUYSONGLOI

2

Dec 12th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.37 KB | None | 0 0
  1. @media (min-aspect-ratio: 16/9) {
  2.     .body {
  3.         width: 100%;
  4.         height: auto;
  5.         }
  6.            
  7. }
  8. @media (max-aspect-ratio: 16/9) {
  9.     .body {
  10.         width: auto;
  11.         height: 100%;
  12.     }
  13. }
  14. .body {
  15.     background: rgba(0, 0, 100, 0.5);
  16.     height: 100vh;
  17.            
  18. }
  19. .loggo {
  20.     background: rgba(0, 0, 0, .5);
  21.     height: 80px;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement