-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpreviewImage.html
68 lines (58 loc) · 1.5 KB
/
previewImage.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
<html>
<head>
<link href="https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@300;400;600&display=swap" rel="stylesheet">
<style>
body {
width: 1200px;
height: 628px;
color: white;
font-family: 'Source Code Pro', monospace;
}
.wrap {
width: 1200px;
height: 628px;
display: flex;
align-items: center;
padding-left: 80px;
padding-right: 80px;
background: #000000;
}
#defund {
font-size: 70px;
width: 900px;
font-weight: 400;
padding-bottom: 40px;
margin: 0;
margin-top: -25px;
line-height: 1.15;
}
.officials {
width: 900px;
font-weight: 600;
font-size: 45px;
margin: 0;
padding-bottom: 40px;
}
.desc {
width: 700px;
font-size: 35px;
font-weight: 400;
margin: 0;
width: 1200px;
font-weight: 200;
line-height: 1.3;
}
</style>
</head>
<body>
<div class="wrap">
<div class="center">
<p id="defund">Defund12.org <br><span style="font-size: 45px; font-weight: 300;">in {{city}}, {{state}}</span></p>
<p class="officials">{{text}}</p>
<p class="desc" style="width: 1000px">
Demand they reallocate egregious police budgets towards education, social services, and dismantling racial inequality.
</p>
</div>
</div>
</body>
</html>