-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (60 loc) · 2.51 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
<!--
WebGL Water
http://madebyevan.com/webgl-water/
Copyright 2011 Evan Wallace
Released under the MIT license
-->
<!DOCTYPE html>
<html><head>
<title>pooledFi</title>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<script src="OES_texture_float_linear-polyfill.js"></script>
<script src="lightgl.js"></script>
<script src="cubemap.js"></script>
<script src="renderer.js"></script>
<script src="water.js"></script>
<script src="main.js"></script>
<link rel="shortcut icon" href="/favicon.ico">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<style type="text/css">
body {background: black; color: white; overflow: hidden; margin:0; padding-top: 2em; }
a { color: inherit; cursor: pointer; }
img { display: none; }
ul { padding: 0 0 0 20px; }
h1 { text-align: center; }
h2 { padding-top: 10px; }
small { display: block; font-size: 11px; line-height: 15px; margin-top: 0.5em; }
canvas { position: relative; top: 0; left: 0; }
#help { position: absolute; top: 0; right: 0; bottom: 0; width: 50%; text-align: center; overflow: auto; }
#loading { position: absolute; left: 0; top: 50%; right: 300px; text-align: center; margin-top: -8px; }
@media (max-width: 600px) {
small { font-size: 8px; line-height: 10px; }
#help { font-size: 10px; line-height: 12px; position:relative; padding: 0; width: 100%;}
#help>#content {transform: initial; position: initial;}
}
#content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
</style>
</head><body>
<div id="loading">Loading...</div>
<div id="help">
<div id="content">
<h1>pooled.fi</h1>
<p>Pooled KEEP and ETH staking</p>
<a href="https://app.pooled.fi"><button type="button" class="btn btn-primary">APP</button></a>
<a href="https://docs.pooled.fi"><button type="button" class="btn btn-secondary">DOCS</button></a>
<a href="https://github.com/keep-community"><button type="button" class="btn btn-secondary">CODE</button></a>
<p><small>Animation made by <a href="http://madebyevan.com/">Evan Wallace</a></small></p>
</div>
</div>
<img id="tiles" src="tiles.jpg">
<img id="xneg" src="xneg.jpg">
<img id="xpos" src="xpos.jpg">
<img id="ypos" src="ypos.jpg">
<img id="zneg" src="zneg.jpg">
<img id="zpos" src="zpos.jpg">
</body></html>