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 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
<!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> <link rel="stylesheet" href="/assets/css/zenburn.css"> <style> html { background: var(--background); color: var(--f_high); } body { -webkit-text-size-adjust: 100%; } h1 { letter-spacing: 0.5rem; font-family: monospace; text-align: center; color: var(--f_low); } a { color: var(--f_med); } ul { list-style: none; text-align: center; font-size: 1.25rem; padding: 0; } li { padding-bottom: 1rem; } hr { border: 1px solid var(--b_med); } .logo { display: block; margin: 5rem auto; max-width: 15rem; } </style> </head> <body> <img class="logo" src="/assets/svg/logo-block-mono.svg"> <h1>deserthorns</h1> <hr> <ul> <li> <a href="/wiki">wiki</a> </li> <li> <a href="/etc/do">do</a> </li> </ul> </body> </html> |