-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtiles.html
More file actions
68 lines (58 loc) · 1.61 KB
/
Copy pathtiles.html
File metadata and controls
68 lines (58 loc) · 1.61 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
<!doctype html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Penlock Tiles</title>
<meta name="robots" content="noindex, follow" />
<link rel="stylesheet" href="./styles/index.css" />
</head>
<script type="module">
import "./sdk/framework.js"
import "./sdk/layout/all.js"
import "./sdk/penlock-bip39.js"
import "./sdk/table/tiles-table.js"
</script>
<style>
.column {
justify-content: center;
}
tiles-table {
width: 100%;
}
</style>
<penlock-header
image="./assets/derive.png"
title="Penlock Tiles"
></penlock-header>
<section class="notes">
<section class="card">
<img class="circled" src="./icons/lightbulb.svg" />
<h3>Recommendations</h3>
<ul>
<li>
Print this document double-sided, preferably on thick paper,
such as photo paper.
</li>
</ul>
<print-me></print-me>
</section>
<section class="card">
<h3>Assembly</h3>
<ol>
<li>
Carefully cut the tiles along the black lines, so that the tiles
are equally sized.
</li>
<li>Check that the tiles have the same character on both sides.</li>
</ol>
</section>
</section>
<section class="print">
<section class="sheet column strict">
<tiles-table borders="true"></tiles-table>
</section>
<section class="sheet column strict">
<tiles-table></tiles-table>
</section>
</section>
<penlock-footer></penlock-footer>