Advertisement
Guest User

Untitled

a guest
Feb 18th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. body {
  2. margin: 0;
  3. font-family: "Lato", sans-serif;
  4. background-color:red;
  5. }
  6.  
  7. .sidebar {
  8. margin: 0;
  9. padding: 0;
  10. width: 200px;
  11. background-color: #f1f1f1;
  12. position: fixed;
  13. height: 100%;
  14. overflow: auto;
  15. }
  16.  
  17. .sidebar a {
  18. display: block;
  19. color: black;
  20. padding: 16px;
  21. text-decoration: none;
  22. }
  23.  
  24. .sidebar a.active {
  25. background-color: #4CAF50;
  26. color: white;
  27. }
  28.  
  29. .sidebar a:hover:not(.active) {
  30. background-color: #555;
  31. color: white;
  32. }
  33.  
  34. div.content {
  35. margin-left: 200px;
  36. padding: 1px 16px;
  37. height: 1000px;
  38. }
  39.  
  40. @media screen and (max-width: 700px) {
  41. .sidebar {
  42. width: 100%;
  43. height: auto;
  44. position: relative;
  45. }
  46. .sidebar a {float: left;}
  47. div.content {margin-left: 0;}
  48. }
  49.  
  50. @media screen and (max-width: 400px) {
  51. .sidebar a {
  52. text-align: center;
  53. float: none;
  54. }
  55. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement