blob: ab4fbe2cf6db9887b3b0e72c8f33c25ea4de4638 (
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
|
<style>
.root {
width: 100%;
height: 100%;
display: flex;
font-family: "Kode Mono";
flex-direction: column;
justify-content: flex-end;
background: #171715;
padding: 20px 50px;
border-bottom: 20px solid #efefd2;
border-left: 20px solid #efefd2;
}
.title {
color: #efefd2;
font-size: 70px;
}
.site {
color: #efefd2;
font-size: 20px;
display: contents;
}
</style>
<div class="root">
<div class="site">{{ siteTitle }}</div>
<h1 class="title">{{ title }}</h1>
</div>
|