-
Notifications
You must be signed in to change notification settings - Fork 4
/
MdxSourceBuilderCSS.vim
125 lines (113 loc) · 2.06 KB
/
MdxSourceBuilderCSS.vim
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
/* 顶部的导航 */
.NavTop {
margin: 0 0 10px 0;
text-align: center;
}
/* 顶部的页面导航 */
.NavTop .pagesNav {
background-color: #CC9933;
color: #FFFF99;
}
.NavTop .pageNum {
color: #FFFF99;
padding: 0 5px;
text-decoration: none;
}
.firstPage {}
.previousPage {
font-size:130%;
}
.previous2Page {
font-size:110%;
}
.currentPage {
font-size: 150%;
font-weight: 600;
color: red!important;
}
.nextPage {
font-size:130%;
}
.next2Page {
font-size:110%;
}
.lastPage {}
/* 关键词导航 */
.keywordsNav {
color: blue;
}
.keywordsNavKeyword {
padding: 0 5px;
text-decoration: none;
}
.currentKeyword {
color: red;
font-weight: 700;
}
.subkeywords .keywordsNavKeyword {
padding: 0;
}
a.nearestKeyword {
color: hotpink;
text-decoration: none;
}
/* 多级关键词导航 */
.keywordsNav0 {
/* display:none */
}
.keywordsNav1 {
/* display:none */
}
.keywordsNav2 {
/* display:none */
}
.keywordsNav3 {
/* display:none */
}
.keywordsNav4 {
/* display:none */
}
.keywordsNav5 {
/* display:none */
}
/* 正文图片 */
.mainbodyimg img {
/* 自适应屏幕宽度 */
width: 100%;
/* 按需设定固定宽度 */
/* width: 42em; */
/* display: block; */
/* margin-left: auto; */
/* margin-right: auto; */
/* 对于透明图片的词典,可更改背景色以适应黑夜模式 */
/* 挑选喜欢的颜色 https://encycolorpedia.cn/named */
/* background-color: linen; */
}
/* 底部的导航 */
.NavBottom {
margin: 10px 0 0 0;
text-align: center;
}
/* 自定义导航 */
.customNav {}
.customNavKeyword {
padding: 0 5px;
text-decoration: none;
}
/* 底部的页面导航 */
.NavBottom .pagesNav {
background-color: #EAEAEA;
color: black;
}
.NavBottom .pageNum {
color: black;
padding: 0 5px;
text-decoration: none;
}
.NavBottom .currentPage {
font-size: 150%;
font-weight: 600;
color: red!important;
}
/* 更多自定义CSS */
/* vim: set et sw=4 ts=4 sts=4 fdm=marker ff=unix ft=css fenc=utf8 nobomb: */