-
Notifications
You must be signed in to change notification settings - Fork 329
/
index.html
73 lines (59 loc) · 1.52 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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title>schteppe.github.com</title>
<style type="text/css">
h1 {
font-size:28px;
font-family: Vera, Helvetica,Georgia;
padding:0;
margin-top:7px;
font-size:36px;
color:#FFF;
text-decoration:none;
line-height:1.2em;
}
h1 a {
text-decoration:none;
}
a {
color:white;
text-decoration:none;
}
p {
margin-bottom: 40px;
}
a.button {
padding: 15px;
background-color: white;
color:black;
margin: 10px;
border-radius: 10px 10px 10px 10px;
-moz-border-radius: 10px 10px 10px 10px;
-webkit-border-radius: 10px 10px 10px 10px;
}
body {
margin-top: 50px;
background-color:black;
font-family:Helvetica;
font-size:14px;
color:white;
line-height:1.6em;
text-align: center;
}
h1 .small {
font-size:16px;
}
</style>
</head>
<body>
<h1>
p2.js
<span class="small">by <a href="https://github.com/schteppe">schteppe</a></span>
</h1>
<p>A 2D physics engine for JavaScript</p>
<a class="button" href="https://github.com/schteppe/p2.js">View on Github</a>
<a class="button" href="docs">Documentation</a>
</body>
</html>