-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.css
64 lines (60 loc) · 1.11 KB
/
app.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
body {
margin: 0;
width: 100%;
height: 100%;
overflow: hidden;
}
video {
visibility: hidden;
position: fixed;
min-width: 100%;
min-height: 100%;
}
#camera_button {
position: absolute;
border: 0;
border-radius: 22px;
width: 44px;
height: 44px;
bottom: 8px;
right: 8px;
opacity:0.4;
background-color: black;
-webkit-mask-image: url(camera.svg);
mask-image: url(camera.svg);
mask-size: 30px;
mask-position: center;
mask-repeat: no-repeat;
-webkit-mask-size: 30px;
-webkit-mask-position: center;
-webkit-mask-repeat: no-repeat;
}
#compass {
position: absolute;
z-index: 99;
top: 30px;
opacity:0.4;
right: 4px;
width: 40px;
height: 40px;
border-radius: 50%;
background-color: black;
-webkit-mask-image: url(compass.svg);
mask-image: url(compass.svg);
}
#compass_slice {
width: 100%;
height: 100%;
border-radius: 50%;
position: absolute;
}
.canvas {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
}
#canvas4 {
pointer-events: none;
}