-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (80 loc) · 1.62 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
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html>
<head>
<title>NewBoCo Robots</title>
<style>
* { box-sizing: border-box; }
html, body
{
overflow: hidden;
margin: 0;
padding: 0;
border: none;
}
iframe
{
margin: 0;
padding: 0;
border: none;
}
main {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
}
aside {
width: 480px;
height: 100%;
height: calc(100% - 204px);
position: absolute;
top: 204px;
right: 0;
background-color: #333;
display: flex;
flex-direction: column;
justify-content: space-between;
}
aside iframe {
width: 100%;
padding: 5px;
}
aside h1 {
margin: 0;
padding: 5px;
background: white;
}
aside img {
width: 250px;
margin: 0 auto;
display: block;
}
</style>
</head>
<body>
<main>
<iframe
src="https://editor.netsblox.org/?action=present&Username=dahlbys&ProjectName=MerryGoRoundClient&editMode=true&noRun"
width="100%"
height="100%"
frameborder="0"
scrolling="auto">
Loading NetsBlox…
</iframe>
</main>
<aside>
<h1><img alt="NewBoCo K–12" src="K12.jpg" /></h1>
<iframe
class="video"
src="https://player.twitch.tv/?channel=dahlbyk&parent=newboco.github.io"
width="560"
height="315"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
Loading video…
</iframe>
</aside>
</body>
</html>