summaryrefslogtreecommitdiff
path: root/localwebsite/htdocs
diff options
context:
space:
mode:
Diffstat (limited to 'localwebsite/htdocs')
-rw-r--r--localwebsite/htdocs/assets/app.css15
-rw-r--r--localwebsite/htdocs/index.php1
2 files changed, 16 insertions, 0 deletions
diff --git a/localwebsite/htdocs/assets/app.css b/localwebsite/htdocs/assets/app.css
index cab674e..73e0667 100644
--- a/localwebsite/htdocs/assets/app.css
+++ b/localwebsite/htdocs/assets/app.css
@@ -150,4 +150,19 @@
@keyframes sk-circleFadeDelay {
0%, 39%, 100% { opacity: 0; }
40% { opacity: 1; }
+}
+
+/* cams page */
+.camfeeds {
+ display: flex;
+ flex-wrap: wrap;
+ flex-direction: row;
+}
+.camfeeds > video {
+ display: flex;
+ flex-basis: calc(50% - 20px);
+ justify-content: center;
+ flex-direction: column;
+ width: calc(50% - 10px);
+ margin: 5px;
} \ No newline at end of file
diff --git a/localwebsite/htdocs/index.php b/localwebsite/htdocs/index.php
index 3961c2c..65afc72 100644
--- a/localwebsite/htdocs/index.php
+++ b/localwebsite/htdocs/index.php
@@ -25,6 +25,7 @@ $router->add('/', 'Misc main');
$router->add('sensors/', 'Misc sensors_page');
$router->add('pump/', 'Misc pump_page');
$router->add('phpinfo/', 'Misc phpinfo');
+$router->add('cams/', 'Misc cams');
$route = routerFind($router);