-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.html
80 lines (79 loc) · 1.7 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
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
<!DOCTYPE html>
<html lang="en-US" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Rust Wasm Blurhash</title>
<style>
:root {
--blue: #1261C9;
--indigo: #1e12c9;
--indigo-darker: #1a10b4;
}
*:focus {
outline: 3px solid transparent;
box-shadow: 0 0 0 3px var(--indigo);
}
body {
hyphens: auto;
-webkit-hyphens: auto;
-moz-hyphens: auto;
-ms-hyphens: auto;
}
h1, h2 {
line-height: 1.25;
}
h2 {
margin-top: 0;
margin-bottom: 0;
}
p, li, h1, h2 {
max-width: 36em;
}
pre {
padding: 1rem;
overflow-x: auto;
-webkit-overflow-scroll: touch;
border-radius: 4px;
background-color: #eaeaef;
font-size: 1rem;
}
a:link, a:visited {
transition: color 0.12s ease;
color: var(--indigo);
}
a:hover, a:focus, a:active {
color: var(--indigo-darker);
}
a:focus {
text-decoration: none;
}
canvas {
display: block;
}
img {
display: block;
max-width: 100%;
}
.z-n1 {
z-index: -1;
}
.transition-opacity {
transition: opacity 1s ease-in-out;
}
.vs2 > * + * {
margin-top: 0.5rem;
}
.vs3 > * + * {
margin-top: 1rem;
}
.vs4 > * + * {
margin-top: 2rem;
}
</style>
</head>
<body class="f4 lh-copy sans-serif bg-near-white near-black">
<div id="root"></div>
<script src="./bootstrap.js"></script>
</body>
</html>