-
Notifications
You must be signed in to change notification settings - Fork 1
/
embed.html
66 lines (63 loc) · 1.59 KB
/
embed.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Embedded editor</title>
<style>
body {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
margin: 30px;
}
#container {
text-align: center;
}
h1 {
font-size: 1.5em;
}
h3 {
font-size: 1em;
margin: 0.5em;
}
iframe.embed {
display: inline-block;
width: 60%;
}
iframe.embed {
display: inline-block;
border: 1px solid black;
border-radius: 5px;
resize: both;
overflow: hidden;
max-width: 90vw;
max-height: 90vh;
min-width: 60vw;
min-height: 60vh;
margin: 1em;
}
a {
color: steelblue;
}
</style>
</head>
<body>
<div id="container">
<h1>
Embedded
<a href="https://github.com/live-codes/livecodes">LiveCodes</a> Editors
</h1>
<h3 id="empty-embed">Empty</h3>
<iframe class="embed" src="https://livecodes.io/"></iframe>
<h3 id="prefilled-embed">Prefilled</h3>
<iframe
class="embed"
src="https://livecodes.io/#https://gist.github.com/hatemhosny/a0a32216df59e53879b7cd83856cdde4"
></iframe>
<h3 id="codeblock">Code Block</h3>
<iframe
class="embed"
src="https://livecodes.io/?mode=codeblock&js=script.jsx#https://gist.github.com/hatemhosny/a0a32216df59e53879b7cd83856cdde4"
></iframe>
</div>
</body>
</html>