index.html (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width,initial-scale=1.0"> <title>deserthorns</title> <style> :root { --background: #464646; --f_high: #DCDCCC; --f_med: #DCA3A3; --f_low: #7F9F7F; --f_inv: #000D18; --b_high: #262626; --b_med: #333333; --b_low: #3F3F3F; --b_inv: #8FAF9F; } html { background: var(--background); color: var(--f_high); } .logo { display: block; margin: 5rem auto; max-width: 15rem; } h1 { letter-spacing: 0.5rem; font-family: monospace; text-align: center; color: var(--f_low); } </style> </head> <body> <img class="logo" src="/assets/svg/logo-block-mono.svg"> <h1>deserthorns</h1> </body> </html> |