diff options
| author | Franoosh <uinarf@autistici.org> | 2025-07-25 17:13:38 +0200 |
|---|---|---|
| committer | Franoosh <uinarf@autistici.org> | 2025-10-15 14:33:59 +0200 |
| commit | 68bd1bd052a7cd6438b92cb1059ef5e58b8d022c (patch) | |
| tree | 5a7eab3022a7593bd3d9dbdcc99a1590ab0fc3bc /static/css | |
| download | ZeroMQ_Video_Streaming-68bd1bd052a7cd6438b92cb1059ef5e58b8d022c.tar.gz ZeroMQ_Video_Streaming-68bd1bd052a7cd6438b92cb1059ef5e58b8d022c.tar.bz2 ZeroMQ_Video_Streaming-68bd1bd052a7cd6438b92cb1059ef5e58b8d022c.zip | |
Initial commit. Proof of concept message passing between client <-> router <-> worker with rudimentary caching
Diffstat (limited to 'static/css')
| -rw-r--r-- | static/css/main.css | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/static/css/main.css b/static/css/main.css new file mode 100644 index 0000000..4bb18b2 --- /dev/null +++ b/static/css/main.css @@ -0,0 +1,21 @@ +.streams-container { + display: flex; + flex-wrap: wrap; + gap: 16px; + justify-content: center; +} +.camera-stream { + flex: 0 1 320px; + margin: 10px; + text-align: center; +} +@media (max-width: 600px) { +.streams-container { + flex-direction: column; + align-items: center; +} +.camera-stream { + width: 100%; + max-width: 100vw; +} +} |
