hexo-theme-clarity 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.travis.yml +5 -0
- package/LICENSE +7 -0
- package/README-en.md +319 -0
- package/README.md +343 -0
- package/_config.yml +180 -0
- package/languages/de-DE.yml +22 -0
- package/languages/en.yml +37 -0
- package/languages/es-ES.yml +22 -0
- package/languages/fr-FR.yml +22 -0
- package/languages/ko.yml +22 -0
- package/languages/nb-NO.yml +38 -0
- package/languages/ru.yml +22 -0
- package/languages/zh-CN.yml +38 -0
- package/languages/zh-TW.yml +38 -0
- package/layout/_partial/after_footer.pug +60 -0
- package/layout/_partial/comments.pug +183 -0
- package/layout/_partial/darkmode.pug +13 -0
- package/layout/_partial/footer.pug +26 -0
- package/layout/_partial/head.pug +61 -0
- package/layout/_partial/helpers.pug +21 -0
- package/layout/_partial/mathjax.pug +6 -0
- package/layout/_partial/mathjax2.pug +1 -0
- package/layout/_partial/paginator.pug +3 -0
- package/layout/_partial/post_nav.pug +6 -0
- package/layout/_partial/tag.pug +2 -0
- package/layout/_partial/totop.pug +5 -0
- package/layout/_partial/wordcount.pug +11 -0
- package/layout/_widget/category.pug +4 -0
- package/layout/_widget/copyright.pug +27 -0
- package/layout/_widget/donate.pug +19 -0
- package/layout/_widget/info.pug +21 -0
- package/layout/_widget/links.pug +6 -0
- package/layout/_widget/recent_comments.pug +12 -0
- package/layout/_widget/recent_posts.pug +4 -0
- package/layout/_widget/search.pug +26 -0
- package/layout/_widget/tag.pug +5 -0
- package/layout/archive.pug +24 -0
- package/layout/base-without-sidebar.pug +38 -0
- package/layout/base.pug +47 -0
- package/layout/blogroll.pug +21 -0
- package/layout/index.pug +50 -0
- package/layout/page.pug +12 -0
- package/layout/post.pug +60 -0
- package/layout/single-column.pug +10 -0
- package/layout/tagcloud.pug +23 -0
- package/layout/timeline.pug +28 -0
- package/package.json +15 -0
- package/source/css/copycode.scss +32 -0
- package/source/css/copyright.scss +43 -0
- package/source/css/donate.scss +308 -0
- package/source/css/search.scss +13 -0
- package/source/css/style.scss +2536 -0
- package/source/img/alipay.svg +1 -0
- package/source/img/avatar.png +0 -0
- package/source/img/bei.png +0 -0
- package/source/img/bitcoin.svg +1 -0
- package/source/img/github.svg +1 -0
- package/source/img/like.svg +1 -0
- package/source/img/paypal.svg +1 -0
- package/source/img/wechat.svg +1 -0
- package/source/js/codeblock-resizer.js +51 -0
- package/source/js/copycode.js +30 -0
- package/source/js/copyright.js +17 -0
- package/source/js/donate.js +49 -0
- package/source/js/fancybox.js +19 -0
- package/source/js/love.js +1 -0
- package/source/js/recent-comments.js +54 -0
- package/source/js/search.js +101 -0
- package/source/js/share.js +60 -0
- package/source/js/smartresize.js +32 -0
- package/source/js/totop.js +12 -0
|
@@ -0,0 +1,2536 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @package Maupassant
|
|
3
|
+
* @author cho
|
|
4
|
+
* @version 2.0
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/*
|
|
8
|
+
pure css setting
|
|
9
|
+
When setting the primary font stack, apply it to the Pure grid units along
|
|
10
|
+
with `html`, `button`, `input`, `select`, and `textarea`. Pure Grids use
|
|
11
|
+
specific font stacks to ensure the greatest OS/browser compatibility.
|
|
12
|
+
*/
|
|
13
|
+
|
|
14
|
+
$primaryColor: #409eff;
|
|
15
|
+
$codeBgColor: #e1e8e9; // 新的代码块背景色
|
|
16
|
+
|
|
17
|
+
$originCodeBgColor: #f7f8f8; // 原来的代码块背景色
|
|
18
|
+
$originLinkColor: #01579f; // 原来的链接颜色
|
|
19
|
+
|
|
20
|
+
html,
|
|
21
|
+
button,
|
|
22
|
+
input,
|
|
23
|
+
select,
|
|
24
|
+
textarea,
|
|
25
|
+
.MJXc-TeX-unknown-R,
|
|
26
|
+
.pure-g [class *="pure-u"] {
|
|
27
|
+
/* Set your content font stack here: */
|
|
28
|
+
font-family: "PingFangSC-Regular", Helvetica, "Helvetica Neue", "Segoe UI", "Hiragino Sans GB", "Source Han Sans CN", "Microsoft YaHei", "STHeiti", "WenQuanYi Micro Hei", sans-serif !important;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
body {
|
|
32
|
+
color: #444;
|
|
33
|
+
font-size: 14px;
|
|
34
|
+
font-family: "TIBch", "Classic Grotesque W01", "Helvetica Neue", Arial, "Hiragino Sans GB", "STHeiti", "Microsoft YaHei", "WenQuanYi Micro Hei", SimSun, sans-serif;
|
|
35
|
+
-webkit-font-smoothing: antialiased;
|
|
36
|
+
-moz-osx-font-smoothing: grayscale;
|
|
37
|
+
background-color: #f2f3f5;
|
|
38
|
+
background-image: linear-gradient(to bottom, #7FB8B7, #FFD455);
|
|
39
|
+
background-size: cover;
|
|
40
|
+
background-position: center;
|
|
41
|
+
background-repeat: no-repeat;
|
|
42
|
+
background-attachment: fixed;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.body_container {
|
|
46
|
+
padding: 0 60px;
|
|
47
|
+
max-width: 1150px;
|
|
48
|
+
margin: 0 auto;
|
|
49
|
+
background-color: rgba(255, 255, 255, 0.9);
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.content_container {
|
|
53
|
+
padding-right: 50px;
|
|
54
|
+
padding-top: 20px;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
a,
|
|
58
|
+
button.submit {
|
|
59
|
+
color: #404244;
|
|
60
|
+
text-decoration: none;
|
|
61
|
+
-webkit-transition: all .1s ease-in;
|
|
62
|
+
-moz-transition: all .1s ease-in;
|
|
63
|
+
-o-transition: all .1s ease-in;
|
|
64
|
+
transition: all .1s ease-in;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
a:hover,
|
|
68
|
+
a:active {
|
|
69
|
+
color: $primaryColor;
|
|
70
|
+
text-decoration: underline;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
a:focus {
|
|
74
|
+
outline: auto;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.clear {
|
|
78
|
+
clear: both;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
div {
|
|
82
|
+
box-sizing: border-box;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
#header {
|
|
86
|
+
padding: 58px 0 0;
|
|
87
|
+
text-align: left;
|
|
88
|
+
border-bottom: 1px solid #ddd;
|
|
89
|
+
position: relative;
|
|
90
|
+
|
|
91
|
+
.site-name {
|
|
92
|
+
margin-bottom: 40px;
|
|
93
|
+
position: relative;
|
|
94
|
+
|
|
95
|
+
h1 {
|
|
96
|
+
padding: 0;
|
|
97
|
+
margin: 0;
|
|
98
|
+
height: 0;
|
|
99
|
+
overflow: hidden;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
#logo {
|
|
103
|
+
font: bold 38px/1.12 "Times New Roman", Georgia, Times, sans-serif;
|
|
104
|
+
color: #555;
|
|
105
|
+
|
|
106
|
+
span,
|
|
107
|
+
&:hover {
|
|
108
|
+
color: #777;
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
#docsearch {
|
|
113
|
+
position: absolute;
|
|
114
|
+
right: 0;
|
|
115
|
+
top: 0;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.description {
|
|
119
|
+
margin: .2em 0 0;
|
|
120
|
+
color: #999;
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
#nav-menu {
|
|
125
|
+
margin: 10px 0 -1px;
|
|
126
|
+
padding: 0;
|
|
127
|
+
position: absolute;
|
|
128
|
+
right: 0;
|
|
129
|
+
bottom: 0;
|
|
130
|
+
|
|
131
|
+
a {
|
|
132
|
+
display: inline-block;
|
|
133
|
+
padding: 3px 20px 3px;
|
|
134
|
+
line-height: 30px;
|
|
135
|
+
color: #444;
|
|
136
|
+
font-size: 13px;
|
|
137
|
+
border: 1px solid transparent;
|
|
138
|
+
|
|
139
|
+
&:hover {
|
|
140
|
+
border-bottom-color: #444;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
&.current {
|
|
144
|
+
border: 1px solid #ddd;
|
|
145
|
+
border-bottom-color: #fff;
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
#sidebar {
|
|
152
|
+
border-left: 1px solid #ddd;
|
|
153
|
+
padding-left: 35px;
|
|
154
|
+
margin-top: 40px;
|
|
155
|
+
padding-bottom: 20px;
|
|
156
|
+
word-wrap: break-word;
|
|
157
|
+
|
|
158
|
+
.widget {
|
|
159
|
+
margin-bottom: 30px;
|
|
160
|
+
|
|
161
|
+
.widget-title {
|
|
162
|
+
color: #6E7173;
|
|
163
|
+
line-height: 2.7;
|
|
164
|
+
margin-top: 0;
|
|
165
|
+
font-size: 16px;
|
|
166
|
+
border-bottom: 1px solid #ddd;
|
|
167
|
+
display: block;
|
|
168
|
+
font-weight: normal;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.comments-title {
|
|
172
|
+
color: #6E7173;
|
|
173
|
+
line-height: 2.7;
|
|
174
|
+
margin-top: 0;
|
|
175
|
+
font-size: 16px;
|
|
176
|
+
border-bottom: 0px solid #ddd;
|
|
177
|
+
display: block;
|
|
178
|
+
font-weight: normal;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.tagcloud {
|
|
182
|
+
margin-top: 10px;
|
|
183
|
+
|
|
184
|
+
a {
|
|
185
|
+
line-height: 1.5;
|
|
186
|
+
padding: 5px;
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
ul {
|
|
191
|
+
list-style: none;
|
|
192
|
+
padding: 0;
|
|
193
|
+
|
|
194
|
+
li {
|
|
195
|
+
margin: 5px 0;
|
|
196
|
+
line-height: 1.5;
|
|
197
|
+
|
|
198
|
+
.wl-emoji {
|
|
199
|
+
width: 16px;
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.category-list-count {
|
|
205
|
+
padding-left: 5px;
|
|
206
|
+
color: #6E7173;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.category-list-count::before {
|
|
210
|
+
content: "(";
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.category-list-count::after {
|
|
214
|
+
content: ")";
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
/* tiered display categories */
|
|
218
|
+
.category-list-child li {
|
|
219
|
+
margin-left: 0.6em !important;
|
|
220
|
+
padding-left: 1em;
|
|
221
|
+
position: relative;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
.category-list-child li::before {
|
|
225
|
+
content: "-";
|
|
226
|
+
position: absolute;
|
|
227
|
+
top: 0;
|
|
228
|
+
left: 0;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.search-form {
|
|
232
|
+
position: relative;
|
|
233
|
+
overflow: hidden;
|
|
234
|
+
|
|
235
|
+
input {
|
|
236
|
+
background: #fff 8px 8px no-repeat url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAANCAYAAABy6%2BR8AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAIGNIUk0AAG11AABzoAAA%2FN0AAINkAABw6AAA7GgAADA%2BAAAQkOTsmeoAAAESSURBVHjajNCxS9VRGMbxz71E4OwgoXPQxVEpXCI47%2BZqGP0LCoJO7UVD3QZzb3SwcHB7F3Uw3Zpd%2FAPCcJKG7Dj4u%2FK7Pwp94HDg5Xyf5z1Pr9YKImKANTzFXxzjU2ae6qhXaxURr%2FAFl9hHDy%2FwEK8z89sYVEp5gh84wMvMvGiSJ%2FEV85jNzLMR1McqfmN5BEBmnmMJFSvtpH7jdJiZv7q7Z%2BZPfMdcF6rN%2FT%2F1m2LGBkd4HhFT3dcRMY2FpskxaLNpayciHrWAGeziD7b%2BVfkithuTk8bkGa4wgWFmbrSTZOYeBvjc%2BucQj%2FEe6xHx4Taq1nrnKaW8K6XUUsrHWuvNevdRRLzFGwzvDbXAB9cDAHvhedDruuxSAAAAAElFTkSuQmCC);
|
|
237
|
+
padding: 7px 11px 7px 28px;
|
|
238
|
+
line-height: 16px;
|
|
239
|
+
border: 1px solid #bbb;
|
|
240
|
+
width: 65%;
|
|
241
|
+
-webkit-border-radius: 5px;
|
|
242
|
+
-moz-border-radius: 5px;
|
|
243
|
+
-ms-border-radius: 5px;
|
|
244
|
+
-o-border-radius: 5px;
|
|
245
|
+
border-radius: 5px;
|
|
246
|
+
-webkit-box-shadow: none;
|
|
247
|
+
-moz-box-shadow: none;
|
|
248
|
+
box-shadow: none;
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.author-info {
|
|
253
|
+
text-align: center;
|
|
254
|
+
|
|
255
|
+
a.info-avatar {
|
|
256
|
+
img {
|
|
257
|
+
border-radius: 50%;
|
|
258
|
+
padding: 4px;
|
|
259
|
+
width: 96px;
|
|
260
|
+
height: 96px;
|
|
261
|
+
background-color: transparent;
|
|
262
|
+
box-shadow: 0 0 10px rgba(0, 0, 0, .2);
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
.info-description {
|
|
267
|
+
line-height: 2em;
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
.site-info {
|
|
272
|
+
display: table;
|
|
273
|
+
margin-top: 1em;
|
|
274
|
+
width: 100%;
|
|
275
|
+
|
|
276
|
+
&__item {
|
|
277
|
+
display: table-cell;
|
|
278
|
+
line-height: 2em;
|
|
279
|
+
width: 33.3333%;
|
|
280
|
+
text-align: center;
|
|
281
|
+
|
|
282
|
+
.item__value {
|
|
283
|
+
font-size: 1.2em;
|
|
284
|
+
}
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
.social-info {
|
|
289
|
+
margin-top: 1em;
|
|
290
|
+
display: flex;
|
|
291
|
+
justify-content: space-around;
|
|
292
|
+
|
|
293
|
+
a.info-icon {
|
|
294
|
+
font-size: 24px;
|
|
295
|
+
margin-inline: 10px;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
i {
|
|
299
|
+
transition: transform 0.3s;
|
|
300
|
+
|
|
301
|
+
&:hover {
|
|
302
|
+
transform: rotate(360deg);
|
|
303
|
+
}
|
|
304
|
+
}
|
|
305
|
+
}
|
|
306
|
+
}
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
/* title for search result or tagged posts*/
|
|
311
|
+
|
|
312
|
+
.label-title {
|
|
313
|
+
margin-top: 1.1em;
|
|
314
|
+
font-size: 20px;
|
|
315
|
+
font-weight: normal;
|
|
316
|
+
color: #888;
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
.post {
|
|
320
|
+
padding: 25px 0 15px;
|
|
321
|
+
|
|
322
|
+
.post-title {
|
|
323
|
+
margin: 0;
|
|
324
|
+
color: #555;
|
|
325
|
+
text-align: left;
|
|
326
|
+
font: bold 25px/1.1 "ff-tisa-web-pro", Cambria, "Times New Roman", Georgia, Times, sans-serif;
|
|
327
|
+
|
|
328
|
+
a {
|
|
329
|
+
color: #555;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
.top-post {
|
|
333
|
+
font-weight: 400;
|
|
334
|
+
height: 32px;
|
|
335
|
+
padding: 0 6px;
|
|
336
|
+
margin-right: 5px;
|
|
337
|
+
line-height: 32px;
|
|
338
|
+
font-size: 16px;
|
|
339
|
+
white-space: nowrap;
|
|
340
|
+
vertical-align: 2px;
|
|
341
|
+
color: #fff;
|
|
342
|
+
background-image: -webkit-linear-gradient(0deg, #3742fa 0, #a86af9 100%);
|
|
343
|
+
border-radius: 2px 6px;
|
|
344
|
+
}
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
.post-meta {
|
|
348
|
+
padding: 0;
|
|
349
|
+
margin: 15px 0 0;
|
|
350
|
+
color: #6E7173;
|
|
351
|
+
float: left;
|
|
352
|
+
display: inline;
|
|
353
|
+
text-indent: .15em;
|
|
354
|
+
|
|
355
|
+
&:before {
|
|
356
|
+
font-family: "FontAwesome";
|
|
357
|
+
content: "\f073";
|
|
358
|
+
padding-right: 0.3em;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
&-label {
|
|
362
|
+
margin-right: 4px;
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
.category {
|
|
366
|
+
&:before {
|
|
367
|
+
font-family: "FontAwesome";
|
|
368
|
+
content: "\f07c";
|
|
369
|
+
padding-right: 0.3em;
|
|
370
|
+
}
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
#busuanzi_value_page_pv {
|
|
374
|
+
&:before {
|
|
375
|
+
font-family: "FontAwesome";
|
|
376
|
+
content: "\f024";
|
|
377
|
+
padding-right: 0.3em;
|
|
378
|
+
}
|
|
379
|
+
}
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
.ds-thread-count {
|
|
383
|
+
padding: 0;
|
|
384
|
+
margin: 15px 0 0;
|
|
385
|
+
color: #6E7173;
|
|
386
|
+
float: right;
|
|
387
|
+
display: inline;
|
|
388
|
+
text-indent: .15em;
|
|
389
|
+
|
|
390
|
+
&:before {
|
|
391
|
+
font-family: "FontAwesome";
|
|
392
|
+
content: "\f0e5";
|
|
393
|
+
padding-right: 0.3em;
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
&:hover {
|
|
397
|
+
color: #444;
|
|
398
|
+
}
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
.disqus-comment-count {
|
|
402
|
+
padding: 0;
|
|
403
|
+
margin: 15px 0 0;
|
|
404
|
+
color: #6E7173;
|
|
405
|
+
float: right;
|
|
406
|
+
display: inline;
|
|
407
|
+
text-indent: .15em;
|
|
408
|
+
user-select: none;
|
|
409
|
+
|
|
410
|
+
&:before {
|
|
411
|
+
font-family: "FontAwesome";
|
|
412
|
+
content: "\f0e5";
|
|
413
|
+
padding-right: 0.3em;
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
&:hover {
|
|
417
|
+
color: #444;
|
|
418
|
+
}
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
.post-content {
|
|
422
|
+
clear: left;
|
|
423
|
+
font-size: 15px;
|
|
424
|
+
line-height: 1.77;
|
|
425
|
+
color: #444;
|
|
426
|
+
padding-top: 15px;
|
|
427
|
+
// text-align: justify;
|
|
428
|
+
word-break: break-word;
|
|
429
|
+
|
|
430
|
+
h2 {
|
|
431
|
+
margin: 1.4em 0 1.1em;
|
|
432
|
+
border-bottom: 1px solid #eee;
|
|
433
|
+
overflow: hidden;
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
h3 {
|
|
437
|
+
margin: 1.4em 0 1.1em;
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
pre code {
|
|
441
|
+
padding: 0 2em;
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
p {
|
|
445
|
+
margin: 0 0 1.234em;
|
|
446
|
+
word-break: break-word;
|
|
447
|
+
overflow-wrap: break-word;
|
|
448
|
+
|
|
449
|
+
code {
|
|
450
|
+
// display: inline-block;
|
|
451
|
+
// margin: 0 5px;
|
|
452
|
+
padding: 3px 5px;
|
|
453
|
+
background-color: $codeBgColor;
|
|
454
|
+
font-family: Menlo, Consolas, monospace !important;
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
a {
|
|
458
|
+
color: $primaryColor;
|
|
459
|
+
padding-bottom: 2px;
|
|
460
|
+
word-break: normal;
|
|
461
|
+
|
|
462
|
+
&:hover {
|
|
463
|
+
text-decoration: underline;
|
|
464
|
+
}
|
|
465
|
+
}
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
.caption {
|
|
469
|
+
color: #444;
|
|
470
|
+
display: block;
|
|
471
|
+
font-size: 0.9em;
|
|
472
|
+
margin-top: 0.1em;
|
|
473
|
+
position: relative;
|
|
474
|
+
text-align: center;
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
hr {
|
|
478
|
+
margin: 2.4em auto;
|
|
479
|
+
border: none;
|
|
480
|
+
border-top: 1px solid #eee;
|
|
481
|
+
position: relative;
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
img {
|
|
485
|
+
max-width: 100%;
|
|
486
|
+
// padding: 0.5em 0;
|
|
487
|
+
margin: auto;
|
|
488
|
+
display: block;
|
|
489
|
+
box-sizing: border-box;
|
|
490
|
+
border: 4px solid #ccc;
|
|
491
|
+
border-radius: 1em;
|
|
492
|
+
|
|
493
|
+
// border-radius: 6px;
|
|
494
|
+
// box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
img.border-none {
|
|
498
|
+
border: none;
|
|
499
|
+
border-radius: 0;
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
ul,
|
|
503
|
+
ol {
|
|
504
|
+
border-radius: 3px;
|
|
505
|
+
margin: 1em 0;
|
|
506
|
+
|
|
507
|
+
ul {
|
|
508
|
+
margin: 0;
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
code {
|
|
512
|
+
// display: inline-block;
|
|
513
|
+
// margin: 0 5px;
|
|
514
|
+
padding: 3px 5px;
|
|
515
|
+
background: $codeBgColor;
|
|
516
|
+
font-family: Menlo, Consolas, monospace !important;
|
|
517
|
+
}
|
|
518
|
+
|
|
519
|
+
a {
|
|
520
|
+
color: $primaryColor;
|
|
521
|
+
padding-bottom: 2px;
|
|
522
|
+
word-break: normal;
|
|
523
|
+
|
|
524
|
+
&:hover {
|
|
525
|
+
text-decoration: underline;
|
|
526
|
+
}
|
|
527
|
+
}
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
.tagcloud {
|
|
531
|
+
margin: 0 0 30px 0;
|
|
532
|
+
|
|
533
|
+
a {
|
|
534
|
+
padding: 0px 5px;
|
|
535
|
+
margin: 3px;
|
|
536
|
+
display: inline-block;
|
|
537
|
+
border: 1px solid #808080;
|
|
538
|
+
border-radius: 999em;
|
|
539
|
+
color: #aaa;
|
|
540
|
+
|
|
541
|
+
&:hover {
|
|
542
|
+
color: #fff;
|
|
543
|
+
border: 1px solid #808080;
|
|
544
|
+
background: #808080;
|
|
545
|
+
}
|
|
546
|
+
}
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
.one-tag-list {
|
|
550
|
+
margin: 30px 0;
|
|
551
|
+
|
|
552
|
+
.tag-name {
|
|
553
|
+
.tag-text {
|
|
554
|
+
margin-left: 5px;
|
|
555
|
+
font-size: 16px;
|
|
556
|
+
font-weight: bold;
|
|
557
|
+
}
|
|
558
|
+
}
|
|
559
|
+
}
|
|
560
|
+
}
|
|
561
|
+
|
|
562
|
+
.tags {
|
|
563
|
+
a {
|
|
564
|
+
margin-right: .5em;
|
|
565
|
+
|
|
566
|
+
i {
|
|
567
|
+
padding-right: 0.3em;
|
|
568
|
+
}
|
|
569
|
+
}
|
|
570
|
+
}
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
.page-navigator {
|
|
574
|
+
border-top: 1px solid #ddd;
|
|
575
|
+
list-style: none;
|
|
576
|
+
margin-top: 25px;
|
|
577
|
+
padding: 25px 0 0;
|
|
578
|
+
font-size: 14px;
|
|
579
|
+
text-align: center;
|
|
580
|
+
|
|
581
|
+
.page-number {
|
|
582
|
+
display: inline-block;
|
|
583
|
+
margin: 0 5px 5px 0;
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
a,
|
|
587
|
+
span {
|
|
588
|
+
display: inline-block;
|
|
589
|
+
height: 25px;
|
|
590
|
+
line-height: 25px;
|
|
591
|
+
padding: 5px 9px;
|
|
592
|
+
border: 1px solid #DDD;
|
|
593
|
+
text-align: center;
|
|
594
|
+
|
|
595
|
+
&:hover {
|
|
596
|
+
background: #F8F8F8;
|
|
597
|
+
border-bottom-color: #D26911;
|
|
598
|
+
}
|
|
599
|
+
|
|
600
|
+
&.prev {
|
|
601
|
+
float: left;
|
|
602
|
+
|
|
603
|
+
&:before {
|
|
604
|
+
font-family: "FontAwesome";
|
|
605
|
+
content: "\f100";
|
|
606
|
+
padding-right: 0.3em;
|
|
607
|
+
}
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
&.next {
|
|
611
|
+
float: right;
|
|
612
|
+
|
|
613
|
+
&:after {
|
|
614
|
+
font-family: "FontAwesome";
|
|
615
|
+
content: "\f101";
|
|
616
|
+
padding-left: 0.3em;
|
|
617
|
+
}
|
|
618
|
+
}
|
|
619
|
+
}
|
|
620
|
+
|
|
621
|
+
.current {
|
|
622
|
+
background: #F8F8F8;
|
|
623
|
+
border-bottom-color: #D26911;
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
.space {
|
|
627
|
+
border: none;
|
|
628
|
+
padding: 5px 5px;
|
|
629
|
+
}
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
#footer {
|
|
633
|
+
padding: .8em 0 3.6em;
|
|
634
|
+
margin-top: 1em;
|
|
635
|
+
line-height: 2.5;
|
|
636
|
+
color: #6E7173;
|
|
637
|
+
text-align: center;
|
|
638
|
+
|
|
639
|
+
span {
|
|
640
|
+
font-size: .9em;
|
|
641
|
+
}
|
|
642
|
+
}
|
|
643
|
+
|
|
644
|
+
|
|
645
|
+
/* for archive page starts*/
|
|
646
|
+
|
|
647
|
+
.post-archive {
|
|
648
|
+
font-size: 15px;
|
|
649
|
+
line-height: 2;
|
|
650
|
+
padding-bottom: .8em;
|
|
651
|
+
|
|
652
|
+
h2 {
|
|
653
|
+
margin: 0;
|
|
654
|
+
font: bold 25px / 1.1 "ff-tisa-web-pro", Cambria, "Times New Roman", Georgia, Times, sans-serif;
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
.date {
|
|
658
|
+
padding-right: .7em;
|
|
659
|
+
}
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
|
|
663
|
+
/* for archive page ends*/
|
|
664
|
+
|
|
665
|
+
|
|
666
|
+
/* middle*/
|
|
667
|
+
|
|
668
|
+
@media print,
|
|
669
|
+
screen and (max-width: 48em) {
|
|
670
|
+
.body_container {
|
|
671
|
+
padding: 0 30px;
|
|
672
|
+
}
|
|
673
|
+
|
|
674
|
+
.content_container {
|
|
675
|
+
padding-right: 15px;
|
|
676
|
+
}
|
|
677
|
+
|
|
678
|
+
.hidden_mid_and_down {
|
|
679
|
+
display: none !important;
|
|
680
|
+
}
|
|
681
|
+
|
|
682
|
+
#sidebar {
|
|
683
|
+
border-left-width: 0px;
|
|
684
|
+
}
|
|
685
|
+
|
|
686
|
+
#header {
|
|
687
|
+
.site-name {
|
|
688
|
+
margin-bottom: 20px;
|
|
689
|
+
text-align: center;
|
|
690
|
+
}
|
|
691
|
+
|
|
692
|
+
#nav-menu {
|
|
693
|
+
position: relative;
|
|
694
|
+
text-align: center;
|
|
695
|
+
|
|
696
|
+
a {
|
|
697
|
+
padding: 0 15px;
|
|
698
|
+
line-height: 27px;
|
|
699
|
+
height: 27px;
|
|
700
|
+
font-size: 13px;
|
|
701
|
+
}
|
|
702
|
+
}
|
|
703
|
+
}
|
|
704
|
+
}
|
|
705
|
+
|
|
706
|
+
|
|
707
|
+
/* small*/
|
|
708
|
+
|
|
709
|
+
@media print,
|
|
710
|
+
screen and (max-width: 35.5em) {
|
|
711
|
+
.body_container {
|
|
712
|
+
padding: 0 20px;
|
|
713
|
+
}
|
|
714
|
+
|
|
715
|
+
.content_container {
|
|
716
|
+
padding-right: 0;
|
|
717
|
+
}
|
|
718
|
+
}
|
|
719
|
+
|
|
720
|
+
blockquote,
|
|
721
|
+
.stressed {
|
|
722
|
+
-moz-box-sizing: border-box;
|
|
723
|
+
box-sizing: border-box;
|
|
724
|
+
margin: 2.5em 0;
|
|
725
|
+
padding: 0 0 0 50px;
|
|
726
|
+
color: #555;
|
|
727
|
+
border-left: none;
|
|
728
|
+
}
|
|
729
|
+
|
|
730
|
+
blockquote::before,
|
|
731
|
+
.stressed-quote::before {
|
|
732
|
+
content: "\201C";
|
|
733
|
+
display: block;
|
|
734
|
+
font-family: times;
|
|
735
|
+
font-style: normal;
|
|
736
|
+
font-size: 48px;
|
|
737
|
+
color: #444;
|
|
738
|
+
font-weight: bold;
|
|
739
|
+
line-height: 30px;
|
|
740
|
+
margin-left: -50px;
|
|
741
|
+
position: absolute;
|
|
742
|
+
}
|
|
743
|
+
|
|
744
|
+
strong,
|
|
745
|
+
b,
|
|
746
|
+
em {
|
|
747
|
+
font-weight: bold;
|
|
748
|
+
}
|
|
749
|
+
|
|
750
|
+
pre {
|
|
751
|
+
margin: 2em 0;
|
|
752
|
+
}
|
|
753
|
+
|
|
754
|
+
.hidden1 {
|
|
755
|
+
display: none;
|
|
756
|
+
}
|
|
757
|
+
|
|
758
|
+
|
|
759
|
+
/* back-to-top rocket*/
|
|
760
|
+
|
|
761
|
+
@media print,
|
|
762
|
+
screen and (min-width: 48em) {
|
|
763
|
+
#rocket {
|
|
764
|
+
position: fixed;
|
|
765
|
+
right: 50px;
|
|
766
|
+
bottom: 50px;
|
|
767
|
+
display: block;
|
|
768
|
+
visibility: hidden;
|
|
769
|
+
width: 26px;
|
|
770
|
+
height: 48px;
|
|
771
|
+
background: url("data:image/png;base64,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") no-repeat 50% 0;
|
|
772
|
+
opacity: 0;
|
|
773
|
+
-webkit-transition: visibility .6s cubic-bezier(0.6, 0.04, 0.98, 0.335), opacity .6s cubic-bezier(0.6, 0.04, 0.98, 0.335), -webkit-transform .6s cubic-bezier(0.6, 0.04, 0.98, 0.335);
|
|
774
|
+
-moz-transition: visibility .6s cubic-bezier(0.6, 0.04, 0.98, 0.335), opacity .6s cubic-bezier(0.6, 0.04, 0.98, 0.335), -moz-transform .6s cubic-bezier(0.6, 0.04, 0.98, 0.335);
|
|
775
|
+
transition: visibility .6s cubic-bezier(0.6, 0.04, 0.98, 0.335), opacity .6s cubic-bezier(0.6, 0.04, 0.98, 0.335), transform .6s cubic-bezier(0.6, 0.04, 0.98, 0.335);
|
|
776
|
+
|
|
777
|
+
i {
|
|
778
|
+
display: block;
|
|
779
|
+
margin-top: 48px;
|
|
780
|
+
height: 14px;
|
|
781
|
+
background: url("data:image/png;base64,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") no-repeat 50% -48px;
|
|
782
|
+
opacity: .5;
|
|
783
|
+
-webkit-transition: -webkit-transform .2s;
|
|
784
|
+
-moz-transition: -moz-transform .2s;
|
|
785
|
+
transition: transform .2s;
|
|
786
|
+
-webkit-transform-origin: 50% 0;
|
|
787
|
+
-moz-transform-origin: 50% 0;
|
|
788
|
+
transform-origin: 50% 0;
|
|
789
|
+
}
|
|
790
|
+
}
|
|
791
|
+
|
|
792
|
+
#rocket:hover {
|
|
793
|
+
background-position: 50% -62px;
|
|
794
|
+
|
|
795
|
+
i {
|
|
796
|
+
background-position: 50% 100%;
|
|
797
|
+
-webkit-animation: flaming .7s infinite;
|
|
798
|
+
-moz-animation: flaming .7s infinite;
|
|
799
|
+
animation: flaming .7s infinite;
|
|
800
|
+
}
|
|
801
|
+
}
|
|
802
|
+
|
|
803
|
+
#rocket.show {
|
|
804
|
+
visibility: visible;
|
|
805
|
+
opacity: 1;
|
|
806
|
+
}
|
|
807
|
+
|
|
808
|
+
#rocket.launch {
|
|
809
|
+
background-position: 50% -62px;
|
|
810
|
+
opacity: 0;
|
|
811
|
+
-webkit-transform: translateY(-500px);
|
|
812
|
+
-moz-transform: translateY(-500px);
|
|
813
|
+
-ms-transform: translateY(-500px);
|
|
814
|
+
transform: translateY(-500px);
|
|
815
|
+
pointer-events: none;
|
|
816
|
+
|
|
817
|
+
i {
|
|
818
|
+
background-position: 50% 100%;
|
|
819
|
+
-webkit-transform: scale(1.4, 3.2);
|
|
820
|
+
-moz-transform: scale(1.4, 3.2);
|
|
821
|
+
transform: scale(1.4, 3.2);
|
|
822
|
+
}
|
|
823
|
+
}
|
|
824
|
+
}
|
|
825
|
+
|
|
826
|
+
|
|
827
|
+
/* *******************************************************
|
|
828
|
+
* Process timelime, (homepage)
|
|
829
|
+
******************************************************* */
|
|
830
|
+
|
|
831
|
+
#process {
|
|
832
|
+
padding: 80px 0;
|
|
833
|
+
background-color: #fff;
|
|
834
|
+
}
|
|
835
|
+
|
|
836
|
+
#process .col-md-2 i {
|
|
837
|
+
font-size: 50px;
|
|
838
|
+
position: relative;
|
|
839
|
+
top: 10px;
|
|
840
|
+
}
|
|
841
|
+
|
|
842
|
+
#process .timeline-centered {
|
|
843
|
+
position: relative;
|
|
844
|
+
min-height: 14px;
|
|
845
|
+
margin-bottom: 30px;
|
|
846
|
+
}
|
|
847
|
+
|
|
848
|
+
#process .timeline-centered::before,
|
|
849
|
+
#process .timeline-centered::after,
|
|
850
|
+
#process .timeline-centered::before,
|
|
851
|
+
#process .timeline-centered::after {
|
|
852
|
+
content: " ";
|
|
853
|
+
display: table;
|
|
854
|
+
}
|
|
855
|
+
|
|
856
|
+
#process .timeline-centered::after {
|
|
857
|
+
clear: both;
|
|
858
|
+
}
|
|
859
|
+
|
|
860
|
+
#process .timeline-centered::before {
|
|
861
|
+
content: '';
|
|
862
|
+
position: absolute;
|
|
863
|
+
display: block;
|
|
864
|
+
width: 4px;
|
|
865
|
+
background: #f5f5f6;
|
|
866
|
+
/*left: 50%;*/
|
|
867
|
+
top: 50px;
|
|
868
|
+
bottom: 50px;
|
|
869
|
+
margin-left: 10px;
|
|
870
|
+
}
|
|
871
|
+
|
|
872
|
+
#process .timeline-centered .timeline-entry {
|
|
873
|
+
position: relative;
|
|
874
|
+
/*width: 50%;
|
|
875
|
+
float: right;*/
|
|
876
|
+
margin-top: 5px;
|
|
877
|
+
margin-left: 20px;
|
|
878
|
+
margin-bottom: 10px;
|
|
879
|
+
clear: both;
|
|
880
|
+
}
|
|
881
|
+
|
|
882
|
+
#process .timeline-centered .timeline-entry::before,
|
|
883
|
+
#process .timeline-centered .timeline-entry::after {
|
|
884
|
+
content: " ";
|
|
885
|
+
display: table;
|
|
886
|
+
}
|
|
887
|
+
|
|
888
|
+
#process .timeline-centered .timeline-entry::after {
|
|
889
|
+
clear: both;
|
|
890
|
+
}
|
|
891
|
+
|
|
892
|
+
#process .timeline-centered .timeline-entry.begin {
|
|
893
|
+
margin-bottom: 0;
|
|
894
|
+
}
|
|
895
|
+
|
|
896
|
+
#process .timeline-centered .timeline-entry.left-aligned {
|
|
897
|
+
float: left;
|
|
898
|
+
}
|
|
899
|
+
|
|
900
|
+
#process .timeline-centered .timeline-entry.left-aligned .timeline-entry-inner {
|
|
901
|
+
margin-left: 0;
|
|
902
|
+
margin-right: -18px;
|
|
903
|
+
}
|
|
904
|
+
|
|
905
|
+
#process .timeline-centered .timeline-entry.left-aligned .timeline-entry-inner .timeline-time {
|
|
906
|
+
left: auto;
|
|
907
|
+
right: -100px;
|
|
908
|
+
text-align: left;
|
|
909
|
+
}
|
|
910
|
+
|
|
911
|
+
#process span.number {
|
|
912
|
+
font-family: 'Georgia', serif, Helvetica, "Helvetica Neue", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans CN", "WenQuanYi Micro Hei", Arial, sans-serif;
|
|
913
|
+
font-style: italic;
|
|
914
|
+
font-size: 20px;
|
|
915
|
+
line-height: 0;
|
|
916
|
+
color: #E7E7E5;
|
|
917
|
+
position: relative;
|
|
918
|
+
top: -4px;
|
|
919
|
+
}
|
|
920
|
+
|
|
921
|
+
#process .timeline-centered .timeline-entry.left-aligned .timeline-entry-inner .timeline-icon {
|
|
922
|
+
float: right;
|
|
923
|
+
}
|
|
924
|
+
|
|
925
|
+
#process .timeline-centered .timeline-entry.left-aligned .timeline-entry-inner .timeline-label {
|
|
926
|
+
margin-left: 0;
|
|
927
|
+
margin-right: 70px;
|
|
928
|
+
}
|
|
929
|
+
|
|
930
|
+
#process .timeline-centered .timeline-entry.left-aligned .timeline-entry-inner .timeline-label::after {
|
|
931
|
+
left: auto;
|
|
932
|
+
right: 0;
|
|
933
|
+
margin-left: 0;
|
|
934
|
+
margin-right: -9px;
|
|
935
|
+
-moz-transform: rotate(180deg);
|
|
936
|
+
-o-transform: rotate(180deg);
|
|
937
|
+
-webkit-transform: rotate(180deg);
|
|
938
|
+
-ms-transform: rotate(180deg);
|
|
939
|
+
transform: rotate(180deg);
|
|
940
|
+
}
|
|
941
|
+
|
|
942
|
+
.timeline-label p {
|
|
943
|
+
font-family: Helvetica, "Helvetica Neue", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans CN", "WenQuanYi Micro Hei", Arial, sans-serif;
|
|
944
|
+
margin-bottom: 3px
|
|
945
|
+
}
|
|
946
|
+
|
|
947
|
+
#process .timeline-centered .timeline-entry .timeline-entry-inner {
|
|
948
|
+
position: relative;
|
|
949
|
+
margin-left: -20px;
|
|
950
|
+
}
|
|
951
|
+
|
|
952
|
+
#process .timeline-centered .timeline-entry .timeline-entry-inner::before,
|
|
953
|
+
#process .timeline-centered .timeline-entry .timeline-entry-inner::after {
|
|
954
|
+
content: " ";
|
|
955
|
+
display: table;
|
|
956
|
+
}
|
|
957
|
+
|
|
958
|
+
#process .timeline-centered .timeline-entry .timeline-entry-inner::after {
|
|
959
|
+
clear: both;
|
|
960
|
+
}
|
|
961
|
+
|
|
962
|
+
#process .timeline-centered .timeline-entry .timeline-entry-inner .timeline-time {
|
|
963
|
+
position: absolute;
|
|
964
|
+
left: -100px;
|
|
965
|
+
text-align: right;
|
|
966
|
+
padding: 10px;
|
|
967
|
+
-webkit-box-sizing: border-box;
|
|
968
|
+
-moz-box-sizing: border-box;
|
|
969
|
+
box-sizing: border-box;
|
|
970
|
+
}
|
|
971
|
+
|
|
972
|
+
#process .timeline-centered .timeline-entry .timeline-entry-inner .timeline-time>span {
|
|
973
|
+
display: block;
|
|
974
|
+
}
|
|
975
|
+
|
|
976
|
+
#process .timeline-centered .timeline-entry .timeline-entry-inner .timeline-time>span:first-child {
|
|
977
|
+
font-size: 15px;
|
|
978
|
+
font-weight: bold;
|
|
979
|
+
}
|
|
980
|
+
|
|
981
|
+
#process .timeline-centered .timeline-entry .timeline-entry-inner .timeline-time>span:last-child {
|
|
982
|
+
font-size: 12px;
|
|
983
|
+
}
|
|
984
|
+
|
|
985
|
+
#process .timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon {
|
|
986
|
+
background: #fff;
|
|
987
|
+
color: #737881;
|
|
988
|
+
display: block;
|
|
989
|
+
width: 40px;
|
|
990
|
+
height: 40px;
|
|
991
|
+
-webkit-background-clip: padding-box;
|
|
992
|
+
-moz-background-clip: padding;
|
|
993
|
+
background-clip: padding-box;
|
|
994
|
+
-webkit-border-radius: 20px;
|
|
995
|
+
-moz-border-radius: 20px;
|
|
996
|
+
border-radius: 20px;
|
|
997
|
+
text-align: center;
|
|
998
|
+
border: 4px solid #F5F5F6;
|
|
999
|
+
line-height: 40px;
|
|
1000
|
+
font-size: 15px;
|
|
1001
|
+
float: left;
|
|
1002
|
+
position: absolute;
|
|
1003
|
+
top: 50%;
|
|
1004
|
+
margin-top: -20px;
|
|
1005
|
+
margin-left: -9px;
|
|
1006
|
+
}
|
|
1007
|
+
|
|
1008
|
+
#process .timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-primary {
|
|
1009
|
+
background-color: #303641;
|
|
1010
|
+
color: #fff;
|
|
1011
|
+
}
|
|
1012
|
+
|
|
1013
|
+
#process .timeline-centered .timeline-entry .timeline-entry-inner .timeline-label {
|
|
1014
|
+
position: relative;
|
|
1015
|
+
background: #eee;
|
|
1016
|
+
padding: 30px;
|
|
1017
|
+
margin-left: 60px;
|
|
1018
|
+
-webkit-background-clip: padding-box;
|
|
1019
|
+
-moz-background-clip: padding;
|
|
1020
|
+
background-clip: padding-box;
|
|
1021
|
+
-webkit-border-radius: 3px;
|
|
1022
|
+
-moz-border-radius: 3px;
|
|
1023
|
+
border-radius: 3px;
|
|
1024
|
+
}
|
|
1025
|
+
|
|
1026
|
+
#process .timeline-centered .timeline-entry .timeline-entry-inner .timeline-label::after {
|
|
1027
|
+
content: '';
|
|
1028
|
+
display: block;
|
|
1029
|
+
position: absolute;
|
|
1030
|
+
width: 0;
|
|
1031
|
+
height: 0;
|
|
1032
|
+
border-style: solid;
|
|
1033
|
+
border-width: 9px 9px 9px 0;
|
|
1034
|
+
border-color: transparent #eee transparent transparent;
|
|
1035
|
+
left: 0;
|
|
1036
|
+
top: 50%;
|
|
1037
|
+
margin-top: -9px;
|
|
1038
|
+
margin-left: -9px;
|
|
1039
|
+
}
|
|
1040
|
+
|
|
1041
|
+
#process .line {
|
|
1042
|
+
position: absolute;
|
|
1043
|
+
display: block;
|
|
1044
|
+
width: 4px;
|
|
1045
|
+
background: #eee;
|
|
1046
|
+
top: -18px;
|
|
1047
|
+
right: -30px;
|
|
1048
|
+
bottom: -8px;
|
|
1049
|
+
}
|
|
1050
|
+
|
|
1051
|
+
#process .present,
|
|
1052
|
+
#process .born {
|
|
1053
|
+
font-size: 14px;
|
|
1054
|
+
font-family: 'Georgia', serif, Helvetica, "Helvetica Neue", "Hiragino Sans GB", "Microsoft YaHei", "Source Han Sans CN", "WenQuanYi Micro Hei", Arial, sans-serif;
|
|
1055
|
+
font-style: italic;
|
|
1056
|
+
color: #333;
|
|
1057
|
+
padding: 10px;
|
|
1058
|
+
background-color: #eee;
|
|
1059
|
+
-webkit-border-radius: 3px;
|
|
1060
|
+
-moz-border-radius: 3px;
|
|
1061
|
+
border-radius: 3px;
|
|
1062
|
+
}
|
|
1063
|
+
|
|
1064
|
+
#process .present::after,
|
|
1065
|
+
#process .born::after {
|
|
1066
|
+
left: 100%;
|
|
1067
|
+
top: 50%;
|
|
1068
|
+
border: solid transparent;
|
|
1069
|
+
content: " ";
|
|
1070
|
+
height: 0;
|
|
1071
|
+
width: 0;
|
|
1072
|
+
position: absolute;
|
|
1073
|
+
border-color: rgba(136, 183, 213, 0);
|
|
1074
|
+
border-left-color: #eee;
|
|
1075
|
+
border-width: 10px;
|
|
1076
|
+
margin-top: -10px
|
|
1077
|
+
}
|
|
1078
|
+
|
|
1079
|
+
#process .present {
|
|
1080
|
+
position: absolute;
|
|
1081
|
+
top: -18px;
|
|
1082
|
+
right: 0;
|
|
1083
|
+
margin-top: -20px;
|
|
1084
|
+
line-height: 100%;
|
|
1085
|
+
}
|
|
1086
|
+
|
|
1087
|
+
#process .born {
|
|
1088
|
+
position: absolute;
|
|
1089
|
+
bottom: -8px;
|
|
1090
|
+
right: 0;
|
|
1091
|
+
margin-bottom: -20px;
|
|
1092
|
+
line-height: 100%;
|
|
1093
|
+
}
|
|
1094
|
+
|
|
1095
|
+
#process .dot_tp {
|
|
1096
|
+
position: absolute;
|
|
1097
|
+
top: -18px;
|
|
1098
|
+
right: -35px;
|
|
1099
|
+
background-color: transparent;
|
|
1100
|
+
height: 15px;
|
|
1101
|
+
width: 15px;
|
|
1102
|
+
margin-top: -13px;
|
|
1103
|
+
-webkit-border-radius: 50%;
|
|
1104
|
+
-moz-border-radius: 50%;
|
|
1105
|
+
border-radius: 50%;
|
|
1106
|
+
border: 3px solid #eee;
|
|
1107
|
+
}
|
|
1108
|
+
|
|
1109
|
+
#process .dot_bt {
|
|
1110
|
+
position: absolute;
|
|
1111
|
+
bottom: -8px;
|
|
1112
|
+
right: -35px;
|
|
1113
|
+
background-color: transparent;
|
|
1114
|
+
height: 15px;
|
|
1115
|
+
width: 15px;
|
|
1116
|
+
margin-bottom: -13px;
|
|
1117
|
+
-webkit-border-radius: 50%;
|
|
1118
|
+
-moz-border-radius: 50%;
|
|
1119
|
+
border-radius: 50%;
|
|
1120
|
+
border: 3px solid #eee;
|
|
1121
|
+
}
|
|
1122
|
+
|
|
1123
|
+
@media (max-width:768px) {
|
|
1124
|
+
#process .line {
|
|
1125
|
+
right: 10px;
|
|
1126
|
+
}
|
|
1127
|
+
|
|
1128
|
+
#process .timeline-centered .timeline-entry .timeline-entry-inner .timeline-label {
|
|
1129
|
+
margin-right: 30px;
|
|
1130
|
+
margin-left: 45px;
|
|
1131
|
+
padding: 20px;
|
|
1132
|
+
}
|
|
1133
|
+
|
|
1134
|
+
#process .timeline-centered .timeline-entry {
|
|
1135
|
+
margin-right: 20px;
|
|
1136
|
+
}
|
|
1137
|
+
|
|
1138
|
+
#process .dot_tp,
|
|
1139
|
+
#process .dot_bt {
|
|
1140
|
+
right: 5px;
|
|
1141
|
+
}
|
|
1142
|
+
|
|
1143
|
+
#process .present,
|
|
1144
|
+
#process .born {
|
|
1145
|
+
right: 35px;
|
|
1146
|
+
}
|
|
1147
|
+
}
|
|
1148
|
+
|
|
1149
|
+
|
|
1150
|
+
/* read more*/
|
|
1151
|
+
|
|
1152
|
+
.readmore a {
|
|
1153
|
+
font-size: 14px;
|
|
1154
|
+
color: #444;
|
|
1155
|
+
margin: -10px 0;
|
|
1156
|
+
padding: 5px 10px;
|
|
1157
|
+
border: 1px solid #ddd;
|
|
1158
|
+
border-radius: 5px;
|
|
1159
|
+
float: right;
|
|
1160
|
+
|
|
1161
|
+
&:after {
|
|
1162
|
+
font-family: "FontAwesome";
|
|
1163
|
+
content: "\f101";
|
|
1164
|
+
padding-left: 0.3em;
|
|
1165
|
+
}
|
|
1166
|
+
|
|
1167
|
+
&:hover {
|
|
1168
|
+
background: #F8F8F8;
|
|
1169
|
+
border-bottom-color: #D26911;
|
|
1170
|
+
}
|
|
1171
|
+
}
|
|
1172
|
+
|
|
1173
|
+
|
|
1174
|
+
/* syntax highlight*/
|
|
1175
|
+
|
|
1176
|
+
figure.highlight,
|
|
1177
|
+
.codeblock {
|
|
1178
|
+
margin: 10px 0;
|
|
1179
|
+
line-height: 1.1em;
|
|
1180
|
+
color: #333;
|
|
1181
|
+
padding-top: 15px;
|
|
1182
|
+
overflow: hidden;
|
|
1183
|
+
background-color: $codeBgColor;
|
|
1184
|
+
border-radius: 1em;
|
|
1185
|
+
|
|
1186
|
+
table {
|
|
1187
|
+
display: block;
|
|
1188
|
+
width: 100%;
|
|
1189
|
+
}
|
|
1190
|
+
|
|
1191
|
+
// Reset for tag `pre` and for class `.gutter`, `.code`, `.tag`
|
|
1192
|
+
pre,
|
|
1193
|
+
.gutter,
|
|
1194
|
+
.code,
|
|
1195
|
+
.tag {
|
|
1196
|
+
background-color: inherit;
|
|
1197
|
+
font-family: Menlo, Consolas, monospace;
|
|
1198
|
+
border: none;
|
|
1199
|
+
padding: 0;
|
|
1200
|
+
margin: 0;
|
|
1201
|
+
// To override cursor attribute of `.tag` components
|
|
1202
|
+
cursor: text;
|
|
1203
|
+
}
|
|
1204
|
+
|
|
1205
|
+
// To align line number and line of code regardless if there is a scroll bar or not
|
|
1206
|
+
.gutter,
|
|
1207
|
+
.code {
|
|
1208
|
+
vertical-align: top;
|
|
1209
|
+
}
|
|
1210
|
+
|
|
1211
|
+
// hide gutter when code is plain text
|
|
1212
|
+
&.plain {
|
|
1213
|
+
.gutter {
|
|
1214
|
+
display: none;
|
|
1215
|
+
}
|
|
1216
|
+
}
|
|
1217
|
+
|
|
1218
|
+
// Meta bar which contains name of the file and his link
|
|
1219
|
+
figcaption {
|
|
1220
|
+
font-size: 13px;
|
|
1221
|
+
padding: 0 15px 20px;
|
|
1222
|
+
margin: 0;
|
|
1223
|
+
background: $codeBgColor;
|
|
1224
|
+
color: #999999;
|
|
1225
|
+
|
|
1226
|
+
a {
|
|
1227
|
+
float: right;
|
|
1228
|
+
color: $primaryColor;
|
|
1229
|
+
}
|
|
1230
|
+
}
|
|
1231
|
+
|
|
1232
|
+
// Gutter which contains line numbers
|
|
1233
|
+
.gutter {
|
|
1234
|
+
background-color: $codeBgColor;
|
|
1235
|
+
border-right: 1px solid #d1d2d3;
|
|
1236
|
+
padding: 0.3em 15px;
|
|
1237
|
+
user-select: none;
|
|
1238
|
+
}
|
|
1239
|
+
|
|
1240
|
+
// Code container
|
|
1241
|
+
.code {
|
|
1242
|
+
padding: 0.3em 15px 0.3em 1em;
|
|
1243
|
+
width: 100%;
|
|
1244
|
+
|
|
1245
|
+
pre {
|
|
1246
|
+
max-width: 700px;
|
|
1247
|
+
overflow-x: auto;
|
|
1248
|
+
overflow-y: hidden;
|
|
1249
|
+
}
|
|
1250
|
+
}
|
|
1251
|
+
|
|
1252
|
+
// All lines in gutter and code container
|
|
1253
|
+
.line {
|
|
1254
|
+
height: 1.3em;
|
|
1255
|
+
font-size: 13px;
|
|
1256
|
+
}
|
|
1257
|
+
}
|
|
1258
|
+
|
|
1259
|
+
// Gist
|
|
1260
|
+
.gist {
|
|
1261
|
+
|
|
1262
|
+
.line,
|
|
1263
|
+
.line-number {
|
|
1264
|
+
font-family: Menlo, Consolas, monospace;
|
|
1265
|
+
font-size: 1em;
|
|
1266
|
+
margin: 0 0 5px 0;
|
|
1267
|
+
user-select: none;
|
|
1268
|
+
}
|
|
1269
|
+
}
|
|
1270
|
+
|
|
1271
|
+
// Highlight code coloration
|
|
1272
|
+
.highlight {
|
|
1273
|
+
|
|
1274
|
+
// General
|
|
1275
|
+
.comment {
|
|
1276
|
+
color: #969896;
|
|
1277
|
+
}
|
|
1278
|
+
|
|
1279
|
+
.string {
|
|
1280
|
+
color: #183691;
|
|
1281
|
+
}
|
|
1282
|
+
|
|
1283
|
+
.keyword {
|
|
1284
|
+
color: #a71d5d;
|
|
1285
|
+
}
|
|
1286
|
+
|
|
1287
|
+
// ApacheConf
|
|
1288
|
+
&.apacheconf .code {
|
|
1289
|
+
|
|
1290
|
+
.common,
|
|
1291
|
+
.nomarkup,
|
|
1292
|
+
.attribute,
|
|
1293
|
+
.variable,
|
|
1294
|
+
.cbracket,
|
|
1295
|
+
.keyword {
|
|
1296
|
+
color: #0086b3;
|
|
1297
|
+
}
|
|
1298
|
+
|
|
1299
|
+
.sqbracket {
|
|
1300
|
+
color: #df5000;
|
|
1301
|
+
}
|
|
1302
|
+
|
|
1303
|
+
.section,
|
|
1304
|
+
.tag {
|
|
1305
|
+
color: #63a35c;
|
|
1306
|
+
}
|
|
1307
|
+
}
|
|
1308
|
+
|
|
1309
|
+
// Bash
|
|
1310
|
+
&.bash .code {
|
|
1311
|
+
.shebang {
|
|
1312
|
+
color: #969896;
|
|
1313
|
+
}
|
|
1314
|
+
|
|
1315
|
+
.literal,
|
|
1316
|
+
.built_in {
|
|
1317
|
+
color: #0086b3;
|
|
1318
|
+
}
|
|
1319
|
+
|
|
1320
|
+
.variable {
|
|
1321
|
+
color: #333;
|
|
1322
|
+
}
|
|
1323
|
+
|
|
1324
|
+
.title {
|
|
1325
|
+
color: #795da3;
|
|
1326
|
+
}
|
|
1327
|
+
}
|
|
1328
|
+
|
|
1329
|
+
// coffescript
|
|
1330
|
+
&.coffeescript .code {
|
|
1331
|
+
.title {
|
|
1332
|
+
color: #795da3;
|
|
1333
|
+
}
|
|
1334
|
+
|
|
1335
|
+
.literal,
|
|
1336
|
+
.built_in,
|
|
1337
|
+
.number {
|
|
1338
|
+
color: #0086b3;
|
|
1339
|
+
}
|
|
1340
|
+
|
|
1341
|
+
.reserved,
|
|
1342
|
+
.attribute {
|
|
1343
|
+
color: #1d3e81;
|
|
1344
|
+
}
|
|
1345
|
+
|
|
1346
|
+
.subst,
|
|
1347
|
+
.regexp,
|
|
1348
|
+
.attribute {
|
|
1349
|
+
color: #df5000;
|
|
1350
|
+
}
|
|
1351
|
+
}
|
|
1352
|
+
|
|
1353
|
+
// C/C++
|
|
1354
|
+
&.cpp .code,
|
|
1355
|
+
&.c .code {
|
|
1356
|
+
.preprocessor {
|
|
1357
|
+
color: #df5000;
|
|
1358
|
+
}
|
|
1359
|
+
|
|
1360
|
+
.meta-keyword {
|
|
1361
|
+
color: #a71d5d;
|
|
1362
|
+
}
|
|
1363
|
+
|
|
1364
|
+
.title {
|
|
1365
|
+
color: #795da3;
|
|
1366
|
+
}
|
|
1367
|
+
|
|
1368
|
+
.number,
|
|
1369
|
+
.built_in {
|
|
1370
|
+
color: #0086b3;
|
|
1371
|
+
}
|
|
1372
|
+
}
|
|
1373
|
+
|
|
1374
|
+
// Clojure
|
|
1375
|
+
&.clj .code {
|
|
1376
|
+
.builtin-name {
|
|
1377
|
+
color: #df5000;
|
|
1378
|
+
}
|
|
1379
|
+
|
|
1380
|
+
.name {
|
|
1381
|
+
color: #795da3;
|
|
1382
|
+
}
|
|
1383
|
+
|
|
1384
|
+
.number {
|
|
1385
|
+
color: #0086b3;
|
|
1386
|
+
}
|
|
1387
|
+
}
|
|
1388
|
+
|
|
1389
|
+
// C#
|
|
1390
|
+
&.cs .code {
|
|
1391
|
+
|
|
1392
|
+
.preprocessor,
|
|
1393
|
+
.preprocessor .keyword {
|
|
1394
|
+
color: #333;
|
|
1395
|
+
}
|
|
1396
|
+
|
|
1397
|
+
.title {
|
|
1398
|
+
color: #795da3;
|
|
1399
|
+
}
|
|
1400
|
+
|
|
1401
|
+
.number,
|
|
1402
|
+
.built_in {
|
|
1403
|
+
color: #0086b3;
|
|
1404
|
+
}
|
|
1405
|
+
|
|
1406
|
+
.xmlDocTag,
|
|
1407
|
+
.doctag {
|
|
1408
|
+
color: #63a35c;
|
|
1409
|
+
}
|
|
1410
|
+
}
|
|
1411
|
+
|
|
1412
|
+
// CSS
|
|
1413
|
+
&.css .code {
|
|
1414
|
+
|
|
1415
|
+
.at_rule,
|
|
1416
|
+
.important,
|
|
1417
|
+
.meta {
|
|
1418
|
+
color: #a71d5d;
|
|
1419
|
+
}
|
|
1420
|
+
|
|
1421
|
+
.attribute,
|
|
1422
|
+
.hexcolor,
|
|
1423
|
+
.number,
|
|
1424
|
+
.function {
|
|
1425
|
+
color: #0086b3;
|
|
1426
|
+
}
|
|
1427
|
+
|
|
1428
|
+
.attr_selector,
|
|
1429
|
+
.value {
|
|
1430
|
+
color: #333;
|
|
1431
|
+
}
|
|
1432
|
+
|
|
1433
|
+
.id,
|
|
1434
|
+
.class,
|
|
1435
|
+
.pseudo,
|
|
1436
|
+
.selector-pseudo {
|
|
1437
|
+
color: #795da3;
|
|
1438
|
+
}
|
|
1439
|
+
|
|
1440
|
+
.tag,
|
|
1441
|
+
.selector-tag {
|
|
1442
|
+
color: #63a35c;
|
|
1443
|
+
}
|
|
1444
|
+
}
|
|
1445
|
+
|
|
1446
|
+
// Diff
|
|
1447
|
+
&.diff .code {
|
|
1448
|
+
|
|
1449
|
+
.chunk,
|
|
1450
|
+
.meta {
|
|
1451
|
+
color: #795da3;
|
|
1452
|
+
font-weight: bold;
|
|
1453
|
+
}
|
|
1454
|
+
|
|
1455
|
+
.addition {
|
|
1456
|
+
color: #55a532;
|
|
1457
|
+
background-color: #eaffea;
|
|
1458
|
+
}
|
|
1459
|
+
|
|
1460
|
+
.deletion {
|
|
1461
|
+
color: #bd2c00;
|
|
1462
|
+
background-color: #ffecec;
|
|
1463
|
+
}
|
|
1464
|
+
}
|
|
1465
|
+
|
|
1466
|
+
// HTTP
|
|
1467
|
+
&.http .code {
|
|
1468
|
+
|
|
1469
|
+
.attribute,
|
|
1470
|
+
.attr {
|
|
1471
|
+
color: #183691;
|
|
1472
|
+
}
|
|
1473
|
+
|
|
1474
|
+
.literal {
|
|
1475
|
+
color: #0086b3;
|
|
1476
|
+
}
|
|
1477
|
+
|
|
1478
|
+
.request {
|
|
1479
|
+
color: #a71d5d;
|
|
1480
|
+
}
|
|
1481
|
+
}
|
|
1482
|
+
|
|
1483
|
+
// INI
|
|
1484
|
+
&.ini .code {
|
|
1485
|
+
|
|
1486
|
+
.title,
|
|
1487
|
+
.section {
|
|
1488
|
+
color: #795da3;
|
|
1489
|
+
}
|
|
1490
|
+
|
|
1491
|
+
.setting,
|
|
1492
|
+
.attr {
|
|
1493
|
+
color: #a71d5d;
|
|
1494
|
+
}
|
|
1495
|
+
|
|
1496
|
+
.value,
|
|
1497
|
+
.keyword {
|
|
1498
|
+
color: #333;
|
|
1499
|
+
}
|
|
1500
|
+
}
|
|
1501
|
+
|
|
1502
|
+
// JAVA
|
|
1503
|
+
&.java .code {
|
|
1504
|
+
.title {
|
|
1505
|
+
color: #795da3;
|
|
1506
|
+
}
|
|
1507
|
+
|
|
1508
|
+
.javadoc {
|
|
1509
|
+
color: #969896;
|
|
1510
|
+
}
|
|
1511
|
+
|
|
1512
|
+
.meta,
|
|
1513
|
+
.annotation,
|
|
1514
|
+
.javadoctag {
|
|
1515
|
+
color: #a71d5d;
|
|
1516
|
+
}
|
|
1517
|
+
|
|
1518
|
+
.number {
|
|
1519
|
+
color: #0086b3;
|
|
1520
|
+
}
|
|
1521
|
+
|
|
1522
|
+
.params {
|
|
1523
|
+
color: #1d3e81;
|
|
1524
|
+
}
|
|
1525
|
+
}
|
|
1526
|
+
|
|
1527
|
+
// JavaScript
|
|
1528
|
+
&.js .code {
|
|
1529
|
+
|
|
1530
|
+
.built_in,
|
|
1531
|
+
.title {
|
|
1532
|
+
color: #795da3;
|
|
1533
|
+
}
|
|
1534
|
+
|
|
1535
|
+
.javadoc {
|
|
1536
|
+
color: #969896;
|
|
1537
|
+
}
|
|
1538
|
+
|
|
1539
|
+
.tag,
|
|
1540
|
+
.javadoctag {
|
|
1541
|
+
color: #a71d5d;
|
|
1542
|
+
}
|
|
1543
|
+
|
|
1544
|
+
.tag .title {
|
|
1545
|
+
color: #333;
|
|
1546
|
+
}
|
|
1547
|
+
|
|
1548
|
+
.regexp {
|
|
1549
|
+
color: #df5000;
|
|
1550
|
+
}
|
|
1551
|
+
|
|
1552
|
+
.literal,
|
|
1553
|
+
.number {
|
|
1554
|
+
color: #0086b3;
|
|
1555
|
+
}
|
|
1556
|
+
}
|
|
1557
|
+
|
|
1558
|
+
// JSON
|
|
1559
|
+
&.json .code {
|
|
1560
|
+
.attribute {
|
|
1561
|
+
color: #183691;
|
|
1562
|
+
}
|
|
1563
|
+
|
|
1564
|
+
.number,
|
|
1565
|
+
.literal {
|
|
1566
|
+
color: #0086b3;
|
|
1567
|
+
}
|
|
1568
|
+
}
|
|
1569
|
+
|
|
1570
|
+
// Makefile
|
|
1571
|
+
&.mak .code {
|
|
1572
|
+
.constant {
|
|
1573
|
+
color: #333;
|
|
1574
|
+
}
|
|
1575
|
+
|
|
1576
|
+
.title {
|
|
1577
|
+
color: #795da3;
|
|
1578
|
+
}
|
|
1579
|
+
|
|
1580
|
+
.keyword,
|
|
1581
|
+
.meta-keyword {
|
|
1582
|
+
color: #0086b3;
|
|
1583
|
+
}
|
|
1584
|
+
}
|
|
1585
|
+
|
|
1586
|
+
// Markdown
|
|
1587
|
+
&.md .code {
|
|
1588
|
+
|
|
1589
|
+
.value,
|
|
1590
|
+
.link_label,
|
|
1591
|
+
.strong,
|
|
1592
|
+
.emphasis,
|
|
1593
|
+
.blockquote,
|
|
1594
|
+
.quote,
|
|
1595
|
+
.section {
|
|
1596
|
+
color: #183691;
|
|
1597
|
+
}
|
|
1598
|
+
|
|
1599
|
+
.link_reference,
|
|
1600
|
+
.symbol,
|
|
1601
|
+
.code {
|
|
1602
|
+
color: #0086b3;
|
|
1603
|
+
}
|
|
1604
|
+
|
|
1605
|
+
.link_url,
|
|
1606
|
+
.link {
|
|
1607
|
+
text-decoration: underline;
|
|
1608
|
+
}
|
|
1609
|
+
}
|
|
1610
|
+
|
|
1611
|
+
// Nginx
|
|
1612
|
+
&.nginx .code {
|
|
1613
|
+
|
|
1614
|
+
.title,
|
|
1615
|
+
.attribute {
|
|
1616
|
+
color: #a71d5d;
|
|
1617
|
+
}
|
|
1618
|
+
|
|
1619
|
+
.built_in,
|
|
1620
|
+
.literal {
|
|
1621
|
+
color: #0086b3;
|
|
1622
|
+
}
|
|
1623
|
+
|
|
1624
|
+
.regexp {
|
|
1625
|
+
color: #183691;
|
|
1626
|
+
}
|
|
1627
|
+
|
|
1628
|
+
.variable {
|
|
1629
|
+
color: #333;
|
|
1630
|
+
}
|
|
1631
|
+
}
|
|
1632
|
+
|
|
1633
|
+
// Objective-C
|
|
1634
|
+
&.objectivec .code {
|
|
1635
|
+
|
|
1636
|
+
.preprocessor,
|
|
1637
|
+
.meta {
|
|
1638
|
+
color: #a71d5d;
|
|
1639
|
+
|
|
1640
|
+
.title {
|
|
1641
|
+
color: #df5000;
|
|
1642
|
+
}
|
|
1643
|
+
}
|
|
1644
|
+
|
|
1645
|
+
.meta-string {
|
|
1646
|
+
color: #183691;
|
|
1647
|
+
}
|
|
1648
|
+
|
|
1649
|
+
.title {
|
|
1650
|
+
color: #795da3;
|
|
1651
|
+
}
|
|
1652
|
+
|
|
1653
|
+
.literal,
|
|
1654
|
+
.number,
|
|
1655
|
+
.built_in {
|
|
1656
|
+
color: #0086b3;
|
|
1657
|
+
}
|
|
1658
|
+
}
|
|
1659
|
+
|
|
1660
|
+
// Perl
|
|
1661
|
+
&.perl .code {
|
|
1662
|
+
.sub {
|
|
1663
|
+
color: #795da3;
|
|
1664
|
+
}
|
|
1665
|
+
|
|
1666
|
+
.title {
|
|
1667
|
+
color: #795da3;
|
|
1668
|
+
}
|
|
1669
|
+
|
|
1670
|
+
.regexp {
|
|
1671
|
+
color: #df5000;
|
|
1672
|
+
}
|
|
1673
|
+
}
|
|
1674
|
+
|
|
1675
|
+
// PHP
|
|
1676
|
+
&.php .code {
|
|
1677
|
+
|
|
1678
|
+
.phpdoc,
|
|
1679
|
+
.doctag {
|
|
1680
|
+
color: #a71d5d;
|
|
1681
|
+
}
|
|
1682
|
+
|
|
1683
|
+
.regexp {
|
|
1684
|
+
color: #df5000;
|
|
1685
|
+
}
|
|
1686
|
+
|
|
1687
|
+
.literal,
|
|
1688
|
+
.number {
|
|
1689
|
+
color: #0086b3;
|
|
1690
|
+
}
|
|
1691
|
+
|
|
1692
|
+
.title {
|
|
1693
|
+
color: #795da3;
|
|
1694
|
+
}
|
|
1695
|
+
}
|
|
1696
|
+
|
|
1697
|
+
// Python
|
|
1698
|
+
&.python .code {
|
|
1699
|
+
|
|
1700
|
+
.decorator,
|
|
1701
|
+
.title,
|
|
1702
|
+
.meta {
|
|
1703
|
+
color: #795da3;
|
|
1704
|
+
}
|
|
1705
|
+
|
|
1706
|
+
.number {
|
|
1707
|
+
color: #0086b3;
|
|
1708
|
+
}
|
|
1709
|
+
}
|
|
1710
|
+
|
|
1711
|
+
// Ruby
|
|
1712
|
+
&.ruby .code {
|
|
1713
|
+
|
|
1714
|
+
.parent,
|
|
1715
|
+
.title {
|
|
1716
|
+
color: #795da3;
|
|
1717
|
+
}
|
|
1718
|
+
|
|
1719
|
+
.prompt,
|
|
1720
|
+
.constant,
|
|
1721
|
+
.number,
|
|
1722
|
+
.subst .keyword,
|
|
1723
|
+
.symbol {
|
|
1724
|
+
color: #0086b3;
|
|
1725
|
+
}
|
|
1726
|
+
}
|
|
1727
|
+
|
|
1728
|
+
// SQL
|
|
1729
|
+
&.sql {
|
|
1730
|
+
.built_in {
|
|
1731
|
+
color: #a71d5d;
|
|
1732
|
+
}
|
|
1733
|
+
|
|
1734
|
+
.number {
|
|
1735
|
+
color: #0086b3;
|
|
1736
|
+
}
|
|
1737
|
+
}
|
|
1738
|
+
|
|
1739
|
+
// XML, HTML
|
|
1740
|
+
&.xml,
|
|
1741
|
+
&.html {
|
|
1742
|
+
.tag {
|
|
1743
|
+
color: #333;
|
|
1744
|
+
}
|
|
1745
|
+
|
|
1746
|
+
.value {
|
|
1747
|
+
color: #183691;
|
|
1748
|
+
}
|
|
1749
|
+
|
|
1750
|
+
.attribute,
|
|
1751
|
+
.attr {
|
|
1752
|
+
color: #795da3;
|
|
1753
|
+
}
|
|
1754
|
+
|
|
1755
|
+
.title,
|
|
1756
|
+
.name {
|
|
1757
|
+
color: #63a35c;
|
|
1758
|
+
}
|
|
1759
|
+
}
|
|
1760
|
+
|
|
1761
|
+
// Puppet
|
|
1762
|
+
&.puppet {
|
|
1763
|
+
.title {
|
|
1764
|
+
color: #795da3;
|
|
1765
|
+
}
|
|
1766
|
+
|
|
1767
|
+
.function {
|
|
1768
|
+
color: #0086b3;
|
|
1769
|
+
}
|
|
1770
|
+
|
|
1771
|
+
.name {
|
|
1772
|
+
color: #a71d5d;
|
|
1773
|
+
}
|
|
1774
|
+
|
|
1775
|
+
.attr {
|
|
1776
|
+
color: #0086b3;
|
|
1777
|
+
}
|
|
1778
|
+
}
|
|
1779
|
+
|
|
1780
|
+
// LESS
|
|
1781
|
+
&.less {
|
|
1782
|
+
|
|
1783
|
+
.tag,
|
|
1784
|
+
.at_rule {
|
|
1785
|
+
color: #a71d5d;
|
|
1786
|
+
}
|
|
1787
|
+
|
|
1788
|
+
.number,
|
|
1789
|
+
.hexcolor,
|
|
1790
|
+
.function,
|
|
1791
|
+
.attribute {
|
|
1792
|
+
color: #0086b3;
|
|
1793
|
+
}
|
|
1794
|
+
|
|
1795
|
+
.built_in {
|
|
1796
|
+
color: #df5000;
|
|
1797
|
+
}
|
|
1798
|
+
|
|
1799
|
+
.id,
|
|
1800
|
+
.pseudo,
|
|
1801
|
+
.class,
|
|
1802
|
+
.selector-id,
|
|
1803
|
+
.selector-class,
|
|
1804
|
+
.selector-tag {
|
|
1805
|
+
color: #795da3;
|
|
1806
|
+
}
|
|
1807
|
+
}
|
|
1808
|
+
|
|
1809
|
+
// Lisp
|
|
1810
|
+
&.lisp .code {
|
|
1811
|
+
.name {
|
|
1812
|
+
color: #df5000;
|
|
1813
|
+
}
|
|
1814
|
+
|
|
1815
|
+
.number {
|
|
1816
|
+
color: #0086b3;
|
|
1817
|
+
}
|
|
1818
|
+
}
|
|
1819
|
+
|
|
1820
|
+
// SCSS
|
|
1821
|
+
&.scss {
|
|
1822
|
+
|
|
1823
|
+
.tag,
|
|
1824
|
+
.at_rule,
|
|
1825
|
+
.important {
|
|
1826
|
+
color: #a71d5d;
|
|
1827
|
+
}
|
|
1828
|
+
|
|
1829
|
+
.number,
|
|
1830
|
+
.hexcolor,
|
|
1831
|
+
.function,
|
|
1832
|
+
.attribute {
|
|
1833
|
+
color: #0086b3;
|
|
1834
|
+
}
|
|
1835
|
+
|
|
1836
|
+
.variable {
|
|
1837
|
+
color: #333;
|
|
1838
|
+
}
|
|
1839
|
+
|
|
1840
|
+
.built_in {
|
|
1841
|
+
color: #df5000;
|
|
1842
|
+
}
|
|
1843
|
+
|
|
1844
|
+
.id,
|
|
1845
|
+
.pseudo,
|
|
1846
|
+
.class,
|
|
1847
|
+
.preprocessor,
|
|
1848
|
+
.selector-class,
|
|
1849
|
+
.selector-id {
|
|
1850
|
+
color: #795da3;
|
|
1851
|
+
}
|
|
1852
|
+
|
|
1853
|
+
.tag,
|
|
1854
|
+
.selector-tag {
|
|
1855
|
+
color: #63a35c;
|
|
1856
|
+
}
|
|
1857
|
+
}
|
|
1858
|
+
|
|
1859
|
+
// Stylus
|
|
1860
|
+
&.stylus {
|
|
1861
|
+
.at_rule {
|
|
1862
|
+
color: #a71d5d;
|
|
1863
|
+
}
|
|
1864
|
+
|
|
1865
|
+
.tag,
|
|
1866
|
+
.selector-tag {
|
|
1867
|
+
color: #63a35c;
|
|
1868
|
+
}
|
|
1869
|
+
|
|
1870
|
+
.number,
|
|
1871
|
+
.hexcolor,
|
|
1872
|
+
.attribute,
|
|
1873
|
+
.params {
|
|
1874
|
+
color: #0086b3;
|
|
1875
|
+
}
|
|
1876
|
+
|
|
1877
|
+
.class,
|
|
1878
|
+
.id,
|
|
1879
|
+
.pseudo,
|
|
1880
|
+
.title,
|
|
1881
|
+
.selector-id,
|
|
1882
|
+
.selector-pseudo,
|
|
1883
|
+
.selector-class {
|
|
1884
|
+
color: #795da3;
|
|
1885
|
+
}
|
|
1886
|
+
}
|
|
1887
|
+
|
|
1888
|
+
// Go
|
|
1889
|
+
&.go {
|
|
1890
|
+
.typename {
|
|
1891
|
+
color: #a71d5d;
|
|
1892
|
+
}
|
|
1893
|
+
|
|
1894
|
+
.built_in,
|
|
1895
|
+
.constant {
|
|
1896
|
+
color: #0086b3;
|
|
1897
|
+
}
|
|
1898
|
+
}
|
|
1899
|
+
|
|
1900
|
+
// Swift
|
|
1901
|
+
&.swift {
|
|
1902
|
+
.preprocessor {
|
|
1903
|
+
color: #a71d5d;
|
|
1904
|
+
}
|
|
1905
|
+
|
|
1906
|
+
.title {
|
|
1907
|
+
color: #795da3;
|
|
1908
|
+
}
|
|
1909
|
+
|
|
1910
|
+
.built_in,
|
|
1911
|
+
.number,
|
|
1912
|
+
.type {
|
|
1913
|
+
color: #0086b3;
|
|
1914
|
+
}
|
|
1915
|
+
}
|
|
1916
|
+
|
|
1917
|
+
// YAML
|
|
1918
|
+
&.yml {
|
|
1919
|
+
|
|
1920
|
+
.line,
|
|
1921
|
+
.attr {
|
|
1922
|
+
color: #63a35c;
|
|
1923
|
+
}
|
|
1924
|
+
|
|
1925
|
+
.line,
|
|
1926
|
+
.string,
|
|
1927
|
+
.type,
|
|
1928
|
+
.literal,
|
|
1929
|
+
.meta {
|
|
1930
|
+
color: #183691;
|
|
1931
|
+
}
|
|
1932
|
+
|
|
1933
|
+
.number {
|
|
1934
|
+
color: #0086b3;
|
|
1935
|
+
}
|
|
1936
|
+
}
|
|
1937
|
+
}
|
|
1938
|
+
|
|
1939
|
+
|
|
1940
|
+
/* post navigator*/
|
|
1941
|
+
|
|
1942
|
+
.post-nav {
|
|
1943
|
+
overflow: hidden;
|
|
1944
|
+
margin-top: 15px;
|
|
1945
|
+
margin-bottom: 20px;
|
|
1946
|
+
padding: 10px;
|
|
1947
|
+
white-space: nowrap;
|
|
1948
|
+
border-top: 1px solid #eee;
|
|
1949
|
+
|
|
1950
|
+
a {
|
|
1951
|
+
// display: inline-block;
|
|
1952
|
+
line-height: 25px;
|
|
1953
|
+
font-size: 15px;
|
|
1954
|
+
color: #555;
|
|
1955
|
+
border-bottom: none;
|
|
1956
|
+
float: left;
|
|
1957
|
+
|
|
1958
|
+
&.pre {
|
|
1959
|
+
float: left;
|
|
1960
|
+
|
|
1961
|
+
&:before {
|
|
1962
|
+
font-family: "FontAwesome";
|
|
1963
|
+
content: "\f0d9";
|
|
1964
|
+
padding-right: 0.3em;
|
|
1965
|
+
}
|
|
1966
|
+
}
|
|
1967
|
+
|
|
1968
|
+
&.next {
|
|
1969
|
+
float: right;
|
|
1970
|
+
|
|
1971
|
+
&:after {
|
|
1972
|
+
font-family: "FontAwesome";
|
|
1973
|
+
content: "\f0da";
|
|
1974
|
+
padding-left: 0.3em;
|
|
1975
|
+
}
|
|
1976
|
+
}
|
|
1977
|
+
|
|
1978
|
+
&:hover {
|
|
1979
|
+
border-bottom: none;
|
|
1980
|
+
color: #222;
|
|
1981
|
+
}
|
|
1982
|
+
}
|
|
1983
|
+
}
|
|
1984
|
+
|
|
1985
|
+
|
|
1986
|
+
/* toc*/
|
|
1987
|
+
|
|
1988
|
+
.toc-article {
|
|
1989
|
+
border: 1px solid #bbb;
|
|
1990
|
+
border-radius: 7px;
|
|
1991
|
+
margin: 1.1em 0 0 2em;
|
|
1992
|
+
padding: 0.7em 0.7em 0 0.7em;
|
|
1993
|
+
max-width: 40%;
|
|
1994
|
+
}
|
|
1995
|
+
|
|
1996
|
+
.toc-title {
|
|
1997
|
+
font-size: 120%;
|
|
1998
|
+
}
|
|
1999
|
+
|
|
2000
|
+
#toc {
|
|
2001
|
+
line-height: 1em;
|
|
2002
|
+
float: right;
|
|
2003
|
+
|
|
2004
|
+
.toc {
|
|
2005
|
+
padding: 0;
|
|
2006
|
+
margin: 0.5em;
|
|
2007
|
+
line-height: 1.8em;
|
|
2008
|
+
|
|
2009
|
+
li {
|
|
2010
|
+
list-style-type: none;
|
|
2011
|
+
}
|
|
2012
|
+
}
|
|
2013
|
+
|
|
2014
|
+
.toc-child {
|
|
2015
|
+
margin-left: 1em;
|
|
2016
|
+
padding-left: 0;
|
|
2017
|
+
}
|
|
2018
|
+
}
|
|
2019
|
+
|
|
2020
|
+
@media print,
|
|
2021
|
+
screen and (max-width: 48em) {
|
|
2022
|
+
.toc-article {
|
|
2023
|
+
margin: 0em;
|
|
2024
|
+
max-width: 100%;
|
|
2025
|
+
}
|
|
2026
|
+
|
|
2027
|
+
.clear {
|
|
2028
|
+
padding: 2.1em 0em 0em 0em;
|
|
2029
|
+
}
|
|
2030
|
+
|
|
2031
|
+
#toc {
|
|
2032
|
+
float: none;
|
|
2033
|
+
}
|
|
2034
|
+
}
|
|
2035
|
+
|
|
2036
|
+
|
|
2037
|
+
/* table*/
|
|
2038
|
+
|
|
2039
|
+
table {
|
|
2040
|
+
margin: auto auto 15px;
|
|
2041
|
+
width: 100%;
|
|
2042
|
+
background: transparent;
|
|
2043
|
+
border-collapse: collapse;
|
|
2044
|
+
border-spacing: 0;
|
|
2045
|
+
text-align: left;
|
|
2046
|
+
|
|
2047
|
+
th {
|
|
2048
|
+
font-weight: bold;
|
|
2049
|
+
padding: 5px 10px;
|
|
2050
|
+
border-bottom: 2px solid #909ba2;
|
|
2051
|
+
}
|
|
2052
|
+
|
|
2053
|
+
td {
|
|
2054
|
+
padding: 5px 10px;
|
|
2055
|
+
}
|
|
2056
|
+
|
|
2057
|
+
tr {
|
|
2058
|
+
&:nth-child(2n) {
|
|
2059
|
+
background: $codeBgColor;
|
|
2060
|
+
}
|
|
2061
|
+
}
|
|
2062
|
+
}
|
|
2063
|
+
|
|
2064
|
+
|
|
2065
|
+
/* article-share*/
|
|
2066
|
+
|
|
2067
|
+
.article-share-link {
|
|
2068
|
+
cursor: pointer;
|
|
2069
|
+
float: right;
|
|
2070
|
+
margin-left: 20px;
|
|
2071
|
+
|
|
2072
|
+
&:before {
|
|
2073
|
+
font-family: "FontAwesome";
|
|
2074
|
+
content: "\f064";
|
|
2075
|
+
padding-right: 6px;
|
|
2076
|
+
}
|
|
2077
|
+
}
|
|
2078
|
+
|
|
2079
|
+
.article-share-box {
|
|
2080
|
+
position: absolute;
|
|
2081
|
+
display: none;
|
|
2082
|
+
background: #fff;
|
|
2083
|
+
box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.2);
|
|
2084
|
+
border-radius: 3px;
|
|
2085
|
+
margin-left: -145px;
|
|
2086
|
+
overflow: hidden;
|
|
2087
|
+
z-index: 1;
|
|
2088
|
+
|
|
2089
|
+
&.on {
|
|
2090
|
+
display: block;
|
|
2091
|
+
}
|
|
2092
|
+
}
|
|
2093
|
+
|
|
2094
|
+
.article-share-input {
|
|
2095
|
+
width: 100%;
|
|
2096
|
+
background: none;
|
|
2097
|
+
box-sizing: border-box;
|
|
2098
|
+
font: 14px "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
2099
|
+
padding: 0 15px;
|
|
2100
|
+
color: #555;
|
|
2101
|
+
outline: none;
|
|
2102
|
+
border: 1px solid #ddd;
|
|
2103
|
+
border-radius: 3px 3px 0 0;
|
|
2104
|
+
height: 36px;
|
|
2105
|
+
line-height: 36px;
|
|
2106
|
+
}
|
|
2107
|
+
|
|
2108
|
+
.article-share-links {
|
|
2109
|
+
// clearfix: none;
|
|
2110
|
+
background: #eee;
|
|
2111
|
+
}
|
|
2112
|
+
|
|
2113
|
+
.article-share-element {
|
|
2114
|
+
width: 50px;
|
|
2115
|
+
height: 36px;
|
|
2116
|
+
display: block;
|
|
2117
|
+
float: left;
|
|
2118
|
+
position: relative;
|
|
2119
|
+
color: #999;
|
|
2120
|
+
text-shadow: 0 1px #fff;
|
|
2121
|
+
|
|
2122
|
+
&:before {
|
|
2123
|
+
font-size: 20px;
|
|
2124
|
+
font-family: "FontAwesome";
|
|
2125
|
+
width: 20px;
|
|
2126
|
+
height: 20px;
|
|
2127
|
+
position: absolute;
|
|
2128
|
+
top: 50%;
|
|
2129
|
+
left: 50%;
|
|
2130
|
+
margin-top: -10px;
|
|
2131
|
+
margin-left: -10px;
|
|
2132
|
+
text-align: center;
|
|
2133
|
+
}
|
|
2134
|
+
|
|
2135
|
+
&:hover {
|
|
2136
|
+
color: #fff;
|
|
2137
|
+
}
|
|
2138
|
+
}
|
|
2139
|
+
|
|
2140
|
+
.article-share-twitter {
|
|
2141
|
+
@extend .article-share-element;
|
|
2142
|
+
|
|
2143
|
+
&:before {
|
|
2144
|
+
content: "\f099";
|
|
2145
|
+
}
|
|
2146
|
+
|
|
2147
|
+
&:hover {
|
|
2148
|
+
background: #00aced;
|
|
2149
|
+
}
|
|
2150
|
+
}
|
|
2151
|
+
|
|
2152
|
+
.article-share-facebook {
|
|
2153
|
+
@extend .article-share-element;
|
|
2154
|
+
|
|
2155
|
+
&:before {
|
|
2156
|
+
content: "\f09a";
|
|
2157
|
+
}
|
|
2158
|
+
|
|
2159
|
+
&:hover {
|
|
2160
|
+
background: #3b5998;
|
|
2161
|
+
}
|
|
2162
|
+
}
|
|
2163
|
+
|
|
2164
|
+
.article-share-weibo {
|
|
2165
|
+
@extend .article-share-element;
|
|
2166
|
+
|
|
2167
|
+
&:before {
|
|
2168
|
+
content: "\f18a";
|
|
2169
|
+
}
|
|
2170
|
+
|
|
2171
|
+
&:hover {
|
|
2172
|
+
background: #d44137;
|
|
2173
|
+
}
|
|
2174
|
+
}
|
|
2175
|
+
|
|
2176
|
+
.article-share-qrcode {
|
|
2177
|
+
@extend .article-share-element;
|
|
2178
|
+
|
|
2179
|
+
&:before {
|
|
2180
|
+
content: "\f029";
|
|
2181
|
+
}
|
|
2182
|
+
|
|
2183
|
+
&:hover,
|
|
2184
|
+
&:active {
|
|
2185
|
+
background: #38ad5a;
|
|
2186
|
+
|
|
2187
|
+
&~.qrcode {
|
|
2188
|
+
display: block;
|
|
2189
|
+
text-align: center;
|
|
2190
|
+
}
|
|
2191
|
+
}
|
|
2192
|
+
}
|
|
2193
|
+
|
|
2194
|
+
.qrcode {
|
|
2195
|
+
display: none;
|
|
2196
|
+
}
|
|
2197
|
+
|
|
2198
|
+
|
|
2199
|
+
/* search result*/
|
|
2200
|
+
|
|
2201
|
+
ul.search-result-list {
|
|
2202
|
+
padding-left: 10px;
|
|
2203
|
+
}
|
|
2204
|
+
|
|
2205
|
+
a.search-result-title {
|
|
2206
|
+
font-weight: bold;
|
|
2207
|
+
font-size: 15px;
|
|
2208
|
+
color: #555;
|
|
2209
|
+
}
|
|
2210
|
+
|
|
2211
|
+
p.search-result {
|
|
2212
|
+
color: #444;
|
|
2213
|
+
text-align: justify;
|
|
2214
|
+
}
|
|
2215
|
+
|
|
2216
|
+
em.search-keyword {
|
|
2217
|
+
font-weight: bold;
|
|
2218
|
+
font-style: normal;
|
|
2219
|
+
color: $primaryColor;
|
|
2220
|
+
}
|
|
2221
|
+
|
|
2222
|
+
|
|
2223
|
+
/* Disqus Button */
|
|
2224
|
+
|
|
2225
|
+
.disqus_click_btn {
|
|
2226
|
+
line-height: 30px;
|
|
2227
|
+
margin: 0;
|
|
2228
|
+
min-width: 50px;
|
|
2229
|
+
padding: 0 14px;
|
|
2230
|
+
display: inline-block;
|
|
2231
|
+
font-family: "Roboto", "Helvetica", "Arial", sans-serif;
|
|
2232
|
+
font-size: 14px;
|
|
2233
|
+
font-weight: 400;
|
|
2234
|
+
letter-spacing: 0;
|
|
2235
|
+
overflow: hidden;
|
|
2236
|
+
will-change: box-shadow;
|
|
2237
|
+
transition: box-shadow .2s cubic-bezier(.4, 0, 1, 1), background-color .2s cubic-bezier(.4, 0, .2, 1), color .2s cubic-bezier(.4, 0, .2, 1);
|
|
2238
|
+
outline: 0;
|
|
2239
|
+
cursor: pointer;
|
|
2240
|
+
text-decoration: none;
|
|
2241
|
+
text-align: center;
|
|
2242
|
+
vertical-align: middle;
|
|
2243
|
+
border: 0;
|
|
2244
|
+
background: rgba(158, 158, 158, .2);
|
|
2245
|
+
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 3px 1px -2px rgba(0, 0, 0, .2), 0 1px 5px 0 rgba(0, 0, 0, .12);
|
|
2246
|
+
color: #fff;
|
|
2247
|
+
background-color: #999999;
|
|
2248
|
+
text-shadow: 0
|
|
2249
|
+
}
|
|
2250
|
+
|
|
2251
|
+
|
|
2252
|
+
/* Footer Badge*/
|
|
2253
|
+
|
|
2254
|
+
.github-badge {
|
|
2255
|
+
display: inline-block;
|
|
2256
|
+
border-radius: 4px;
|
|
2257
|
+
text-shadow: none;
|
|
2258
|
+
font-size: 12px;
|
|
2259
|
+
color: #fff;
|
|
2260
|
+
line-height: 1.25;
|
|
2261
|
+
background-color: #ABBAC3;
|
|
2262
|
+
margin-bottom: 5px;
|
|
2263
|
+
|
|
2264
|
+
a {
|
|
2265
|
+
color: #fff;
|
|
2266
|
+
}
|
|
2267
|
+
|
|
2268
|
+
img {
|
|
2269
|
+
/*height: "calc(%s * 1.25)" % $fontsize-footnote*/
|
|
2270
|
+
height: 1.25em;
|
|
2271
|
+
vertical-align: top;
|
|
2272
|
+
}
|
|
2273
|
+
|
|
2274
|
+
.badge-subject {
|
|
2275
|
+
display: inline-block;
|
|
2276
|
+
background-color: #555;
|
|
2277
|
+
padding: 4px 4px 4px 6px;
|
|
2278
|
+
border-top-left-radius: 4px;
|
|
2279
|
+
border-bottom-left-radius: 4px;
|
|
2280
|
+
}
|
|
2281
|
+
|
|
2282
|
+
.badge-value {
|
|
2283
|
+
display: inline-block;
|
|
2284
|
+
padding: 4px 6px 4px 4px;
|
|
2285
|
+
border-top-right-radius: 4px;
|
|
2286
|
+
border-bottom-right-radius: 4px;
|
|
2287
|
+
}
|
|
2288
|
+
|
|
2289
|
+
.bg-brightgreen {
|
|
2290
|
+
background-color: #4c1 !important;
|
|
2291
|
+
}
|
|
2292
|
+
|
|
2293
|
+
.bg-green {
|
|
2294
|
+
background-color: #97ca00 !important;
|
|
2295
|
+
}
|
|
2296
|
+
|
|
2297
|
+
.bg-yellowgreen {
|
|
2298
|
+
background-color: #a4a61d !important;
|
|
2299
|
+
}
|
|
2300
|
+
|
|
2301
|
+
.bg-orange {
|
|
2302
|
+
background-color: #FE7D37 !important;
|
|
2303
|
+
}
|
|
2304
|
+
|
|
2305
|
+
.bg-yellow {
|
|
2306
|
+
background-color: #dfb317 !important;
|
|
2307
|
+
}
|
|
2308
|
+
|
|
2309
|
+
.bg-blueviolet {
|
|
2310
|
+
background-color: #8A2BE2 !important;
|
|
2311
|
+
}
|
|
2312
|
+
|
|
2313
|
+
.bg-pink {
|
|
2314
|
+
background-color: #FFC0CB !important;
|
|
2315
|
+
}
|
|
2316
|
+
|
|
2317
|
+
.bg-red {
|
|
2318
|
+
background-color: #e05d44 !important;
|
|
2319
|
+
}
|
|
2320
|
+
|
|
2321
|
+
.bg-blue {
|
|
2322
|
+
background-color: #007EC6 !important;
|
|
2323
|
+
}
|
|
2324
|
+
|
|
2325
|
+
.bg-grey,
|
|
2326
|
+
.bg-gray {
|
|
2327
|
+
background-color: #555 !important;
|
|
2328
|
+
}
|
|
2329
|
+
|
|
2330
|
+
.bg-lightgrey,
|
|
2331
|
+
.bg-lightgray {
|
|
2332
|
+
background-color: #9f9f9f !important;
|
|
2333
|
+
}
|
|
2334
|
+
}
|
|
2335
|
+
|
|
2336
|
+
|
|
2337
|
+
/* Waline CSS*/
|
|
2338
|
+
|
|
2339
|
+
#waline {
|
|
2340
|
+
/* 字体大小 */
|
|
2341
|
+
--waline-font-size: 16px;
|
|
2342
|
+
|
|
2343
|
+
/* 常规颜色 */
|
|
2344
|
+
--waline-white: #fff;
|
|
2345
|
+
--waline-light-grey: #999;
|
|
2346
|
+
--waline-dark-grey: #666;
|
|
2347
|
+
|
|
2348
|
+
/* 主题色 */
|
|
2349
|
+
--waline-theme-color: #34495e;
|
|
2350
|
+
--waline-active-color: #bababa;
|
|
2351
|
+
|
|
2352
|
+
/* 布局颜色 */
|
|
2353
|
+
--waline-text-color: #444;
|
|
2354
|
+
--waline-bgcolor: #fff;
|
|
2355
|
+
--waline-bgcolor-light: #f8f8f8;
|
|
2356
|
+
--waline-bgcolor-hover: #f0f0f0;
|
|
2357
|
+
--waline-border-color: #ddd;
|
|
2358
|
+
--waline-disable-bgcolor: #f8f8f8;
|
|
2359
|
+
--waline-disable-color: #bbb;
|
|
2360
|
+
--waline-code-bgcolor: #282c34;
|
|
2361
|
+
|
|
2362
|
+
/* 特殊颜色 */
|
|
2363
|
+
--waline-bq-color: #f0f0f0;
|
|
2364
|
+
|
|
2365
|
+
/* 头像 */
|
|
2366
|
+
--waline-avatar-size: 3.25rem;
|
|
2367
|
+
--waline-mobile-avatar-size: calc(var(--waline-avatar-size) * 9 / 13);
|
|
2368
|
+
|
|
2369
|
+
/* 徽章 */
|
|
2370
|
+
--waline-badge-color: #34495e;
|
|
2371
|
+
--waline-badge-font-size: 0.775em;
|
|
2372
|
+
|
|
2373
|
+
/* 信息 */
|
|
2374
|
+
--waline-info-bgcolor: #f8f8f8;
|
|
2375
|
+
--waline-info-color: #999;
|
|
2376
|
+
--waline-info-font-size: 0.625em;
|
|
2377
|
+
|
|
2378
|
+
/* 渲染选择 */
|
|
2379
|
+
--waline-border: 1px solid var(--waline-border-color);
|
|
2380
|
+
--waline-avatar-radius: 50%;
|
|
2381
|
+
--waline-box-shadow: none;
|
|
2382
|
+
}
|
|
2383
|
+
|
|
2384
|
+
|
|
2385
|
+
/* Darkmode CSS*/
|
|
2386
|
+
|
|
2387
|
+
html[data-dark='true'] {
|
|
2388
|
+
background-color: #121212 !important;
|
|
2389
|
+
filter: invert(100%) hue-rotate(180deg) brightness(105%) contrast(85%);
|
|
2390
|
+
-webkit-filter: invert(100%) hue-rotate(180deg) brightness(105%) contrast(85%);
|
|
2391
|
+
|
|
2392
|
+
img {
|
|
2393
|
+
filter: hue-rotate(180deg) contrast(100%) invert(100%);
|
|
2394
|
+
-webkit-filter: hue-rotate(180deg) contrast(100%) invert(100%);
|
|
2395
|
+
}
|
|
2396
|
+
}
|
|
2397
|
+
|
|
2398
|
+
.darkmode-toggle {
|
|
2399
|
+
background: #a2a2a2;
|
|
2400
|
+
width: 3rem;
|
|
2401
|
+
height: 3rem;
|
|
2402
|
+
position: fixed;
|
|
2403
|
+
z-index: 999;
|
|
2404
|
+
border-radius: 50%;
|
|
2405
|
+
left: 32px;
|
|
2406
|
+
bottom: 32px;
|
|
2407
|
+
right: unset;
|
|
2408
|
+
cursor: pointer;
|
|
2409
|
+
transition: all 0.5s ease;
|
|
2410
|
+
display: flex;
|
|
2411
|
+
justify-content: center;
|
|
2412
|
+
align-items: center;
|
|
2413
|
+
}
|
|
2414
|
+
|
|
2415
|
+
|
|
2416
|
+
/* Links Layout*/
|
|
2417
|
+
|
|
2418
|
+
.link-items {
|
|
2419
|
+
display: flex;
|
|
2420
|
+
text-align: center;
|
|
2421
|
+
justify-content: left;
|
|
2422
|
+
flex-wrap: wrap;
|
|
2423
|
+
padding: 0px 0.5rem;
|
|
2424
|
+
list-style-type: disc;
|
|
2425
|
+
margin-block-start: 1em;
|
|
2426
|
+
margin-block-end: 1em;
|
|
2427
|
+
margin-inline-start: 0px;
|
|
2428
|
+
margin-inline-end: 0px;
|
|
2429
|
+
padding-inline-start: 20px;
|
|
2430
|
+
|
|
2431
|
+
.link-item {
|
|
2432
|
+
display: inline-flex;
|
|
2433
|
+
--primary-color: #444;
|
|
2434
|
+
|
|
2435
|
+
.link-url {
|
|
2436
|
+
display: inline-flex;
|
|
2437
|
+
text-align: center;
|
|
2438
|
+
justify-self: center;
|
|
2439
|
+
line-height: 1.5;
|
|
2440
|
+
width: 15rem;
|
|
2441
|
+
color: var(--primary-color, #000);
|
|
2442
|
+
padding: 0.5rem 1rem;
|
|
2443
|
+
margin: 0.5rem;
|
|
2444
|
+
transition: all 0.2s ease 0s;
|
|
2445
|
+
|
|
2446
|
+
.link-left {
|
|
2447
|
+
display: inline-block;
|
|
2448
|
+
line-height: 0;
|
|
2449
|
+
|
|
2450
|
+
.link-avatar {
|
|
2451
|
+
width: 4rem;
|
|
2452
|
+
height: 4rem;
|
|
2453
|
+
border-radius: 50%;
|
|
2454
|
+
transition: all 0.5s ease 0s;
|
|
2455
|
+
}
|
|
2456
|
+
}
|
|
2457
|
+
|
|
2458
|
+
.link-info {
|
|
2459
|
+
padding-left: 0.6rem;
|
|
2460
|
+
display: block;
|
|
2461
|
+
|
|
2462
|
+
.link-blog {
|
|
2463
|
+
font-size: 1.24rem;
|
|
2464
|
+
font-weight: 700;
|
|
2465
|
+
margin: 0.42rem 0px;
|
|
2466
|
+
}
|
|
2467
|
+
|
|
2468
|
+
.link-desc {
|
|
2469
|
+
font-size: 0.8rem;
|
|
2470
|
+
font-weight: normal;
|
|
2471
|
+
margin-top: 0.5rem;
|
|
2472
|
+
width: 10.5rem;
|
|
2473
|
+
white-space: nowrap;
|
|
2474
|
+
text-overflow: ellipsis;
|
|
2475
|
+
overflow: hidden;
|
|
2476
|
+
}
|
|
2477
|
+
}
|
|
2478
|
+
}
|
|
2479
|
+
}
|
|
2480
|
+
}
|
|
2481
|
+
|
|
2482
|
+
|
|
2483
|
+
/* Recent-comments Waline Style*/
|
|
2484
|
+
|
|
2485
|
+
.waline-comment-content {
|
|
2486
|
+
margin: 6px;
|
|
2487
|
+
padding: 6px;
|
|
2488
|
+
border-radius: 6px;
|
|
2489
|
+
|
|
2490
|
+
p {
|
|
2491
|
+
margin: 0;
|
|
2492
|
+
display: -webkit-box;
|
|
2493
|
+
overflow: hidden;
|
|
2494
|
+
-webkit-box-orient: vertical;
|
|
2495
|
+
line-clamp: 3;
|
|
2496
|
+
/*这里设置第几行显示省略号,可以设置第一行或者其他行*/
|
|
2497
|
+
}
|
|
2498
|
+
}
|
|
2499
|
+
|
|
2500
|
+
.waline-comment-content-author {
|
|
2501
|
+
text-align: end;
|
|
2502
|
+
margin-bottom: 6px;
|
|
2503
|
+
}
|
|
2504
|
+
|
|
2505
|
+
/* article tags */
|
|
2506
|
+
.article-tag-list-item {
|
|
2507
|
+
font-size: 14px;
|
|
2508
|
+
line-height: 24px;
|
|
2509
|
+
display: inline-block;
|
|
2510
|
+
padding: 0 6px;
|
|
2511
|
+
border-radius: 3px;
|
|
2512
|
+
background: #f6f6f6;
|
|
2513
|
+
min-width: 30px;
|
|
2514
|
+
text-align: center;
|
|
2515
|
+
margin: 3px;
|
|
2516
|
+
}
|
|
2517
|
+
|
|
2518
|
+
.article-tag-list-item a {
|
|
2519
|
+
text-align: center;
|
|
2520
|
+
color: #555;
|
|
2521
|
+
}
|
|
2522
|
+
|
|
2523
|
+
.article-tag-list-item a::before {
|
|
2524
|
+
content: "\f02b";
|
|
2525
|
+
font-family: FontAwesome;
|
|
2526
|
+
margin-right: 4px;
|
|
2527
|
+
}
|
|
2528
|
+
|
|
2529
|
+
.article-tag-list-item:hover {
|
|
2530
|
+
color: #555;
|
|
2531
|
+
background: #efefef;
|
|
2532
|
+
}
|
|
2533
|
+
|
|
2534
|
+
.article-tag-list {
|
|
2535
|
+
padding-left: 0rem;
|
|
2536
|
+
}
|