butterfly主题魔改日记

前言

本人属于那种喜欢瞎折腾的人,最近改了博客主题为butterfly。

魔改之路再次开启。。。。。

2022年8月11日及以前

css: .themes\butterfly\source\css_global\index.styl

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#nav{
backdrop-filter: blur(2em)
}
//自定义样式表
.recent-post-item,.card-widget,#post,#page,#archive{ //多个div的透明及模糊效果。
border-radius: 16px !important;
backdrop-filter: blur(2em);
background: rgba(0, 0, 0, 0) !important;
}
//footer
#footer{
backdrop-filter: blur(2em);//rgba(73, 177, 245,0.3)
}
//手机版站点目录
#sidebar-menus{
backdrop-filter: blur(1em);
background: rgba(255, 255, 255, 0.6) !important;
}
//主页开屏文本
#site-info{
backdrop-filter: blur(2em);
}

layout.pug themes\butterfly\layout\includes\head.pug

1
meta(name="referrer" content="no-referrer")