主题

主题是 Github 上的 Drake,默认就很好看,根据自己的需求做了一些修改。

自定义修改 CSS

在 Typora 的主题文件夹下新建一个 base.user.css 文件,Typora 每次启动都会加载这个文件。

修改内容如下:

  • H1 左对齐
  • 去除 H2 底部横线
  • 代码块增加圆角和描边
  • 文档宽度减小
  • 公式大小缩小
  • 段落改为两端对齐
  • 行内代码增加背景
  • 图片加上圆角
  • 滚动条圆角和颜色修改

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
h1 {
text-align: left;
}
h2 .md-plain {
border-bottom: 0;
}
.md-fences {
border-radius: 8px;
border: 2px solid var(--md-char-color);
}
#write {
max-width: 850px;
}
.MathJax {
font-size: 100% !important;
}
p {
text-align: justify;
}
#write code, tt {
margin: 0 0;
background: var(--blockquote-bg-color);
padding: 1px 3px 2.5px 3px;
border-radius: 5px;
}
img {
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
border-radius: 4px;
background: var(--md-char-color);
}

自动编号

标题自动编号,代码来自 LPZ

完整代码如下:

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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
/* 添加自动序号样式 */
#write {
counter-reset: h2;
}

h1 {
counter-reset: h2;
}

h2 {
counter-reset: h3;
}

h3 {
counter-reset: h4;
}

h4 {
counter-reset: h5;
}

h5 {
counter-reset: h6;
}

#write h2:before {
counter-increment: h2;
content: counter(h2) " ";
}

#write h3:before,
h3.md-focus.md-heading:before { /** override the default style for focused headings */
counter-increment: h3;
content: counter(h2) "."counter(h3) " ";
}

#write h4:before,
h4.md-focus.md-heading:before {
counter-increment: h4;
content: counter(h2) "."counter(h3) "."counter(h4) " ";
}

#write h5:before,
h5.md-focus.md-heading:before {
counter-increment: h5;
content: counter(h2) "."counter(h3) "."counter(h4) "."counter(h5) " "
}

#write h6:before,
h6.md-focus.md-heading:before {
counter-increment: h6;
content: counter(h2) "."counter(h3) "."counter(h4) "."counter(h5) "."counter(h6) " "
}

/** override the default style for focused headings */
#write>h3.md-focus:before,
#write>h4.md-focus:before,
#write>h5.md-focus:before,
#write>h6.md-focus:before,
h3.md-focus:before,
h4.md-focus:before,
h5.md-focus:before,
h6.md-focus:before {
color: inherit;
border: inherit;
border-radius: inherit;
position: inherit;
left: initial;
float: none;
top: initial;
font-size: inherit;
padding-left: inherit;
padding-right: inherit;
vertical-align: inherit;
font-weight: inherit;
line-height: inherit;
}

/* 自定义强制换号符,使得在导出PDF 或打印时强制换行 */
@media print {

/* 这是自定义标签, 在需要换行的地方插入:<pb> */
pb {
display: block;
page-break-after: always;
}

h1 {
page-break-before: always;
}

h1:first-of-type {
page-break-before: avoid;
}
}

/* 完成的 Task 添加删除线 */
.task-list-done {
text-decoration: line-through;
color: #777;
}

.task-list-not-done {}

/* 添加键盘样式 */
kbd {
box-shadow: inset 0 -2px 0 #c6cbd1;
background-color: white;
}

/* TOC 中隐藏 H1 和 H6 */
.md-toc-h1, .md-toc-h6 {
display: none;
}

/* 添加 TOC 自动序号样式 */
.md-toc-content {
counter-reset: toc-h2;
}

.md-toc-h1 {
counter-reset: toc-h2;
}

.md-toc-h2 {
counter-reset: toc-h3;
}

.md-toc-h3 {
counter-reset: toc-h4;
}

.md-toc-h4 {
counter-reset: toc-h5;
}

.md-toc-h5 {
counter-reset: toc-h6;
}

.md-toc-content .md-toc-h2 a:before {
counter-increment: toc-h2;
content: counter(toc-h2) " ";
}

.md-toc-content .md-toc-h3 a:before {
counter-increment: toc-h3;
content: counter(toc-h2) "."counter(toc-h3) " ";
}

.md-toc-content .md-toc-h4 a:before {
counter-increment: toc-h4;
content: counter(toc-h2) "."counter(toc-h3) "."counter(toc-h4) " ";
}

.md-toc-content .md-toc-h5 a:before {
counter-increment: toc-h5;
content: counter(toc-h2) "."counter(toc-h3) "."counter(toc-h4) "."counter(toc-h5) " ";
}

.md-toc-content .md-toc-h6 a:before {
counter-increment: toc-h6;
content: counter(toc-h2) "."counter(toc-h3) "."counter(toc-h4) "."counter(toc-h5) "."counter(toc-h6) " ";
}

/* 侧边栏自动编号 */
.outline-content {
counter-reset: outline-h2;
}

.outline-h1 {
counter-reset: outline-h2;
}

.outline-h2 {
counter-reset: outline-h3;
}

.outline-h3 {
counter-reset: outline-h4;
}

.outline-h4 {
counter-reset: outline-h5;
}

.outline-h5 {
counter-reset: outline-h6;
}

.outline-content .outline-h2 .outline-label:before {
counter-increment: outline-h2;
content: counter(outline-h2) " ";
}

.outline-content .outline-h3 .outline-label:before {
counter-increment: outline-h3;
content: counter(outline-h2) "."counter(outline-h3) " ";
}

.outline-content .outline-h4 .outline-label:before {
counter-increment: outline-h4;
content: counter(outline-h2) "."counter(outline-h3) "."counter(outline-h4) " ";
}

.outline-content .outline-h5 .outline-label:before {
counter-increment: outline-h5;
content: counter(outline-h2) "."counter(outline-h3) "."counter(outline-h4) "."counter(outline-h5) " ";
}

.outline-content .outline-h6 .outline-label:before {
counter-increment: outline-h6;
content: counter(outline-h2) "."counter(outline-h3) "."counter(outline-h4) "."counter(outline-h5) "."counter(outline-h6) " ";
}