-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathstyle.css
69 lines (61 loc) · 1 KB
/
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
body {
margin: 0px;
color: white;
overflow: hidden !important;
font-family: 'Hepta Slab', serif;
}
#ARCanvas {
display: none;
}
#threeCanvas {
z-index: 10;
}
#webcamVideo {
z-index: 1;
}
#threeCanvas, #webcamVideo {
left: 50%;
min-height: 100%;
min-width: 100%;
position: absolute;
top: 50%;
transform: translate(-50%, -50%);
width: auto !important;
height: auto !important;
}
a {
text-decoration: none;
color: #499fd1;
}
a:hover {
color: white;
}
.userManual {
position: fixed;
text-align: center;
width: 100vw;
z-index: 20;
top: 33vh;
line-height: 2em;
background-color: rgba(0,0,0,0.4);
padding-top: 0.5em;
padding-bottom: 0.5em;
opacity: 1;
transition: opacity 1s;
}
.notice {
font-weight: bold;
background-color: rgba(0,0,0,0.4);
font-size: 22px;
position: fixed;
bottom: 0px;
width: 100vw;
text-align: center;
z-index: 20;
padding-top: 0.5em;
padding-bottom: 0.5em;
box-sizing: border-box;
}
.noticeText {
margin-bottom: 0.5em;
}