-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdark_style_bak.css
More file actions
63 lines (55 loc) · 1.16 KB
/
dark_style_bak.css
File metadata and controls
63 lines (55 loc) · 1.16 KB
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
/* CODE_STYLE: github-dark */
/* 可以将':'后的内容替换为其他 pygments.formatters.HtmlFormatter 参数 style 支持的样式 */
/* 在此输入你的样式,注意:
* 不要用过于高级的 CSS 语法;
* 不要用 CSS 变量;
*/
.md_content_to_mailify {
max-width: 80%;
margin: 20px auto;
padding: 20px 40px;
border: 5px solid #00a549;
border-radius: 20px;
background-color: #161b22;
color: #FFFFFF;
}
:not(pre)>code {
color: #58a6ff;
font-family: 'Source Code Pro', monospace;
font-size: 85%;
background-color: rgba(110, 118, 129, 0.4);
border-radius: 6px;
font-weight: bolder;
padding: .1em .3em;
}
/* 调整代码块*/
pre:has(code) {
border-radius: 10px;
background-color: #0d1117;
padding: 2%;
overflow-x: auto;
}
h1,
h2,
h3,
h4,
h5,
h6 {
/* White headings */
color: #FFFFFF;
}
h1 {
border-bottom: 3px solid #FF6D2D;
}
a {
color: #58a6ff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* 代码块内的代码不要有行内代码的灰框 */
div.container pre>code {
background-color: transparent;
font-weight: 600;
}