-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
116 lines (102 loc) · 4.75 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#896a67" />
<meta property="og:title" content="Glory Greatest" />
<meta property="og:type" content="website" />
<meta
property="og:description"
content='Generate official press releases in the style of "Papers, Please," a game by Lucas Pope. This web application allows you to create, modify, and present press releases like those from the fictional world of Arstotzka.'
/>
<link rel="icon" type="image/png" href="img/logo.ico" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/html2canvas/1.4.1/html2canvas.min.js"></script>
<title>Glory Greatest</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="logoCenter">
<a
target="_blank"
href="https://store.steampowered.com/app/239030/Papers_Please/"
>
<img
class="logo"
src="img/paperspleaselogo.png"
style="width: 250px"
alt="Papers, please"
/>
<p
id="game"
style="
color: white;
font-size: 20px;
line-height: 20px;
margin-left: 20px;
"
>
a game by Lucas Pope
</p>
</a>
<h1 style="font-size: 64px; line-height: 64px">
PRESS RELEASE GENERATOR
</h1>
</div>
<div class="mainContent">
<div class="content">
<div class="container">
<textarea
id="releaseInput"
placeholder='1993 AUGUST 8
MINISTRY OF SCHEDULED CELEBRATION
PARADIZNA, ARSTOTZKA
"PAPERS, PLEASE" 10TH ANNIVERSARY
The Ministry of Scheduled Celebration congratulates Arstotzka and the Ministry of Admission for ten successful years of service at Grestin Border Checkpoint. A nation is defined by its borders, and the checkpoint in West Grestin represents an unparalleled success in presenting Arstotzka at its best.
Several ministries have contributed significant resources to effect the celebration of this momentous occasion.
---- The Ministry of Discounts & Flash Sales has reduced the price of border checkpoint simulator "Papers, Please" software on all platforms, to $1.99, until end-of-day August 11.
---- The Ministry of Fabric has produced several garments, appropriate for off-duty inspectors or ministry staff.
---- The Ministry of Melody has collected several popular songs to amuse inspectors, now available on partnered music broadcasters.
---- The Ministry of Pocket Electronics has developed a cutting-edge simulated hand-held training tool, "LCD Please", to sharpen inspectors' wits.
---- The Ministry of Giving has secured a donation of $100,000 to support the International Rescue Committee in their mission to help those affected by conflict and disaster.
Finally, the Ministry of Gratitude Assignment would like to extend great thanks to all 5 million inspectors that have dutifully served at Grestin Border Checkpoint over the last 10 years. Your unwavering eye and deft skill are testaments to the vast resourcefulness of the Arstotzkan spirit.'
></textarea>
<label for="toggleFooterText">Show default footer text:</label>
<input type="checkbox" id="toggleFooterText" checked />
<div id="releaseOutput" class="release">
<img id="releaseHeader" src="img/Release-Header.png" />
<pre id="mainText"> ... default text ... </pre>
<pre id="approvalText" style="display: none">
Glory to Arstotzka.
APPROVED FOR RELEASE BY THE MINISTRY OF MEDIA
APPROVED FOR RELEASE BY THE MINISTRY OF COMMUNICATION
APPROVED FOR RELEASE BY THE MINISTRY OF MEDIA & COMMUNICATION
APPROVED FOR RELEASE BY THE MINISTRY OF ADMISSION
APPROVED FOR RELEASE BY THE MINISTRY OF SCHEDULED CELEBRATION
APPROVED FOR RELEASE BY THE MINISTRY OF DISCOUNTS & FLASH SALES
APPROVED FOR RELEASE BY THE MINISTRY OF FABRIC
APPROVED FOR RELEASE BY THE MINISTRY OF MELODY
APPROVED FOR RELEASE BY THE MINISTRY OF POCKET ELECTRONICS
APPROVED FOR RELEASE BY THE MINISTRY OF GRATITUDE ASSIGNMENT
APPROVED FOR RELEASE WITH EDITS BY THE MINISTRY OF SECURITY
APPROVED FOR RELEASE WITH EDITS BY THE MINISTRY OF INFORMATION</pre
>
<img
id="releaseFooter"
src="img/Release-Footer.png"
style="display: none"
/>
</div>
<div class="downloadButtonContainer">
<button
id="download"
onclick="downloadRelease()"
style="background-image: url('img/downloadPressed.png')"
></button>
</div>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>