-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
59 lines (51 loc) · 800 Bytes
/
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
@font-face {
font-family: 'EdwardianEF-Light';
font-weight: normal;
src: url('assets/fonts/EdwardianEF-Light.woff') format('woff');
}
* {
box-sizing: border-box;
}
body {
padding: 0;
margin: 0;
font-family: 'EdwardianEF-Light';
}
canvas#three-cv {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
cursor: pointer;
}
canvas#mask-cv {
position: absolute;
top: 0;
left: 0;
width: 160px;
height: 90px;
background: transparent;
border: 1px solid green;
display: none;
}
canvas#mobile-vid-cv {
position: absolute;
top: 90px;
left: 0;
width: 480px;
height: 270px;
background: transparent;
border: 1px solid red;
display: none;
}
.no-webgl canvas#mobile-vid-cv {
width: 160;
height: 90;
}
video {
position: absolute;
top: 0;
left: 0;
display: none;
}