Skip to content

Commit 342e1e7

Browse files
authored
Add files via upload
1 parent 94c7486 commit 342e1e7

File tree

3 files changed

+76
-0
lines changed

3 files changed

+76
-0
lines changed

codicon.ttf

78.5 KB
Binary file not shown.

embed-demo.html

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Sample Page</title>
7+
<style>
8+
body {
9+
font-family: Arial, sans-serif;
10+
margin: 20px;
11+
line-height: 1.6;
12+
}
13+
h1 {
14+
color: #333;
15+
text-align: center;
16+
margin: 0;
17+
}
18+
p {
19+
color: #666;
20+
text-align: justify;
21+
margin: 0;
22+
}
23+
.container {
24+
max-width: 800px;
25+
margin: 0 auto;
26+
display: flex;
27+
flex-direction: column;
28+
gap: 20px;
29+
}
30+
patch-embedder {
31+
margin-left: auto;
32+
margin-right: auto;
33+
}
34+
</style>
35+
</head>
36+
<body>
37+
<div class="container">
38+
<h1>Embedding Demo</h1>
39+
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
40+
<patch-embedder width="600px" height="400px"></patch-embedder>
41+
<patch-embedder width="600px" height="400px"></patch-embedder>
42+
</div>
43+
<script src="./index.js" type="module"></script>
44+
</body>
45+
</html>

embedded.html

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Patch Editor V3</title>
7+
<style>
8+
body, html {
9+
margin: 0;
10+
padding: 0;
11+
overflow: hidden;
12+
background-color: white;
13+
height: 100%;
14+
15+
}
16+
* {
17+
box-sizing: border-box;
18+
}
19+
body {
20+
display: flex;
21+
justify-content: center;
22+
align-items: center;
23+
flex-direction: column;
24+
}
25+
</style>
26+
</head>
27+
<body>
28+
<patch-loader patch="./examples/FaustFM.json"></patch-loader>
29+
<script src="./index.js" type="module"></script>
30+
</body>
31+
</html>

0 commit comments

Comments
 (0)