-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (75 loc) · 2.1 KB
/
index.html
File metadata and controls
84 lines (75 loc) · 2.1 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<script type="module">
import { Buffer } from 'buffer';
window.Buffer = Buffer;
</script>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/assets/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preload" href="/fonts/BandeinsStrange-Regular.woff2" as="font" type="font/eot" crossorigin />
<style>
* {
font-family: 'IBMPlexMono';
box-sizing: border-box;
}
/**
Explicitly load Inter var from public/ so it does not block LCP's critical path.
*/
@font-face {
font-family: 'Bandeins Strange Variable';
font-weight: 500;
font-style: normal;
font-display: block;
font-named-instance: 'Regular';
src: url(/fonts/BandeinsSans-Regular.woff2) format('woff2');
}
@font-face {
font-family: 'Source Code Pro';
font-weight: 500;
font-style: normal;
font-display: block;
font-named-instance: 'Regular';
src: url(/fonts/SourceCodePro-Regular.woff2) format('woff2');
}
@font-face {
font-family: 'IBMPlexMono';
font-weight: 500;
font-style: normal;
font-display: block;
font-named-instance: 'Regular';
src: url(/fonts/IBMPlexMono-Regular.ttf);
}
@supports (font-variation-settings: normal) {
* {
font-family: 'Bandeins Strange Variable';
font-weight: 600;
}
}
html,
body {
margin: 0;
padding: 0;
}
button {
user-select: none;
}
html {
font-variant: none;
font-smooth: always;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html {
min-height: 100%;
}
</style>
<title>Trustless computer</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>