main.css 478 B

12345678910111213141516171819202122232425262728293031
  1. html, body {
  2. -webkit-touch-callout:none;
  3. -webkit-text-size-adjust:none;
  4. -webkit-tap-highlight-color:transparent;
  5. user-select: none;
  6. overflow:hidden;
  7. height:100%;
  8. background:white;
  9. text-align:center;
  10. padding:0;
  11. margin:0;
  12. }
  13. #viewporter {
  14. position:absolute;
  15. left:50%;
  16. top:50%;
  17. }
  18. #scene {
  19. background-color:white;
  20. }
  21. #rotate {
  22. display:none;
  23. position:absolute;
  24. left:50%;
  25. top:50%;
  26. margin:-112px -112px;
  27. pointer-events: none;
  28. }