This repository has been archived by the owner on Jul 16, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
100 lines (82 loc) · 2.02 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
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Start</title>
<link rel="stylesheet" href="assets/css/index.css">
<style media="screen">
html {
background-color: black;
}
.iCantThinkOfAName {
position: absolute;
margin-left: 30px;
margin-right: 30px;
margin-top: 30px;
margin-bottom: 30px;
left: 0;
right: 0;
bottom: 0;
top: 0;
max-width: 100%;
border: 2px solid white;
text-align: center;
}
h1,h2,h3,h4,h5,h6,a,p {
color: white;
}
h1 {
margin-top: 100px;
}
.button {
border: 1px solid white;
width: 100px;
text-align: center;
height: 50px;
line-height: 50px;
margin: 0 auto;
transition: 0.5s;
}
.button:hover {
background-color: white;
color: black;
}
a {
text-decoration: none;
}
</style>
</head>
<body>
<div class='iCantThinkOfAName'>
<!-- <h2>English Extension 2 Submission</h2> -->
<h3>28771800</h3>
<div style="height:50px;"></div>
<h1>The Mousetrap Murder</h1>
<p>(headphones & webcam recommended)</p>
<a href="pages/hitch_intro.html">
<div class="button">start</div>
</a>
<!-- <a onclick="Howler.mute(true)" style="font-size:12px;">Mute</a> -->
<a href='pages/acknowledgements.html' style="font-size:12px;text-decoration:underline;">Acknowledgements</a>
</div>
<script type="text/javascript">
// Ensure time is removed from previous runs
try {
localStorage.removeItem('startTime');
} catch (e) {
console.log(e)
}
// Erase entire localStorage cache
localStorage.clear()
const project = require('./package.json')
const os = require('os')
const howler = require('howler')
console.log(project.version)
console.log(os.release())
new Howl({
src: ['assets/sounds/orchestra_warmup.mp3'],
volume: 0.4,
}).play();
</script>
</body>
</html>