forked from WilloIzCitron/imgToMsav
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathguides.html
52 lines (50 loc) · 1.25 KB
/
guides.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>IMG to MSAV - Guides</title>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/p5.js"></script>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Audiowide', sans-serif;
font-weight: 400;
}
a {
text-decoration: none;
}
body {
font-size: 1.5em;
min-height: 100%;
}
#wrapper {
user-select: none;
display: grid;
min-height: 100vh;
margin: 0;
grid-gap: 50px;
grid-template-rows: 80px auto auto auto 1fr auto 0;
grid-template-columns: 0 1fr auto 1fr 25vw;
}
.command {
padding: 10px 20px;
margin: 10px 0;
background: rgba(0,0,0,.125);
border-radius: 6px;
}
#defaultCanvas0 {
display: none;
}
</style>
</head>
<body>
<div id="wrapper">
</div>
<script src="scripts/prep.js" charset="utf-8"></script>
<script src="scripts/classes.js" charset="utf-8"></script>
<script src="scripts/app-guides.js" charset="utf-8"></script>
<script src="scripts/css.js" charset="utf-8"></script>
</body>
</html>