shuishen
2022-11-02 764cb58899b8ca0e9632a5e83c6950569442c41c
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
@import url(../shared.css);
body {
    margin: 0;
    padding: 0;
}
 
.cesium-infoBox-description {
    font-family: sans-serif;
    font-size: 13px;
    padding: 4px 10px;
    margin-right: 4px;
    color: #edffff;
}
 
.cesium-infoBox-description a:link,
.cesium-infoBox-description a:visited,
.cesium-infoBox-description a:hover,
.cesium-infoBox-description a:active {
    color: #edffff;
}
 
.cesium-infoBox-description table {
    color: #edffff;
}
 
.cesium-infoBox-defaultTable {
    width: 100%;
    color: #edffff;
}
 
.cesium-infoBox-defaultTable tr:nth-child(odd) {
    background-color: rgba(84, 84, 84, 0.8);
}
 
.cesium-infoBox-defaultTable tr:nth-child(even) {
    background-color: rgba(84, 84, 84, 0.25);
}
 
.cesium-infoBox-defaultTable th {
    font-weight: normal;
    padding: 3px;
    vertical-align: middle;
    text-align: center;
}
 
.cesium-infoBox-defaultTable td {
    padding: 3px;
    vertical-align: middle;
    text-align: left;
}
 
.cesium-infoBox-description-lighter {
    color: #000000;
}
 
.cesium-infoBox-description-lighter a:link,
.cesium-infoBox-description-lighter a:visited,
.cesium-infoBox-description-lighter a:hover,
.cesium-infoBox-description-lighter a:active {
    color: #000000;
}
 
.cesium-infoBox-description-lighter table {
    color: #000000;
}
 
.cesium-infoBox-defaultTable-lighter {
    width: 100%;
    color: #000000;
}
 
.cesium-infoBox-defaultTable-lighter tr:nth-child(odd) {
    background-color: rgba(179, 179, 179, 0.8);
}
 
.cesium-infoBox-defaultTable-lighter tr:nth-child(even) {
    background-color: rgba(179, 179, 179, 0.25);
}
 
.cesium-infoBox-loadingContainer {
    margin: 5px;
    text-align: center;
}
 
.cesium-infoBox-loading {
    display: inline-block;
    background-image: url(../Images/info-loading.gif);
    width: 16px;
    height: 11px;
}