main.css 615 B

12345678910111213141516171819202122232425262728293031323334
  1. body {
  2. margin: 0;
  3. padding: 0;
  4. height: 100vh;
  5. width: 100vw;
  6. display: flex;
  7. justify-content: center;
  8. align-items: center;
  9. box-sizing: border-box;
  10. overflow: hidden;
  11. background-color: black;
  12. }
  13. #remoteCapture {
  14. max-width: 100vw;
  15. max-height: 100vh;
  16. width: auto;
  17. height: auto;
  18. display: block;
  19. margin: auto;
  20. object-fit: contain;
  21. cursor: url('img/cursor_overlay.png') 10 10, pointer;
  22. }
  23. #menu {
  24. position: fixed;
  25. top: 0px;
  26. left: 50%;
  27. transform: translateX(-50%);
  28. padding: 10px;
  29. display: flex;
  30. gap: 10px;
  31. z-index: 1000;
  32. }