-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathog-image.og.njk
46 lines (43 loc) · 1013 Bytes
/
og-image.og.njk
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
<style>
.root {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
}
.mark {
color: white;
font-size: 50px;
opacity: 0.5;
padding: 3rem;
text-transform: uppercase;
padding-bottom: 1rem;
display: flex;
flex-direction: column;
}
.title {
color: white;
font-size: 80px;
background: #ea580c;
padding: 3rem 6rem;
transform: rotate(-5deg);
margin-left: -3rem;
margin-right: -3rem;
border: 20px solid #fff;
display: flex;
justify-content: center;
}
</style>
<div class="bg-gray-800 root">
<h2 class="mark">
<div>Applied</div>
<div>Cartography.</div>
</h2>
<h1 class="title">
<span>{{ title }}</span>
</h1>
<div class="flex-1 flex"></div>
<div class="flex justify-end font-lg p-[3rem] text-4xl text-white opacity-50">
{{ date }}
</div>
</div>