forked from ThorstenBux/ar-magazine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvideo-style.css
112 lines (89 loc) · 1.34 KB
/
video-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
100
101
102
103
104
105
106
107
108
109
110
111
112
html,
body {
margin: 0;
overflow: hidden;
}
html {
font-family: sans-serif;
}
#loading {
width: 100%;
position: absolute;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.45);
z-index: 9999999;
}
#loading img {
height: 5em;
}
#loading span{
color: black;
font-weight: bold;
}
.ui {
position: fixed;
margin: 0.5rem;
background-color: rgba( 255,255,255,0.6 );
border-radius: 6px;
}
.stats {
top: 0;
left: 0;
z-index: 200;
margin: 0.5rem;
padding: 0.5rem 0.5rem 0;
}
.stats-item {
margin: 0 0 0.5rem;
}
.stats-item-title {
margin: 0 0 0.25rem;
font-size: 0.75rem;
}
#stats div {
position: relative !important;
}
.marker {
right: 0;
bottom: 0;
z-index: 200;
margin: 0.5rem;
padding: 0.25rem 0.5rem;
font-size: 0.75rem;
color: inherit;
text-decoration: none;
}
#app {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
#video {
position: absolute;
top: 0;
left: 0;
display: block;
width: 100% !important;
height: 100% !important;
object-fit: cover;
}
#canvas {
position: absolute;
left: 0;
top: 0;
z-index: 100;
display: block;
width: 100% !important;
height: 100% !important;
object-fit: cover;
}
#arvideo {
display: none;
}