Spaces:
Runtime error
Runtime error
Create static/css/style.css
Browse files- static/css/style.css +54 -0
static/css/style.css
ADDED
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
body {
|
2 |
+
font-family: Arial, sans-serif;
|
3 |
+
display: flex;
|
4 |
+
justify-content: center;
|
5 |
+
align-items: center;
|
6 |
+
height: 100vh;
|
7 |
+
margin: 0;
|
8 |
+
background-color: #f0f0f0;
|
9 |
+
}
|
10 |
+
|
11 |
+
.container {
|
12 |
+
text-align: center;
|
13 |
+
max-width: 600px;
|
14 |
+
padding: 20px;
|
15 |
+
background: white;
|
16 |
+
border-radius: 10px;
|
17 |
+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
18 |
+
}
|
19 |
+
|
20 |
+
h1 {
|
21 |
+
margin-bottom: 20px;
|
22 |
+
}
|
23 |
+
|
24 |
+
.btn {
|
25 |
+
padding: 10px 20px;
|
26 |
+
margin: 5px;
|
27 |
+
font-size: 16px;
|
28 |
+
cursor: pointer;
|
29 |
+
background-color: #007bff;
|
30 |
+
color: white;
|
31 |
+
border: none;
|
32 |
+
border-radius: 5px;
|
33 |
+
}
|
34 |
+
|
35 |
+
.btn:hover {
|
36 |
+
background-color: #0056b3;
|
37 |
+
}
|
38 |
+
|
39 |
+
video, canvas {
|
40 |
+
width: 100%;
|
41 |
+
max-width: 500px;
|
42 |
+
border: 1px solid #ccc;
|
43 |
+
border-radius: 5px;
|
44 |
+
margin: 10px 0;
|
45 |
+
}
|
46 |
+
|
47 |
+
.controls {
|
48 |
+
margin-top: 10px;
|
49 |
+
}
|
50 |
+
|
51 |
+
#message {
|
52 |
+
margin-top: 20px;
|
53 |
+
color: #333;
|
54 |
+
}
|