nav.css 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. body, html {
  2. margin: 0;
  3. overflow: hidden;
  4. }
  5. body {
  6. background-color: #2c2c36;
  7. }
  8. .container {
  9. display: grid;
  10. grid-template-columns: 150px 1fr;
  11. grid-template-rows: 5vh 1fr;
  12. }
  13. .topBar {
  14. grid-column: 2/-1;
  15. grid-row: 1/2;
  16. background-color: #252531;
  17. }
  18. .topBar button {
  19. border: none;
  20. background: none;
  21. color: white;
  22. font-size: 20px;
  23. height: 100%;
  24. padding: 0 10px;
  25. font-family: Helvetica, 'Raleway', sans-serif;
  26. }
  27. .topBar button:hover {
  28. background-color: #2f2f3d;
  29. }
  30. .hide {
  31. display: none;
  32. }
  33. .corner {
  34. grid-row: 1/2;
  35. grid-column: 1/2;
  36. background-color: #13131e;
  37. font-size: 3vh;
  38. font-family: 'Raleway', sans-serif;
  39. display: flex;
  40. }
  41. .corner a {
  42. height: min-content;
  43. margin: auto;
  44. color: #a2ff99;
  45. text-align: center;
  46. text-decoration: none;
  47. }
  48. .sideBar {
  49. grid-row: 2/-1;
  50. grid-column: 1/2;
  51. height: 100vh;
  52. background-color: #1b1b26;
  53. }
  54. .sideBar a {
  55. font-family: Helvetica, 'Raleway', sans-serif;
  56. color: white;
  57. text-decoration: none;
  58. display: block;
  59. height: min-content;
  60. padding: 15px;
  61. font-size: 20px;
  62. }
  63. .sideBar a:hover {
  64. background-color: #252531;
  65. }