add some subtle color accents

This commit is contained in:
Greg Gauthier 2022-01-04 23:43:07 +00:00
parent 931aa8e48f
commit ae74fe98ac
5 changed files with 10 additions and 10 deletions

View File

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

View File

@ -1,6 +1,6 @@
{{ partial "header.html" . }} {{ partial "header.html" . }}
<div class="header" style="background-color: whitesmoke"> <div class="header" style="background-color: whitesmoke;">
<h1>{{ .Title }}</h1> <h1>{{ .Title }}</h1>
</div> </div>

View File

@ -1,8 +1,8 @@
{{ partial "header.html" . }} {{ partial "header.html" . }}
<div class="header" style="background-color: whitesmoke"> <div class="header" style="background-color: whitesmoke; opacity: 100%">
<h1>{{ .Title }}</h1> <h1 style="color: gray(35)">{{ .Title }}</h1>
<h2>{{ .Site.Params.subtitle }}</h2> <h2 style="color: dimgrey">{{ .Site.Params.subtitle }}</h2>
</div> </div>
<div class="content"> <div class="content">

View File

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

View File

@ -1,6 +1,6 @@
.header { .header {
font-family: "Raleway", Helvetica, Arial, sans-serif font-family: "Raleway", Helvetica, Arial, sans-serif;
} }
a { a {