-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcredits.html
65 lines (61 loc) · 1.93 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="credits/credits-style.css">
<script src="credits/leave-credits.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<!-- BEGIN Content -->
<body onload="zoom()">
<div class="sticky">
click anywhere to end the credits
</div>
<main>
<!-- BEGIN Scroller -->
<div class="scroll-window">
<!-- BEGIN Section -->
<section style="font-size: 20pt">
<p>Built for you by the <span><b>Tam High CS Club.</b></span></p>
</section>
<!-- END Section -->
<!-- BEGIN -->
<article style="margin-bottom: .5em">
<dl style="font-size: 16pt">
<dt>Created by</dt>
<dd>Linus Törnqvist<br/>
<br>
<dt>Front-end Developers</dt>
<dd>Foster Angus<br/>
<br>
<dt>Back-end Developers</dt>
<dd>Adnan Ashraf<br/>Caden Marinozzi<br/>
<br>
<dt>Credits Page</dt>
<dd>Carson Harrell<br/>
<br>
<dt>Research and Testing</dt>
<dd>Mohamad Mamoon<br/>Garrett Mason<br/>
<br>
<dt>Languages Used</dt>
<dd>Javascript <br /> HTML <br /> CSS <br/>
</dl><br />
</article>
<section style="padding:0">
<h3>Thanks for playing <3</h3>
</section>
<!-- only for mobile -->
<section>
<p id="tap-screen">tap the screen to continue</p>
</section>
</div>
</main>
</body>
<script>
// built so window will zoom out on phone and wont be to the side
function zoom() {
if (window.innerWidth < 481) {
document.body.style.zoom = "30%"
}
}
</script>
</html>