more tweaking of fonts and colors; its getting good

This commit is contained in:
Greg Gauthier 2022-01-04 23:57:37 +00:00
parent ae74fe98ac
commit 3766533e65
4 changed files with 10 additions and 10 deletions

View File

@ -1,7 +1,7 @@
{{ partial "header.html" . }}
<div class="header" style="background-color: whitesmoke">
<h1>{{ .Title }}</h1>
<h1 style="color: gray(35)">{{ .Title }}</h1>
</div>
<div class="content">

View File

@ -1,8 +1,8 @@
{{ partial "header.html" . }}
<div class="header" style="background-color: whitesmoke; opacity: 50%">
<h1>{{ .Title }}</h1>
<h2>{{ with .Params.series }}{{.}}{{end}}</h2>
<div class="header" style="background-color: whitesmoke; opacity: 100%">
<h1 style="color: #065387; font-size: 44px">{{ .Title }}</h1>
<h2 style="color: dimgrey; font-size: 22px">{{ with .Params.series }}{{.}}{{end}}</h2>
</div>
<div class="content" style="text-align: justify-all">

View File

@ -1,8 +1,8 @@
{{ partial "header.html" . }}
<div class="header" style="background-color: whitesmoke; opacity: 100%">
<h1 style="color: #065387">{{ .Title }}</h1>
<h2 style="color: dimgrey">{{ .Description }}</h2>
<h1 style="color: #065387; font-size: 44px">{{ .Title }}</h1>
<h2 style="color: dimgrey; font-size: 24px">{{ .Description }}</h2>
</div>
<div class="content">

View File

@ -1,10 +1,10 @@
{{ partial "header.html" . }}
<div class="header" style="background-color: whitesmoke; opacity: 50%">
<h1>{{ .Title }}</h1>
<h2>{{ .Params.author }}</h2>
<div class="header" style="background-color: whitesmoke; opacity: 100%">
<h1 style="font-size: 44px; color: #065387">{{ .Title }}</h1>
<h2 style="color: dimgrey; font-size: 22px">{{ .Params.author }}</h2>
{{if isset .Params "topic" }}
<h3>Topic: {{ .Params.topic }}</h3>
<h3 style="color: cornflowerblue; font-size: 16px">Topic: {{ .Params.topic }}</h3>
{{ end }}
</div>