-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqgis2web.css
67 lines (58 loc) · 1.11 KB
/
qgis2web.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
html, body {
height: 100%;
padding: 0;
margin: 0;
font-family: sans-serif;
font-size: small;
}
th, td {
vertical-align: top;
text-align: left;
}
#map {
width: 100%;
height: 100%;
}
.ol-popup {
display: none;
position: absolute;
background-color: white;
-moz-box-shadow: 0 1px 4px rgba(0,0,0,0.2);
-webkit-filter: drop-shadow(0 1px 4px rgba(0,0,0,0.2));
filter: drop-shadow(0 1px 4px rgba(0,0,0,0.2));
padding: 15px;
border-radius: 10px;
border: 1px solid #cccccc;
bottom: 12px;
left: -50px;
height: auto;
width: auto;
min-width: 100px;
max-height:400px;
overflow: auto;
}
.ol-popup-closer {
text-decoration: none;
position: absolute;
top: 2px;
right: 8px;
}
.ol-popup-closer:after {
content: "X";
}
.ol-attribution a {
text-decoration: none;
color: #666;
font-family: sans-serif;
font-size: 100%;
}
#popup-content>ul>li:nth-child(even) {
background-color: #eee;
}
#popup-content ul {
list-style-type: none;
padding-left: 0;
}
#popup-content li {
margin-bottom:0.25em;
}