-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
61 lines (61 loc) · 2.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Pedro Pascal's Triangle of Prestige</title>
<link rel="icon" href="favicon.png" id='linkIcon'>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Chivo+Mono&display=swap" rel="stylesheet">
<link rel="stylesheet" href="index.css">
</head>
<body>
<div id='infoBox'>
<div id='title' class='title'>Pedro Pascal's Triangle of Prestige</div>
<div>Total play time: <span id='infoPlayTime'></span></div>
<div>Next completion in: <span id='infoNext'></span></div>
<div>Total time remaining: <span id='infoTimeRemaining'></span></div>
<div id='infoProgressContainer'><div id='infoProgress'></div></div>
<div>There are no upgrades.<br>There is only Pedro Pascal.</div>
<hr>
<div>Discuss on <a href='https://discord.gg/pC9RY5B'>discord</a>.</div>
<div><button id='resetButton'>Reset Game</button><button id='imexShow'>Import/Export</button></div>
<div id='att'>🐌 approved</div>
</div>
<div id='resetContainer'>
Are you sure you want to reset?
<div>
<button id='resetYes' class='buttonUtil'>Yes</button>
<button id='resetNo' class='buttonUtil'>No</button>
</div>
</div>
<div id='winContainer'>
<div>
Thank you for completing <span class='title'>Pedro Pascal's Triangle of Prestige</span>!
</div>
<div>
You are my ultimate fan!
</div>
<div>
I am both impressed and a little worried but don't worry, daddy will always love you!
</div>
<div>
Your total play time was <span id='winPlayTime'></span>.
</div>
<img id='winImg' src='./ppoint.png'>
<button id='winClose'>Close</button>
</div>
<div id='imexContainer'>
<div>Import / Export</div>
<textarea id='imexText' rows='4' cols='20'></textarea>
<div>
<button id='imexImport' class='buttonUtil'>Import</button>
<button id='imexExport' class='buttonUtil'>Export</button>
<button id='imexClose' class='buttonUtil'>Close</button>
</div>
</div>
<div id='cellsContainer'></div>
<script src="index.js"></script>
</body>
</html>