Add post dates
This commit is contained in:
parent
0a24807933
commit
41ddbfe792
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
title: Ancient Wormies modpack installation
|
||||
date: 2021-07-08 17:56 +0100
|
||||
---
|
||||
|
||||
# Using MultiMC
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
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.
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
title: Setting up JACK with PulseAudio on ArchLinux
|
||||
date: 2021-06-15 19:44 +0100
|
||||
---
|
||||
|
||||
Add user to required groups:
|
||||
|
|
|
@ -41,10 +41,6 @@ h1 {
|
|||
font-size: 35px;
|
||||
}
|
||||
|
||||
h1::first-letter {
|
||||
font-size: 40px;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 25px;
|
||||
}
|
||||
|
@ -91,7 +87,7 @@ code * {
|
|||
font-family: "Iosevka Gothic";
|
||||
}
|
||||
|
||||
:not(pre) > code {
|
||||
:not(pre)>code {
|
||||
padding: 2px;
|
||||
border-radius: 3px;
|
||||
font-family: "Iosevka Gothic";
|
||||
|
@ -195,6 +191,17 @@ a:hover {
|
|||
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 */
|
||||
|
||||
@keyframes glow {
|
||||
|
@ -254,7 +261,7 @@ footer {
|
|||
border-top: 1px solid var(--text);
|
||||
}
|
||||
|
||||
footer > * {
|
||||
footer>* {
|
||||
font-size: 1.2em;
|
||||
margin-top: 1em;
|
||||
}
|
||||
|
@ -319,4 +326,4 @@ footer div {
|
|||
float: right;
|
||||
margin-left: 21px;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue