defaultTemplate.html 498 B

123456789101112131415161718192021222324
  1. <style>
  2. loading-screen {
  3. display: flex;
  4. flex: 1;
  5. z-index: 100;
  6. justify-content: center;
  7. align-items: center;
  8. background-color: black;
  9. }
  10. viewer {
  11. display: none;
  12. position: relative;
  13. overflow: hidden;
  14. /* Start stage */
  15. flex: 1;
  16. z-index: 1;
  17. justify-content: center;
  18. align-items: center;
  19. }
  20. </style>
  21. <viewer></viewer>
  22. <loading-screen></loading-screen>