HexoNext一些操作

更改头像

1.在主题配置文件中搜索 avatar
2.
3.找到这个路径修改就行了。
4.

添加个人css

themes\next\source\css\_custom修改这个文件

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
32
33
34
35
36
37
// Custom styles.
@media screen and (min-width:1200px) {

body {
background:url(https://i.loli.net/2019/03/01/5c7942720fc39.png);
background-repeat: no-repeat;
background-attachment:fixed;
background-position:50% 50%;
background-size: cover;
}

#footer a {
color:#eee;
}
.main-inner {
margin-top: 10px;
opacity: 0.8;
}
.header-inner {
margin-top: 10px;
position: absolute;
top: auto;
overflow: hidden;
padding: 0;
width: 240px;
background: #fff;
box-shadow: initial;
border-radius: initial;
opacity: 1;
}
.post {
margin-bottom: 30px;
padding: 25px;
-webkit-box-shadow: 0 0 5px rgba(202, 203, 203, .5);
-moz-box-shadow: 0 0 5px rgba(202, 203, 204, .5);
}
}