-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
65 lines (58 loc) · 933 Bytes
/
index.css
File metadata and controls
65 lines (58 loc) · 933 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
60
61
62
63
64
65
body {
font-family: 'Courier New', Courier, monospace;
margin: 0;
padding: 0;
}
#view {
z-index: 1;
position: fixed;
top: 0;
left: 0;
/* border: 1px solid #A7A7A7; */
}
#map {
z-index: 2;
position: fixed;
top: 0;
left: 0;
border: 5px solid #A7A7A7;
width: 20%;
height: 20%;
}
#info {
z-index: 2;
display: flex;
flex-direction: row;
position: fixed;
top: calc(100vh - 30px);
left: 10px;
justify-content: space-between;
color: #49C431;
}
#close {
border-radius: 50%;
}
#close:hover {
cursor: pointer;
background-color: #680404;
color: #fafafa;
}
#loading {
z-index: 3;
width: 100vw;
height: 100vh;
position: fixed;
font-size: 2rem;
top: 0;
left: 0;
background-color: #5C665E;
color: #fafafa;
display: flex;
justify-content: center;
align-items: center;
}
.fullsize {
width: 100% !important;
height: 100% !important;
background-color: #680404;
}