header.html 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <!doctype html>
  2. <meta charset="utf-8">
  3. <meta name="viewport" content="width=device-width, initial-scale=1">
  4. <title>instant.page test</title>
  5. <style>
  6. body {
  7. background: lightskyblue;
  8. overflow-y: scroll;
  9. font-family: system-ui, sans-serif;
  10. }
  11. a {
  12. display: block;
  13. background: hsla(0, 0%, 100%, .25);
  14. padding: .5em;
  15. margin: .5em 0;
  16. border: 3px solid hsla(0, 0%, 100%, .25);
  17. text-decoration: none;
  18. color: #008;
  19. font-size: 1.5em;
  20. }
  21. a:hover {
  22. border-color: hsla(0, 0%, 100%, 1);
  23. }
  24. a:active {
  25. background: hsla(0, 0%, 0%, .25);
  26. }
  27. form {
  28. background: hsla(0, 0%, 100%, .25);
  29. border: 1px solid hsla(0, 0%, 0%, .15);
  30. }
  31. form label {
  32. display: block;
  33. padding: 5px;
  34. }
  35. @media (min-width: 1000px) {
  36. form label {
  37. display: inline-block;
  38. margin-right: 10px;
  39. }
  40. }
  41. form input[type="number"] {
  42. width: 50px;
  43. }
  44. </style>
  45. <body>
  46. <form>
  47. <label>
  48. Allow query string &amp; external links:
  49. <input name="aqsael" type="checkbox" :checked_aqsael>
  50. </label>
  51. <label>
  52. Use whitelist:
  53. <input name="whitelist" type="checkbox" :checked_whitelist>
  54. </label>
  55. <label>
  56. Sleep time:
  57. <input name="sleep" type="number" :value_sleep>
  58. </label>
  59. <label>
  60. Cache max age (in seconds):
  61. <input name="cacheAge" type="number" :value_cacheAge>
  62. </label>
  63. <label>
  64. <input type="submit" value="OK">
  65. </label>
  66. </form>