diff --git a/sass/_base.scss b/sass/_base.scss index dcda3c6..9901750 100644 --- a/sass/_base.scss +++ b/sass/_base.scss @@ -1,5 +1,5 @@ html { - font-size: 18px; + font-size: 16px; box-sizing: border-box; } diff --git a/sass/_header.scss b/sass/_header.scss index 87f145b..766ec5a 100644 --- a/sass/_header.scss +++ b/sass/_header.scss @@ -4,13 +4,18 @@ justify-content: space-between; .logo { + font-family: Chancery, cursive, LiSu, sans-serif; + font-weight: 400; + a { + color: #34495e; font-size: 48px; } } .menu { align-self: flex-start; + font-family: $decoration-font-family; ul { display: inline-block; @@ -22,6 +27,7 @@ @include underline-from-center; a { + color: #34495e; font-size: 18px; } } diff --git a/sass/_main.scss b/sass/_main.scss index 7f9c38d..4665d85 100644 --- a/sass/_main.scss +++ b/sass/_main.scss @@ -11,8 +11,9 @@ main { } .read-more a { - font-size: 1.1rem; color: $main-colour; + font-family: $decoration-font-family; + font-size: 1.1rem; &:hover { text-decoration: underline; @@ -23,6 +24,14 @@ main { .post { padding: 1.5rem 0; + .post__title { + font-family: $decoration-font-family; + + a { + color: #34495e; + } + } + h2, h3, h4, h5, h6 { font-weight: 400; } @@ -106,7 +115,7 @@ main { &__title { margin: 0; - font-size: 30px; + font-size: 26px; font-weight: 400; @include underline-from-center; @@ -171,8 +180,13 @@ main { } .pagination { - margin: 2rem 0; clear: both; + font-family: $decoration-font-family; + margin: 2rem 0; + + a { + color: #34495e; + } } } diff --git a/sass/site.scss b/sass/site.scss index 929f668..56b5091 100644 --- a/sass/site.scss +++ b/sass/site.scss @@ -15,6 +15,7 @@ $body-width: 800px; $mobile-navbar-height: 50px !default; $code-colour: #c7254e; $code-font-family: Consolas, Monaco, Menlo, Consolas, monospace !default; +$decoration-font-family: Athelas, STHeiti, Microsoft Yahei, serif; @mixin min-screen($min-width: $body-width) { @media screen and (min-width: $min-width) {