diff options
author | elioat <elioat@tilde.institute> | 2024-06-30 21:12:20 -0400 |
---|---|---|
committer | elioat <elioat@tilde.institute> | 2024-06-30 21:12:20 -0400 |
commit | e60e1d7b8b3ba262729152c0eba184898632e655 (patch) | |
tree | 5c85d15f106e52a85a03a15c6e4a12076357dc0c | |
parent | 990ea876d3e9dc821466b75d4a17f6260900e58d (diff) | |
download | tour-e60e1d7b8b3ba262729152c0eba184898632e655.tar.gz |
*
-rw-r--r-- | js/pico-cam/index.html | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/js/pico-cam/index.html b/js/pico-cam/index.html index c12f4da..e0e1f21 100644 --- a/js/pico-cam/index.html +++ b/js/pico-cam/index.html @@ -4,7 +4,6 @@ <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Pico Cam</title> - <!-- add favicon --> <link rel="shortcut icon" href="favicon.ico" type="image/x-icon"> <link rel="icon" href="favicon.ico" type="image/x-icon"> <meta name="theme-color" content="#EEE1C6"> @@ -44,7 +43,7 @@ .capture-frame.active { background-color: teal; - color: #FFFFFF; /* Optional: Change text color to improve contrast */ + color: #FFFFFF; } .media-container { @@ -55,7 +54,7 @@ } video, canvas { - max-width: 50%; /* Each takes up to half of the container width */ + max-width: 50%; height: auto; /* Maintain aspect ratio */ flex: 1 1 auto; /* Allows the elements to change size and needed */ } |