diff options
| -rw-r--r-- | layout/_partial/footer.ejs | 15 | ||||
| -rw-r--r-- | source/css/style.css | 5 | 
2 files changed, 14 insertions, 6 deletions
| diff --git a/layout/_partial/footer.ejs b/layout/_partial/footer.ejs index e9b8c64..c17705b 100644 --- a/layout/_partial/footer.ejs +++ b/layout/_partial/footer.ejs @@ -1,9 +1,12 @@  <footer class="footer"> -    <div class="footer-copyright"> -        Copyright © <%= date(Date.now(), 'YYYY') %> <a href="<%= url_for('/') %>"><%= config.title %></a> -    </div> -    <div class="footer-power"> -        <p>Powered by <a href="https://hexo.io" target="_blank">Hexo</a> | Theme - <a href="https://github.com/guiqiqi/Chromate" -                target="_blank">Chromate</a></p> +    <div class="content has-text-centered has-text-grey"> +        <div class="footer-copyright"> +            Copyright © <%= date(Date.now(), 'YYYY' ) %> <%= config.title %> +        </div> +        <div class="footer-power"> +            <p>Powered by <a class="has-text-black" href="https://hexo.io" target="_blank">Hexo</a>  +            <i class="fa fa-heart has-text-danger"></i> +            Theme <a class="has-text-black" href="https://github.com/guiqiqi/chromate">Chromate</a> +        </div>      </div>  </footer>
\ No newline at end of file diff --git a/source/css/style.css b/source/css/style.css index c7743db..f71f302 100644 --- a/source/css/style.css +++ b/source/css/style.css @@ -28,4 +28,9 @@ pre {  .pagination-bar {      padding-left: 0.25rem;      padding-right: 0.25rem; +} + +.footer { +    padding: 1rem 1rem 1rem; +    background-color: transparent;  }
\ No newline at end of file | 
