Skip to content

cubicYYY/Personal-Blog-with-Hexo-Cactus

Repository files navigation

基于Hexo cactus theme的个人博客

原cactus主题疏于维护,自行魔改部分内容 下文是一些技术备忘。

魔改

  • 字体:霞鹜文楷阅读版

    • 修改themes/cactus/_config.yml中的cdn部分
    • 修改themes/cactus/layout/_partial/styles.ejs 以导入该CSS
    • 修改themes/cactus/source/css/_variables.styl中的font-family
  • 文本大小:详见themes/cactus/source/css/style.styl themes/cactus/source/css/_extend.styl

  • 修复了issue: Post page navigation disappears when scrolling down

    - var topDistance = menu.offset().top;
    + var topDistance = document.documentElement.scrollTop;