Sha256: a23dbcbb026d27f2a998f24ed694b7d07ff2bb3d79abf12ff1b8b1c8bbea8ed0
Contents?: true
Size: 1.04 KB
Versions: 22
Compression:
Stored size: 1.04 KB
Contents
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>404: Not Found</title> <style> * { box-sizing: border-box; margin: 0; padding: 0; } body, html { font-size: 100%; max-width: 100vw; overflow-x: hidden; } body { color: whitesmoke; background: darkred; font-family: Roboto,Arial,sans-serif,Emoji; font-style: normal; } main { align-items: center; display: flex; flex-direction: column; height: 100vh; justify-content: center; padding: 0 4vw; } .message { display: flex; flex-direction: column; gap: 1rem; text-align: center; } </style> </head> <body> <main> <div class="message"> <h1>404</h1> <p>The page you are looking for doesn’t exist.</p> </div> </main> </body> </html>
Version data entries
22 entries across 22 versions & 1 rubygems