-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (27 loc) · 1.14 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
24
25
26
27
28
29
30
31
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>eodash-style-editor</title>
<link rel="stylesheet" href="./src/index.css" />
<script type="module" src="/src/eodash-style-editor.js"></script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin/>
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=IBM+Plex+Sans:wght@400;600;700&family=Roboto+Mono:wght@300;400;600&display=swap" rel="stylesheet" />
<link href=" https://cdn.jsdelivr.net/npm/[email protected]/min/vs/editor/editor.main.min.css " rel="stylesheet" />
<style>
eox-map {
border: 1px solid gray;
}
eodash-style-editor {
height: 100vh;
width: 100vw;
}
</style>
</head>
<body>
<eodash-style-editor></eodash-style-editor>
</body>
</html>