12345678910111213141516171819202122232425262728293031323334 |
- body {
- margin: 0;
- padding: 0;
- height: 100vh;
- width: 100vw;
- display: flex;
- justify-content: center;
- align-items: center;
- box-sizing: border-box;
- overflow: hidden;
- background-color: black;
- }
- #remoteCapture {
- max-width: 100vw;
- max-height: 100vh;
- width: auto;
- height: auto;
- display: block;
- margin: auto;
- object-fit: contain;
- cursor: url('img/cursor_overlay.png') 0 0, pointer;
- }
- #menu {
- position: fixed;
- top: 0px;
- left: 50%;
- transform: translateX(-50%);
- padding: 10px;
- display: flex;
- gap: 10px;
- z-index: 1000;
- }
|