~kl/systemstack

7c34c45d72f2dc2b952a6fd01143739ab296dbce — Kevin Lipe 2 years ago 7f69cc7
title font change
M assets/style/components/_header.scss => assets/style/components/_header.scss +2 -1
@@ 7,9 7,10 @@ header.scss
    @include ff--sans-serif;

    h1.sitename {
        font-size: 3.5rem;
        font-size: 4rem;
        @include ff--title;
        color: $c-base__02;
        font-weight: 600;
    }

    a {

M assets/style/helpers/_mixins.scss => assets/style/helpers/_mixins.scss +1 -1
@@ 26,7 26,7 @@
}

@mixin ff--title($font-weight: normal) {
    font-family: 'Oi', Georgia, serif;
    font-family: 'Shrikhand', Georgia, serif;
}

@mixin ff--code {

M layouts/partials/head.html => layouts/partials/head.html +1 -1
@@ 4,7 4,7 @@
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    {{ block "pagetitle" . }}<title>{{ .Site.Title }}</title>{{ end }}
    <meta name="description" content="{{ .Site.Params.Description }}">
    {{ block "googlefonts" . }}<link href='https://fonts.googleapis.com/css?family=Roboto+Condensed|Source+Code+Pro|Oi|Source+Serif+Pro:400,600,400italic,600italic' rel='stylesheet' type='text/css'>{{ end }}
    {{ block "googlefonts" . }}<link href='https://fonts.googleapis.com/css?family=Roboto+Condensed|Source+Code+Pro|Shrikhand|Source+Serif+Pro:400,600,400italic,600italic' rel='stylesheet' type='text/css'>{{ end }}

    {{ $style := resources.Get "style/main.scss" | resources.ToCSS (dict "outputStyle" "compressed") | fingerprint }}
    <link rel="stylesheet" href="{{ $style.Permalink }}">