hexo next主题美化备忘录

更换Banner背景图

修改themes\next\source\css_custom\custom.styl文件中的

1
2
3
4
.header-inner{
background: url(/images/background.jpg) no-repeat center center;
padding: 80px 60px 80px 60px
}

把背景图放在source\images\文件夹中。

Banner文字全部居左对齐

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// 标题所在
.brand {
padding-left: 0;
}

.custom-logo-site-title {
text-align: left;
}

// 网站子标题
.site-subtitle {
color: #fff;
text-shadow: 1px 2px 3px black;
text-align: left;
}

.site-nav .menu {
text-align: left;
}

.menu .menu-item a {
text-shadow: 1px 2px 2px black;
}

.main-inner {
margin-top: 0;
padding: 0 60px 60px 60px;
background: #fefefe;
opacity: 0.9;
min-height: 500px;
}

增加分享系统

参考这篇文章

加完之后会发现每篇文章的底下有个小小的分享文字,非常不明显,所以改了一下css样式。

custom.styl底下新增:

1
2
3
4
5
6
7
8
9
10
11
// 给分享功能增加的
.exkulo-share-btn{
text-align: center;
background: #f44336;
color: white;
border-radius: 5px;
width: 80px;
height: 50px;
line-height: 50px;
font-size: 18px;
}

然后到shares.swig中加入该css样式

1
<div class="-mob-share-ui-text -mob-share-open exkulo-share-btn">分享</div>
Buy Me A Coffee / 捐一杯咖啡的钱
分享这篇文章~
0%
//