index.css 2.46 KB
Newer Older
1
2
3
4
5
6
7
html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: sans-serif;
8
9
}

10
11
button.cesium-infoBox-camera {
    display: none;
12
13
}

14
15
#Navbar {
    overflow: hidden;
16
17
}

18
19
20
21
22
.container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100vh;
	background-color: #ffffff;
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
.cesium-container {
    grid-column: 1;
    background: #000;
}

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

.chart-container {
    max-width: 800px;
    margin: 20px auto;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
	display: flex;
    justify-content: center;
    align-items: center;
49
50
51
52
53
54
55
56
57
58
59
}

#menu {
    position: absolute;
    left: 10px;
    top: 10px;
}

.nowrap {
    white-space: nowrap;
}
60
61
62
63
	
#myChart2 {
    max-width: 400px;
    max-height: 400px;
64
65
    width: 100%;
    height: 100%;
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
}

.backdrop {
    display: inline-block;
    background: rgba(42, 42, 42, 0.7);
    border-radius: 5px;
    border: 1px solid #444;
    color: #fff;
    line-height: 150%;
    font-size: small;
	box-shadow: 0 0 10px 1px #000;
}

.cesium-infoBox {

    width: 80%;
    height: auto;
    right: 5px;
    background: rgba(0, 0, 0, 0.65);
    border-radius: 10px;
    border: 1px solid #444;
    padding: 5px 10px;
    color: #fff;
    font: 1em "Fira Sans", sans-serif;
    float: right;
}

.cesium-infoBox-title {
    background: rgba(0, 0, 0, 0);
    font: 1em "Fira Sans", sans-serif;
}

.cesium-infoBox-close {
    z-index: 99999;
}

#legend {
    position: relative;
    left: 5px;
    top: 5px;
}

.my-legend .legend-title {
    text-align: left;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 90%;
}

.my-legend .legend-scale ul {
116
    margin: 0;
117
    margin-bottom: 5px;
118
    padding: 0;
119
120
    float: left;
    list-style: none;
121
122
}

123
124
125
126
127
.my-legend .legend-scale ul li {
    list-style: none;
    margin-left: 0;
    line-height: 18px;
    margin-bottom: 2px;
128
129
}

130
131
132
133
134
135
136
137
.my-legend ul.legend-labels li span {
    display: block;
    float: left;
    height: 16px;
    width: 30px;
    margin-right: 5px;
    margin-left: 0;
    border: 1px solid #999;
138
}
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156

.my-legend a {
    color: #777;
}

.credit {
    width: 100px;
    height: 100px;
    overflow: hidden;
    position: fixed;
    z-index: 99999;
    background: url(Images/hft.jpg) no-repeat;
    background-size: 100px;
    bottom: 40px;
    left: 10px;
    box-shadow: 0 0 10px 1px #000;
}