-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (41 loc) · 1.02 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
<!doctype html>
<html lang="en">
<head>
<title>Kerf Bending Pattern Generator</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!--
<script src="lib/p5.min.js"></script>
<script src="lib/[email protected]"></script>
-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.6.0/p5.min.js"></script>
<script src="https://unpkg.com/[email protected]"></script>
<style>
html,
body {
margin: 0;
padding: 0;
}
.ui-container {
width: 400px;
display: flex;
justify-content: center;
flex-flow: row wrap;
}
.ui-container button,
.ui-container input,
.ui-container select {
flex: 1 1 auto;
font-size: 1em;
padding: 0.5em;
margin: 0.5em;
box-sizing: border-box;
}
</style>
</head>
<body>
<main></main>
<script src="custom.js"></script>
<script src="sketch.js"></script>
</body>
</html>