-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
394 lines (338 loc) · 12.4 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>KCmorgue.org</title>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Lora:wght@400;700&family=Poppins:wght@400;600;700&display=swap" rel="stylesheet">
<style>
/* General Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Body Styling */
body {
font-family: 'Lora', serif;
font-size: 0.9rem;
background: linear-gradient(to bottom, #01010F, #000000, #0F0101);
color: #e4e4e4;
line-height: 1.8;
width: 98vw;
height: 100%;
text-align: center;
align-items: center;
margin: 0 auto;
margin-top:10px;
padding: 10px; /* Add padding to ensure spacing between border and content */
border: 1px dotted #00FCCF;
border-radius: 12px;
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
font-family: 'Poppins', sans-serif;
line-height: 1.4;
margin-bottom: 15px;
}
h1 {
color: #6bbaba;
}
h2, h3 {
color: #6bbaba;
}
p {
color: #b0b0b0;
margin-bottom: 15px;
}
a {
color: #d4a373;
text-decoration: none;
font-weight: 600;
transition: color 0.3s;
}
a:hover {
color: #a8764e;
}
ul {
list-style: none;
padding: 0;
}
li {
margin-bottom: 10px;
}
img {
max-width: 100%;
height: auto;
border-radius: 12px;
}
/* Header */
.header {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
background: #66666611;
padding: 20px;
border-radius: 0;
}
.header img {
height: 96px;
width: auto;
}
/* Navigation */
.nav {
display: flex;
gap: 15px;
align-items: center;
}
.nav a {
font-family: 'Poppins', sans-serif;
color: #e4e4e4;
padding: 5px 15px;
border-radius: 8px;
background: #fcccff0d;
transition: background-color 0.3s, color 0.3s, transform 0.3s;
}
.nav a:hover {
background-color: #d4a37333;
color: #d4a373;
transform: scale(1.05);
}
/* Main Content */
.main {
display: flex;
gap: 20px;
padding: 20px;
max-width: 1200px;
margin: 20px auto;
}
.column {
background: #66666611;
padding: 20px;
border: 1px dotted #00FCCF44;
border-radius: 12px;
flex: 1;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
transition: transform 0.3s, box-shadow 0.3s;
}
.column.narrow {
flex: none;
width: 20%;
min-height: 100%;
}
.column.medium {
flex: 0.75;
}
.column.wide {
flex: 1.5;
}
.column img {
width: 100%;
height: auto;
border-radius: 12px;
}
.column:hover {
transform: translateY(-8px);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}
/* Footer */
.footer {
width: 100%;
background: #66666611;
padding: 20px;
text-align: center;
border-radius: 0;
}
.footer small {
color: #b0b0b0;
}
/* Dynamic iframe */
.dynamic-iframe {
border: none;
width: 100%;
height: auto;
background: #66666611;
padding: 20px;
border-radius: 12px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
display: none;
transition: transform 0.3s, box-shadow 0.3s;
}
.dynamic-iframe:hover {
transform: translateY(-8px);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}
.main.with-iframe {
display: flex;
}
.main.with-iframe .column.narrow {
flex: none;
}
.main.with-iframe .column.wide,
.main.with-iframe .column.medium {
display: none;
}
.main.with-iframe .dynamic-iframe {
flex: 1.5;
display: block;
}
/* Responsive Styling for Narrow Column */
@media (max-width: 768px) {
.main {
flex-direction: column;
}
.header {
flex-direction: column;
text-align: center;
}
.header img {
margin-bottom: 10px;
}
.nav {
justify-content: center;
flex-direction: row;
gap: 10px;
}
.column.narrow {
width: 100%;
min-height: auto;
margin-bottom: 20px;
}
.column.medium, .column.wide {
width: 100%;
}
.dynamic-iframe {
width: 100%;
flex: none;
}
}
@media (max-width: 480px) {
.column.narrow {
font-size: 0.85rem;
padding: 10px;
}
}
.urgent
{
background: rgba(92, 10, 10, 0.445);
padding: 20px;
border-radius: 12px;
box-shadow: 0 4px 8px rgba(87, 3, 3, 0.486);
border: 1px dotted #ff0000; width: 66vw; margin: 0 auto; height: auto;
}
.red {
color: #FCCCCC;
}
</style>
</head>
<body>
<!-- Header -->
<header class="header">
<a href="home" id="home-link"><img src="./images/mogoo.png" alt="Logo"></a>
<nav class="nav">
<a href="home" id="home-link">Home</a>
<a href="./about.html" data-target="iframe">About</a>
<a href="./contact.html" data-target="iframe">Contact</a>
</nav>
</header>
<div class="urgent">
<h1>NOT SO MERRY XMAS FROM MISSOURI -</h1>
<h1 class="red">
MO Governor Parsons says FUCK YOU to Kansas City, Black men,</h1>
<h2> frees Eric DeValkenaere, cop and convicted killer of unarmed citizen Cameron Lamb,</h2> <p>who was shot and killed on his own property for no reason by this piece of shit
Eric, who along with other KCPD storm troopers, then made sure Mr.Lamb bled to death. This happened in December 2019.</p>
<p>Read the <a href="https://kansascitydefender.com/justice/parson-frees-killer-cop-devalkenaere-execution-cameron-lamb/" target="_blank">KC Defender article</a>,
call your congressman and tell him he's a piece of shit, commit crimes, don't call 911, I don't know...</p>
<p>I do know It's too late for measured responses or being reasonable, it's been 150+ years of this shit,</p>
<h1 class="red">It's time to arm, organize, and take any steps needed</h1><p> to protect our neighborhoods from white supremacist terrorists and state sponsored thugs.</p>
</div>
<!-- Main Content -->
<main class="main">
<div class="column narrow">
<h3>KCMO & Regional:</h3>
<ul>
<li><a href="./history.html" data-target="iframe">Policing History</a></li>
<li><a href="./data.html" data-target="iframe">Data Sources</a></li>
<li><a href="./activism.html" data-target="iframe">Activism</a></li>
<li><a href="./cops.html" data-target="iframe">Cop Call-outs</a></li>
</ul><br><hr style="border: 0px transparent; border-top: 1px dotted #00FCCF;"><br>
<h4>Submissions Welcome:</h4>
If you have a comment or suggestion, or would like to contribute an essay, link, or any other content, or call out an individual officer, please email <a href="mailto:[email protected]">[email protected]</a>
<br><hr style="border: 0px transparent; border-top: 1px dotted #00FCCF;"><br>
<ul>
<li><a href="./support.html" data-target="iframe">Click here</a></li>
</ul>
<p>for other ways to help out.</p>
</div>
<div class="column wide">
<h4 style="text-align:center;">According to factual data from <a href="https://policescorecard.org/" target="_blank">policescorecard.org</a>, KCMO PD:</h4> <p style ="text-align: left;"><small>
<strong>Kills</strong> more people than <strong>95%</strong> of US police departments.
Kills more <strong>unarmed</strong> people than <strong>91%</strong> of departments.
Has an about 77% white force that both <em>arrests</em> and <em>kills</em> more Black and Brown people than they do any other group.<br>
KCPD also: solves substantially more homicides of white people than they solve homicides of any other group,
uses more "less-lethal" force than 71% of police departments,
has more funding than 96% of departments,
and spends over three million dollars a year settling lawsuits.
</small>
</p><img src="./images/doeur.png" alt="stylized morgue freezer door">
</div>
<div class="column medium">
<section class="morgue-definition">
<h2>Morgue</h2>
<p><em>Noun</em> <small>(ˈmȯrg)</small></p>
<ol>
<li>A place where the bodies of dead persons are kept temporarily pending identification or release for burial or autopsy.</li>
<li>A collection of reference works and files used as a resource, particularly in a newspaper or news service office.</li>
</ol></section><br><hr style="border: 0px transparent; border-top: 1px dotted #00FCCF;"><br><section><h3>A note:</h3>
<p>This site is the personal project of an individual Kansas Citian, and is not affiliated with any organization or entity aside from the creator.</p>
</section>
</div>
<iframe class="dynamic-iframe" id="dynamic-iframe" src=""></iframe>
</main>
<!-- Footer -->
<footer class="footer">
<small>All data is subject to the policy of the data supplier. None of my original content or design is copyrighted, use it if you like.</small>
</footer>
<!-- JavaScript -->
<script>
const main = document.querySelector('.main');
const iframe = document.getElementById('dynamic-iframe');
const iframeLinks = document.querySelectorAll('[data-target="iframe"]');
const homeLinks = document.querySelectorAll('a[href="home"]');
function handleIframeLoad(e) {
e.preventDefault();
const targetUrl = this.getAttribute('href');
if (targetUrl) {
iframe.src = targetUrl;
main.classList.add('with-iframe');
// Scroll to iframe smoothly
iframe.scrollIntoView({ behavior: 'smooth', block: 'start' });
}
}
function handleHomeClick(e) {
e.preventDefault();
iframe.src = '';
main.classList.remove('with-iframe');
// Scroll back to the top of the main section smoothly
main.scrollIntoView({ behavior: 'smooth', block: 'start' });
}
iframe.addEventListener('load', () => {
try {
const iframeDoc = iframe.contentDocument || iframe.contentWindow.document;
const iframeHeight = iframeDoc.body.scrollHeight || iframeDoc.documentElement.scrollHeight;
iframe.style.height = `${iframeHeight}px`;
if (iframeHeight < 500) {
iframe.style.height = '500px';
}
} catch (error) {
console.error('Error adjusting iframe height:', error);
iframe.style.height = '500px';
}
});
iframeLinks.forEach(link => link.addEventListener('click', handleIframeLoad));
homeLinks.forEach(link => link.addEventListener('click', handleHomeClick));
</script>
</body>
</html>