diff options
-rw-r--r-- | assets/scss/style.scss | 4 | ||||
-rw-r--r-- | layouts/partials/hero.html | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/assets/scss/style.scss b/assets/scss/style.scss index 05fa25c..da1db94 100644 --- a/assets/scss/style.scss +++ b/assets/scss/style.scss @@ -136,6 +136,10 @@ color: #fff !important; background-color: #79c753 !important; } +// HERO +#hero { + text-shadow: 2px 2px 3px black; +} // POSTS .main-content { diff --git a/layouts/partials/hero.html b/layouts/partials/hero.html index 1926f04..5acafde 100644 --- a/layouts/partials/hero.html +++ b/layouts/partials/hero.html @@ -4,7 +4,7 @@ {{ end }}; background-position: center;" class="pv5" > - <div class="mw7 center ph2 near-white"> + <div id="hero" class="mw7 center ph2 near-white lh-copy"> <h1 class="f1 tc title berkshire-swash">{{ .Title }}</h1> {{ .Content }} </div> |