-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
54 lines (54 loc) · 1.32 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>Animated Average Images</title>
<link rel="stylesheet" href="style.css">
<style>
.support {
position: fixed;
width: 80%;
margin: 0 10%;
bottom: 2em;
text-align: center;
color: white;
}
.ui {
position: fixed;
left: 1em;
top: 1em;
background: rgba(255,255,255,0.5);
border-radius: 0.2em;
}
.ui > div {
margin: 1em;
}
html {
height: 100%;
}
body {
background: black;
height: 100%;
}
.loading {
position: fixed;
width: 100%;
top: 40%;
height: 1em;
color: white;
background: none;
}
</style>
</head>
<body>
<div class="support" data-cell="supportMessage"></div>
<div class="content override-height" data-cell="canvas"></div>
<div class="ui">
<div data-cell="viewof query"></div>
<div data-cell="viewof subreddit"></div>
</div>
<div class="loading">loading...</div>
<script src="observable-press.js" data-notebook="@zzzev/animated-average-images-ii" data-override-height></script>
</body>
</html>