set body text to sans-serif

This commit is contained in:
ch0ccyra1n 2023-04-13 14:30:09 -07:00
parent 19ec7d1cec
commit 65ab21c307
2 changed files with 8 additions and 2 deletions

View file

@ -1,5 +1,6 @@
{{ define "main" }}
<h1>{{ .Title }}</h1>
<hr>
{{ partial "metadata.html" . }}
<br><br>
{{ if $.Params.cws }}
@ -12,4 +13,4 @@
{{ else }}
{{ .Content }}
{{ end }}
{{ end }}
{{ end }}

View file

@ -82,6 +82,10 @@ header h1 {
text-align: center;
}
h3 {
font-size: larger;
}
code {
border-radius: 5px;
padding: 1pt;
@ -196,6 +200,7 @@ li:first-child {
}
p {
font-size: 16pt;
font-family: sans-serif;
}
body {
@ -214,4 +219,4 @@ label {
#cw:checked + label {
display: block;
}
}