Spaces:
Sleeping
Sleeping
Create static/css/style.css
Browse files- static/css/style.css +55 -0
static/css/style.css
ADDED
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
body {
|
2 |
+
font-family: Arial, sans-serif;
|
3 |
+
background-color: #f4f4f4;
|
4 |
+
margin: 0;
|
5 |
+
padding: 0;
|
6 |
+
}
|
7 |
+
|
8 |
+
.container {
|
9 |
+
max-width: 800px;
|
10 |
+
margin: 50px auto;
|
11 |
+
text-align: center;
|
12 |
+
}
|
13 |
+
|
14 |
+
h1 {
|
15 |
+
color: #333;
|
16 |
+
}
|
17 |
+
|
18 |
+
.btn {
|
19 |
+
background-color: #007bff;
|
20 |
+
color: white;
|
21 |
+
padding: 10px 20px;
|
22 |
+
border: none;
|
23 |
+
border-radius: 5px;
|
24 |
+
cursor: pointer;
|
25 |
+
margin: 10px;
|
26 |
+
}
|
27 |
+
|
28 |
+
.btn:hover {
|
29 |
+
background-color: #0056b3;
|
30 |
+
}
|
31 |
+
|
32 |
+
#videoElement {
|
33 |
+
width: 100%;
|
34 |
+
max-width: 600px;
|
35 |
+
margin: 20px 0;
|
36 |
+
}
|
37 |
+
|
38 |
+
#cameraSelect {
|
39 |
+
padding: 5px;
|
40 |
+
margin: 10px;
|
41 |
+
}
|
42 |
+
|
43 |
+
#capturedImage {
|
44 |
+
margin-top: 20px;
|
45 |
+
}
|
46 |
+
|
47 |
+
#hfResult {
|
48 |
+
text-align: left;
|
49 |
+
background: #fff;
|
50 |
+
padding: 10px;
|
51 |
+
border-radius: 5px;
|
52 |
+
margin-top: 20px;
|
53 |
+
max-height: 300px;
|
54 |
+
overflow-y: auto;
|
55 |
+
}
|