change fonts
All checks were successful
Build and Deploy Hugo Blog / build (push) Successful in 37s

This commit is contained in:
2025-12-20 11:59:57 +01:00
parent e5b5c517c3
commit 1e0cf4ac48
2 changed files with 14 additions and 0 deletions

View File

@@ -49,6 +49,9 @@ comments = false
Title = "Bienvenue sur mon blog ! 👋" Title = "Bienvenue sur mon blog ! 👋"
Content = "Un petit coin sur Internet pour raconter et documenter tout ce qui tourne autour de la tech." Content = "Un petit coin sur Internet pour raconter et documenter tout ce qui tourne autour de la tech."
[[params.assets.css]]
href = "https://fonts.googleapis.com/css2?family=Fira+Mono:wght@400;500;700&display=swap"
[[params.socialIcons]] [[params.socialIcons]]
name = "linktree" name = "linktree"
url = "https://linktr.ee/redscapefactory" url = "https://linktr.ee/redscapefactory"

11
static/css/custom.css Normal file
View File

@@ -0,0 +1,11 @@
body {
font-family: 'Fira Mono', monospace !important;
}
code, pre {
font-family: 'Fira Mono', monospace !important;
}
article {
font-family: 'Fira Mono', monospace !important;
}