-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathstyle.css
100 lines (86 loc) · 1.36 KB
/
style.css
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
body {
font-family: sans-serif;
text-align: center;
padding: 3rem;
margin-top: 1rem;
font-size: 1.125rem;
line-height: 1.5;
transition: all 725ms ease-in-out;
background-color: #090A26;
}
h3 {
font-size: 2rem;
font-weight: bolder;
margin-bottom: 1rem;
color: aliceblue;
}
.msg_label {
color: white;
}
#cap_message {
color: rgb(216, 214, 214);
font-size: 1.3rem;
margin-bottom: 2rem;
}
#nav {
margin-top: 2rem;
}
#label_auto_capture {
color: white;
margin-right: 2rem;
}
#camera {
margin-left: 2rem;
}
#inputVideo {
width: 640px;
height: 480px;
background-color: black;
grid-column: 1;
grid-row: 1;
z-index: 1;
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
}
#capture {
width: 640;
height: 480;
grid-column: 1;
grid-row: 1;
z-index: 2;
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
}
#capture1 {
width: 640;
height: 480;
grid-column: 1;
grid-row: 1;
z-index: 0;
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
}
#best_capture {
width: 640;
height: 480;
grid-column: 1;
grid-row: 1;
z-index: 3;
-webkit-transform: scaleX(-1);
transform: scaleX(-1);
visibility: hidden;
}
#face_cover {
width: 640;
height: 480;
grid-column: 1;
grid-row: 1;
z-index: 3;
visibility: hidden;
}
#div_video {
display: grid;
width: 640;
height: 480;
margin: auto;
}