index.htm 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>SkunkyArt</title>
  5. <link rel="stylesheet" href="{{.}}stylesheet"/>
  6. <link rel="icon" type="image/x-icon" href="{{.}}favicon.ico">
  7. <meta name="viewport" content="width=device-width, height=device-height, initial-scale=0.4, user-scalable=no; user-scalable=0"/>
  8. <style>
  9. main {
  10. display: flex;
  11. max-width: fit-content;
  12. position: absolute;
  13. top: 50%;
  14. right: 50%;
  15. transform: translate(50%, -50%);
  16. }
  17. div {
  18. transform: translate(0, 50%);
  19. margin-left: 4%;
  20. flex-basis: 100%;
  21. height: 30%;
  22. display: block;
  23. max-width: fit-content;
  24. }
  25. div h1, form {
  26. margin: 0;
  27. }
  28. div form {
  29. font-size: 100%;
  30. max-width: 100%
  31. }
  32. div form input {
  33. width: 100%
  34. }
  35. img {
  36. width: 30%;
  37. height: 30%;
  38. }
  39. @media (orientation: portrait) {
  40. main {
  41. display: block;
  42. width: 200%;
  43. }
  44. img {
  45. width: 100%;
  46. height: 100%;
  47. }
  48. form {
  49. width: 200%;
  50. }
  51. div {
  52. margin: -25%;
  53. margin-top: auto;
  54. width: 200%;
  55. }
  56. div h1 {
  57. text-align: center;
  58. }
  59. }
  60. @media (max-width: 1155px) and (orientation: landscape) {
  61. img {
  62. width: 50%;
  63. }
  64. div {
  65. transform: none;
  66. }
  67. }
  68. </style>
  69. </head>
  70. <main>
  71. <img src="{{.}}favicon.ico" title="SkunkyArt logo" draggable="false">
  72. <div>
  73. <h1><a href="{{.}}dd">Daily Deviations</a> | <a href="{{.}}about">About</a></h1>
  74. <form method="get" action="{{.}}search">
  75. <input type="text" name="q" placeholder="Search for ..." autocomplete="off" autocapitalize="none" spellcheck="false">
  76. <select name="type">
  77. <option value="all">All</option>
  78. <option value="tag">Tag</option>
  79. <option value="r">Groups</option>
  80. </select>
  81. <button type="submit">Search!</button>
  82. </form>
  83. <h1 style="margin-top: 5%; font-size: 200%; text-align: center;">
  84. <a href="https://git.macaw.me/skunky/SkunkyArt" target="_blank" title="Source Code">SkunkyArt</a>
  85. </h1>
  86. </div>
  87. </main>
  88. </html>