Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/leonstafford/accessible-minimalism-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeon Stafford <me@ljs.dev>2020-09-17 11:36:17 +0300
committerLeon Stafford <me@ljs.dev>2020-09-17 11:36:17 +0300
commitd15c37cac7ed5c59cf0b2a6daee1e1e1bed46635 (patch)
treec9bd597bb3fec6806ad587792007ccb020a1d34c
parent8ba990bb869cf7e7d3f10e47dcced3f1d26d765f (diff)
minimal css
-rw-r--r--layouts/partials/head.html2
-rw-r--r--layouts/partials/style.html6
2 files changed, 7 insertions, 1 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index 2741008..1baebc2 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -8,5 +8,5 @@
{{ $title := print .Site.Title " | " .Title }}
{{ if .IsHome }}{{ $title = .Site.Title }}{{ end }}
<title>{{ $title }}</title>
- <style type="text/css">body {font-size: 130%;}</style>
+ {{ partial "style.html" . }}
</head>
diff --git a/layouts/partials/style.html b/layouts/partials/style.html
new file mode 100644
index 0000000..abcec45
--- /dev/null
+++ b/layouts/partials/style.html
@@ -0,0 +1,6 @@
+<style type="text/css">
+ body {
+ font-size: 150%;
+ font-family: muli,avenir,helvetica neue,helvetica,ubuntu,roboto,noto,segoe ui,arial,sans-serif;
+ }
+</style>