style.css 463 B

12345678910111213141516171819202122232425262728
  1. * {
  2. -webkit-box-sizing: border-box;
  3. -moz-box-sizing: border-box;
  4. box-sizing: border-box;
  5. -moz-user-select: none;
  6. -webkit-user-select: none;
  7. -ms-user-select: none;
  8. user-select: none;
  9. -webkit-user-drag: none;
  10. -webkit-touch-callout: none;
  11. -ms-content-zooming: none;
  12. }
  13. html, body {
  14. width: 100%;
  15. height: 100%;
  16. padding: 0;
  17. margin: 0;
  18. overflow: hidden;
  19. }
  20. #pano {
  21. position: absolute;
  22. top: 0;
  23. left: 0;
  24. width: 100%;
  25. height: 100%;
  26. }