Add title as H1 header

This commit is contained in:
Devon Campbell 2022-11-28 18:25:59 -08:00
commit 0ecf55e7be
2 changed files with 13 additions and 1 deletions

View file

@ -26,6 +26,17 @@ h6 {
font-family: var(--fancy-font-stack);
}
h1 {
font-size: 3.5rem;
z-index: 1;
position: relative;
margin-top: 0;
text-shadow: 0.1em 0 black;
}
h1 + article {
margin-top: -0.9rem;
}
.logo {
opacity: 1;
width: 25rem;

View file

@ -10,6 +10,7 @@
</head>
<body>
<img src="/images/logo.png" alt="Devon.LOL" class="logo">
<h1>{{ title }}</h1>
<article>
{{ content | safe }}
</article>