viewport.css 721 B

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