使用 GitHub Page 建立自己的網頁時, Jekyll 的 minima 是個很好的入門選擇,因為 GitHub Page 預設的使用的 static generator ,而 minima 也是 Jekyll 預設的主題,所以 minima 常常會是開發者第一個接觸到的 Jekyll 主題,並且它小而全的特性使得修改可以很輕鬆,這篇會介紹要怎麼修改 minima 主題的樣式。
Jekyll 的主題大致分為兩種
minima 是屬於 gem-based 的主題。
如果是 regular theme ,直接打開樣式表編輯即可,但因 minima 是 gem-based theme ,所以檔案會存在 gem 中,這時就需要找出樣式表的內容。
gem 是 ruby 的套件管理工具,跟 node 的 npm 相似。
由於 minima 是個 ruby 套件,可以使用 bundle
指令找到其位置:
bundle info --path minima # /usr/local/bundle/gems/minima-2.5.1
找出位置後就可以將樣式表給複製出來。
也可以從 jekyll/minima 的 GitHub 庫抓取。
從 GitHub 上抓取須要注意版本的差異。
在 minima 中 assets/main.scss
這個檔案是所有樣式表的入口,修改這個檔案就可以覆寫樣式。
// main.scss
---
# Only the main Sass file needs front matter (the dashes are enough)
---
@import "minima";
@font-face {
font-family: 'jf-openhuninn';
src: url('jf-openhuninn-1.0.ttf') format('truetype');
}
body {
font-family: jf-openhuninn, $base-font-family;
}
在 @import "minima";
之後的樣式會覆寫原本的樣式,而如果要修改 _saas/minima.scss
中的變數的話,要寫在 @import
之前。
// main.scss
---
# Only the main Sass file needs front matter (the dashes are enough)
---
$base-font-family: jf-openhuninn;
@import "minima";
@font-face {
font-family: 'jf-openhuninn';
src: url('jf-openhuninn-1.0.ttf') format('truetype');
}
最近 open 粉圓字型推出,想說換一下部落格預設的字型來支持一下,順便學習如何客製 Jekyll 的主題。
如果想要看此文範例程式的可以到 peterhpchen.github.io 看喔。
同步發表於 LimitlessPing