diff options
| author | Serghei Iakovlev <egrep@protonmail.ch> | 2022-05-08 19:22:45 +0200 |
|---|---|---|
| committer | Serghei Iakovlev <egrep@protonmail.ch> | 2022-05-08 19:22:45 +0200 |
| commit | daf4927ea437c5bf79ff090eb35e5e3415199094 (patch) | |
| tree | 5b5730bcd0c3d49b9620c296b92e19ddd87cef28 /assets/sass/_customize.scss | |
| parent | 112d1281fec02158687e7d4761ebc4406ff3241f (diff) | |
| download | gohugo-theme-ed-daf4927ea437c5bf79ff090eb35e5e3415199094.tar.gz | |
Customize thme
Diffstat (limited to 'assets/sass/_customize.scss')
| -rw-r--r-- | assets/sass/_customize.scss | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/assets/sass/_customize.scss b/assets/sass/_customize.scss new file mode 100644 index 0000000..4bc0bb4 --- /dev/null +++ b/assets/sass/_customize.scss @@ -0,0 +1,64 @@ +@import "_mixins"; + +.masthead-title small { + font-size: .78rem; +} + +.introduction { + min-height: 40px; + margin-bottom: 40px; + + @include mq(tabletp) { + min-height: 60px; + margin-bottom: 60px; + } + + @include mq(tabletl) { + min-height: 80px; + margin-bottom: 80px; + } + + @include mq(laptop) { + min-height: 100px; + margin-bottom: 100px; + } +} + +.introduction .container { + margin: 10px auto; + max-width: 600px; + text-align: center; +} + +.blog-post { + margin-top: 40px; + + @include mq(tabletp) { + margin-top: 60px; + } + + @include mq(tabletl) { + margin-top: 80px; + } + + @include mq(laptop) { + margin-top: 100px; + } + + &:first-child { + margin-top: 0; + } +} + +.post-meta { + margin-top: 5px; + font-size: .85rem; + color: $text-light-color; +} + +.post .byline { + font-style: italic; + font-weight: normal; + letter-spacing: 0; + margin-top: -.5rem; +} |
