vlibras-plugin.scss
790 Bytes
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
html {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
*, *:before, *:after {
-webkit-box-sizing: inherit;
-moz-box-sizing: inherit;
box-sizing: inherit;
}
html, body {
width: 100%;
height: 100%;
}
body {
margin: 0;
overflow: hidden;
font-size: 16px;
}
[vp] {
height: 100%;
width: 100%;
z-index: 1;
canvas { width: 100%; height: 100% }
[vp-info-screen-btn] {
position: fixed;
top: 7px;
right: 5px;
z-index: 4;
}
[vp-message-box] {
z-index: 5;
}
[vp-info-screen] {
z-index: 3;
}
[vp-controls] {
position: fixed;
bottom: 7px;
max-width: 560px;
z-index: 2;
}
}
@media (min-width: 560px) {
[vp] [vp-controls] {
left: 50%;
margin-left: -275px;
}
}