header.html 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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. form input[type="text"] {
  45. width: 110px;
  46. }
  47. </style>
  48. <body>
  49. <form>
  50. <label>
  51. Allow query string &amp; external links:
  52. <input name="aqsael" type="checkbox" :checked_aqsael>
  53. </label>
  54. <label>
  55. Use whitelist:
  56. <input name="whitelist" type="checkbox" :checked_whitelist>
  57. </label>
  58. <label>
  59. Page load time:
  60. <input name="sleep" type="number" :value_sleep>
  61. </label>
  62. <label>
  63. Intensity:
  64. <input name="intensity" type="text" :value_intensity>
  65. </label>
  66. <label>
  67. Cache max age (in seconds):
  68. <input name="cacheAge" type="number" :value_cacheAge>
  69. </label>
  70. <label>
  71. Use minified:
  72. <input name="minified" type="checkbox" :checked_minified>
  73. </label>
  74. <label>
  75. <input type="submit" value="OK">
  76. </label>
  77. </form>