Add post dates

This commit is contained in:
Agatha Lovelace 2023-04-30 12:50:57 +02:00
parent 0a24807933
commit 41ddbfe792
Signed by: sorceress
GPG Key ID: 01D0B3AB10CED4F8
4 changed files with 17 additions and 7 deletions

View File

@ -1,5 +1,6 @@
--- ---
title: Ancient Wormies modpack installation title: Ancient Wormies modpack installation
date: 2021-07-08 17:56 +0100
--- ---
# Using MultiMC # Using MultiMC

View File

@ -1,5 +1,6 @@
--- ---
title: Running a Jekyll website on Nix title: Running a Jekyll website on Nix
date: 2023-02-15 20:56 +0100
--- ---
If you're reading this on [technogothic.net](/) and the year is something like 2023, this site is probably generated by Jekyll. If you're reading this on [technogothic.net](/) and the year is something like 2023, this site is probably generated by Jekyll.

View File

@ -1,5 +1,6 @@
--- ---
title: Setting up JACK with PulseAudio on ArchLinux title: Setting up JACK with PulseAudio on ArchLinux
date: 2021-06-15 19:44 +0100
--- ---
Add user to required groups: Add user to required groups:

View File

@ -41,10 +41,6 @@ h1 {
font-size: 35px; font-size: 35px;
} }
h1::first-letter {
font-size: 40px;
}
h2 { h2 {
font-size: 25px; font-size: 25px;
} }
@ -91,7 +87,7 @@ code * {
font-family: "Iosevka Gothic"; font-family: "Iosevka Gothic";
} }
:not(pre) > code { :not(pre)>code {
padding: 2px; padding: 2px;
border-radius: 3px; border-radius: 3px;
font-family: "Iosevka Gothic"; font-family: "Iosevka Gothic";
@ -195,6 +191,17 @@ a:hover {
animation: glow 0.2s ease-in-out both; animation: glow 0.2s ease-in-out both;
} }
/* lists */
ol {
list-style: upper-roman;
}
/* No link markers in lists */
.contents li a::before {
display: none;
}
/* animations */ /* animations */
@keyframes glow { @keyframes glow {
@ -254,7 +261,7 @@ footer {
border-top: 1px solid var(--text); border-top: 1px solid var(--text);
} }
footer > * { footer>* {
font-size: 1.2em; font-size: 1.2em;
margin-top: 1em; margin-top: 1em;
} }
@ -319,4 +326,4 @@ footer div {
float: right; float: right;
margin-left: 21px; margin-left: 21px;
} }
} }