stylesCustom.css 770 Bytes
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;
}