基于 Butterfly 的外挂标签引入

基于Butterfly主题的分类磁贴

给butterfly添加侧边栏电子钟

Butterfly 主题版权美化

部分细节

部分细节优化

分割线颜色
卡片背景透明
头图和页脚透明
top-img 移除玻璃效果
Twikoo 高度和隐藏图片
夜间模式伪类遮罩层透明

css代码(贰猹的搬运工)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/*
* Twikoo 魔改 高度和隐藏图片
*/

.tk-input[data-v-619b4c52]
.el-textarea__inner{
min-height: 180px !important;
}
.el-textarea__inner:focus{
background-image: none !important;
}

/*
* top-img黑色透明玻璃效果移除
*/

#page-header.post-bg:before {
background-color: transparent!important;
}

/*
* 头图透明
*/

#page-header{
background: transparent!important;
}

/*
* 页脚透明
*/

#footer{
background: transparent!important;
}

/*
* 夜间模式伪类遮罩层透明
*/

[data-theme="dark"] #footer::before{
background: transparent!important;
}
[data-theme="dark"] #page-header::before{
background: transparent!important;
}

/*
* 卡片背景透明度
* 分割线颜色 hr-border
*/

:root {
/* --card-bg: #fff; */
--card-bg: #ffefefd9;
}

[data-theme="dark"] {
/* --card-bg: #121212; */
--card-bg: #12121288;
--btn-hover-color: #787878;
--btn-bg: #1f1f1f;
/* --font-color: rgba(255,255,255,0.7); */
/* --hr-border: rgba(255,255,255,0.4); */
--font-color: rgb(255, 255, 255);
--hr-border: rgb(153,204,255);
}

Twikoo 表情放大

Twikoo 表情放大
1
2
3
4
5
/* 引入 css */
.tk-owo-emotion{
min-height: 100px !important;
min-width: 100px !important;
}

侧边按钮圆角处理

侧边按钮圆角处理
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/* 引入 css */
/*
* 设置按钮
*/

button#rightside_config {
border-radius: 10px;
}

/*
* 回到顶部按钮
*/

button#go-up {
border-radius: 10px;
}

/*
* 隐藏侧边栏按钮
*/

button#hide-aside-btn {
border-radius: 10px;
}

/*
* 简繁转换按钮
*/

button#translateLink {
border-radius: 10px;
}

/*
* 阅读模式按钮
*/

button#readmode {
border-radius: 10px;
}

/*
* 评论按钮
*/

a#to_comment {
border-radius: 10px;
}

/*
* 列表按钮
*/

button#mobile-toc-button {
border-radius: 10px;
}

流程图背景透明

流程图背景透明
1
2
3
4
/* 引入 css */
.mermaid {
background: transparent!important;
}