-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
60 lines (60 loc) · 1.41 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
<!DOCTYPE html>
<html>
<head>
<title>glsl-look-at</title>
<link href='http://fonts.googleapis.com/css?family=Roboto:400,100,300|Ubuntu+Mono' rel='stylesheet' type='text/css'>
<style media="screen">
article {
position: fixed;
bottom: 1.5rem;
right: 1.5rem;
max-width: 400px;
z-index: 3;
padding: 1.5rem;
background: rgba(0,0,0,0.75);
color: #fff;
border-radius: 0.25rem;
font-family: 'Ubuntu Mono', monospace;
font-weight: 100;
font-size: 0.9rem;
}
h1 {
font-family: Roboto, Helvetica, sans-serif;
font-weight: 300;
margin: 0; padding: 0;
margin-bottom: 1rem;
line-height: 1em;
}
a {
text-decoration: none;
color: #66c4ff;
}
p {
color: rgba(255,255,255,0.8);
line-height: 1.5em;
}
p:last-of-type {
margin-bottom: 0;
}
@media screen and (max-width: 600px) {
article {
display: none;
}
}
</style>
</head>
<body>
<article>
<h1>glsl-look-at</h1>
<p>
Generates a 3D lookAt matrix in GLSL.
</p>
<p>
<strong>
<a href="http://github.com/stackgl/glsl-look-at">Check it out on GitHub</a>
</strong>
</p>
</article>
<script charset="utf-8" src="bundle.js"></script>
</body>
</html>