-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
23 lines (22 loc) · 1.24 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<title>Kepler.gl Visualizations</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="box">
<div id="headerContent" class="row header">
<select name="files" id="fileSelect" onchange="loadFromInput()">
<option value=""> Please select a file to load </option>
</select>
<a id="GitHubReference" href="https://github.com/JulianEgbert/bachelor-thesis-kepler.gl" target="_blank" title="GitHub Repository. Here you can also find help in the README file or give feedback."><i class="fa fa-github"></i></a>
</div>
<iframe id="kepler.gl-content" class="row content" srcdoc='<div class="content"> Please select a file to load! You can find a list of files in the dropdown menu above.</div><style>.content{color: white;text-align: center;width: 100%;height: 3.5rem;font-size: 3rem;position: absolute;top: 50%;left: 0px;margin-left: 0px;margin-top: -calc(3.5rem / 2);}</style>'> </iframe>
</div>
</body>
<script src="script.js">
</script>
</html>