-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
75 lines (69 loc) · 1.24 KB
/
index.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
span {
margin-right: 0.5em;
}
div.debug {
position: fixed;
bottom: 20px;
left: 10px;
z-index: 1;
width: 100%;
background-color: rgba(1, 1, 1, 0.2);
color: #ff7500;
font-size: 0.75em;
padding: 0.5em;
width: initial;
}
#alert-popup {
border-radius: 5px;
position: absolute;
bottom: 10%;
left: 5%;
display: block;
width: 80%;
margin: 1em;
padding: 0.25em;
color: #ff7500;
font-size: 0.75em;
text-align: center;
background-color: white;
}
#place-label {
position: absolute;
top: 5%;
left: 0%;
display: flex;
justify-content: center;
width: 100%;
}
#place-label > span {
z-index: 99999;
padding: 0.25em;
color: #ff7500;
text-align: center;
background-color: white;
font-size: 1.5em;
border-radius: 5px;
}
.arjs-loader {
position: fixed;
z-index: 999;
overflow: show;
margin: auto;
top: 0;
left: 0;
bottom: 0;
right: 0;
width: 50px;
height: 50px;
pointer-events: none;
border: 0.4em solid transparent;
border-color: #eee;
border-top-color: #444;
border-radius: 50%;
animation: loadingspin 1s linear infinite;
}
@keyframes loadingspin {
100% {
transform: rotate(360deg)
}
}