-
Notifications
You must be signed in to change notification settings - Fork 1
/
org-sidian-preview.css
84 lines (75 loc) · 1.36 KB
/
org-sidian-preview.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/* This code applies org-sidian to preview mode */
/* updated */
/* 2020-10-28 14:09 */
h1:before {
margin-right: 8px;
content: "◉";
font-size: 20px;
color: #f8c537;
}
h2:before {
margin-left: 10px;
margin-right: 8px;
content: "⭗";
font-size: 14px;
color: #ff3333;
}
h3:before {
margin-left: 20px;
margin-right: 8px;
content: "✸";
font-size: 16px;
color: #f8c537;
}
h4:before {
margin-left: 30px;
margin-right: 8px;
content: "◉";
font-size: 20px;
color: #ff3333;
}
h5:before {
margin-left: 40px;
margin-right: 8px;
content: "⭗";
font-size: 14px;
color: #f8c537;
}
h6:before {
margin-left: 50px;
margin-right: 8px;
content: "✸";
font-size: 16px;
color: #ff3333;
}
/* heading size in preview mode (sizes and weights) */
.markdown-preview-view h1 {
font-weight: 500;
font-size: 20px;
line-height: 24px;
}
.markdown-preview-view h2 {
font-weight: 500;
font-size: 20px;
line-height: 24px;
}
.markdown-preview-view h3 {
font-weight: 500;
font-size: 20px;
line-height: 24px;
}
.markdown-preview-view h4 {
font-weight: 500;
font-size: 20px;
line-height: 24px;
}
.markdown-preview-view h5 {
font-weight: 500;
font-size: 20px;
line-height: 24px;
}
.markdown-preview-view h6{
font-weight: 500;
font-size: 20px;
line-height: 24px;
}