blob: 64df971a953559e71da96cda3b2910345f12feec (
plain) (
blame)
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
|
<style>
.root {
width: 100%;
height: 100%;
position: relative;
display: flex;
flex-direction: column;
justify-content: flex-end;
font-family: "Kode Mono";
background: #151617;
padding: 40px 60px;
border-bottom: 20px solid #2a3039;
border-left: 20px solid #2a3039;
}
.site {
position: absolute;
bottom: 40px;
left: 40px;
display: flex;
color: #7c8894;
font-size: 24px;
}
.title {
color: #d2e7ef;
font-size: 72px;
line-height: 1.1;
margin: 0;
max-width: 900px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.logo {
display: flex;
position: absolute;
top: 40px;
right: 40px;
color: #d2e7ef;
}
.logo * {
color: #d2e7ef;
width: 88.64512px;
height: 128px;
}
</style>
<div class="root">
<div class="logo">
{{ "/assets/images/logo.svg" | embedSVG | safe }}
</div>
<div class="site">
{{ siteTitle | safe }}
</div>
<h1 class="title">
{{ title | safe }}
</h1>
</div>
|