-
Notifications
You must be signed in to change notification settings - Fork 0
/
credits.html
84 lines (74 loc) · 2.51 KB
/
credits.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Reduct Redux: A Game to Teach Coding Comprehension</title>
<style>
@import url('https://fonts.googleapis.com/css?family=Fira+Mono|Fira+Sans|Nanum+Pen+Script|Material+Icons');
body {
font-family: "Fira Sans", Arial, sans-serif;
background: #594764;
margin: 0;
padding: 0;
color: #FFF;
text-align: center;
font-size: 18px;
}
button {
font-family: inherit;
background: lightblue;
font-size: 0.9rem;
padding: 0.25rem;
border: 1px solid #594764;
border-top: 0;
border-bottom: 0;
border-radius: 10px;
cursor: pointer;
}
h1 {
font-family: "Nanum Pen Script", sans-serif;
font-size: 3em;
margin: 0.5em 0;
}
button:hover {
background: #b9e7f7;
}
dt {
font-weight: bold;
}
dd {
margin: 0 0 1em 0;
}
a {
color: #FFF;
}
</style>
</head>
<body>
<h1>Credits</h1>
<dl>
<dt>Yiting Wang</dt> <dd>Designer, Developer</dd>
<dt>Yishu Zhang</dt> <dd>Designer, Developer</dd>
<dt>David Li</dt> <dd>Designer, Lead Developer</dd>
<dt>Yuchang Zhou</dt> <dd>Artist, UI Designer</dd>
<dt>Kevin Ma</dt> <dd>Artist</dd>
<dt>Erik Andersen</dt> <dd>Advisor</dd>
<dt>Andrew Myers</dt> <dd>Advisor</dd>
<dt>François Guimbretière</dt> <dd>Advisor</dd>
<dt>Ian Arawjo</dt> <dd>Sound Designer, Artist</dd>
</dl>
<p>With respect to the original Reduct team:</p>
<dl>
<dt>Ian Arawjo</dt> <dd>Designer, Sound Designer, Artist</dd>
<dt>Shiliang Guo</dt> <dd>Developer</dd>
<dt>David Li</dt> <dd>Developer</dd>
<dt>Kevin Ma</dt> <dd>Artist</dd>
<dt>Erik Andersen</dt> <dd>Advisor</dd>
<dt>Andrew Myers</dt> <dd>Advisor</dd>
<dt>François Guimbretière</dt> <dd>Advisor</dd>
</dl>
<p>
<a href="https://github.com/lidavidm/reduct-redux">Open source</a> under the <a href="https://github.com/lidavidm/reduct-redux/blob/master/LICENSE">MPL-2.0</a> license. Built in ES6.
</p>
</body>
</html>