-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmission-types.html
51 lines (51 loc) · 1.57 KB
/
mission-types.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Mission Types</title>
<link rel="stylesheet" href="css/dashboard.css" />
<link rel="stylesheet" href="css/inline-selection.css" />
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/echarts.min.js"></script>
<script src="js/inline-selection.js" defer></script>
<script type="module" src="js/mission-types.js"></script>
<style>
body {
margin: 0px;
height: 100vh;
}
</style>
</head>
<body>
<div
id="mission-types-container"
style="height: 90vh; width: 100%; overflow: hidden"
></div>
<div
id="mission-types-settings-spacer"
class="spacer"
style="display: flex; justify-content: center; align-items: center"
>
<div id="mission-types-settings-extra" style="width: 30%">
<span class="inline-sentence">
Normalize by
<span class="inline-dropdown">
<span class="inline-selected" id="mission-types-normalize-state"
>mission</span
>
<ul class="inline-selections">
<li class="inline-selection">mission</li>
<li class="inline-selection">orbit</li>
</ul>
</span>
type
</span>
</div>
<div
id="mission-types-settings-container"
style="height: 100px; width: 30%"
></div>
</div>
</body>
</html>