-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.css
More file actions
53 lines (47 loc) · 762 Bytes
/
index.css
File metadata and controls
53 lines (47 loc) · 762 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
#map {
width: 100%;
height:100%
}
#popup {
position: absolute;
display: none;
background: #fff;
padding: 10px;
border-radius: 6px;
box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
z-index: 10;
max-width: 420px;
font-family: monospace;
font-size: 12px
}
pre {
background: #f6f6f6;
padding: 6px;
border-radius: 4px;
overflow: auto;
max-height: 140px
}
.copy-btn {
margin-left: 8px;
border: 0;
background: #eee;
padding: 2px 6px;
border-radius: 4px;
cursor: pointer;
font-size: 12px
}
.layer-title {
display: flex;
align-items: center;
justify-content: space-between;
font-weight: 600;
margin-bottom: 6px
}
.layer-left {
display: flex;
align-items: center;
gap: 8px
}
button.close {
margin-top: 8px
}