123456789101112131415161718192021222324252627282930313233 |
- 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;
- }
- #menu {
- position: fixed;
- top: 0px;
- left: 50%;
- transform: translateX(-50%);
- padding: 10px;
- display: flex;
- gap: 10px;
- z-index: 1000;
- }
|