Advertisement
Guest User

styles.scss

a guest
Feb 23rd, 2020
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.69 KB | None | 0 0
  1. html,
  2. body {
  3.   height: 100%;
  4.   max-width: 100%;
  5.   overflow-x: hidden;
  6. }
  7.  
  8. body {
  9.   margin: 0;
  10.   font-family: Roboto, "Helvetica Neue", sans-serif;
  11.   -ms-overflow-style: none;
  12. }
  13.  
  14. body::-webkit-scrollbar {
  15.   display: none;
  16. }
  17.  
  18. body { margin: 0; font-family: Roboto, "Helvetica Neue", sans-serif; }
  19.  
  20. .view {
  21.   //Insert image here
  22.   background: url("https://mdbootstrap.com/img/Photos/Others/img (40).jpg")no-repeat center center;
  23.   background-size: cover;
  24.   height: 100vh;
  25. }
  26.  
  27. .navbar {
  28.   background-color: transparent;
  29. }
  30.  
  31. .top-nav-collapse {
  32.   background-color: #4285F4;
  33. }
  34.  
  35. @media only screen and (max-width: 768px) {
  36.   .navbar {
  37.       background-color: #4285F4;
  38.   }
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement