-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
110 lines (96 loc) · 1.73 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
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
108
109
110
body{
display: flex;
justify-content: center;
align-items: center;
}
.mainWindow{
position: absolute;
z-index: 0;
top: 0;
bottom: 0;
left: 0;
right: 0;
width: 100%;
height: 100%;
}
.subWindow{
position: absolute;
bottom: 2.5em;
left: 2.5em;
width: 25em;
height: 15em;
z-index: 2;
}
#map {
top: 0;
bottom: 0;
left: 0;
right: 0;
width: 100%;
height: 100%;
}
#imageWindow{
z-index: -1;
}
#mapillaryWindowToggle{
z-index: -1;
cursor: pointer
}
.mapillaryPopup .mapboxgl-popup-content{
border-radius: 1em;
width: 15em;
height: 10em;
display: flex;
justify-content: center;
align-items: center;
}
.mapillaryPreviewImg{
object-fit: cover;
width: 100%;
height: 100%;
border-radius: 0.5em;
top: 0;
}
#mapillaryWindowDiv{
position: absolute;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
}
#mapillaryWindow{
z-index: 2;
width: 100%;
height: 100%;
background: rgba(0,0,0);
}
#mapillaryWindowLoader {
mix-blend-mode: darken;
display: none;
position: absolute;
width:5em;
z-index: 2;
}
#mapillaryWindowToggleButton {
position: absolute;
bottom: 14.91em;
left: 23.42em;
width: 0;
height: 0;
background-color: transparent;
border-right: 3em solid transparent;
border-bottom: 3em solid rgba(0,0,0,0.5);
border-left: 3em solid transparent;
border-top: 0px solid transparent;
transform: rotate(45deg);
}
#mapillaryWindowToggleButtonIcon{
position: absolute;
bottom: 14.6em;
left: 24.6em;
width: 3em;
height: 3em;
fill: #fff;
transform: rotate(45deg);
}