Advertisement
Guest User

style.css

a guest
Oct 23rd, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.66 KB | None | 0 0
  1. body {
  2.   font-family: "Lato", sans-serif;
  3. }
  4.  
  5. .sidenav {
  6.   height: 100%;
  7.   width: 0;
  8.   position: fixed;
  9.   z-index: 1;
  10.   top: 0;
  11.   left: 0;
  12.   background-color: #111;
  13.   overflow-x: hidden;
  14.   transition: 0.5s;
  15.   padding-top: 60px;
  16. }
  17.  
  18. .sidenav a {
  19.   padding: 8px 8px 8px 32px;
  20.   text-decoration: none;
  21.   font-size: 25px;
  22.   color: #818181;
  23.   display: block;
  24.   transition: 0.3s;
  25. }
  26.  
  27. .sidenav a:hover {
  28.   color: #f1f1f1;
  29. }
  30.  
  31. .sidenav .closebtn {
  32.   position: absolute;
  33.   top: 0;
  34.   right: 25px;
  35.   font-size: 36px;
  36.   margin-left: 50px;
  37. }
  38.  
  39. @media screen and (max-height: 450px) {
  40.   .sidenav {padding-top: 15px;}
  41.   .sidenav a {font-size: 18px;}
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement