blob: 6d3edb0462603f3f4efbc02cf0d390556c9c9099 (
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
|
<style>
.root {
width: 100%;
height: 100%;
display: flex;
font-family: "JetBrains 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;
}
</style>
<div class="root">
<div class="site">/home/spellis{{ siteTitle }}</div>
<h1 class="title">{{ title }}</h1>
</div>
|