This repository has been archived by the owner on Jun 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (76 loc) · 2.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>#TheShowMustBePaused</title>
<link
href="https://fonts.googleapis.com/css2?family=Lato:wght@300;400&display=swap"
rel="stylesheet"
/>
<style>
html,
body {
margin: 0px;
height: 100%;
background: #212121;
font-family: Lato;
color: white;
}
* {
margin: 0px;
}
main {
margin: 0 auto;
padding: 20px;
max-width: 650px;
font-size: 1.5em;
padding-top: 100px;
font-weight: 100;
line-height: 1.3;
}
main h2 {
padding-bottom: 20px;
font-size: min(1.8em, 7vw);
}
main section {
margin-top: 30px;
}
main a {
display: inline-block;
text-decoration: none;
background: white;
border-radius: 8px;
color: black;
padding: 10px 20px;
margin: 6px;
line-height: auto;
}
</style>
</head>
<body>
<main>
<h2>#TheShowMustBePaused</h2>
<blockquote>
“ What we saw on that tape left us shell shocked; a white
Minneapolis police officer kneeling directly on my brother's neck,
obstructing his ability to breathe. As some officers knelt on his neck,
other officers participated and watched; no one took any action to save
my brother's life. Those officers would continue to brutalize my brother
until he died.” — <b>Philonise Floyd</b>
</blockquote>
<section>
<a
href="https://www.change.org/p/mayor-jacob-frey-justice-for-george-floyd"
>George Floyd Memorial Fund</a
>
<a
href="https://www.change.org/p/mayor-jacob-frey-justice-for-george-floyd"
>Justice for George Floyd petition</a
>
<a href="https://blacklivesmatter.com">Donate to Black Lives Matter</a>
<a href="https://minnesotafreedomfund.org">Minnesota Freedom Fund</a>
</section>
</main>
</body>
</html>