| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- 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;
- }
- .hidden {
- display: none !important;
- }
|