Advertisement
saraeliz

HNTGD 6.0 Round 6 Base Code

Oct 8th, 2022 (edited)
1,492
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.50 KB | None | 0 0
  1. <style type="text/css">
  2.         #wrapper {
  3.             background: url(FULL URL) no-repeat top center;
  4.             width: auto;
  5.         }
  6.  
  7. #interactiveBanner {display:none;}
  8.  
  9. /** TABLET CODES **/
  10.     @media (max-width: 1023px) {
  11.         #wrapper {
  12.             background: url(TABLET URL) no-repeat top center;
  13.             background-size: cover;
  14.             width: auto;}
  15.         }
  16.  
  17. /** MOBILE CODES **/
  18.     @media (max-width: 500px) {
  19.         #wrapper {
  20.             background: url(MOBILE URL) no-repeat top center;
  21.             background-size: cover;
  22.             width: auto;
  23.             }
  24.         }
  25.  
  26. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement