Advertisement
Guest User

Untitled

a guest
Feb 24th, 2020
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta name="viewport" content="width=device-width, initial-scale=1">
  5. <style>
  6. body, html {
  7. height: 100%;
  8. margin: 0;
  9. font-family: Arial, Helvetica, sans-serif;
  10. }
  11.  
  12. .hero-image {
  13. background-image: url("https://i.gyazo.com/516db7e210e0eaa847d5fa57834381df.png");
  14. height: 50%;
  15. background-position: center;
  16. background-repeat: no-repeat;
  17. background-size: cover;
  18. margin: 0px 30px 0px 30px;
  19. }
  20.  
  21. @media screen and (min-width: 0px) and (max-width: 600px) {
  22. .hero-image {margin: 0px 0px 0px 0px;}
  23. .sidenav { display: none; } /* Hide sidenav on small screens */
  24. }
  25.  
  26. .sidenav {
  27. height: 100vh;
  28. width: 5%;
  29. position: fixed;
  30. z-index: 1;
  31. top: 0;
  32. left: 0;
  33. background-color: red;
  34. overflow-x: hidden;
  35. padding-top: 30px;
  36. }
  37. </style>
  38. </head>
  39. <body>
  40.  
  41. <div class="hero-image">
  42.  
  43. </div>
  44.  
  45. <div class="sidenav">
  46.  
  47. </div>
  48.  
  49.  
  50.  
  51. </body>
  52. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement