splashscreen.html 516 B

1234567891011121314151617181920212223242526
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Splashscreen</title>
  5. <style>
  6. body {
  7. margin: 0;
  8. }
  9. .splashscreen-image {
  10. background-color: #444;
  11. background-image: url('icon.png');
  12. background-position: center;
  13. background-repeat: no-repeat;
  14. background-size: 50%;
  15. width: 100vw !important;
  16. height: 100vh !important;
  17. overflow: hidden;
  18. }
  19. </style>
  20. </head>
  21. <body>
  22. <div class="splashscreen-image" />
  23. </body>
  24. </html>