404.html 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Oopsie! | GramJS</title>
  5. <meta charset="utf-8" />
  6. <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
  7. <meta name="viewport" content="width=device-width, initial-scale=1" />
  8. <style type="text/css">
  9. body {
  10. background-color: #f0f4f8;
  11. font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial,
  12. sans-serif;
  13. }
  14. div {
  15. width: 560px;
  16. margin: 5em auto;
  17. padding: 50px;
  18. background-color: #fff;
  19. border-radius: 1em;
  20. }
  21. a:link,
  22. a:visited {
  23. color: #38488f;
  24. text-decoration: none;
  25. }
  26. @media (max-width: 700px) {
  27. body {
  28. background-color: #fff;
  29. }
  30. div {
  31. width: auto;
  32. margin: 0 auto;
  33. border-radius: 0;
  34. padding: 1em;
  35. }
  36. }
  37. </style>
  38. </head>
  39. <body>
  40. <div>
  41. <h1>You seem a bit lost…</h1>
  42. <p>
  43. You seem to be lost! Don't worry, that's just Telegram's API
  44. being itself. Shall we go back to the
  45. <a href="index.html">Main Page</a>?
  46. </p>
  47. </div>
  48. </body>
  49. </html>