Skeleton files and http
This commit is contained in:
Binary file not shown.
@@ -0,0 +1,31 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Blog_Software</title>
|
||||
<link rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
<body>
|
||||
<h1 id="title">Nick's Blog</h1>
|
||||
<h2 id="subtitle">Thought I'd write a little bit</h2>
|
||||
|
||||
<div id="posts">
|
||||
<hr>
|
||||
<div class="post">
|
||||
<a href="/post/2"><h1>Diabetes Jokes</h1></a>
|
||||
<h2>Jul 25, 2026</h2>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="post">
|
||||
<a href="/post/1"><h1>We're Totally Doomed, So Here's The Plan</h1></a>
|
||||
<h2>Jul 5, 2026</h2>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="post">
|
||||
<a href="/post/0"><h1>Snippets are better than your Agentic slop</h1></a>
|
||||
<h2>Jun 26, 2026</h2>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,49 @@
|
||||
@font-face {
|
||||
font-family: "JetBrains Mono";
|
||||
src: url("JetBrainsMono-Regular.woff2") format("woff2");
|
||||
font-weight: 400;
|
||||
font-style: normal;
|
||||
}
|
||||
:root {
|
||||
--background: rgb(38, 38, 38);
|
||||
--foreground: rgb(240, 240, 240);
|
||||
--subtext: rgb(100, 100, 100);
|
||||
}
|
||||
html {
|
||||
font-family: "JetBrains Mono", monospace;
|
||||
}
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
width: 50%;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
#title {
|
||||
font-size: 3.5rem;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
#subtitle {
|
||||
color:var(--subtext);
|
||||
font-size: 1rem;
|
||||
padding-bottom: 2rem;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
#posts {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.post > a > h1 {
|
||||
font-size: 1rem;
|
||||
margin-bottom: 0;
|
||||
color:pink;
|
||||
}
|
||||
.post > a {
|
||||
text-decoration: none;
|
||||
}
|
||||
.post > h2 {
|
||||
color: var(--subtext);
|
||||
font-size: 0.7rem;
|
||||
margin-top: 0;
|
||||
}
|
||||
Reference in New Issue
Block a user