-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
106 lines (92 loc) · 1.87 KB
/
style.css
File metadata and controls
106 lines (92 loc) · 1.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
color: white;
}
.container {
text-align: center;
max-width: 1200px;
width: 100%;
padding: 20px;
}
.info {
margin-bottom: 20px;
background: rgba(255, 255, 255, 0.1);
padding: 20px;
border-radius: 15px;
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
}
.info h1 {
margin-bottom: 10px;
font-size: 2.5em;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.info p {
margin: 5px 0;
font-size: 1.1em;
opacity: 0.9;
}
.video-container {
margin-bottom: 20px;
display: flex;
justify-content: center;
}
.input_video {
width: 320px;
height: 180px;
border-radius: 10px;
border: 3px solid rgba(255, 255, 255, 0.3);
background: #000;
}
.canvas-container {
display: flex;
justify-content: center;
margin-top: 20px;
}
canvas {
border-radius: 15px;
border: 3px solid rgba(255, 255, 255, 0.3);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
#open-hand-indicator {
animation: pulse 2s infinite;
transition: all 0.3s ease;
}
@keyframes pulse {
0% {
transform: scale(1);
box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.7);
}
70% {
transform: scale(1.05);
box-shadow: 0 0 0 10px rgba(0, 255, 0, 0);
}
100% {
transform: scale(1);
box-shadow: 0 0 0 0 rgba(0, 255, 0, 0);
}
}
/* Responsive design */
@media (max-width: 768px) {
.container {
padding: 10px;
}
.info h1 {
font-size: 2em;
}
.input_video {
width: 280px;
height: 157px;
}
}