-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (23 loc) · 823 Bytes
/
index.html
File metadata and controls
27 lines (23 loc) · 823 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; style-src 'self' 'unsafe-inline'; connect-src *; img-src *">
<title>Operator</title>
<style type="text/css">
*, body { margin: 0; }
body { background: #F5F8FA; }
#app { position: absolute; top: 0; bottom: 0; right: 0; left: 0; }
#app > div { position: relative; height: 100%; }
</style>
<!-- Font -->
<link href="assets/css/Roboto.css" rel="stylesheet" />
<!-- Icons -->
<link href="assets/css/ss-air.css" rel="stylesheet" />
</head>
<body>
<main id="app"></main>
<script type="text/javascript" src="assets/js/ss-air.js"></script>
<script type="text/javascript" src="assets/js/source.js"></script>
</body>
</html>