Compare commits
No commits in common. "453dad1e0da17a35e5607336b0fd34c3457423ed" and "ce4ddf5a17ce38936c05c63d9b6ca11e8b131811" have entirely different histories.
453dad1e0d
...
ce4ddf5a17
@ -6,7 +6,6 @@
|
||||
<link rel="preload" href="/Baskerville-Regular.woff2" as="font" type="font/woff2" />
|
||||
<link rel="stylesheet" href="/style.css" />
|
||||
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
|
||||
<link rel="alternate" type="application/atom+xml" href="/feed">
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
%sveltekit.head%
|
||||
</head>
|
||||
|
@ -102,9 +102,7 @@
|
||||
</div>
|
||||
|
||||
<div class="left-gutter">
|
||||
{#if toc?.length !== 0}
|
||||
<Toc items={toc} />
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<div class="post">
|
||||
|
@ -37,10 +37,8 @@
|
||||
|
||||
<style>
|
||||
#toc {
|
||||
display: none;
|
||||
position: sticky;
|
||||
top: 1.5rem;
|
||||
margin-left: 1rem;
|
||||
margin-right: 2rem;
|
||||
|
||||
max-width: 14rem;
|
||||
@ -51,10 +49,6 @@
|
||||
animation-fill-mode: forwards;
|
||||
}
|
||||
|
||||
@media(min-width: 1300px) {
|
||||
#toc { display: block }
|
||||
}
|
||||
|
||||
@keyframes fade-in {
|
||||
from {opacity: 0}
|
||||
to {opacity: 1}
|
||||
|
@ -1,5 +1,7 @@
|
||||
<style>
|
||||
.header {
|
||||
grid-column-start: 1;
|
||||
grid-column-end: 4;
|
||||
background-color: #4f5f68;
|
||||
}
|
||||
|
||||
@ -11,10 +13,10 @@
|
||||
}
|
||||
|
||||
nav a {
|
||||
color: white;
|
||||
width: 8rem;
|
||||
min-width: 6rem;
|
||||
font-size: 1.5rem;
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
text-align: center;
|
||||
padding: 0.25rem 0;
|
||||
|
@ -1,8 +1,6 @@
|
||||
import { tag, text, serialize } from '$lib/xml.js';
|
||||
import { postData } from '../_posts/all.js';
|
||||
|
||||
export const prerender = true;
|
||||
|
||||
|
||||
export function GET() {
|
||||
return new Response(renderFeed(), {
|
||||
|
@ -74,6 +74,10 @@ p {
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
/*ul, ol {
|
||||
margin: 0.5rem 0;
|
||||
}*/
|
||||
|
||||
code {
|
||||
background: #eee;
|
||||
border-radius: 0.2rem;
|
||||
@ -85,3 +89,5 @@ code {
|
||||
pre > code {
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
/* TESTING */
|
||||
|
Loading…
x
Reference in New Issue
Block a user