sidebar.css 597 B

123456789101112131415161718192021222324252627282930313233343536
  1. .corner {
  2. grid-row: 1/2;
  3. grid-column: 1/2;
  4. background-color: #13131e;
  5. color: #a2ff99;
  6. font-size: 30px;
  7. font-family: 'Raleway', sans-serif;
  8. }
  9. .corner p {
  10. margin: calc((5vh - 35px)/2) 0;
  11. text-align: center;
  12. }
  13. .sideBar {
  14. grid-row: 2/-1;
  15. grid-column: 1/2;
  16. height: 100vh;
  17. background-color: #1b1b26;
  18. }
  19. .sideBar a {
  20. font-family: Helvetica, 'Raleway', sans-serif;
  21. color: white;
  22. text-decoration: none;
  23. display: block;
  24. height: min-content;
  25. padding: 15px;
  26. font-size: 20px;
  27. }
  28. .sideBar a:hover {
  29. background-color: #252531;
  30. }