forked from galacticcouncil/api-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·40 lines (36 loc) · 999 Bytes
/
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>API Gen</title>
<meta name="description" content="API Gen" />
<base href="/" />
<style>
:root {
--toolbar-height: 72px;
--drawer-width: 225px;
--color-main: #3b3b3b;
--color-secondary: #d55e8a;
--color-alternative: #efefef;
--color-action__hover: #f1f8f7;
}
body {
font-family: 'Helvetica', sans-serif;
font-size: 14px;
line-height: 1.5;
font-style: normal;
font-weight: 400;
margin: 0;
color: var(--color-main);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
</style>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="app"></div>
<script type="module" src="./out/index.js"></script>
</body>
</html>