-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathindex.html
36 lines (31 loc) · 1.11 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
32
33
34
35
36
<!doctype html>
<html class="auto">
<head>
<meta name="viewport" content="width=device-width,initial-scale=1.0,user-scalable=0">
<title>ink-mde</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Fira+Code&family=Inter:wght@300;400;700&display=swap">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css" integrity="sha384-vKruj+a13U8yHIkAyGgK1J3ArTLzrFGBbBc0tDp4ad/EyewESeXE/Iv67Aj8gKZ0" crossorigin="anonymous">
<style>
* {
box-sizing: border-box;
}
body, :host {
--ink-font-family: 'Inter', Helvetica, sans-serif;
--ink-code-font-family: 'Fira Code', monospace;
margin: 0;
}
@media (prefers-color-scheme: dark) {
.auto {
background-color: #222;
color: white;
}
}
</style>
</head>
<body>
<div id="app"></div>
<script type="module" src="/examples/demo.ts"></script>
<!-- <script type="module" src="/examples/web-component.ts"></script> -->
</body>
</html>