-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
45 lines (40 loc) · 783 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
/* CSS files add styling rules to your content */
body {
font-family: helvetica, arial, sans-serif;
margin: 2em;
}
h1 {
font-style: italic;
color: #373fff;
}
div#text {
position: absolute;
left: 6px;
top: 6px;
padding: 6px;
max-width: 450px;
background-color: rgba(255, 255, 255, 0.7);
z-index: 10;
}
/* By default, hide the DOM Overlay element. */
#overlay {
display: none;
}
/* Show the DOM Overlay element while active (:xr-overlay pseudoclass) */
#overlay:xr-overlay {
display: initial;
}
#greeting {
background-color: rgba(1, 1, 1, 0.25);
margin: 10px;
}
#exit-ar {
position: absolute;
right: 40px;
bottom: 40px;
background: rgba(127, 127, 127, 0.25);
color: white;
border: 1px solid rgba(255, 255, 255, 0.25);
padding: 6px 8px;
font-weight: bold;
}