-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
90 lines (81 loc) · 2.84 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
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Chipmunk JS</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<style>
body {
padding-top: 60px;
}
.masthead {
text-align: center;
}
.masthead > h1 {
font-size: 80px;
font-weight: bold;
line-height: 1;
letter-spacing: -2px;
}
.masthead p {
font-size: 30px;
font-weight: 200;
line-height: 1.25;
}
.masthead .btn {
padding: 19px 24px;
font-size: 24px;
font-weight: 200;
}
</style>
<link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.6.2/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="brand" href="index.html">Chipmunk JS</a>
<div class="nav-collapse collapse">
<ul class="nav">
<li><a href="demo.html">Demo</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="container">
<div class="masthead">
<h1>Chipmunk JS</h1>
<p>Chipmunk for Javascript!</p>
<p>This is a port of the Chipmunk Physics library to Javascript!</p>
<br>
<p>
<a href="https://github.com/lytc/chipmunk-js/archive/master.zip" class="btn btn-primary btn-large">Download on GitHub</a>
</p>
<hr>
<ul class="unstyled inline">
<li>
<iframe src="http://ghbtns.com/github-btn.html?user=lytc&repo=chipmunk-js&type=watch&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="100px" height="20px"></iframe>
</li>
<li>
<iframe src="http://ghbtns.com/github-btn.html?user=lytc&repo=chipmunk-js&type=fork&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="102px" height="20px"></iframe>
</li>
<li>
<iframe src="http://ghbtns.com/github-btn.html?user=lytc&repo=chipmunk-js&type=follow&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="165" height="20"></iframe>
</li>
</ul>
<hr>
</div>
</div>
</body>
</html>