looks okish on start page

This commit is contained in:
2019-11-02 22:29:06 +01:00
commit 035640a086
36 changed files with 2297 additions and 0 deletions

16
layouts/partials/css.html Normal file
View File

@@ -0,0 +1,16 @@
<style>
html body {
font-family: '{{ .Site.Params.font }}', sans-serif;
background-color: {{ .Site.Params.backgroundColor | default "white" }};
}
:root {
--accent: {{ .Site.Params.accent | default "#2196F3" }};
--border-width: {{ if .Site.Params.showBorder | default false }} 2px {{ else }} 0 {{ end }};
}
</style>
<!-- main -->
<link rel="stylesheet" href="{{ "css/main.css" | absURL }}">