Yaswanth56 commited on
Commit
639b0cd
·
verified ·
1 Parent(s): c5b2070

Create static/css/style.css

Browse files
Files changed (1) hide show
  1. static/css/style.css +53 -0
static/css/style.css ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ display: flex;
3
+ flex-direction: column;
4
+ align-items: center;
5
+ justify-content: center;
6
+ height: 100vh;
7
+ margin: 0;
8
+ font-family: Arial, sans-serif;
9
+ background-color: #f0f0f0;
10
+ }
11
+
12
+ #camera-icon {
13
+ font-size: 50px;
14
+ cursor: pointer;
15
+ margin-bottom: 20px;
16
+ }
17
+
18
+ #video {
19
+ width: 100%;
20
+ max-width: 640px;
21
+ border: 2px solid #333;
22
+ border-radius: 8px;
23
+ }
24
+
25
+ #canvas {
26
+ display: none;
27
+ }
28
+
29
+ #button-container {
30
+ margin-top: 20px;
31
+ display: flex;
32
+ gap: 10px;
33
+ }
34
+
35
+ button {
36
+ padding: 10px 20px;
37
+ font-size: 16px;
38
+ cursor: pointer;
39
+ background-color: #007bff;
40
+ color: white;
41
+ border: none;
42
+ border-radius: 5px;
43
+ }
44
+
45
+ button:hover {
46
+ background-color: #0056b3;
47
+ }
48
+
49
+ #status {
50
+ margin-top: 20px;
51
+ font-size: 18px;
52
+ color: #333;
53
+ }