blob: 11cfe09bbd499fb3f44f6e5f29a632cb9dc97496 [file] [log] [blame]
Philipp Schradere2e27ff2024-02-25 22:08:55 -08001video {
2 width: 100%;
3 aspect-ratio: 1 / 1;
4}
5
6canvas {
7 /* We don't want to show the frames that we are scanning for QR codes. It's
8 * nicer to just see the video stream. */
9 display: none;
10}
11
12ul {
13 margin: 0px;
14}
15
16li > a.active {
17 /* Set the scanned QR codes to a green color. */
18 background-color: #198754;
19 border-color: #005700;
20}