stylesCustom.css 1.21 KB
Newer Older
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
#cesiumGlobeContainerParent {
  /* Overwrite the padding in the dashboard's template; padding = 1.25rem */
  /* padding: 0rem; */

  /* To allow the dropdown to be placed on top of the 3D globe (1 of 2) */
  position: relative;
}

#cesiumGlobeContainer {
  width: 100%;
  height: 40%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: sans-serif;
  background: #000;
}

.custom-toolbar {
  display: inline-block;
  background: rgba(42, 42, 42, 0.7);
  border-radius: 5px;
  border: 1px solid #444;
  padding: 5px 10px;
  color: #fff;
  line-height: 150%;
  font-size: small;

  /* To allow the dropdown to be placed on top of the 3D globe (2 of 2) */
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 10;
}
35
36
37
38

.hidden {
  visibility: hidden;
}
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

.loadingIndicator {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -33px;
  margin-left: -33px;
  width: 66px;
  height: 66px;
  background: url(../images/ajax-loader.gif) center no-repeat;
}

.cover {
  display: none;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.75);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  /* value should be larger than that for our custom toolbar so that it is drawn on top of it*/
  z-index: 15;
}