-
Notifications
You must be signed in to change notification settings - Fork 3.5k
/
CesiumWidget.css
116 lines (103 loc) · 2.16 KB
/
CesiumWidget.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
111
112
113
114
115
116
.cesium-widget {
position: relative;
}
.cesium-widget,
.cesium-widget canvas {
width: 100%;
height: 100%;
touch-action: none;
}
.cesium-widget-credits {
display: block;
position: absolute;
bottom: 0;
left: 0;
color: #fff;
font-size: 10px;
text-shadow: 0px 0px 2px #000000;
padding-right: 5px;
}
.cesium-widget-credits a,
.cesium-widget-credits a:visited {
color: #fff;
}
.cesium-widget-errorPanel {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
text-align: center;
background: rgba(0, 0, 0, 0.7);
z-index: 99999;
}
.cesium-widget-errorPanel:before {
display: inline-block;
vertical-align: middle;
height: 100%;
content: "";
}
.cesium-widget-errorPanel-content {
width: 75%;
max-width: 500px;
display: inline-block;
text-align: left;
vertical-align: middle;
border: 1px solid #510c00;
border-radius: 7px;
background-color: #f0d9d5;
font-size: 14px;
color: #510c00;
}
.cesium-widget-errorPanel-content.expanded {
max-width: 75%;
}
.cesium-widget-errorPanel-header {
font-size: 18px;
font-family: "Open Sans", Verdana, Geneva, sans-serif;
background: #d69d93;
border-bottom: 2px solid #510c00;
padding-bottom: 10px;
border-radius: 3px 3px 0 0;
padding: 15px;
}
.cesium-widget-errorPanel-scroll {
overflow: auto;
font-family: "Open Sans", Verdana, Geneva, sans-serif;
white-space: pre-wrap;
padding: 0 15px;
margin: 10px 0 20px 0;
}
.cesium-widget-errorPanel-buttonPanel {
padding: 0 15px;
margin: 10px 0 20px 0;
text-align: right;
}
.cesium-widget-errorPanel-buttonPanel button {
border-color: #510c00;
background: #d69d93;
color: #202020;
margin: 0;
}
.cesium-widget-errorPanel-buttonPanel button:focus {
border-color: #510c00;
background: #f0d9d5;
color: #510c00;
}
.cesium-widget-errorPanel-buttonPanel button:hover {
border-color: #510c00;
background: #f0d9d5;
color: #510c00;
}
.cesium-widget-errorPanel-buttonPanel button:active {
border-color: #510c00;
background: #b17b72;
color: #510c00;
}
.cesium-widget-errorPanel-more-details {
text-decoration: underline;
cursor: pointer;
}
.cesium-widget-errorPanel-more-details:hover {
color: #2b0700;
}