1234567891011121314151617181920212223242526272829 |
- body {
- background-color: #3d5afe;
- }
-
- #scan {
- width: 100%;
- height: 100%;
- object-fit: contain;
- opacity: 0.75;
- }
-
- #toggle-webcam {
- display: inline-block;
- width: 64px;
- height: 64px;
-
- border: 0;
- font-size: 36px;
- color: #fff;
- background: rgba(61, 90, 254, 0.8);
-
- position: absolute;
- right: 0;
- top: 0;
- }
-
- #toggle-webcam:hover {
- cursor: pointer;
- }
|