-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmain.css
More file actions
107 lines (90 loc) · 1.45 KB
/
main.css
File metadata and controls
107 lines (90 loc) · 1.45 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
.nameable {
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}
html {
overflow: hidden;
background-color: lightgrey;
touch-action: none;
height: 100%;
height: -moz-available;
/* WebKit-based browsers will ignore this. */
height: -webkit-fill-available;
/* Mozilla-based browsers will ignore this. */
height: fill-available;
}
body {
margin: 0;
min-height: 100vh;
position: fixed;
}
#map-container {
width: 100vw;
height: 100vh;
}
#map {
width: 900px;
height: 1000px;
position: absolute;
will-change: inherit;
}
map-room {
display: flex;
align-items: center;
justify-content: center;
text-align: center;
z-index: 2;
}
map-door {
z-index: 4;
}
map-street {
display: flex;
align-items: center;
justify-content: center;
text-align: center;
z-index: 1;
}
#directions {
z-index: 5;
}
.highlight {
z-index: 5;
outline: 3px solid darkblue;
position: absolute;
}
direction-line {
z-index: 5;
}
.raised {
z-index: 3;
}
#floating {
z-index: 6;
position: absolute;
padding: 5px;
background-color: #c6c6c6;
border: #bababa 1px solid;
overflow-y: auto;
max-height: 100%;
}
#search {
z-index: 6;
background-color: #c6c6c6;
border: #bababa 1px solid;
}
.link {
color: #0000ee;
cursor: pointer;
text-decoration: underline;
}
#collapse {
visibility: visible;
}
pinch-zoom {
min-width: 100%;
min-height: 100%;
}
/*# sourceMappingURL=main.css.map */