diff options
Diffstat (limited to 'assets/sass')
-rw-r--r-- | assets/sass/_partial/_footer.scss | 1 | ||||
-rw-r--r-- | assets/sass/_partial/_footer/_copyright.scss | 4 | ||||
-rw-r--r-- | assets/sass/_partial/_footer/_source.scss | 13 |
3 files changed, 18 insertions, 0 deletions
diff --git a/assets/sass/_partial/_footer.scss b/assets/sass/_partial/_footer.scss index 1f8cdae..9914b05 100644 --- a/assets/sass/_partial/_footer.scss +++ b/assets/sass/_partial/_footer.scss @@ -6,5 +6,6 @@ margin-top: $footer-margin-top; @import "_footer/social"; + @import "_footer/source"; @import "_footer/copyright"; }
\ No newline at end of file diff --git a/assets/sass/_partial/_footer/_copyright.scss b/assets/sass/_partial/_footer/_copyright.scss index 4e63063..cea4837 100644 --- a/assets/sass/_partial/_footer/_copyright.scss +++ b/assets/sass/_partial/_footer/_copyright.scss @@ -8,6 +8,10 @@ text-align: center; font-family: $global-serif-font-family; + a:hover { + color: $theme-color; + } + .hexo-link, .theme-link { color: $theme-color; diff --git a/assets/sass/_partial/_footer/_source.scss b/assets/sass/_partial/_footer/_source.scss new file mode 100644 index 0000000..0e87102 --- /dev/null +++ b/assets/sass/_partial/_footer/_source.scss @@ -0,0 +1,13 @@ +// ====================== +// View source +// ====================== +.source { + margin: $copyright-margin; + color: $dark-gray; + text-align: center; + font-family: $global-serif-font-family; + + a:hover { + color: $theme-color; + } +}
\ No newline at end of file |