Ethernal 修改版

两栏宽度的自定义

两栏布局宽度拉宽至三栏水平 + TOC 定位修复:

通过设置-代码注入修改

<style>
:root {
  --page-width: 93.5rem !important;
  --toc-width: clamp(0rem, calc((100vw - 93.5rem) / 2 - 2rem), 15rem) !important;
}
#toc-container > div {
  z-index: 50 !important;
}
#toc-wrapper {
  right: calc(-1 * var(--toc-width) - 1rem) !important;
}
</style>

新增 Steam 游戏库页面

新文件:

  • templates/steam.html — 从 theme-daisym 移植,基于 equipments.html 的完整页面布局

  • templates/assets/echarts.min.js — ECharts 库(1.1MB),用于热力图渲染

theme.yaml 新增自定义页面模板:

- name: "Steam 游戏库"
  description: "Steam 个人资料、游戏库与时长热力图页面(需安装 Steam 插件)"
  file: "steam.html"

评论