init.html 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Porter | Butler</title>
  5. <meta charset="UTF-8">
  6. <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
  7. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  8. <meta name="HandheldFriendly" content="true">
  9. <link href="https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600&display=swap" rel="stylesheet">
  10. <link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400&display=swap" rel="stylesheet">
  11. <style type="text/css">
  12. .center-me {
  13. margin: 0 auto;
  14. min-width: 25%;
  15. text-align: center;
  16. }
  17. body {
  18. background: #e3e5e8;
  19. display: flex;
  20. flex-direction: column;
  21. align-items: center;
  22. margin-top: calc(50vh - 220px);
  23. }
  24. h1 {
  25. font-family: 'Work Sans', sans-serif;
  26. font-size: 40px;
  27. font-weight: 400;
  28. color: #46484a;
  29. user-select: none;
  30. text-align: center;
  31. opacity: 0;
  32. animation: fadeIn 0.8s 0.2s;
  33. animation-fill-mode: forwards;
  34. }
  35. h2 {
  36. font-family: 'Work Sans', sans-serif;
  37. font-size: 18px;
  38. font-weight: 400;
  39. color: #787878;
  40. margin-top: 0px;
  41. width: 80%;
  42. max-width: 660px;
  43. opacity: 0;
  44. text-align: center;
  45. line-height: 1.8em;
  46. user-select: none;
  47. animation: fadeIn 0.5s 0.3s;
  48. animation-fill-mode: forwards;
  49. }
  50. img {
  51. width: 120px;
  52. margin-bottom: 20px;
  53. animation: floatIn 1s;
  54. }
  55. @keyframes floatIn {
  56. from { opacity: 0; transform: translateY(80px) }
  57. to { opacity: 1; transform: translateY(0px) }
  58. }
  59. @keyframes fadeIn {
  60. from { opacity: 0 }
  61. to { opacity: 1 }
  62. }
  63. div {
  64. box-sizing: border-box;
  65. border-top-right-radius: 5px;
  66. border-bottom-right-radius: 5px;
  67. height: 100%;
  68. background: #5c93ed;
  69. display: flex;
  70. align-items: center;
  71. font-family: 'Open Sans', sans-serif;
  72. justify-content: center;
  73. cursor: pointer;
  74. color: white;
  75. border: 0;
  76. width: 130px;
  77. height: 50px;
  78. margin-top: 45px;
  79. font-size: 15px;
  80. border-radius: 5px;
  81. box-shadow: 0 0 2px 4px #6da4fe77;
  82. z-index: 999;
  83. user-select: none;
  84. animation: pulsate 2s infinite;
  85. }
  86. div:hover {
  87. background: #4b82dc;
  88. }
  89. @keyframes pulsate {
  90. from { box-shadow: 0 0 0px 0px #6da4fe77; }
  91. to { box-shadow: 0 0 3px 15px #6da4fe00; }
  92. }
  93. </style>
  94. </head>
  95. <body>
  96. <img src='https://i.ibb.co/y64zfm5/porter.png'></img>
  97. <h1>One moment, please</h1>
  98. <h2>
  99. Your application is currently being built and will be ready soon. This page will disappear once your application is live. To view build logs, navigate to your connected GitHub repo and select the Actions tab.
  100. </h2>
  101. <div onclick="location.reload();">Refresh Page</div>
  102. </body>
  103. </html>