[2024-08-03] Updating style and homepage

This commit is contained in:
Andrew Conlin 2024-08-03 16:04:02 +01:00
parent 7fbb8974df
commit 6549508db4
13 changed files with 67 additions and 36 deletions

View File

@ -1,8 +1,6 @@
<br>
<div style="text-align: center;">
<code>
Made with 💕 (and Jekyll)<br>
© Andrew Conlin 2023-2024<br>
All rights reverse engineered
</code>
</div>

View File

@ -1,6 +1,5 @@
<h1><a href="/">andrewconl.in</a></h1>
<div>
<code style="font-size: x-large;"><a href="/blog">blog</a> // <a href="/weeklinks">weeklinks</a> // <a href="/til">til</a> // <a href="/projects">projects</a> // <a>meta</a></code>
<p style="font-size: x-large;"><a href="/blog">blog</a> // <a href="/weeklinks">weeklinks</a> // <a href="/til">til</a> // <a href="/projects">projects</a> // <a href="/meta">meta</a></p>
</div>
<br>
<hr>
<hr>

View File

@ -1,4 +1,4 @@
<hr><br>
<div style="text-align: center;">
<code>Issues or comments? <a href="mailto:andrew@andrewconl.in">Email me!</a></code>
Issues or comments? <a href="mailto:andrew@andrewconl.in">Email me!</a>
</div>

View File

@ -1,12 +1,10 @@
---
layout: default
---
<code>
<span style="font-size: x-large;"><a href="/">~</a> > <a href="/{{page.category}}">{{page.category}}</a> > <a href="">{{page.title}}</a><br></span>
{{ page.date | date: "%Y-%m-%d" }}<br>
{{ content | reading_time | pluralize: "minute" }}
</code>
<hr>
{{ content }}

View File

@ -1,5 +1,23 @@
@font-face {
font-family: 'Geist';
src: url('/assets/fonts/Geist-Regular.otf') format('opentype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Geist Mono';
src: url('/assets/fonts/GeistMonoNerdFont-Regular.otf') format('opentype');
font-weight: normal;
font-style: normal;
}
body {
font-family: monospace;
font-family: Geist, sans-serif;
}
code {
font-family: Geist Mono, monospace;
}
div.container {
@ -41,23 +59,31 @@ div.content {
}
body {
background-color: #ffffff;
color: #000000;
background-color: #242424;
color: #E7D7AD;
}
pre {
background-color:antiquewhite;
background-color:#32302F;
padding: 10px 10px 10px 10px;
border-radius: 10px;
white-space: pre-wrap;
white-space: pre-wrap;
}
hr {
border: 2px dashed #000000;
border-style: none none dashed;
color: transparent;
background-color: transparent;
a {
color: #E7D7AD;
text-decoration: none;
border-bottom: 3px solid #FABD2F;
border-radius: 2px;
}
a:hover {
color: #242424;
background: #FABD2F;
text-decoration: none;
border-bottom: 3px solid #FABD2F;
border-radius: 2px;
}
img {
@ -66,4 +92,9 @@ img {
margin-left: auto;
margin-right: auto;
display: block;
}
}
::selection {
color: #242424;
background: #FABD2F;
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -11,9 +11,9 @@ backlink: false
{% assign category = post.category %}
{% if category == 'blog' %}
<li>
<p><code>{{ post.date | date: "%Y-%m-%d" }}</code> // <a href="{{ post.url }}">{{ post.title }}</a></p>
<p>{{ post.date | date: "%Y-%m-%d" }} // <a href="{{ post.url }}">{{ post.title }}</a></p>
</li>
{% endif %}
{% endfor %}
</ul>
<hr>
<hr>

View File

@ -1,16 +1,12 @@
---
layout: default
title: andrewconl.in
permalink: /
backlink: false
---
This site is designed to be kept as simple as possible.<br>
It is pure HTML/CSS [*], which keeps things small, fast and accessible.<br>
* I use a self-hosted instance of <a href="https://umami.is">umami</a> for analytics. It respects do-not-track signals.<br>
--<br>
email: <a href="mailto:andrew@andrewconl.in">andrew@andrewconl.in</a><br>
masto: <a rel="me" href="https://mastodon.scot/@andrwcnln">andrwcnln@mastodon.scot</a><br>
github: <a href="https://github.com/andrwcnln">@andrwcnln</a><br>
--<br>
<a href="/feed.xml">rss</a><br>
<hr>
<span style="color: #A89984;"><i>“Man is said to be a reasoning animal. I do not know why he has not been defined as an affective or feeling animal. Perhaps that which differentiates him from other animals is feeling rather than reason. More often I have seen a cat reason than laugh or weep. Perhaps it weeps or laughs inwardly — but then perhaps, also inwardly, the crab resolves equations of the second degree.”</i></span><br>
<span style="float: right;"><b>― Miguel de Unamuno, Tragic Sense of Life</b></span><br><br>
Email: <a href="mailto:andrew@andrewconl.in">andrew@andrewconl.in</a><br>
Mastodon: <a rel="me" href="https://mastodon.scot/@andrwcnln">andrwcnln@mastodon.scot</a><br>
GitHub: <a href="https://github.com/andrwcnln">@andrwcnln</a><br>
RSS: <a href="/feed.xml">/feed.xml</a><br>
<hr>

9
meta.html Normal file
View File

@ -0,0 +1,9 @@
---
layout: default
title: meta
permalink: /meta
---
<h2>Meta</h2>
Both the Sans Serif and Monospace fonts used on this site are <a href="https://vercel.com/font">Geist, by Vercel</a>
<hr>

View File

@ -10,9 +10,9 @@ backlink: false
{% assign category = post.category %}
{% if category == 'til' %}
<li>
<p><code>{{ post.date | date: "%Y-%m-%d" }}</code> // <a href="{{ post.url }}">{{ post.title }}</a></p>
<p>{{ post.date | date: "%Y-%m-%d" }} // <a href="{{ post.url }}">{{ post.title }}</a></p>
</li>
{% endif %}
{% endfor %}
</ul>
<hr>
<hr>

View File

@ -11,9 +11,9 @@ backlink: false
{% assign category = post.category %}
{% if category == 'weeklinks' %}
<li>
<p><code>{{ post.date | date: "%Y-%m-%d" }}</code> // <a href="{{ post.url }}">{{ post.title }}</a></p>
<p>{{ post.date | date: "%Y-%m-%d" }} // <a href="{{ post.url }}">{{ post.title }}</a></p>
</li>
{% endif %}
{% endfor %}
</ul>
<hr>
<hr>