Skip to main content

max / makenotwork

2.8 KB · 84 lines History Blame Raw
1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4 <meta charset="UTF-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6 <title>Something Went Wrong - makenot.work</title>
7 <meta http-equiv="refresh" content="15">
8 <link rel="preconnect" href="https://fonts.googleapis.com">
9 <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
10 <link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&family=Lato&family=Young+Serif&display=swap" rel="stylesheet">
11 <style>
12 * { margin: 0; padding: 0; box-sizing: border-box; }
13 body {
14 min-height: 100vh;
15 display: flex;
16 flex-direction: column;
17 align-items: center;
18 justify-content: center;
19 padding: 2rem;
20 background: #ede8e1;
21 color: #3d3530;
22 font-family: Lato, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
23 }
24 .wordmark {
25 position: absolute;
26 top: 2rem;
27 left: 2rem;
28 font-family: "Young Serif", Georgia, "Times New Roman", serif;
29 font-size: 1.25rem;
30 color: #3d3530;
31 text-decoration: none;
32 }
33 .wordmark .dot { color: #6c5ce7; }
34 .container { text-align: center; max-width: 500px; }
35 .code {
36 font-size: 8rem;
37 font-weight: 400;
38 line-height: 1;
39 margin-bottom: 1rem;
40 font-family: "Young Serif", Georgia, "Times New Roman", serif;
41 color: #3d3530;
42 }
43 .title {
44 font-size: 1.25rem;
45 font-family: "IBM Plex Mono", "Courier New", Consolas, monospace;
46 color: #8a8480;
47 margin-bottom: 1.5rem;
48 }
49 .message {
50 color: #8a8480;
51 margin-bottom: 2rem;
52 line-height: 1.6;
53 }
54 .retry {
55 font-family: "IBM Plex Mono", "Courier New", Consolas, monospace;
56 font-size: 0.85rem;
57 color: #8a8480;
58 }
59 a.btn {
60 display: inline-block;
61 padding: 0.75rem 1.5rem;
62 background: #3d3530;
63 color: #ede8e1;
64 text-decoration: none;
65 border-radius: 6px;
66 font-weight: 500;
67 transition: opacity 0.2s;
68 margin-bottom: 1.5rem;
69 }
70 a.btn:hover { opacity: 0.85; }
71 </style>
72 </head>
73 <body>
74 <a href="/" class="wordmark">Makenot<span class="dot">.</span>work</a>
75 <div class="container">
76 <div class="code">500</div>
77 <div class="title">Something went wrong</div>
78 <p class="message">An unexpected error occurred. This has been noted and will be looked into.</p>
79 <a href="/" class="btn">Go Home</a>
80 <p class="retry">This page will retry automatically.</p>
81 </div>
82 </body>
83 </html>
84