diff options
| author | panda-z <panda.hust@gmail.com> | 2020-04-13 21:18:35 +0800 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-13 21:18:35 +0800 | 
| commit | 5657112dfb0e6eac2faa2ae1dc0978ed29030709 (patch) | |
| tree | f22279cb587444b0649f95da647b60daf1f370e9 /assets/sass/_partial/_footer | |
| parent | d39d3e443953caea05510b19fdd7a259c71a0ab3 (diff) | |
chore(build): drop webpack and use Hugo Pipes (#130)
Diffstat (limited to 'assets/sass/_partial/_footer')
| -rw-r--r-- | assets/sass/_partial/_footer/_copyright.scss | 23 | ||||
| -rw-r--r-- | assets/sass/_partial/_footer/_social.scss | 19 | 
2 files changed, 42 insertions, 0 deletions
| diff --git a/assets/sass/_partial/_footer/_copyright.scss b/assets/sass/_partial/_footer/_copyright.scss new file mode 100644 index 0000000..7d33fe3 --- /dev/null +++ b/assets/sass/_partial/_footer/_copyright.scss @@ -0,0 +1,23 @@ +// ============================== +// Copyright +// ============================= + +.copyright { +  margin: $copyright-margin; +  color: $dark-gray; +  text-align: center; +  font-family: $global-serif-font-family; + +  .hexo-link, +  .theme-link { +    color: $theme-color; +  } + +  .copyright-year { +    display: block; + +    .heart { +      font-size: 14px; +    } +  } +}
\ No newline at end of file diff --git a/assets/sass/_partial/_footer/_social.scss b/assets/sass/_partial/_footer/_social.scss new file mode 100644 index 0000000..a23eb69 --- /dev/null +++ b/assets/sass/_partial/_footer/_social.scss @@ -0,0 +1,19 @@ +// ============================== +// Social +// ============================= + +.social-links { +  text-align: center; + +  .iconfont { +    font-size: $social-icon-font-size; + +    & + .iconfont { +      margin-left: $social-link-margin-left; +    }  + +    &:hover { +      color: $theme-color; +    } +  } +}
\ No newline at end of file | 
