loading.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <title>BeatDrop</title>
  8. <style>
  9. @import "https://fonts.googleapis.com/css?family=Lato:300,700,900";
  10. @import "https://fonts.googleapis.com/css?family=Montserrat:700";
  11. body {
  12. overflow: hidden;
  13. background: rgba(0, 0, 0, 0.85);
  14. color: white;
  15. font-family: "Lato", sans-serif;
  16. margin: 0;
  17. padding: 0;
  18. }
  19. #loading-page {
  20. height: 100vh;
  21. display: flex;
  22. flex-flow: row wrap;
  23. justify-content: center;
  24. align-content: center;
  25. font-family: 'Lato', sans-serif
  26. }
  27. #loading-page #loader {
  28. display: block;
  29. background: url(./beatdrop-loader.png);
  30. width: 100%;
  31. height: 400px;
  32. margin-top: -150px;
  33. margin-bottom: -100px;
  34. background-position: center;
  35. background-size: 330%;
  36. }
  37. #loading-page h1 {
  38. width: 100%;
  39. text-align: center;
  40. font-family: "Montserrat", "Lato", sans-serif;
  41. }
  42. </style>
  43. </head>
  44. <body>
  45. <div id="loading-page">
  46. <div id="loader"></div>
  47. <h1>BeatDrop</h1>
  48. <div>Loading...</div>
  49. </div>
  50. </body>
  51. </html>