| |
| body { |
| font-family: Arial, sans-serif; |
| margin: 20px; |
| text-align: center; |
| } |
|
|
| |
| .controls { |
| margin-top: 10px; |
| margin-bottom: 10px; |
| } |
|
|
| |
| #videos { |
| display: flex; |
| flex-wrap: wrap; |
| gap: 10px; |
|
|
| justify-content: center; |
| } |
|
|
| |
| #videos video { |
| max-width: 500px; |
| aspect-ratio: 16 / 9; |
| width: 100%; |
| object-fit: cover; |
| } |
|
|
| |
| .video-container { |
| position: relative; |
| display: inline-block; |
| background-color: lightgray; |
| padding: 0.5%; |
| margin: 5px; |
| aspect-ratio: 16 / 9; |
| width: 400px; |
| } |
|
|
| |
| .session-id-overlay { |
| position: absolute; |
| left: 0; |
| bottom: 0; |
| padding: 5px; |
| color: white; |
| background-color: rgba(0, 0, 0, 0.5); |
| font-size: 0.8em; |
| } |
|
|
| |
| .video-element { |
| width: 100%; |
| height: auto; |
| background-color: black; |
| } |
|
|
| #status { |
| display: none; |
| } |
|
|
| #toggle-camera { |
| display: none; |
| } |
|
|
| #camera-selector { |
| display: none; |
| } |
|
|
| #join-token { |
| display: none; |
| } |
|
|