| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- body, html {
- margin: 0;
- overflow: hidden;
- }
- body {
- background-color: #2c2c36;
- }
- .container {
- display: grid;
- grid-template-columns: 150px 1fr;
- grid-template-rows: 5vh 1fr;
- }
- .topBar {
- grid-column: 2/-1;
- grid-row: 1/2;
- background-color: #252531;
- }
- .topBar button {
- border: none;
- background: none;
- color: white;
- font-size: 20px;
- height: 100%;
- padding: 0 10px;
- font-family: Helvetica, 'Raleway', sans-serif;
- }
- .topBar button:hover {
- background-color: #2f2f3d;
- }
- .hide {
- display: none;
- }
- .corner {
- grid-row: 1/2;
- grid-column: 1/2;
- background-color: #13131e;
- font-size: 3vh;
- font-family: 'Raleway', sans-serif;
- display: flex;
- }
- .corner a {
- height: min-content;
- margin: auto;
- color: #a2ff99;
- text-align: center;
- text-decoration: none;
- }
- .sideBar {
- grid-row: 2/-1;
- grid-column: 1/2;
- height: 100vh;
- background-color: #1b1b26;
- }
- .sideBar a {
- font-family: Helvetica, 'Raleway', sans-serif;
- color: white;
- text-decoration: none;
- display: block;
- height: min-content;
- padding: 15px;
- font-size: 20px;
- }
- .sideBar a:hover {
- background-color: #252531;
- }
|