修改 post 标题的字体大小

Modifying font size of post title

我想降低 post 标题的字体大小(最新的 post)并继续在我基于 jekyll 的博客的中心显示它。

我试过修改 https://github.com/x0v/x0v.github.io/blob/master/_sass/atoms/_feature-title.scss 比如添加

font-size: 45px !important;
font-weight: 100 !important;

.feature-title__part

但总是让事情变得更糟。

有人可以建议我该怎么做吗? 回购 https://github.com/x0v/x0v.github.io URL: https://imprashant.com/

我对前端的东西一窍不通,对此我一无所知。虽然我一直在努力。

检查了您的 URL,发现您需要在代码中添加以下内容:

.feature-title {
   display: block;
}
.feature-title__part {
   font-size: 100px !important;
   text-align: center;
}

希望这会得到您想要的结果。