This repository was archived by the owner on Apr 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 439
Expand file tree
/
Copy pathindex.css
More file actions
94 lines (87 loc) · 1.63 KB
/
index.css
File metadata and controls
94 lines (87 loc) · 1.63 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
html {
scroll-behavior: smooth;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-weight: lighter;
font-size: 13px;
}
label {
margin-bottom: 0
}
::-webkit-scrollbar {
width: 0px;
/* remove scrollbar space */
background: transparent;
/* optional: just make scrollbar invisible */
}
.app-wrap {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: grid;
grid-template-columns: 1fr 853px 1fr;
grid-template-rows: 1fr 480px 100px 1fr;
background-image: url("assets/concrete-texture.png");
background-repeat: repeat;
}
.demo-wrap {
grid-column: 2/3;
grid-row: 2/3;
position: relative;
display: flex;
justify-content: center;
align-items: center;
}
.app-wrap-fullscreen {
grid-template-columns: 1fr!important;
grid-template-rows: 1fr!important;
}
.demo-wrap-fullscreen {
grid-column: 1/2!important;
grid-row: 1/2!important;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.controls-wrap-fullscreen{
display: none!important;;
}
.controls-wrap{
margin: 25px 0px;
grid-column: 2/3;
grid-row: 3/4;
position: relative;
display: flex;
justify-content: space-between;
align-items: center;
}
.layer {
top: 0;
left: 0;
}
.layer-videoElem{
z-index: 10;
width: 100%;
height: 100%;
}
.layer-canvas{
position: absolute;
z-index: 11;
pointer-events: none;
}
.fps-meter-layer{
position: absolute;
top: 0;
left: 0;
z-index:999;
width: 100%;
height: 100%;
}
.btn-spaceout{
margin: 0 10px;
}