diff options
author | Roger Gonzalez <roger@rogs.me> | 2023-01-08 22:12:24 -0300 |
---|---|---|
committer | Roger Gonzalez <roger@rogs.me> | 2023-01-08 22:12:24 -0300 |
commit | b15ab4adb837e43409e5e3cf3a40a83ef4dbf62f (patch) | |
tree | 3b7d7e5dc84aabc839dd1d9174c4593cbd6b2f82 /themes/hugo-whisper-theme/assets/scss/components/_title.scss |
Initial commit
Diffstat (limited to 'themes/hugo-whisper-theme/assets/scss/components/_title.scss')
-rw-r--r-- | themes/hugo-whisper-theme/assets/scss/components/_title.scss | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/themes/hugo-whisper-theme/assets/scss/components/_title.scss b/themes/hugo-whisper-theme/assets/scss/components/_title.scss new file mode 100644 index 0000000..07e0016 --- /dev/null +++ b/themes/hugo-whisper-theme/assets/scss/components/_title.scss @@ -0,0 +1,23 @@ +.title { + font-size: 2.7rem; + line-height: 1.1; + font-family: $font-family-base; + letter-spacing: -0.2px; + font-weight: 100; + margin-bottom: 20px; + @include media-breakpoint-up(md) { + font-size: 3rem; + margin-bottom: 30px; + } +} +.title-summary { + font-size: 1.6rem; + line-height: 1.4; + font-family: $font-family-base; + letter-spacing: -0.2px; + font-weight: 200; + margin-bottom: 10px; + @include media-breakpoint-up(md) { + font-size: 1.6rem; + } +} |