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

This commit is contained in:
2025-12-20 12:06:30 +01:00
parent 9f953e9d32
commit 6d63278779
2 changed files with 9 additions and 5 deletions

View File

@@ -44,6 +44,7 @@ ShowShareButtons = true
ShowToc = true ShowToc = true
TocOpen = true TocOpen = true
comments = false comments = false
customCSS = ["css/custom.css"]
[params.assets] [params.assets]
favicon = "/img/favicon/audora.png" favicon = "/img/favicon/audora.png"
@@ -53,9 +54,6 @@ disableHLJS = 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"

View File

@@ -1,11 +1,17 @@
@import url('https://fonts.googleapis.com/css2?family=Fira+Mono:wght@400;500;700&display=swap');
* {
font-family: 'Fira Mono', monospace !important;
}
body { body {
font-family: 'Fira Mono', monospace !important; font-family: 'Fira Mono', monospace !important;
} }
code, pre { p, article, main, h1, h2, h3, h4, h5, h6 {
font-family: 'Fira Mono', monospace !important; font-family: 'Fira Mono', monospace !important;
} }
article { code, pre, .highlight {
font-family: 'Fira Mono', monospace !important; font-family: 'Fira Mono', monospace !important;
} }