From 68bd1bd052a7cd6438b92cb1059ef5e58b8d022c Mon Sep 17 00:00:00 2001 From: Franoosh Date: Fri, 25 Jul 2025 17:13:38 +0200 Subject: Initial commit. Proof of concept message passing between client <-> router <-> worker with rudimentary caching --- static/css/main.css | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 static/css/main.css (limited to 'static') 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; +} +} -- cgit v1.2.3