Philipp Schrader | e2e27ff | 2024-02-25 22:08:55 -0800 | [diff] [blame^] | 1 | video { |
2 | width: 100%; | ||||
3 | aspect-ratio: 1 / 1; | ||||
4 | } | ||||
5 | |||||
6 | canvas { | ||||
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 | |||||
12 | ul { | ||||
13 | margin: 0px; | ||||
14 | } | ||||
15 | |||||
16 | li > a.active { | ||||
17 | /* Set the scanned QR codes to a green color. */ | ||||
18 | background-color: #198754; | ||||
19 | border-color: #005700; | ||||
20 | } |