| 123456789101112131415161718192021222324252627282930313233343536 |
- .corner {
- grid-row: 1/2;
- grid-column: 1/2;
- background-color: #13131e;
- color: #a2ff99;
- font-size: 30px;
- font-family: 'Raleway', sans-serif;
- }
- .corner p {
- margin: calc((5vh - 35px)/2) 0;
- text-align: center;
- }
- .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;
- }
|