jekyll-theme-h2o-ac 1.2.0 → 1.2.1
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.
- checksums.yaml +4 -4
- data/README.md +17 -20
- data/_config.yml +5 -5
- data/_data/locales/en.yml +2 -1
- data/_data/locales/ja.yml +2 -1
- data/_data/locales/zh-Hans.yml +2 -1
- data/_data/locales/zh-Hant.yml +2 -1
- data/_includes/footer.html +67 -55
- data/_includes/header.html +1 -1
- data/_includes/toc.html +2 -2
- data/_layouts/default.html +2 -2
- data/_layouts/manifest.html +35 -0
- data/_layouts/page.html +31 -0
- data/_layouts/post.html +79 -8
- data/_layouts/search.html +7 -0
- data/_layouts/sw.js +4 -4
- data/_layouts/tags.html +2 -2
- data/assets/css/app.min.css +1181 -1086
- data/assets/css/app.min.css.map +1 -1
- data/assets/icons/notbyAI-white.png +0 -0
- data/assets/js/app.min.js +103 -107
- data/assets/js/app.min.js.map +1 -1
- metadata +9 -9
- data/_layouts/manifest.json +0 -35
- data/assets/search.json +0 -13
- data/blog/index.html +0 -7
data/assets/css/app.min.css
CHANGED
@@ -7,6 +7,14 @@
|
|
7
7
|
* - author: liaokeyu (liaokeyu.com)
|
8
8
|
*/
|
9
9
|
/*** Parameters ***/
|
10
|
+
.color-f-white {
|
11
|
+
color: #fff;
|
12
|
+
}
|
13
|
+
|
14
|
+
.color-f-gray {
|
15
|
+
color: #666 !important;
|
16
|
+
}
|
17
|
+
|
10
18
|
/*** Mixins ***/
|
11
19
|
/*** Base ***/
|
12
20
|
html, body {
|
@@ -61,88 +69,12 @@ a {
|
|
61
69
|
-o-filter: grayscale(100%);
|
62
70
|
}
|
63
71
|
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
display: flex;
|
68
|
-
justify-content: space-between;
|
69
|
-
flex-direction: row;
|
70
|
-
}
|
71
|
-
|
72
|
-
a {
|
73
|
-
-webkit-user-select: none;
|
74
|
-
-moz-user-select: none;
|
75
|
-
-ms-user-select: none;
|
76
|
-
user-select: none;
|
77
|
-
}
|
78
|
-
a.extlinks::after {
|
79
|
-
content: "↗️";
|
80
|
-
font-size: 12px;
|
81
|
-
padding: 0 2px;
|
82
|
-
vertical-align: 1px;
|
83
|
-
}
|
84
|
-
|
85
|
-
.alert-tip {
|
86
|
-
position: fixed;
|
87
|
-
z-index: 102;
|
88
|
-
background: hsla(0, 0%, 100%, 0.3);
|
89
|
-
padding: 10px 20px;
|
90
|
-
min-width: 150px;
|
91
|
-
text-align: center;
|
92
|
-
left: 0;
|
93
|
-
right: 0;
|
94
|
-
margin: 0 auto;
|
95
|
-
color: #000;
|
96
|
-
backdrop-filter: blur(6px);
|
97
|
-
visibility: hidden;
|
98
|
-
opacity: 0;
|
99
|
-
transition: all 1s linear;
|
100
|
-
}
|
101
|
-
.alert-tip.active {
|
102
|
-
visibility: visible;
|
103
|
-
opacity: 1;
|
104
|
-
}
|
105
|
-
|
106
|
-
.cookie-tip {
|
107
|
-
position: fixed;
|
108
|
-
z-index: 102;
|
109
|
-
background: rgb(237, 239, 245);
|
110
|
-
padding: 0.5em 1.8em;
|
111
|
-
font-size: 13px;
|
112
|
-
line-height: 2.5em;
|
113
|
-
min-height: 2.5em;
|
114
|
-
min-width: 150px;
|
115
|
-
bottom: 0;
|
116
|
-
left: 0;
|
117
|
-
right: 0;
|
118
|
-
margin: 0 auto;
|
119
|
-
color: rgb(131, 131, 145);
|
120
|
-
backdrop-filter: blur(6px);
|
121
|
-
visibility: hidden;
|
122
|
-
opacity: 0;
|
123
|
-
transition: all 0.5s linear;
|
124
|
-
}
|
125
|
-
.cookie-tip.active {
|
126
|
-
visibility: visible;
|
127
|
-
opacity: 1;
|
128
|
-
}
|
129
|
-
.cookie-tip a {
|
130
|
-
text-decoration: underline;
|
131
|
-
}
|
132
|
-
|
133
|
-
#accept-tos {
|
134
|
-
float: right;
|
135
|
-
padding: 6px 20px;
|
136
|
-
background-color: #4b81e8;
|
137
|
-
color: #fff;
|
138
|
-
font-weight: 700;
|
139
|
-
border-width: 2px;
|
140
|
-
text-align: center;
|
141
|
-
border-style: solid;
|
142
|
-
border-color: transparent;
|
143
|
-
cursor: pointer;
|
72
|
+
:root {
|
73
|
+
--waline-theme-color: #81bbff!important;
|
74
|
+
--waline-active-color: #1B7EFF!important;
|
144
75
|
}
|
145
76
|
|
77
|
+
/*** Main style ***/
|
146
78
|
.g-header {
|
147
79
|
position: fixed;
|
148
80
|
top: 0;
|
@@ -159,6 +91,7 @@ a.extlinks::after {
|
|
159
91
|
margin-left: 2%;
|
160
92
|
width: 50px;
|
161
93
|
height: 50px;
|
94
|
+
opacity: 0.8;
|
162
95
|
transition: all 0.2s;
|
163
96
|
}
|
164
97
|
.g-header .g-logo:hover {
|
@@ -245,10 +178,6 @@ a.extlinks::after {
|
|
245
178
|
.g-header .g-nav > ul > li.mode .icon.active {
|
246
179
|
display: block;
|
247
180
|
}
|
248
|
-
.g-header .g-nav > ul > li.mode::hover {
|
249
|
-
background-color: #81bbff;
|
250
|
-
border-radius: 50%;
|
251
|
-
}
|
252
181
|
.g-header .g-nav .dropdown-toggle {
|
253
182
|
white-space: nowrap;
|
254
183
|
}
|
@@ -290,20 +219,10 @@ a.extlinks::after {
|
|
290
219
|
background-color: rgba(98, 105, 118, 0.04);
|
291
220
|
}
|
292
221
|
.g-header .g-nav ul.dropdown-menu li a {
|
293
|
-
color: #
|
222
|
+
color: #4E4E4E;
|
294
223
|
display: block;
|
295
224
|
text-align: center;
|
296
225
|
}
|
297
|
-
.g-header .nav-default a:hover {
|
298
|
-
color: #1494FB !important;
|
299
|
-
}
|
300
|
-
.g-header .nav-default .mode {
|
301
|
-
background-color: #1B7EFF;
|
302
|
-
border-radius: 50%;
|
303
|
-
}
|
304
|
-
.g-header .nav-pink a:hover {
|
305
|
-
color: #FC6794 !important;
|
306
|
-
}
|
307
226
|
|
308
227
|
.headerUp {
|
309
228
|
top: -82px;
|
@@ -358,517 +277,349 @@ a.extlinks::after {
|
|
358
277
|
}
|
359
278
|
|
360
279
|
.banner-theme-default {
|
361
|
-
background: -webkit-linear-gradient(0deg, #3CD5FF, #
|
362
|
-
background: -o-linear-gradient(0deg, #3CD5FF, #
|
363
|
-
background: -moz-linear-gradient(0deg, #3CD5FF, #
|
364
|
-
background: linear-gradient(100deg, #3CD5FF, #
|
280
|
+
background: -webkit-linear-gradient(0deg, #3CD5FF, #a8b8c9);
|
281
|
+
background: -o-linear-gradient(0deg, #3CD5FF, #a8b8c9);
|
282
|
+
background: -moz-linear-gradient(0deg, #3CD5FF, #a8b8c9);
|
283
|
+
background: linear-gradient(100deg, #3CD5FF, #a8b8c9);
|
365
284
|
}
|
366
285
|
|
367
286
|
.banner-theme-pink {
|
368
|
-
background: -webkit-linear-gradient(0deg, #FFCE69, #
|
369
|
-
background: -o-linear-gradient(0deg, #FFCE69, #
|
370
|
-
background: -moz-linear-gradient(0deg, #FFCE69, #
|
371
|
-
background: linear-gradient(100deg, #FFCE69, #
|
287
|
+
background: -webkit-linear-gradient(0deg, #FFCE69, #fcc6d7);
|
288
|
+
background: -o-linear-gradient(0deg, #FFCE69, #fcc6d7);
|
289
|
+
background: -moz-linear-gradient(0deg, #FFCE69, #fcc6d7);
|
290
|
+
background: linear-gradient(100deg, #FFCE69, #fcc6d7);
|
372
291
|
}
|
373
292
|
|
374
293
|
.themeColor-default {
|
375
|
-
background-color:
|
294
|
+
background-color: rgb(27, 126, 255);
|
376
295
|
}
|
377
296
|
|
378
297
|
.themeColor-pink {
|
379
|
-
background-color:
|
298
|
+
background-color: rgb(252, 103, 148);
|
380
299
|
}
|
381
300
|
|
382
|
-
.
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
display: table;
|
301
|
+
.markdown-body {
|
302
|
+
font-family: "LXGW WenKai Screen", -apple-system, Verdana, "PingFang SC", "Helvetica Neue", "Arial", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
|
303
|
+
width: 100%;
|
304
|
+
box-sizing: border-box;
|
305
|
+
padding: 0 0 32px;
|
388
306
|
}
|
389
|
-
.
|
390
|
-
|
307
|
+
.markdown-body .highlight {
|
308
|
+
margin: 0 0 16px;
|
309
|
+
/** overflow: scroll; 修复代码高亮 显示两个 scroll的问题 **/
|
391
310
|
}
|
392
|
-
|
393
|
-
.
|
394
|
-
width:
|
311
|
+
.markdown-body img {
|
312
|
+
transition: 0.3s;
|
313
|
+
max-width: 100%;
|
314
|
+
max-height: 100%;
|
315
|
+
margin-top: 16px;
|
316
|
+
margin-bottom: 5px;
|
395
317
|
}
|
396
|
-
.
|
397
|
-
|
318
|
+
.markdown-body .caption {
|
319
|
+
display: block;
|
320
|
+
text-align: center;
|
321
|
+
color: #222222;
|
322
|
+
font-size: 13.5px;
|
398
323
|
}
|
399
|
-
.
|
400
|
-
|
401
|
-
margin-bottom: 16px;
|
402
|
-
padding: 20px 20px;
|
403
|
-
background-color: #fff;
|
404
|
-
border: 1px solid #E7EAF1;
|
405
|
-
border-radius: 3px;
|
406
|
-
box-sizing: border-box;
|
407
|
-
box-shadow: 0 1px 3px rgba(0, 37, 55, 0.06);
|
324
|
+
.markdown-body ul li p, .markdown-body ol li p {
|
325
|
+
margin: 0;
|
408
326
|
}
|
409
|
-
.
|
327
|
+
.markdown-body ul li p:first-child, .markdown-body ol li p:first-child {
|
410
328
|
margin-bottom: 0;
|
411
329
|
}
|
412
|
-
.
|
413
|
-
|
414
|
-
|
415
|
-
left: 0;
|
330
|
+
.markdown-body mjx-math {
|
331
|
+
overflow-x: auto;
|
332
|
+
overflow-y: unset;
|
416
333
|
width: 100%;
|
417
|
-
height: 100%;
|
418
334
|
}
|
419
|
-
.
|
335
|
+
.markdown-body .copy-container {
|
420
336
|
position: relative;
|
421
|
-
|
422
|
-
|
423
|
-
margin-bottom: 14px;
|
424
|
-
overflow: hidden;
|
337
|
+
background-color: #e2e2e2;
|
338
|
+
height: 28px;
|
425
339
|
}
|
426
|
-
.
|
427
|
-
|
428
|
-
|
340
|
+
.markdown-body .copy-container .lang {
|
341
|
+
line-height: 28px;
|
342
|
+
padding-left: 10px;
|
343
|
+
font-weight: bold;
|
429
344
|
}
|
430
|
-
.
|
431
|
-
position:
|
345
|
+
.markdown-body .copy-container .btn {
|
346
|
+
position: absolute;
|
347
|
+
top: 0px;
|
348
|
+
right: 0px;
|
349
|
+
padding: 2px 2px;
|
350
|
+
border: none;
|
351
|
+
cursor: pointer;
|
352
|
+
height: 28px;
|
353
|
+
background-color: #ebedf0;
|
354
|
+
z-index: 100;
|
432
355
|
}
|
433
|
-
.
|
356
|
+
.markdown-body .copy-container .btn .icon {
|
357
|
+
width: 24px;
|
358
|
+
height: 24px;
|
359
|
+
}
|
360
|
+
.markdown-body .copy-container .btn .tooltip {
|
434
361
|
font-family: "LXGW WenKai Screen", -apple-system, Verdana, "PingFang SC", "Helvetica Neue", "Arial", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
|
435
|
-
|
436
|
-
|
437
|
-
|
362
|
+
font-size: 14px;
|
363
|
+
float: right;
|
364
|
+
position: absolute;
|
365
|
+
margin-left: -38px;
|
366
|
+
background-color: #dadde1;
|
367
|
+
padding: 3px 7px;
|
368
|
+
border-radius: 3px;
|
369
|
+
margin-top: -35px;
|
370
|
+
display: none;
|
438
371
|
}
|
439
|
-
.
|
440
|
-
|
372
|
+
.markdown-body .copy-container .btn .tooltip.finish {
|
373
|
+
margin-left: -43px;
|
441
374
|
}
|
442
|
-
.
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
375
|
+
.markdown-body .copy-container .btn .tooltip:after {
|
376
|
+
content: "";
|
377
|
+
position: absolute;
|
378
|
+
top: calc(100% - 6px);
|
379
|
+
left: calc(50% - 6px);
|
380
|
+
width: 10px;
|
381
|
+
height: 10px;
|
382
|
+
background-color: #dadde1;
|
383
|
+
border-width: 1px;
|
384
|
+
border-style: solid;
|
385
|
+
border-color: transparent #dadde1 #dadde1 transparent;
|
386
|
+
transform: rotate(45deg);
|
387
|
+
clip-path: polygon(145% -50%, 150% 150%, -50% 145%);
|
448
388
|
}
|
449
|
-
.
|
450
|
-
|
389
|
+
.markdown-body .copy-container .btn .tooltip.active {
|
390
|
+
display: inline-block;
|
391
|
+
}
|
392
|
+
.markdown-body p {
|
451
393
|
font-size: 16px;
|
452
|
-
|
453
|
-
|
454
|
-
word-break: break-all;
|
455
|
-
color: #585858;
|
394
|
+
line-height: 1.8;
|
395
|
+
text-align: justify;
|
456
396
|
}
|
457
|
-
.
|
458
|
-
|
459
|
-
margin-top: 8px;
|
460
|
-
display: flex;
|
461
|
-
justify-content: space-between;
|
397
|
+
.markdown-body h1, .markdown-body h2 {
|
398
|
+
border-bottom: none;
|
462
399
|
}
|
463
|
-
.
|
464
|
-
|
465
|
-
width: 515px;
|
400
|
+
.markdown-body ul {
|
401
|
+
list-style: revert;
|
466
402
|
}
|
467
|
-
.
|
468
|
-
|
469
|
-
display: inline-block;
|
470
|
-
font-size: 14px;
|
471
|
-
letter-spacing: 0.6px;
|
472
|
-
line-height: 22px;
|
403
|
+
.markdown-body > ol {
|
404
|
+
padding-left: 0;
|
473
405
|
}
|
474
|
-
.
|
475
|
-
|
476
|
-
height: 16px;
|
477
|
-
margin-bottom: -3px;
|
406
|
+
.markdown-body ol {
|
407
|
+
list-style: none !important;
|
478
408
|
}
|
479
|
-
|
480
|
-
|
481
|
-
text-align: center;
|
409
|
+
.markdown-body ol li {
|
410
|
+
counter-increment: a 1;
|
482
411
|
}
|
483
|
-
.
|
484
|
-
|
485
|
-
|
412
|
+
.markdown-body ol li:before {
|
413
|
+
content: counter(a);
|
414
|
+
font-weight: bold;
|
415
|
+
color: #fff;
|
416
|
+
text-align: center;
|
417
|
+
padding: 0 5px;
|
418
|
+
margin-right: 10px;
|
486
419
|
border-radius: 50%;
|
487
|
-
margin: 0 auto;
|
488
|
-
overflow: hidden;
|
489
|
-
box-shadow: 0 1px 4px rgba(100, 110, 120, 0.53);
|
490
|
-
}
|
491
|
-
.author-card .avatar img {
|
492
|
-
width: 70px;
|
493
|
-
height: 70px;
|
494
|
-
}
|
495
|
-
.author-card .author-name {
|
496
|
-
width: 100%;
|
497
|
-
font-size: 16px;
|
498
|
-
color: #4E4E4E;
|
499
|
-
font-weight: 500;
|
500
|
-
margin: 12px 0 6px;
|
501
|
-
}
|
502
|
-
.author-card .bio p {
|
503
|
-
font-size: 14px;
|
504
|
-
line-height: 20px;
|
505
|
-
}
|
506
|
-
.author-card .level {
|
507
|
-
display: flex;
|
508
|
-
margin-top: 20px;
|
509
420
|
}
|
510
|
-
.
|
511
|
-
|
421
|
+
.markdown-body ol li::marker {
|
422
|
+
content: "";
|
512
423
|
}
|
513
|
-
.
|
514
|
-
|
515
|
-
font-size: 11px;
|
516
|
-
letter-spacing: 1px;
|
517
|
-
margin-bottom: 5px;
|
518
|
-
text-transform: uppercase;
|
424
|
+
.markdown-body ol li li {
|
425
|
+
counter-increment: b 1;
|
519
426
|
}
|
520
|
-
.
|
521
|
-
|
522
|
-
|
523
|
-
font-weight: 400;
|
524
|
-
line-height: 1.125;
|
427
|
+
.markdown-body ol li li:before {
|
428
|
+
content: counter(a) "." counter(b);
|
429
|
+
border-radius: 0;
|
525
430
|
}
|
526
|
-
.
|
527
|
-
|
528
|
-
cursor: default;
|
431
|
+
.markdown-body ol li li li {
|
432
|
+
counter-increment: c 1;
|
529
433
|
}
|
530
|
-
.
|
531
|
-
|
532
|
-
display: inline-block;
|
533
|
-
width: 26px;
|
534
|
-
height: 26px;
|
535
|
-
overflow: hidden;
|
434
|
+
.markdown-body ol li li li:before {
|
435
|
+
content: counter(a) "." counter(b) "." counter(c);
|
536
436
|
}
|
537
|
-
.
|
538
|
-
|
437
|
+
.markdown-body ol li li li li {
|
438
|
+
counter-increment: d 1;
|
539
439
|
}
|
540
|
-
.
|
541
|
-
|
542
|
-
line-height: 30px;
|
440
|
+
.markdown-body ol li li li li:before {
|
441
|
+
content: counter(a) "." counter(b) "." counter(c) "." counter(d);
|
543
442
|
}
|
544
|
-
.
|
545
|
-
|
546
|
-
|
443
|
+
.markdown-body summary.render-expand {
|
444
|
+
padding: 3px 12px;
|
445
|
+
font-size: 12px;
|
446
|
+
line-height: 20px;
|
447
|
+
float: right;
|
448
|
+
list-style: none;
|
449
|
+
font-weight: 500;
|
450
|
+
color: #57606a;
|
451
|
+
background-color: #f6f8fa;
|
452
|
+
box-shadow: 0 1px 0 rgba(27, 31, 36, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.25);
|
453
|
+
border: 1px solid rgba(27, 31, 36, 0.15);
|
454
|
+
border-radius: 6px;
|
455
|
+
cursor: pointer;
|
547
456
|
}
|
548
|
-
.
|
549
|
-
color: #
|
457
|
+
.markdown-body summary.render-expand:hover {
|
458
|
+
background-color: #f3f4f6;
|
459
|
+
border-color: rgba(27, 31, 36, 0.15);
|
460
|
+
transition-duration: 0.1s;
|
550
461
|
}
|
551
|
-
.
|
552
|
-
|
553
|
-
|
554
|
-
|
555
|
-
height: 22px;
|
556
|
-
line-height: 30px;
|
557
|
-
vertical-align: -0.15em;
|
558
|
-
fill: currentColor;
|
559
|
-
overflow: hidden;
|
560
|
-
filter: grayscale(100%);
|
561
|
-
-webkit-filter: grayscale(100%);
|
562
|
-
-moz-filter: grayscale(100%);
|
563
|
-
-ms-filter: grayscale(100%);
|
462
|
+
.markdown-body pre {
|
463
|
+
border: 3px solid #e2e2e2;
|
464
|
+
border-radius: 0px !important;
|
465
|
+
border-top: none;
|
564
466
|
}
|
565
|
-
.
|
566
|
-
|
567
|
-
|
568
|
-
|
569
|
-
-moz-filter: none;
|
570
|
-
-ms-filter: none;
|
467
|
+
.markdown-body pre.language-mermaid2 {
|
468
|
+
background: #eceff1;
|
469
|
+
color: transparent;
|
470
|
+
display: none;
|
571
471
|
}
|
572
|
-
.
|
573
|
-
color:
|
472
|
+
.markdown-body pre.language-mermaid2 code {
|
473
|
+
color: transparent;
|
474
|
+
background-color: #eceff1;
|
574
475
|
}
|
575
|
-
.
|
576
|
-
|
476
|
+
.markdown-body .mermaid2 {
|
477
|
+
justify-content: center;
|
478
|
+
text-align: center;
|
479
|
+
align-content: flex-start;
|
480
|
+
margin: 10px 0;
|
481
|
+
background-color: #fff;
|
577
482
|
}
|
578
|
-
.
|
579
|
-
|
483
|
+
.markdown-body .category {
|
484
|
+
text-transform: capitalize;
|
580
485
|
}
|
581
|
-
.
|
582
|
-
|
486
|
+
.markdown-body .table-area {
|
487
|
+
overflow: auto;
|
583
488
|
}
|
584
|
-
.
|
585
|
-
|
489
|
+
.markdown-body .table-area table {
|
490
|
+
word-break: keep-all;
|
491
|
+
word-wrap: break-word;
|
492
|
+
text-overflow: ellipsis;
|
493
|
+
white-space: nowrap;
|
586
494
|
}
|
587
|
-
.
|
588
|
-
color: #
|
495
|
+
.markdown-body .post-copyright {
|
496
|
+
background-color: #FFFBF0;
|
497
|
+
border-radius: 4px;
|
498
|
+
border: 1px solid #EFE1BB;
|
499
|
+
padding: 18px 20px;
|
500
|
+
font-size: 14px;
|
501
|
+
color: #333;
|
589
502
|
}
|
590
|
-
.
|
591
|
-
|
503
|
+
.markdown-body .post-copyright p {
|
504
|
+
margin-bottom: 0px;
|
505
|
+
text-align: left;
|
592
506
|
}
|
593
|
-
.
|
594
|
-
|
507
|
+
.markdown-body .post-copyright p span {
|
508
|
+
font-weight: bold;
|
595
509
|
}
|
596
|
-
.
|
597
|
-
color: #
|
510
|
+
.markdown-body .post-copyright p.tips {
|
511
|
+
color: #E32E00;
|
512
|
+
display: none;
|
598
513
|
}
|
599
|
-
.
|
600
|
-
|
514
|
+
.markdown-body .post-copyright p.tips.active {
|
515
|
+
display: block;
|
601
516
|
}
|
602
|
-
.
|
603
|
-
color:
|
517
|
+
.markdown-body .language-plaintext {
|
518
|
+
color: chocolate;
|
604
519
|
}
|
605
|
-
.
|
606
|
-
|
520
|
+
.markdown-body .footnotes {
|
521
|
+
border-top-width: 3px;
|
522
|
+
padding-top: 10px;
|
523
|
+
}
|
524
|
+
.markdown-body .footnotes ol li:before {
|
525
|
+
position: relative !important;
|
526
|
+
top: 0 !important;
|
527
|
+
right: 0 !important;
|
528
|
+
bottom: 0 !important;
|
529
|
+
left: 0 !important;
|
530
|
+
content: counter(a) !important;
|
531
|
+
border: 0px !important;
|
532
|
+
border-radius: 50% !important;
|
533
|
+
font-size: 16px;
|
607
534
|
}
|
608
|
-
.
|
609
|
-
|
535
|
+
.markdown-body .footnotes ol li p {
|
536
|
+
display: inline;
|
610
537
|
}
|
611
|
-
|
612
|
-
|
538
|
+
|
539
|
+
.post-no-cover {
|
540
|
+
height: 360px;
|
613
541
|
}
|
614
|
-
.
|
615
|
-
|
542
|
+
.post-no-cover .post-tags {
|
543
|
+
margin-top: 100px;
|
616
544
|
}
|
617
|
-
|
618
|
-
|
545
|
+
|
546
|
+
.post-pattern-circuitBoard {
|
547
|
+
background-image: url("data:image/svg+xml,%3Csvg width=%27304%27 height=%27304%27 viewBox=%270 0 304 304%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M44.1 224c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H0v-2h44.1zm160 48c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H82v-2h122.1zm57.8-46c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H304v2h-42.1zm0 16c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H304v2h-42.1zm6.2-114c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4h-86.2c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h86.2zm-256-48c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H0v-2h12.1zm185.8 34c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h86.2c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4h-86.2zM258 12.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V0h2v12.1zm-64 208c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-54.2c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9v54.2zm48-198.2c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V82h64v-2h-62V21.9zm16 16c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V66h48v-2h-46V37.9zm-128 96c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V210h16v10.1c-2.282.463-4 2.48-4 4.9 0 2.76 2.24 5 5 5s5-2.24 5-5c0-2.42-1.718-4.437-4-4.9V208h-16v-74.1zm-5.9-21.9c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H114v48H85.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H112v-48h12.1zm-6.2 130c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H176v-74.1c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V242h-60.1zm-16-64c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H114v48h10.1c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H112v-48h-10.1zM66 284.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V274H50v30h-2v-32h18v12.1zM236.1 176c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H226v94h48v32h-2v-30h-48v-98h12.1zm25.8-30c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H274v44.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V146h-10.1zm-64 96c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H208v-80h16v-14h-42.1c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H226v18h-16v80h-12.1zm86.2-210c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H272V0h2v32h10.1zM98 101.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V144H53.9c-.463-2.282-2.48-4-4.9-4-2.76 0-5 2.24-5 5s2.24 5 5 5c2.42 0 4.437-1.718 4.9-4H98v-44.1zM53.9 34c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H80V0h2v34H53.9zm60.1 3.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V64H80v64H69.9c-.463-2.282-2.48-4-4.9-4-2.76 0-5 2.24-5 5s2.24 5 5 5c2.42 0 4.437-1.718 4.9-4H82V66h32V37.9zM101.9 82c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H128V37.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V82h-28.1zm16-64c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H146v44.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V18h-26.1zm102.2 270c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H98v14h-2v-16h124.1zM242 149.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V162h16v30h-16v66h48v46h2v-48h-48v-62h16v-34h-16v-10.1zM53.9 18c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H64V2H48V0h18v18H53.9zm112 32c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H192V0h50v2h-48v48h-28.1zm-48-48c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5 0-.342.034-.677.1-1h2.07c-.11.313-.17.65-.17 1 0 1.657 1.343 3 3 3s3-1.343 3-3c0-.35-.06-.687-.17-1H178v34h-18V21.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V32h14V2h-58.1zm0 96c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H137l32-32h39V21.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V66h-40.172l-32 32H117.9zm28.1 90.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-76.513L175.586 80H224V21.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V82h-49.586L146 112.414V188.1zm16 32c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-99.513L184.586 96H300.1c.398-1.96 1.94-3.502 3.9-3.9v2.07c-1.165.413-2 1.524-2 2.83s.835 2.417 2 2.83v2.07c-1.96-.398-3.502-1.94-3.9-3.9H185.414L162 121.414V220.1zm-144-64c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-3.513l48-48V48h32V0h2v50H66v55.413l-48 48v2.687zM50 53.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9v42.686l-48 48V210h28.1c.463 2.282 2.48 4 4.9 4 2.76 0 5-2.24 5-5s-2.24-5-5-5c-2.42 0-4.437 1.718-4.9 4H2v-62.586l48-48V53.9zm-16 16c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9v18.686l-32 32v2.828l34-34V69.9zM12.1 32c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H9.414L0 43.414v-2.828L8.586 32H12.1zm265.8 18c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h18.686L304 40.586v2.828L297.414 50H277.9zm-16 160c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H288V136.587l16-16v2.827l-14 14V210h-28.1zm-208 32c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H64v-22.586L40.586 194H21.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h19.513L66 216.586V242H53.9zm150.2 14c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H96v-56.598L56.598 162H37.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h19.502L98 200.598V256h106.1zm-150.2 2c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H80v-46.586L48.586 178H21.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h27.513L82 208.586V258H53.9zM97 100c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-48 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 48c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 96c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-144c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-96 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm96 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-32 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM49 36c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-32 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM33 68c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-48c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 240c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm80-176c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 48c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm112 176c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM17 180c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM17 84c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 39.793V0h-2v40.586L8.586 64H0v2h9.413L34 41.414v-1.62zM2 300.1V258h14v46h2v-48H0V302.17c.313-.11.65-.17 1-.17 1.306 0 2.417.835 2.83 2H5.9c-.398-1.96-1.94-3.502-3.9-3.9zM34 241v63h-2v-62H0v-2h34v1zM17 18h1V0h-2v16H0v2h17zm273-2V0h-2v18h16v-2h-14zm-32 273v15h-2v-14h-14v14h-2v-16h18v1zM0 92.1c.323-.066.658-.1 1-.1 2.76 0 5 2.24 5 5s-2.24 5-5 5c-.342 0-.677-.034-1-.1v-2.07c.313.11.65.17 1 .17 1.657 0 3-1.343 3-3s-1.343-3-3-3c-.35 0-.687.06-1 .17V92.1zM80 272h2v32h-2v-32zm37.9 32c-.463-2.282-2.48-4-4.9-4-2.42 0-4.437 1.718-4.9 4h2.07c.413-1.165 1.524-2 2.83-2s2.417.835 2.83 2h2.07zM5.9 0c.066.323.1.658.1 1 0 2.76-2.24 5-5 5-.342 0-.677-.034-1-.1V3.83C.313 3.94.65 4 1 4c1.657 0 3-1.343 3-3 0-.35-.06-.687-.17-1H5.9zm294.2 0c-.066.323-.1.658-.1 1 0 2.42 1.718 4.437 4 4.9V3.83c-1.165-.413-2-1.524-2-2.83 0-.35.06-.687.17-1h-2.07zm3.9 300.1c-1.96.398-3.502 1.94-3.9 3.9h2.07c.302-.852.978-1.528 1.83-1.83v-2.07z%27 fill=%27%23f8f6fb%27 fill-opacity=%270.08%27 fill-rule=%27evenodd%27/%3E%3C/svg%3E");
|
619
548
|
}
|
620
549
|
|
621
|
-
.
|
622
|
-
|
623
|
-
width: auto;
|
624
|
-
height: 22px;
|
625
|
-
padding: 0 8px;
|
626
|
-
font-size: 14px;
|
627
|
-
color: #656565;
|
628
|
-
font-family: "LXGW WenKai Screen", -apple-system, Verdana, "PingFang SC", "Helvetica Neue", "Arial", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
|
629
|
-
line-height: 22px;
|
630
|
-
box-sizing: border-box;
|
631
|
-
box-shadow: 0 0 0.6px #D5DAE1;
|
632
|
-
border-radius: 2px;
|
633
|
-
background-color: #FAFAFA;
|
634
|
-
cursor: pointer;
|
635
|
-
margin-right: 2px;
|
636
|
-
transition: 0.2s;
|
637
|
-
margin-bottom: 5px;
|
550
|
+
.post-pattern-overlappingCircles {
|
551
|
+
background-image: url("data:image/svg+xml,%3Csvg width=%2780%27 height=%2780%27 viewBox=%270 0 80 80%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg fill=%27none%27 fill-rule=%27evenodd%27%3E%3Cg fill=%27%23ffffff%27 fill-opacity=%270.08%27%3E%3Cpath d=%27M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z%27 /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
|
638
552
|
}
|
639
|
-
|
640
|
-
|
553
|
+
|
554
|
+
.post-pattern-food {
|
555
|
+
background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%27260%27 height=%27260%27 viewBox=%270 0 260 260%27%3E%3Cg fill-rule=%27evenodd%27%3E%3Cg fill=%27%23ffffff%27 fill-opacity=%270.08%27%3E%3Cpath d=%27M24.37 16c.2.65.39 1.32.54 2H21.17l1.17 2.34.45.9-.24.11V28a5 5 0 0 1-2.23 8.94l-.02.06a8 8 0 0 1-7.75 6h-20a8 8 0 0 1-7.74-6l-.02-.06A5 5 0 0 1-17.45 28v-6.76l-.79-1.58-.44-.9.9-.44.63-.32H-20a23.01 23.01 0 0 1 44.37-2zm-36.82 2a1 1 0 0 0-.44.1l-3.1 1.56.89 1.79 1.31-.66a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .9 0l2.21-1.1a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .9 0l2.21-1.1a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .86.02l2.88-1.27a3 3 0 0 1 2.43 0l2.88 1.27a1 1 0 0 0 .85-.02l3.1-1.55-.89-1.79-1.42.71a3 3 0 0 1-2.56.06l-2.77-1.23a1 1 0 0 0-.4-.09h-.01a1 1 0 0 0-.4.09l-2.78 1.23a3 3 0 0 1-2.56-.06l-2.3-1.15a1 1 0 0 0-.45-.11h-.01a1 1 0 0 0-.44.1L.9 19.22a3 3 0 0 1-2.69 0l-2.2-1.1a1 1 0 0 0-.45-.11h-.01a1 1 0 0 0-.44.1l-2.21 1.11a3 3 0 0 1-2.69 0l-2.2-1.1a1 1 0 0 0-.45-.11h-.01zm0-2h-4.9a21.01 21.01 0 0 1 39.61 0h-2.09l-.06-.13-.26.13h-32.31zm30.35 7.68l1.36-.68h1.3v2h-36v-1.15l.34-.17 1.36-.68h2.59l1.36.68a3 3 0 0 0 2.69 0l1.36-.68h2.59l1.36.68a3 3 0 0 0 2.69 0L2.26 23h2.59l1.36.68a3 3 0 0 0 2.56.06l1.67-.74h3.23l1.67.74a3 3 0 0 0 2.56-.06zM-13.82 27l16.37 4.91L18.93 27h-32.75zm-.63 2h.34l16.66 5 16.67-5h.33a3 3 0 1 1 0 6h-34a3 3 0 1 1 0-6zm1.35 8a6 6 0 0 0 5.65 4h20a6 6 0 0 0 5.66-4H-13.1z%27/%3E%3Cpath id=%27path6_fill-copy%27 d=%27M284.37 16c.2.65.39 1.32.54 2H281.17l1.17 2.34.45.9-.24.11V28a5 5 0 0 1-2.23 8.94l-.02.06a8 8 0 0 1-7.75 6h-20a8 8 0 0 1-7.74-6l-.02-.06a5 5 0 0 1-2.24-8.94v-6.76l-.79-1.58-.44-.9.9-.44.63-.32H240a23.01 23.01 0 0 1 44.37-2zm-36.82 2a1 1 0 0 0-.44.1l-3.1 1.56.89 1.79 1.31-.66a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .9 0l2.21-1.1a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .9 0l2.21-1.1a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .86.02l2.88-1.27a3 3 0 0 1 2.43 0l2.88 1.27a1 1 0 0 0 .85-.02l3.1-1.55-.89-1.79-1.42.71a3 3 0 0 1-2.56.06l-2.77-1.23a1 1 0 0 0-.4-.09h-.01a1 1 0 0 0-.4.09l-2.78 1.23a3 3 0 0 1-2.56-.06l-2.3-1.15a1 1 0 0 0-.45-.11h-.01a1 1 0 0 0-.44.1l-2.21 1.11a3 3 0 0 1-2.69 0l-2.2-1.1a1 1 0 0 0-.45-.11h-.01a1 1 0 0 0-.44.1l-2.21 1.11a3 3 0 0 1-2.69 0l-2.2-1.1a1 1 0 0 0-.45-.11h-.01zm0-2h-4.9a21.01 21.01 0 0 1 39.61 0h-2.09l-.06-.13-.26.13h-32.31zm30.35 7.68l1.36-.68h1.3v2h-36v-1.15l.34-.17 1.36-.68h2.59l1.36.68a3 3 0 0 0 2.69 0l1.36-.68h2.59l1.36.68a3 3 0 0 0 2.69 0l1.36-.68h2.59l1.36.68a3 3 0 0 0 2.56.06l1.67-.74h3.23l1.67.74a3 3 0 0 0 2.56-.06zM246.18 27l16.37 4.91L278.93 27h-32.75zm-.63 2h.34l16.66 5 16.67-5h.33a3 3 0 1 1 0 6h-34a3 3 0 1 1 0-6zm1.35 8a6 6 0 0 0 5.65 4h20a6 6 0 0 0 5.66-4H246.9z%27/%3E%3Cpath d=%27M159.5 21.02A9 9 0 0 0 151 15h-42a9 9 0 0 0-8.5 6.02 6 6 0 0 0 .02 11.96A8.99 8.99 0 0 0 109 45h42a9 9 0 0 0 8.48-12.02 6 6 0 0 0 .02-11.96zM151 17h-42a7 7 0 0 0-6.33 4h54.66a7 7 0 0 0-6.33-4zm-9.34 26a8.98 8.98 0 0 0 3.34-7h-2a7 7 0 0 1-7 7h-4.34a8.98 8.98 0 0 0 3.34-7h-2a7 7 0 0 1-7 7h-4.34a8.98 8.98 0 0 0 3.34-7h-2a7 7 0 0 1-7 7h-7a7 7 0 1 1 0-14h42a7 7 0 1 1 0 14h-9.34zM109 27a9 9 0 0 0-7.48 4H101a4 4 0 1 1 0-8h58a4 4 0 0 1 0 8h-.52a9 9 0 0 0-7.48-4h-42z%27/%3E%3Cpath d=%27M39 115a8 8 0 1 0 0-16 8 8 0 0 0 0 16zm6-8a6 6 0 1 1-12 0 6 6 0 0 1 12 0zm-3-29v-2h8v-6H40a4 4 0 0 0-4 4v10H22l-1.33 4-.67 2h2.19L26 130h26l3.81-40H58l-.67-2L56 84H42v-6zm-4-4v10h2V74h8v-2h-8a2 2 0 0 0-2 2zm2 12h14.56l.67 2H22.77l.67-2H40zm13.8 4H24.2l3.62 38h22.36l3.62-38z%27/%3E%3Cpath d=%27M129 92h-6v4h-6v4h-6v14h-3l.24 2 3.76 32h36l3.76-32 .24-2h-3v-14h-6v-4h-6v-4h-8zm18 22v-12h-4v4h3v8h1zm-3 0v-6h-4v6h4zm-6 6v-16h-4v19.17c1.6-.7 2.97-1.8 4-3.17zm-6 3.8V100h-4v23.8a10.04 10.04 0 0 0 4 0zm-6-.63V104h-4v16a10.04 10.04 0 0 0 4 3.17zm-6-9.17v-6h-4v6h4zm-6 0v-8h3v-4h-4v12h1zm27-12v-4h-4v4h3v4h1v-4zm-6 0v-8h-4v4h3v4h1zm-6-4v-4h-4v8h1v-4h3zm-6 4v-4h-4v8h1v-4h3zm7 24a12 12 0 0 0 11.83-10h7.92l-3.53 30h-32.44l-3.53-30h7.92A12 12 0 0 0 130 126z%27/%3E%3Cpath d=%27M212 86v2h-4v-2h4zm4 0h-2v2h2v-2zm-20 0v.1a5 5 0 0 0-.56 9.65l.06.25 1.12 4.48a2 2 0 0 0 1.94 1.52h.01l7.02 24.55a2 2 0 0 0 1.92 1.45h4.98a2 2 0 0 0 1.92-1.45l7.02-24.55a2 2 0 0 0 1.95-1.52L224.5 96l.06-.25a5 5 0 0 0-.56-9.65V86a14 14 0 0 0-28 0zm4 0h6v2h-9a3 3 0 1 0 0 6H223a3 3 0 1 0 0-6H220v-2h2a12 12 0 1 0-24 0h2zm-1.44 14l-1-4h24.88l-1 4h-22.88zm8.95 26l-6.86-24h18.7l-6.86 24h-4.98zM150 242a22 22 0 1 0 0-44 22 22 0 0 0 0 44zm24-22a24 24 0 1 1-48 0 24 24 0 0 1 48 0zm-28.38 17.73l2.04-.87a6 6 0 0 1 4.68 0l2.04.87a2 2 0 0 0 2.5-.82l1.14-1.9a6 6 0 0 1 3.79-2.75l2.15-.5a2 2 0 0 0 1.54-2.12l-.19-2.2a6 6 0 0 1 1.45-4.46l1.45-1.67a2 2 0 0 0 0-2.62l-1.45-1.67a6 6 0 0 1-1.45-4.46l.2-2.2a2 2 0 0 0-1.55-2.13l-2.15-.5a6 6 0 0 1-3.8-2.75l-1.13-1.9a2 2 0 0 0-2.5-.8l-2.04.86a6 6 0 0 1-4.68 0l-2.04-.87a2 2 0 0 0-2.5.82l-1.14 1.9a6 6 0 0 1-3.79 2.75l-2.15.5a2 2 0 0 0-1.54 2.12l.19 2.2a6 6 0 0 1-1.45 4.46l-1.45 1.67a2 2 0 0 0 0 2.62l1.45 1.67a6 6 0 0 1 1.45 4.46l-.2 2.2a2 2 0 0 0 1.55 2.13l2.15.5a6 6 0 0 1 3.8 2.75l1.13 1.9a2 2 0 0 0 2.5.8zm2.82.97a4 4 0 0 1 3.12 0l2.04.87a4 4 0 0 0 4.99-1.62l1.14-1.9a4 4 0 0 1 2.53-1.84l2.15-.5a4 4 0 0 0 3.09-4.24l-.2-2.2a4 4 0 0 1 .97-2.98l1.45-1.67a4 4 0 0 0 0-5.24l-1.45-1.67a4 4 0 0 1-.97-2.97l.2-2.2a4 4 0 0 0-3.09-4.25l-2.15-.5a4 4 0 0 1-2.53-1.84l-1.14-1.9a4 4 0 0 0-5-1.62l-2.03.87a4 4 0 0 1-3.12 0l-2.04-.87a4 4 0 0 0-4.99 1.62l-1.14 1.9a4 4 0 0 1-2.53 1.84l-2.15.5a4 4 0 0 0-3.09 4.24l.2 2.2a4 4 0 0 1-.97 2.98l-1.45 1.67a4 4 0 0 0 0 5.24l1.45 1.67a4 4 0 0 1 .97 2.97l-.2 2.2a4 4 0 0 0 3.09 4.25l2.15.5a4 4 0 0 1 2.53 1.84l1.14 1.9a4 4 0 0 0 5 1.62l2.03-.87zM152 207a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm6 2a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-11 1a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-6 0a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm3-5a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-8 8a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm3 6a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm0 6a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm4 7a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm5-2a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm5 4a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm4-6a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm6-4a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-4-3a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm4-3a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-5-4a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-24 6a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm16 5a5 5 0 1 0 0-10 5 5 0 0 0 0 10zm7-5a7 7 0 1 1-14 0 7 7 0 0 1 14 0zm86-29a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm19 9a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm-14 5a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm-25 1a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm5 4a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm9 0a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm15 1a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm12-2a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm-11-14a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm-19 0a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm6 5a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm-25 15c0-.47.01-.94.03-1.4a5 5 0 0 1-1.7-8 3.99 3.99 0 0 1 1.88-5.18 5 5 0 0 1 3.4-6.22 3 3 0 0 1 1.46-1.05 5 5 0 0 1 7.76-3.27A30.86 30.86 0 0 1 246 184c6.79 0 13.06 2.18 18.17 5.88a5 5 0 0 1 7.76 3.27 3 3 0 0 1 1.47 1.05 5 5 0 0 1 3.4 6.22 4 4 0 0 1 1.87 5.18 4.98 4.98 0 0 1-1.7 8c.02.46.03.93.03 1.4v1h-62v-1zm.83-7.17a30.9 30.9 0 0 0-.62 3.57 3 3 0 0 1-.61-4.2c.37.28.78.49 1.23.63zm1.49-4.61c-.36.87-.68 1.76-.96 2.68a2 2 0 0 1-.21-3.71c.33.4.73.75 1.17 1.03zm2.32-4.54c-.54.86-1.03 1.76-1.49 2.68a3 3 0 0 1-.07-4.67 3 3 0 0 0 1.56 1.99zm1.14-1.7c.35-.5.72-.98 1.1-1.46a1 1 0 1 0-1.1 1.45zm5.34-5.77c-1.03.86-2 1.79-2.9 2.77a3 3 0 0 0-1.11-.77 3 3 0 0 1 4-2zm42.66 2.77c-.9-.98-1.87-1.9-2.9-2.77a3 3 0 0 1 4.01 2 3 3 0 0 0-1.1.77zm1.34 1.54c.38.48.75.96 1.1 1.45a1 1 0 1 0-1.1-1.45zm3.73 5.84c-.46-.92-.95-1.82-1.5-2.68a3 3 0 0 0 1.57-1.99 3 3 0 0 1-.07 4.67zm1.8 4.53c-.29-.9-.6-1.8-.97-2.67.44-.28.84-.63 1.17-1.03a2 2 0 0 1-.2 3.7zm1.14 5.51c-.14-1.21-.35-2.4-.62-3.57.45-.14.86-.35 1.23-.63a2.99 2.99 0 0 1-.6 4.2zM275 214a29 29 0 0 0-57.97 0h57.96zM72.33 198.12c-.21-.32-.34-.7-.34-1.12v-12h-2v12a4.01 4.01 0 0 0 7.09 2.54c.57-.69.91-1.57.91-2.54v-12h-2v12a1.99 1.99 0 0 1-2 2 2 2 0 0 1-1.66-.88zM75 176c.38 0 .74-.04 1.1-.12a4 4 0 0 0 6.19 2.4A13.94 13.94 0 0 1 84 185v24a6 6 0 0 1-6 6h-3v9a5 5 0 1 1-10 0v-9h-3a6 6 0 0 1-6-6v-24a14 14 0 0 1 14-14 5 5 0 0 0 5 5zm-17 15v12a1.99 1.99 0 0 0 1.22 1.84 2 2 0 0 0 2.44-.72c.21-.32.34-.7.34-1.12v-12h2v12a3.98 3.98 0 0 1-5.35 3.77 3.98 3.98 0 0 1-.65-.3V209a4 4 0 0 0 4 4h16a4 4 0 0 0 4-4v-24c.01-1.53-.23-2.88-.72-4.17-.43.1-.87.16-1.28.17a6 6 0 0 1-5.2-3 7 7 0 0 1-6.47-4.88A12 12 0 0 0 58 185v6zm9 24v9a3 3 0 1 0 6 0v-9h-6z%27/%3E%3Cpath d=%27M-17 191a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm19 9a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2H3a1 1 0 0 1-1-1zm-14 5a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm-25 1a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm5 4a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm9 0a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm15 1a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm12-2a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2H4zm-11-14a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm-19 0a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm6 5a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm-25 15c0-.47.01-.94.03-1.4a5 5 0 0 1-1.7-8 3.99 3.99 0 0 1 1.88-5.18 5 5 0 0 1 3.4-6.22 3 3 0 0 1 1.46-1.05 5 5 0 0 1 7.76-3.27A30.86 30.86 0 0 1-14 184c6.79 0 13.06 2.18 18.17 5.88a5 5 0 0 1 7.76 3.27 3 3 0 0 1 1.47 1.05 5 5 0 0 1 3.4 6.22 4 4 0 0 1 1.87 5.18 4.98 4.98 0 0 1-1.7 8c.02.46.03.93.03 1.4v1h-62v-1zm.83-7.17a30.9 30.9 0 0 0-.62 3.57 3 3 0 0 1-.61-4.2c.37.28.78.49 1.23.63zm1.49-4.61c-.36.87-.68 1.76-.96 2.68a2 2 0 0 1-.21-3.71c.33.4.73.75 1.17 1.03zm2.32-4.54c-.54.86-1.03 1.76-1.49 2.68a3 3 0 0 1-.07-4.67 3 3 0 0 0 1.56 1.99zm1.14-1.7c.35-.5.72-.98 1.1-1.46a1 1 0 1 0-1.1 1.45zm5.34-5.77c-1.03.86-2 1.79-2.9 2.77a3 3 0 0 0-1.11-.77 3 3 0 0 1 4-2zm42.66 2.77c-.9-.98-1.87-1.9-2.9-2.77a3 3 0 0 1 4.01 2 3 3 0 0 0-1.1.77zm1.34 1.54c.38.48.75.96 1.1 1.45a1 1 0 1 0-1.1-1.45zm3.73 5.84c-.46-.92-.95-1.82-1.5-2.68a3 3 0 0 0 1.57-1.99 3 3 0 0 1-.07 4.67zm1.8 4.53c-.29-.9-.6-1.8-.97-2.67.44-.28.84-.63 1.17-1.03a2 2 0 0 1-.2 3.7zm1.14 5.51c-.14-1.21-.35-2.4-.62-3.57.45-.14.86-.35 1.23-.63a2.99 2.99 0 0 1-.6 4.2zM15 214a29 29 0 0 0-57.97 0h57.96z%27/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
|
641
556
|
}
|
642
|
-
|
643
|
-
|
557
|
+
|
558
|
+
.post-pattern-glamorous {
|
559
|
+
background-image: url("data:image/svg+xml,%3Csvg width=%27180%27 height=%27180%27 viewBox=%270 0 180 180%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M81.28 88H68.413l19.298 19.298L81.28 88zm2.107 0h13.226L90 107.838 83.387 88zm15.334 0h12.866l-19.298 19.298L98.72 88zm-32.927-2.207L73.586 78h32.827l.5.5 7.294 7.293L115.414 87l-24.707 24.707-.707.707L64.586 87l1.207-1.207zm2.62.207L74 80.414 79.586 86H68.414zm16 0L90 80.414 95.586 86H84.414zm16 0L106 80.414 111.586 86h-11.172zm-8-6h11.173L98 85.586 92.414 80zM82 85.586L87.586 80H76.414L82 85.586zM17.414 0L.707 16.707 0 17.414V0h17.414zM4.28 0L0 12.838V0h4.28zm10.306 0L2.288 12.298 6.388 0h8.198zM180 17.414L162.586 0H180v17.414zM165.414 0l12.298 12.298L173.612 0h-8.198zM180 12.838L175.72 0H180v12.838zM0 163h16.413l.5.5 7.294 7.293L25.414 172l-8 8H0v-17zm0 10h6.613l-2.334 7H0v-7zm14.586 7l7-7H8.72l-2.333 7h8.2zM0 165.414L5.586 171H0v-5.586zM10.414 171L16 165.414 21.586 171H10.414zm-8-6h11.172L8 170.586 2.414 165zM180 163h-16.413l-7.794 7.793-1.207 1.207 8 8H180v-17zm-14.586 17l-7-7h12.865l2.333 7h-8.2zM180 173h-6.613l2.334 7H180v-7zm-21.586-2l5.586-5.586 5.586 5.586h-11.172zM180 165.414L174.414 171H180v-5.586zm-8 5.172l5.586-5.586h-11.172l5.586 5.586zM152.933 25.653l1.414 1.414-33.94 33.942-1.416-1.416 33.943-33.94zm1.414 127.28l-1.414 1.414-33.942-33.94 1.416-1.416 33.94 33.943zm-127.28 1.414l-1.414-1.414 33.94-33.942 1.416 1.416-33.943 33.94zm-1.414-127.28l1.414-1.414 33.942 33.94-1.416 1.416-33.94-33.943zM0 85c2.21 0 4 1.79 4 4s-1.79 4-4 4v-8zm180 0c-2.21 0-4 1.79-4 4s1.79 4 4 4v-8zM94 0c0 2.21-1.79 4-4 4s-4-1.79-4-4h8zm0 180c0-2.21-1.79-4-4-4s-4 1.79-4 4h8z%27 fill=%27%23ffffff%27 fill-opacity=%270.08%27 fill-rule=%27evenodd%27/%3E%3C/svg%3E");
|
644
560
|
}
|
645
561
|
|
646
|
-
.
|
647
|
-
|
648
|
-
font-size: 16px;
|
649
|
-
color: #4e4e4e;
|
650
|
-
font-weight: bold;
|
651
|
-
margin: 10px 0 16px;
|
652
|
-
text-align: center;
|
562
|
+
.post-pattern-ticTacToe {
|
563
|
+
background-image: url("data:image/svg+xml,%3Csvg width=%2764%27 height=%2764%27 viewBox=%270 0 64 64%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm0-2c3.314 0 6-2.686 6-6s-2.686-6-6-6-6 2.686-6 6 2.686 6 6 6zm33.414-6l5.95-5.95L45.95.636 40 6.586 34.05.636 32.636 2.05 38.586 8l-5.95 5.95 1.414 1.414L40 9.414l5.95 5.95 1.414-1.414L41.414 8zM40 48c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm0-2c3.314 0 6-2.686 6-6s-2.686-6-6-6-6 2.686-6 6 2.686 6 6 6zM9.414 40l5.95-5.95-1.414-1.414L8 38.586l-5.95-5.95L.636 34.05 6.586 40l-5.95 5.95 1.414 1.414L8 41.414l5.95 5.95 1.414-1.414L9.414 40z%27 fill=%27%23ffffff%27 fill-opacity=%270.08%27 fill-rule=%27evenodd%27/%3E%3C/svg%3E");
|
653
564
|
}
|
654
565
|
|
655
|
-
.
|
656
|
-
|
657
|
-
position: sticky;
|
658
|
-
top: 100px;
|
659
|
-
height: fit-content;
|
566
|
+
.post-pattern-seaOfClouds {
|
567
|
+
background-image: url("data:image/svg+xml,%3Csvg width=%2756%27 height=%2728%27 viewBox=%270 0 56 28%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M56 26c-2.813 0-5.456.726-7.752 2H56v-2zm-26 2h4.087C38.707 20.783 46.795 16 56 16v-2c-.672 0-1.339.024-1.999.07L54 14a2 2 0 0 1 2-2v-2a4 4 0 0 0-3.98 3.602 28.087 28.087 0 0 0-2.793-3.862A7.994 7.994 0 0 1 56 6V4a9.988 9.988 0 0 0-8.17 4.232 28.156 28.156 0 0 0-3.03-2.634A13.979 13.979 0 0 1 56 0h-7.752a16.078 16.078 0 0 0-5.09 4.454 27.941 27.941 0 0 0-3.536-1.936c.63-.896 1.33-1.738 2.095-2.518H39.03c-.46.557-.893 1.137-1.297 1.737A27.787 27.787 0 0 0 33.723.585c.12-.196.24-.392.364-.585H30l-.001.07A28.406 28.406 0 0 0 26 .07L26 0h-4.087c.124.193.245.389.364.585a27.787 27.787 0 0 0-4.009 1.152c-.404-.6-.837-1.18-1.297-1.737h-2.688c.764.78 1.466 1.622 2.095 2.518-1.23.562-2.41 1.21-3.536 1.936A16.078 16.078 0 0 0 7.752 0H0c4.58 0 8.645 2.199 11.2 5.598a28.156 28.156 0 0 0-3.03 2.634A9.988 9.988 0 0 0 0 4v2a7.994 7.994 0 0 1 6.773 3.74 28.087 28.087 0 0 0-2.793 3.862A4 4 0 0 0 0 10v2a2 2 0 0 1 1.999 2.07C1.339 14.024.672 14 0 14v2c9.205 0 17.292 4.783 21.913 12H26a2 2 0 1 1 4 0zM7.752 28C5.456 26.726 2.812 26 0 26v2h7.752zM56 20c-6.832 0-12.936 3.114-16.971 8h2.688A19.94 19.94 0 0 1 56 22v-2zm-39.029 8C12.936 23.114 6.831 20 0 20v2a19.94 19.94 0 0 1 14.283 6h2.688zm15.01-.398a28.087 28.087 0 0 1 2.792-3.862A7.994 7.994 0 0 0 28 20a7.994 7.994 0 0 0-6.773 3.74 28.087 28.087 0 0 1 2.793 3.862 4 4 0 0 1 7.96 0zm14.287-11.865C42.318 9.864 35.61 6 28 6c-7.61 0-14.318 3.864-18.268 9.737a27.787 27.787 0 0 0-4.009-1.152C10.275 7.043 18.548 2 28 2c9.452 0 17.725 5.043 22.277 12.585a27.787 27.787 0 0 0-4.009 1.152zm-5.426 2.717a27.941 27.941 0 0 1 3.536-1.936C40.76 11.367 34.773 8 28 8s-12.76 3.367-16.378 8.518c1.23.562 2.41 1.21 3.536 1.936C18.075 14.537 22.741 12 28 12s9.925 2.537 12.842 6.454zm-4.672 3.778a28.156 28.156 0 0 1 3.03-2.634A13.979 13.979 0 0 0 28 14c-4.58 0-8.645 2.199-11.2 5.598a28.156 28.156 0 0 1 3.03 2.634A9.988 9.988 0 0 1 28 18a9.988 9.988 0 0 1 8.17 4.232z%27 fill=%27%23ffffff%27 fill-opacity=%270.08%27 fill-rule=%27evenodd%27/%3E%3C/svg%3E");
|
660
568
|
}
|
661
569
|
|
662
|
-
.
|
663
|
-
|
570
|
+
.post-content {
|
571
|
+
position: relative;
|
572
|
+
width: auto;
|
664
573
|
background-color: #fff;
|
665
|
-
|
574
|
+
overflow: visible;
|
575
|
+
padding: 40px 0 80px;
|
576
|
+
border: 1px solid #e7eaf1;
|
666
577
|
border-radius: 3px;
|
667
|
-
box-sizing: border-box;
|
668
578
|
box-shadow: 0 1px 3px rgba(0, 37, 55, 0.06);
|
669
579
|
}
|
670
|
-
.
|
671
|
-
padding: 10px 0;
|
672
|
-
border-bottom: 1px solid #E7EAF1;
|
673
|
-
}
|
674
|
-
.g-sidebar section:first-child {
|
675
|
-
padding-top: 0;
|
676
|
-
}
|
677
|
-
.g-sidebar section:last-child {
|
678
|
-
border-bottom: none;
|
679
|
-
padding-bottom: 0;
|
680
|
-
}
|
681
|
-
.g-sidebar section .tag {
|
682
|
-
margin-bottom: 8px;
|
683
|
-
}
|
684
|
-
.g-sidebar section .latest-articles li {
|
685
|
-
margin-bottom: 15px;
|
686
|
-
font-size: 14px;
|
687
|
-
}
|
688
|
-
.g-sidebar section .latest-articles li .latest-title {
|
689
|
-
margin: 5px 0;
|
690
|
-
text-align: justify;
|
691
|
-
white-space: nowrap;
|
692
|
-
width: 265px;
|
693
|
-
overflow: hidden;
|
694
|
-
text-overflow: ellipsis;
|
695
|
-
}
|
696
|
-
.g-sidebar section .latest-articles li .latest-title a:hover {
|
697
|
-
text-decoration: underline;
|
698
|
-
color: #1494fb;
|
699
|
-
}
|
700
|
-
.g-sidebar section .latest-articles li .latest-date {
|
701
|
-
font-size: 12px;
|
702
|
-
}
|
703
|
-
|
704
|
-
.search-card {
|
580
|
+
.post-content .post-subtitle {
|
705
581
|
position: relative;
|
706
|
-
|
707
|
-
|
708
|
-
|
709
|
-
|
710
|
-
|
711
|
-
|
712
|
-
|
713
|
-
|
714
|
-
padding: 20px 20px;
|
715
|
-
background-color: #fff;
|
716
|
-
border: 1px solid #E7EAF1;
|
717
|
-
border-radius: 3px;
|
582
|
+
width: 695px;
|
583
|
+
font-size: 18px;
|
584
|
+
color: #585858;
|
585
|
+
font-weight: normal;
|
586
|
+
line-height: 28px;
|
587
|
+
text-align: center;
|
588
|
+
padding: 35px 0;
|
589
|
+
margin: 0 auto 40px;
|
718
590
|
box-sizing: border-box;
|
719
|
-
box-shadow: 0 1px 3px rgba(0, 37, 55, 0.06);
|
720
|
-
position: relative;
|
721
|
-
padding: 12px 46px 12px 18px;
|
722
|
-
margin: 0;
|
723
|
-
width: 100%;
|
724
|
-
background-color: #fff;
|
725
|
-
outline: none;
|
726
|
-
z-index: 1;
|
727
|
-
}
|
728
|
-
.search-card ::-webkit-input-placeholder {
|
729
|
-
color: #9EA8B3;
|
730
591
|
}
|
731
|
-
.
|
732
|
-
color: #9EA8B3;
|
733
|
-
}
|
734
|
-
.search-card ::-moz-placeholder { /* Mozilla Firefox 19+ */
|
735
|
-
color: #9EA8B3;
|
736
|
-
}
|
737
|
-
.search-card .icon-search {
|
738
|
-
position: absolute;
|
739
|
-
top: 10px;
|
740
|
-
right: 18px;
|
741
|
-
font-size: 26px;
|
742
|
-
color: #CAD3DC;
|
743
|
-
transition: 0.2s;
|
744
|
-
z-index: 1;
|
745
|
-
}
|
746
|
-
.search-card .icon {
|
592
|
+
.post-content .post-subtitle:before, .post-content .post-subtitle:after {
|
747
593
|
position: absolute;
|
748
|
-
|
749
|
-
right: 18px;
|
750
|
-
color: #CAD3DC;
|
751
|
-
z-index: 1;
|
752
|
-
width: 20px;
|
753
|
-
height: 20px;
|
754
|
-
vertical-align: -0.15em;
|
755
|
-
fill: currentColor;
|
756
|
-
overflow: hidden;
|
757
|
-
}
|
758
|
-
.search-card .search_result {
|
759
|
-
position: relative;
|
760
|
-
margin-top: -2px;
|
761
|
-
background-color: #fff;
|
762
|
-
border-radius: 0 0 4px 4px;
|
763
|
-
z-index: 0;
|
764
|
-
}
|
765
|
-
.search-card .search_item {
|
766
|
-
padding: 6px 18px;
|
767
|
-
margin-bottom: 0;
|
768
|
-
width: 100%;
|
769
|
-
display: block;
|
770
|
-
overflow: hidden;
|
771
|
-
text-overflow: ellipsis;
|
772
|
-
white-space: nowrap;
|
773
|
-
border-left: 1px solid #E7EAF1;
|
774
|
-
border-right: 1px solid #E7EAF1;
|
775
|
-
box-sizing: border-box;
|
776
|
-
opacity: 0.8;
|
777
|
-
transition: 0.2s;
|
778
|
-
}
|
779
|
-
.search-card .search_item:first-child {
|
780
|
-
padding-top: 14px;
|
781
|
-
}
|
782
|
-
.search-card .search_item:last-child {
|
783
|
-
padding-bottom: 14px;
|
784
|
-
border-radius: 0 0 4px 4px;
|
785
|
-
border-bottom: 1px solid #E7EAF1;
|
786
|
-
}
|
787
|
-
.search-card .search_item:hover {
|
788
|
-
opacity: 1;
|
789
|
-
background-color: #FAFAFA;
|
790
|
-
}
|
791
|
-
|
792
|
-
.pagination {
|
793
|
-
float: left;
|
794
|
-
position: relative;
|
594
|
+
content: "";
|
795
595
|
left: 50%;
|
796
|
-
margin:
|
797
|
-
|
798
|
-
|
799
|
-
|
800
|
-
left: -50%;
|
801
|
-
border: 1px solid #E7EAF1;
|
802
|
-
border-radius: 3px;
|
803
|
-
background-color: #fff;
|
804
|
-
padding: 0 8px;
|
805
|
-
overflow: auto;
|
806
|
-
box-shadow: 0 1px 3px rgba(0, 37, 55, 0.06);
|
807
|
-
}
|
808
|
-
.pagination .page-link {
|
809
|
-
display: block;
|
810
|
-
float: left;
|
811
|
-
width: 34px;
|
812
|
-
height: 34px;
|
813
|
-
margin: 6px;
|
814
|
-
font-size: 16px;
|
815
|
-
color: #A9B0BC;
|
816
|
-
line-height: 34px;
|
817
|
-
text-align: center;
|
818
|
-
border-radius: 2px;
|
819
|
-
cursor: pointer;
|
820
|
-
}
|
821
|
-
.pagination .page-link:hover {
|
822
|
-
color: #8F98AA;
|
823
|
-
background-color: #EEF0F4;
|
824
|
-
}
|
825
|
-
.pagination .active {
|
826
|
-
color: #8F98AA;
|
827
|
-
background-color: #EEF0F4;
|
828
|
-
}
|
829
|
-
.pagination #page-link-container {
|
830
|
-
display: inline-block;
|
831
|
-
float: left;
|
832
|
-
}
|
833
|
-
|
834
|
-
.g-footer {
|
835
|
-
min-height: 40px;
|
836
|
-
padding: 20px 0;
|
837
|
-
border-top: 1px solid #E7EAF1;
|
838
|
-
text-align: center;
|
839
|
-
background-color: #ffffff;
|
840
|
-
box-shadow: 0 -1px 3px rgba(0, 37, 55, 0.06);
|
841
|
-
}
|
842
|
-
.g-footer section {
|
843
|
-
font-size: 14px;
|
844
|
-
line-height: 20px;
|
845
|
-
color: #4E4E4E;
|
846
|
-
}
|
847
|
-
.g-footer section a {
|
848
|
-
color: #4E4E4E;
|
596
|
+
margin-left: -13%;
|
597
|
+
width: 26%;
|
598
|
+
height: 2px;
|
599
|
+
background-color: #EAECEE;
|
849
600
|
}
|
850
|
-
.
|
851
|
-
|
601
|
+
.post-content .post-subtitle:before {
|
602
|
+
top: 0;
|
852
603
|
}
|
853
|
-
.
|
854
|
-
|
855
|
-
margin-bottom: -3px;
|
856
|
-
width: 80px;
|
857
|
-
height: 15px;
|
604
|
+
.post-content .post-subtitle:after {
|
605
|
+
bottom: 0;
|
858
606
|
}
|
859
|
-
.
|
860
|
-
|
861
|
-
margin
|
607
|
+
.post-content .container {
|
608
|
+
width: 1080px;
|
609
|
+
margin: 0 auto;
|
610
|
+
display: flex;
|
611
|
+
flex-direction: row;
|
612
|
+
justify-content: space-between;
|
862
613
|
}
|
863
|
-
.
|
864
|
-
width:
|
865
|
-
|
866
|
-
vertical-align: super;
|
867
|
-
margin: 10px 10px 0 0;
|
614
|
+
.post-content .container .contents {
|
615
|
+
width: 695px;
|
616
|
+
padding: 30px;
|
868
617
|
}
|
869
|
-
.
|
618
|
+
.post-content .interest {
|
870
619
|
width: auto;
|
871
|
-
height:
|
620
|
+
height: 40px;
|
621
|
+
display: inline-block !important;
|
622
|
+
margin: 0 20px 0 0 !important;
|
872
623
|
}
|
873
624
|
|
874
625
|
.post-header, .markdown-body, .post-wrapper, .author-detail, .social-share-wrapper {
|
@@ -899,16 +650,16 @@ a.extlinks::after {
|
|
899
650
|
.post-header .post-tags .post-tag {
|
900
651
|
display: inline-block;
|
901
652
|
width: auto;
|
902
|
-
height:
|
903
|
-
|
653
|
+
height: 24px;
|
654
|
+
line-height: 24px;
|
655
|
+
padding: 0 12px;
|
904
656
|
font-size: 14px;
|
905
657
|
color: #656565;
|
906
|
-
font-family: "LXGW WenKai Screen", -apple-system, Verdana, "PingFang SC", "Helvetica Neue", "Arial", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
|
907
|
-
line-height: 22px;
|
908
658
|
box-sizing: border-box;
|
909
659
|
box-shadow: 0 0 0.6px #D5DAE1;
|
910
|
-
border
|
911
|
-
|
660
|
+
border: 1px solid rgba(92, 147, 187, 0.168627451);
|
661
|
+
border-radius: 12px;
|
662
|
+
background-color: #F7F8FA;
|
912
663
|
cursor: pointer;
|
913
664
|
margin-right: 2px;
|
914
665
|
transition: 0.2s;
|
@@ -922,10 +673,6 @@ a.extlinks::after {
|
|
922
673
|
margin-right: 0;
|
923
674
|
}
|
924
675
|
.post-header .post-tags .post-tag:hover {
|
925
|
-
color: #1494FB !important;
|
926
|
-
}
|
927
|
-
.post-header .post-tags .post-tag:hover {
|
928
|
-
color: #fff;
|
929
676
|
background-color: rgba(255, 255, 255, 0.4);
|
930
677
|
}
|
931
678
|
.post-header .post-meta {
|
@@ -976,190 +723,31 @@ a.extlinks::after {
|
|
976
723
|
z-index: -2;
|
977
724
|
}
|
978
725
|
|
726
|
+
.table-of-contents {
|
727
|
+
padding: 20px;
|
728
|
+
border-left: 2px solid #efefef;
|
729
|
+
width: 280px;
|
730
|
+
position: -webkit-sticky;
|
731
|
+
position: sticky;
|
732
|
+
top: 100px;
|
733
|
+
margin-bottom: 80px;
|
734
|
+
height: fit-content;
|
735
|
+
overflow: auto;
|
736
|
+
max-height: 450px;
|
737
|
+
}
|
738
|
+
.table-of-contents ul {
|
739
|
+
margin-left: 20px;
|
740
|
+
list-style-type: revert;
|
741
|
+
font-size: 14px;
|
742
|
+
line-height: 24px;
|
743
|
+
}
|
744
|
+
|
979
745
|
.bgcolor-default {
|
980
|
-
background-color:
|
746
|
+
background-color: rgb(27, 126, 255);
|
981
747
|
}
|
982
748
|
|
983
749
|
.bgcolor-pink {
|
984
|
-
background-color:
|
985
|
-
}
|
986
|
-
|
987
|
-
.post-no-cover {
|
988
|
-
height: 360px;
|
989
|
-
}
|
990
|
-
.post-no-cover .post-tags {
|
991
|
-
margin-top: 100px;
|
992
|
-
}
|
993
|
-
|
994
|
-
.post-pattern-circuitBoard {
|
995
|
-
background-image: url("data:image/svg+xml,%3Csvg width=%27304%27 height=%27304%27 viewBox=%270 0 304 304%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M44.1 224c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H0v-2h44.1zm160 48c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H82v-2h122.1zm57.8-46c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H304v2h-42.1zm0 16c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H304v2h-42.1zm6.2-114c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4h-86.2c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h86.2zm-256-48c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H0v-2h12.1zm185.8 34c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h86.2c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4h-86.2zM258 12.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V0h2v12.1zm-64 208c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-54.2c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9v54.2zm48-198.2c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V82h64v-2h-62V21.9zm16 16c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V66h48v-2h-46V37.9zm-128 96c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V210h16v10.1c-2.282.463-4 2.48-4 4.9 0 2.76 2.24 5 5 5s5-2.24 5-5c0-2.42-1.718-4.437-4-4.9V208h-16v-74.1zm-5.9-21.9c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H114v48H85.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H112v-48h12.1zm-6.2 130c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H176v-74.1c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V242h-60.1zm-16-64c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H114v48h10.1c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H112v-48h-10.1zM66 284.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V274H50v30h-2v-32h18v12.1zM236.1 176c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H226v94h48v32h-2v-30h-48v-98h12.1zm25.8-30c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H274v44.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V146h-10.1zm-64 96c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H208v-80h16v-14h-42.1c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H226v18h-16v80h-12.1zm86.2-210c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H272V0h2v32h10.1zM98 101.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V144H53.9c-.463-2.282-2.48-4-4.9-4-2.76 0-5 2.24-5 5s2.24 5 5 5c2.42 0 4.437-1.718 4.9-4H98v-44.1zM53.9 34c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H80V0h2v34H53.9zm60.1 3.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V64H80v64H69.9c-.463-2.282-2.48-4-4.9-4-2.76 0-5 2.24-5 5s2.24 5 5 5c2.42 0 4.437-1.718 4.9-4H82V66h32V37.9zM101.9 82c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H128V37.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V82h-28.1zm16-64c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H146v44.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9V18h-26.1zm102.2 270c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H98v14h-2v-16h124.1zM242 149.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9V162h16v30h-16v66h48v46h2v-48h-48v-62h16v-34h-16v-10.1zM53.9 18c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H64V2H48V0h18v18H53.9zm112 32c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H192V0h50v2h-48v48h-28.1zm-48-48c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5 0-.342.034-.677.1-1h2.07c-.11.313-.17.65-.17 1 0 1.657 1.343 3 3 3s3-1.343 3-3c0-.35-.06-.687-.17-1H178v34h-18V21.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V32h14V2h-58.1zm0 96c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H137l32-32h39V21.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V66h-40.172l-32 32H117.9zm28.1 90.1c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-76.513L175.586 80H224V21.9c-2.282-.463-4-2.48-4-4.9 0-2.76 2.24-5 5-5s5 2.24 5 5c0 2.42-1.718 4.437-4 4.9V82h-49.586L146 112.414V188.1zm16 32c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-99.513L184.586 96H300.1c.398-1.96 1.94-3.502 3.9-3.9v2.07c-1.165.413-2 1.524-2 2.83s.835 2.417 2 2.83v2.07c-1.96-.398-3.502-1.94-3.9-3.9H185.414L162 121.414V220.1zm-144-64c2.282.463 4 2.48 4 4.9 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-2.42 1.718-4.437 4-4.9v-3.513l48-48V48h32V0h2v50H66v55.413l-48 48v2.687zM50 53.9c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9v42.686l-48 48V210h28.1c.463 2.282 2.48 4 4.9 4 2.76 0 5-2.24 5-5s-2.24-5-5-5c-2.42 0-4.437 1.718-4.9 4H2v-62.586l48-48V53.9zm-16 16c2.282-.463 4-2.48 4-4.9 0-2.76-2.24-5-5-5s-5 2.24-5 5c0 2.42 1.718 4.437 4 4.9v18.686l-32 32v2.828l34-34V69.9zM12.1 32c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H9.414L0 43.414v-2.828L8.586 32H12.1zm265.8 18c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h18.686L304 40.586v2.828L297.414 50H277.9zm-16 160c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H288V136.587l16-16v2.827l-14 14V210h-28.1zm-208 32c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H64v-22.586L40.586 194H21.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h19.513L66 216.586V242H53.9zm150.2 14c.463-2.282 2.48-4 4.9-4 2.76 0 5 2.24 5 5s-2.24 5-5 5c-2.42 0-4.437-1.718-4.9-4H96v-56.598L56.598 162H37.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h19.502L98 200.598V256h106.1zm-150.2 2c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4H80v-46.586L48.586 178H21.9c-.463 2.282-2.48 4-4.9 4-2.76 0-5-2.24-5-5s2.24-5 5-5c2.42 0 4.437 1.718 4.9 4h27.513L82 208.586V258H53.9zM97 100c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-48 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 48c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 96c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-144c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-96 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm96 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-32 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM49 36c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-32 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM33 68c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-48c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 240c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm80-176c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 48c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm112 176c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm-16 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM17 180c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0 16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm0-32c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16 0c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM17 84c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm32 64c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm16-16c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 39.793V0h-2v40.586L8.586 64H0v2h9.413L34 41.414v-1.62zM2 300.1V258h14v46h2v-48H0V302.17c.313-.11.65-.17 1-.17 1.306 0 2.417.835 2.83 2H5.9c-.398-1.96-1.94-3.502-3.9-3.9zM34 241v63h-2v-62H0v-2h34v1zM17 18h1V0h-2v16H0v2h17zm273-2V0h-2v18h16v-2h-14zm-32 273v15h-2v-14h-14v14h-2v-16h18v1zM0 92.1c.323-.066.658-.1 1-.1 2.76 0 5 2.24 5 5s-2.24 5-5 5c-.342 0-.677-.034-1-.1v-2.07c.313.11.65.17 1 .17 1.657 0 3-1.343 3-3s-1.343-3-3-3c-.35 0-.687.06-1 .17V92.1zM80 272h2v32h-2v-32zm37.9 32c-.463-2.282-2.48-4-4.9-4-2.42 0-4.437 1.718-4.9 4h2.07c.413-1.165 1.524-2 2.83-2s2.417.835 2.83 2h2.07zM5.9 0c.066.323.1.658.1 1 0 2.76-2.24 5-5 5-.342 0-.677-.034-1-.1V3.83C.313 3.94.65 4 1 4c1.657 0 3-1.343 3-3 0-.35-.06-.687-.17-1H5.9zm294.2 0c-.066.323-.1.658-.1 1 0 2.42 1.718 4.437 4 4.9V3.83c-1.165-.413-2-1.524-2-2.83 0-.35.06-.687.17-1h-2.07zm3.9 300.1c-1.96.398-3.502 1.94-3.9 3.9h2.07c.302-.852.978-1.528 1.83-1.83v-2.07z%27 fill=%27%23f8f6fb%27 fill-opacity=%270.08%27 fill-rule=%27evenodd%27/%3E%3C/svg%3E");
|
996
|
-
}
|
997
|
-
|
998
|
-
.post-pattern-overlappingCircles {
|
999
|
-
background-image: url("data:image/svg+xml,%3Csvg width=%2780%27 height=%2780%27 viewBox=%270 0 80 80%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg fill=%27none%27 fill-rule=%27evenodd%27%3E%3Cg fill=%27%23ffffff%27 fill-opacity=%270.08%27%3E%3Cpath d=%27M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z%27 /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
|
1000
|
-
}
|
1001
|
-
|
1002
|
-
.post-pattern-food {
|
1003
|
-
background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%27260%27 height=%27260%27 viewBox=%270 0 260 260%27%3E%3Cg fill-rule=%27evenodd%27%3E%3Cg fill=%27%23ffffff%27 fill-opacity=%270.08%27%3E%3Cpath d=%27M24.37 16c.2.65.39 1.32.54 2H21.17l1.17 2.34.45.9-.24.11V28a5 5 0 0 1-2.23 8.94l-.02.06a8 8 0 0 1-7.75 6h-20a8 8 0 0 1-7.74-6l-.02-.06A5 5 0 0 1-17.45 28v-6.76l-.79-1.58-.44-.9.9-.44.63-.32H-20a23.01 23.01 0 0 1 44.37-2zm-36.82 2a1 1 0 0 0-.44.1l-3.1 1.56.89 1.79 1.31-.66a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .9 0l2.21-1.1a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .9 0l2.21-1.1a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .86.02l2.88-1.27a3 3 0 0 1 2.43 0l2.88 1.27a1 1 0 0 0 .85-.02l3.1-1.55-.89-1.79-1.42.71a3 3 0 0 1-2.56.06l-2.77-1.23a1 1 0 0 0-.4-.09h-.01a1 1 0 0 0-.4.09l-2.78 1.23a3 3 0 0 1-2.56-.06l-2.3-1.15a1 1 0 0 0-.45-.11h-.01a1 1 0 0 0-.44.1L.9 19.22a3 3 0 0 1-2.69 0l-2.2-1.1a1 1 0 0 0-.45-.11h-.01a1 1 0 0 0-.44.1l-2.21 1.11a3 3 0 0 1-2.69 0l-2.2-1.1a1 1 0 0 0-.45-.11h-.01zm0-2h-4.9a21.01 21.01 0 0 1 39.61 0h-2.09l-.06-.13-.26.13h-32.31zm30.35 7.68l1.36-.68h1.3v2h-36v-1.15l.34-.17 1.36-.68h2.59l1.36.68a3 3 0 0 0 2.69 0l1.36-.68h2.59l1.36.68a3 3 0 0 0 2.69 0L2.26 23h2.59l1.36.68a3 3 0 0 0 2.56.06l1.67-.74h3.23l1.67.74a3 3 0 0 0 2.56-.06zM-13.82 27l16.37 4.91L18.93 27h-32.75zm-.63 2h.34l16.66 5 16.67-5h.33a3 3 0 1 1 0 6h-34a3 3 0 1 1 0-6zm1.35 8a6 6 0 0 0 5.65 4h20a6 6 0 0 0 5.66-4H-13.1z%27/%3E%3Cpath id=%27path6_fill-copy%27 d=%27M284.37 16c.2.65.39 1.32.54 2H281.17l1.17 2.34.45.9-.24.11V28a5 5 0 0 1-2.23 8.94l-.02.06a8 8 0 0 1-7.75 6h-20a8 8 0 0 1-7.74-6l-.02-.06a5 5 0 0 1-2.24-8.94v-6.76l-.79-1.58-.44-.9.9-.44.63-.32H240a23.01 23.01 0 0 1 44.37-2zm-36.82 2a1 1 0 0 0-.44.1l-3.1 1.56.89 1.79 1.31-.66a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .9 0l2.21-1.1a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .9 0l2.21-1.1a3 3 0 0 1 2.69 0l2.2 1.1a1 1 0 0 0 .86.02l2.88-1.27a3 3 0 0 1 2.43 0l2.88 1.27a1 1 0 0 0 .85-.02l3.1-1.55-.89-1.79-1.42.71a3 3 0 0 1-2.56.06l-2.77-1.23a1 1 0 0 0-.4-.09h-.01a1 1 0 0 0-.4.09l-2.78 1.23a3 3 0 0 1-2.56-.06l-2.3-1.15a1 1 0 0 0-.45-.11h-.01a1 1 0 0 0-.44.1l-2.21 1.11a3 3 0 0 1-2.69 0l-2.2-1.1a1 1 0 0 0-.45-.11h-.01a1 1 0 0 0-.44.1l-2.21 1.11a3 3 0 0 1-2.69 0l-2.2-1.1a1 1 0 0 0-.45-.11h-.01zm0-2h-4.9a21.01 21.01 0 0 1 39.61 0h-2.09l-.06-.13-.26.13h-32.31zm30.35 7.68l1.36-.68h1.3v2h-36v-1.15l.34-.17 1.36-.68h2.59l1.36.68a3 3 0 0 0 2.69 0l1.36-.68h2.59l1.36.68a3 3 0 0 0 2.69 0l1.36-.68h2.59l1.36.68a3 3 0 0 0 2.56.06l1.67-.74h3.23l1.67.74a3 3 0 0 0 2.56-.06zM246.18 27l16.37 4.91L278.93 27h-32.75zm-.63 2h.34l16.66 5 16.67-5h.33a3 3 0 1 1 0 6h-34a3 3 0 1 1 0-6zm1.35 8a6 6 0 0 0 5.65 4h20a6 6 0 0 0 5.66-4H246.9z%27/%3E%3Cpath d=%27M159.5 21.02A9 9 0 0 0 151 15h-42a9 9 0 0 0-8.5 6.02 6 6 0 0 0 .02 11.96A8.99 8.99 0 0 0 109 45h42a9 9 0 0 0 8.48-12.02 6 6 0 0 0 .02-11.96zM151 17h-42a7 7 0 0 0-6.33 4h54.66a7 7 0 0 0-6.33-4zm-9.34 26a8.98 8.98 0 0 0 3.34-7h-2a7 7 0 0 1-7 7h-4.34a8.98 8.98 0 0 0 3.34-7h-2a7 7 0 0 1-7 7h-4.34a8.98 8.98 0 0 0 3.34-7h-2a7 7 0 0 1-7 7h-7a7 7 0 1 1 0-14h42a7 7 0 1 1 0 14h-9.34zM109 27a9 9 0 0 0-7.48 4H101a4 4 0 1 1 0-8h58a4 4 0 0 1 0 8h-.52a9 9 0 0 0-7.48-4h-42z%27/%3E%3Cpath d=%27M39 115a8 8 0 1 0 0-16 8 8 0 0 0 0 16zm6-8a6 6 0 1 1-12 0 6 6 0 0 1 12 0zm-3-29v-2h8v-6H40a4 4 0 0 0-4 4v10H22l-1.33 4-.67 2h2.19L26 130h26l3.81-40H58l-.67-2L56 84H42v-6zm-4-4v10h2V74h8v-2h-8a2 2 0 0 0-2 2zm2 12h14.56l.67 2H22.77l.67-2H40zm13.8 4H24.2l3.62 38h22.36l3.62-38z%27/%3E%3Cpath d=%27M129 92h-6v4h-6v4h-6v14h-3l.24 2 3.76 32h36l3.76-32 .24-2h-3v-14h-6v-4h-6v-4h-8zm18 22v-12h-4v4h3v8h1zm-3 0v-6h-4v6h4zm-6 6v-16h-4v19.17c1.6-.7 2.97-1.8 4-3.17zm-6 3.8V100h-4v23.8a10.04 10.04 0 0 0 4 0zm-6-.63V104h-4v16a10.04 10.04 0 0 0 4 3.17zm-6-9.17v-6h-4v6h4zm-6 0v-8h3v-4h-4v12h1zm27-12v-4h-4v4h3v4h1v-4zm-6 0v-8h-4v4h3v4h1zm-6-4v-4h-4v8h1v-4h3zm-6 4v-4h-4v8h1v-4h3zm7 24a12 12 0 0 0 11.83-10h7.92l-3.53 30h-32.44l-3.53-30h7.92A12 12 0 0 0 130 126z%27/%3E%3Cpath d=%27M212 86v2h-4v-2h4zm4 0h-2v2h2v-2zm-20 0v.1a5 5 0 0 0-.56 9.65l.06.25 1.12 4.48a2 2 0 0 0 1.94 1.52h.01l7.02 24.55a2 2 0 0 0 1.92 1.45h4.98a2 2 0 0 0 1.92-1.45l7.02-24.55a2 2 0 0 0 1.95-1.52L224.5 96l.06-.25a5 5 0 0 0-.56-9.65V86a14 14 0 0 0-28 0zm4 0h6v2h-9a3 3 0 1 0 0 6H223a3 3 0 1 0 0-6H220v-2h2a12 12 0 1 0-24 0h2zm-1.44 14l-1-4h24.88l-1 4h-22.88zm8.95 26l-6.86-24h18.7l-6.86 24h-4.98zM150 242a22 22 0 1 0 0-44 22 22 0 0 0 0 44zm24-22a24 24 0 1 1-48 0 24 24 0 0 1 48 0zm-28.38 17.73l2.04-.87a6 6 0 0 1 4.68 0l2.04.87a2 2 0 0 0 2.5-.82l1.14-1.9a6 6 0 0 1 3.79-2.75l2.15-.5a2 2 0 0 0 1.54-2.12l-.19-2.2a6 6 0 0 1 1.45-4.46l1.45-1.67a2 2 0 0 0 0-2.62l-1.45-1.67a6 6 0 0 1-1.45-4.46l.2-2.2a2 2 0 0 0-1.55-2.13l-2.15-.5a6 6 0 0 1-3.8-2.75l-1.13-1.9a2 2 0 0 0-2.5-.8l-2.04.86a6 6 0 0 1-4.68 0l-2.04-.87a2 2 0 0 0-2.5.82l-1.14 1.9a6 6 0 0 1-3.79 2.75l-2.15.5a2 2 0 0 0-1.54 2.12l.19 2.2a6 6 0 0 1-1.45 4.46l-1.45 1.67a2 2 0 0 0 0 2.62l1.45 1.67a6 6 0 0 1 1.45 4.46l-.2 2.2a2 2 0 0 0 1.55 2.13l2.15.5a6 6 0 0 1 3.8 2.75l1.13 1.9a2 2 0 0 0 2.5.8zm2.82.97a4 4 0 0 1 3.12 0l2.04.87a4 4 0 0 0 4.99-1.62l1.14-1.9a4 4 0 0 1 2.53-1.84l2.15-.5a4 4 0 0 0 3.09-4.24l-.2-2.2a4 4 0 0 1 .97-2.98l1.45-1.67a4 4 0 0 0 0-5.24l-1.45-1.67a4 4 0 0 1-.97-2.97l.2-2.2a4 4 0 0 0-3.09-4.25l-2.15-.5a4 4 0 0 1-2.53-1.84l-1.14-1.9a4 4 0 0 0-5-1.62l-2.03.87a4 4 0 0 1-3.12 0l-2.04-.87a4 4 0 0 0-4.99 1.62l-1.14 1.9a4 4 0 0 1-2.53 1.84l-2.15.5a4 4 0 0 0-3.09 4.24l.2 2.2a4 4 0 0 1-.97 2.98l-1.45 1.67a4 4 0 0 0 0 5.24l1.45 1.67a4 4 0 0 1 .97 2.97l-.2 2.2a4 4 0 0 0 3.09 4.25l2.15.5a4 4 0 0 1 2.53 1.84l1.14 1.9a4 4 0 0 0 5 1.62l2.03-.87zM152 207a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm6 2a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-11 1a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-6 0a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm3-5a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-8 8a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm3 6a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm0 6a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm4 7a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm5-2a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm5 4a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm4-6a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm6-4a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-4-3a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm4-3a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-5-4a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm-24 6a1 1 0 1 1 2 0 1 1 0 0 1-2 0zm16 5a5 5 0 1 0 0-10 5 5 0 0 0 0 10zm7-5a7 7 0 1 1-14 0 7 7 0 0 1 14 0zm86-29a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm19 9a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm-14 5a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm-25 1a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm5 4a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm9 0a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm15 1a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm12-2a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm-11-14a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm-19 0a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm6 5a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm-25 15c0-.47.01-.94.03-1.4a5 5 0 0 1-1.7-8 3.99 3.99 0 0 1 1.88-5.18 5 5 0 0 1 3.4-6.22 3 3 0 0 1 1.46-1.05 5 5 0 0 1 7.76-3.27A30.86 30.86 0 0 1 246 184c6.79 0 13.06 2.18 18.17 5.88a5 5 0 0 1 7.76 3.27 3 3 0 0 1 1.47 1.05 5 5 0 0 1 3.4 6.22 4 4 0 0 1 1.87 5.18 4.98 4.98 0 0 1-1.7 8c.02.46.03.93.03 1.4v1h-62v-1zm.83-7.17a30.9 30.9 0 0 0-.62 3.57 3 3 0 0 1-.61-4.2c.37.28.78.49 1.23.63zm1.49-4.61c-.36.87-.68 1.76-.96 2.68a2 2 0 0 1-.21-3.71c.33.4.73.75 1.17 1.03zm2.32-4.54c-.54.86-1.03 1.76-1.49 2.68a3 3 0 0 1-.07-4.67 3 3 0 0 0 1.56 1.99zm1.14-1.7c.35-.5.72-.98 1.1-1.46a1 1 0 1 0-1.1 1.45zm5.34-5.77c-1.03.86-2 1.79-2.9 2.77a3 3 0 0 0-1.11-.77 3 3 0 0 1 4-2zm42.66 2.77c-.9-.98-1.87-1.9-2.9-2.77a3 3 0 0 1 4.01 2 3 3 0 0 0-1.1.77zm1.34 1.54c.38.48.75.96 1.1 1.45a1 1 0 1 0-1.1-1.45zm3.73 5.84c-.46-.92-.95-1.82-1.5-2.68a3 3 0 0 0 1.57-1.99 3 3 0 0 1-.07 4.67zm1.8 4.53c-.29-.9-.6-1.8-.97-2.67.44-.28.84-.63 1.17-1.03a2 2 0 0 1-.2 3.7zm1.14 5.51c-.14-1.21-.35-2.4-.62-3.57.45-.14.86-.35 1.23-.63a2.99 2.99 0 0 1-.6 4.2zM275 214a29 29 0 0 0-57.97 0h57.96zM72.33 198.12c-.21-.32-.34-.7-.34-1.12v-12h-2v12a4.01 4.01 0 0 0 7.09 2.54c.57-.69.91-1.57.91-2.54v-12h-2v12a1.99 1.99 0 0 1-2 2 2 2 0 0 1-1.66-.88zM75 176c.38 0 .74-.04 1.1-.12a4 4 0 0 0 6.19 2.4A13.94 13.94 0 0 1 84 185v24a6 6 0 0 1-6 6h-3v9a5 5 0 1 1-10 0v-9h-3a6 6 0 0 1-6-6v-24a14 14 0 0 1 14-14 5 5 0 0 0 5 5zm-17 15v12a1.99 1.99 0 0 0 1.22 1.84 2 2 0 0 0 2.44-.72c.21-.32.34-.7.34-1.12v-12h2v12a3.98 3.98 0 0 1-5.35 3.77 3.98 3.98 0 0 1-.65-.3V209a4 4 0 0 0 4 4h16a4 4 0 0 0 4-4v-24c.01-1.53-.23-2.88-.72-4.17-.43.1-.87.16-1.28.17a6 6 0 0 1-5.2-3 7 7 0 0 1-6.47-4.88A12 12 0 0 0 58 185v6zm9 24v9a3 3 0 1 0 6 0v-9h-6z%27/%3E%3Cpath d=%27M-17 191a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm19 9a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2H3a1 1 0 0 1-1-1zm-14 5a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm-25 1a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm5 4a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm9 0a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm15 1a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm12-2a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2H4zm-11-14a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm-19 0a1 1 0 0 0 0 2h2a1 1 0 0 0 0-2h-2zm6 5a1 1 0 0 1 1-1h2a1 1 0 0 1 0 2h-2a1 1 0 0 1-1-1zm-25 15c0-.47.01-.94.03-1.4a5 5 0 0 1-1.7-8 3.99 3.99 0 0 1 1.88-5.18 5 5 0 0 1 3.4-6.22 3 3 0 0 1 1.46-1.05 5 5 0 0 1 7.76-3.27A30.86 30.86 0 0 1-14 184c6.79 0 13.06 2.18 18.17 5.88a5 5 0 0 1 7.76 3.27 3 3 0 0 1 1.47 1.05 5 5 0 0 1 3.4 6.22 4 4 0 0 1 1.87 5.18 4.98 4.98 0 0 1-1.7 8c.02.46.03.93.03 1.4v1h-62v-1zm.83-7.17a30.9 30.9 0 0 0-.62 3.57 3 3 0 0 1-.61-4.2c.37.28.78.49 1.23.63zm1.49-4.61c-.36.87-.68 1.76-.96 2.68a2 2 0 0 1-.21-3.71c.33.4.73.75 1.17 1.03zm2.32-4.54c-.54.86-1.03 1.76-1.49 2.68a3 3 0 0 1-.07-4.67 3 3 0 0 0 1.56 1.99zm1.14-1.7c.35-.5.72-.98 1.1-1.46a1 1 0 1 0-1.1 1.45zm5.34-5.77c-1.03.86-2 1.79-2.9 2.77a3 3 0 0 0-1.11-.77 3 3 0 0 1 4-2zm42.66 2.77c-.9-.98-1.87-1.9-2.9-2.77a3 3 0 0 1 4.01 2 3 3 0 0 0-1.1.77zm1.34 1.54c.38.48.75.96 1.1 1.45a1 1 0 1 0-1.1-1.45zm3.73 5.84c-.46-.92-.95-1.82-1.5-2.68a3 3 0 0 0 1.57-1.99 3 3 0 0 1-.07 4.67zm1.8 4.53c-.29-.9-.6-1.8-.97-2.67.44-.28.84-.63 1.17-1.03a2 2 0 0 1-.2 3.7zm1.14 5.51c-.14-1.21-.35-2.4-.62-3.57.45-.14.86-.35 1.23-.63a2.99 2.99 0 0 1-.6 4.2zM15 214a29 29 0 0 0-57.97 0h57.96z%27/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
|
1004
|
-
}
|
1005
|
-
|
1006
|
-
.post-pattern-glamorous {
|
1007
|
-
background-image: url("data:image/svg+xml,%3Csvg width=%27180%27 height=%27180%27 viewBox=%270 0 180 180%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M81.28 88H68.413l19.298 19.298L81.28 88zm2.107 0h13.226L90 107.838 83.387 88zm15.334 0h12.866l-19.298 19.298L98.72 88zm-32.927-2.207L73.586 78h32.827l.5.5 7.294 7.293L115.414 87l-24.707 24.707-.707.707L64.586 87l1.207-1.207zm2.62.207L74 80.414 79.586 86H68.414zm16 0L90 80.414 95.586 86H84.414zm16 0L106 80.414 111.586 86h-11.172zm-8-6h11.173L98 85.586 92.414 80zM82 85.586L87.586 80H76.414L82 85.586zM17.414 0L.707 16.707 0 17.414V0h17.414zM4.28 0L0 12.838V0h4.28zm10.306 0L2.288 12.298 6.388 0h8.198zM180 17.414L162.586 0H180v17.414zM165.414 0l12.298 12.298L173.612 0h-8.198zM180 12.838L175.72 0H180v12.838zM0 163h16.413l.5.5 7.294 7.293L25.414 172l-8 8H0v-17zm0 10h6.613l-2.334 7H0v-7zm14.586 7l7-7H8.72l-2.333 7h8.2zM0 165.414L5.586 171H0v-5.586zM10.414 171L16 165.414 21.586 171H10.414zm-8-6h11.172L8 170.586 2.414 165zM180 163h-16.413l-7.794 7.793-1.207 1.207 8 8H180v-17zm-14.586 17l-7-7h12.865l2.333 7h-8.2zM180 173h-6.613l2.334 7H180v-7zm-21.586-2l5.586-5.586 5.586 5.586h-11.172zM180 165.414L174.414 171H180v-5.586zm-8 5.172l5.586-5.586h-11.172l5.586 5.586zM152.933 25.653l1.414 1.414-33.94 33.942-1.416-1.416 33.943-33.94zm1.414 127.28l-1.414 1.414-33.942-33.94 1.416-1.416 33.94 33.943zm-127.28 1.414l-1.414-1.414 33.94-33.942 1.416 1.416-33.943 33.94zm-1.414-127.28l1.414-1.414 33.942 33.94-1.416 1.416-33.94-33.943zM0 85c2.21 0 4 1.79 4 4s-1.79 4-4 4v-8zm180 0c-2.21 0-4 1.79-4 4s1.79 4 4 4v-8zM94 0c0 2.21-1.79 4-4 4s-4-1.79-4-4h8zm0 180c0-2.21-1.79-4-4-4s-4 1.79-4 4h8z%27 fill=%27%23ffffff%27 fill-opacity=%270.08%27 fill-rule=%27evenodd%27/%3E%3C/svg%3E");
|
1008
|
-
}
|
1009
|
-
|
1010
|
-
.post-pattern-ticTacToe {
|
1011
|
-
background-image: url("data:image/svg+xml,%3Csvg width=%2764%27 height=%2764%27 viewBox=%270 0 64 64%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M8 16c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm0-2c3.314 0 6-2.686 6-6s-2.686-6-6-6-6 2.686-6 6 2.686 6 6 6zm33.414-6l5.95-5.95L45.95.636 40 6.586 34.05.636 32.636 2.05 38.586 8l-5.95 5.95 1.414 1.414L40 9.414l5.95 5.95 1.414-1.414L41.414 8zM40 48c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm0-2c3.314 0 6-2.686 6-6s-2.686-6-6-6-6 2.686-6 6 2.686 6 6 6zM9.414 40l5.95-5.95-1.414-1.414L8 38.586l-5.95-5.95L.636 34.05 6.586 40l-5.95 5.95 1.414 1.414L8 41.414l5.95 5.95 1.414-1.414L9.414 40z%27 fill=%27%23ffffff%27 fill-opacity=%270.08%27 fill-rule=%27evenodd%27/%3E%3C/svg%3E");
|
1012
|
-
}
|
1013
|
-
|
1014
|
-
.post-pattern-seaOfClouds {
|
1015
|
-
background-image: url("data:image/svg+xml,%3Csvg width=%2756%27 height=%2728%27 viewBox=%270 0 56 28%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M56 26c-2.813 0-5.456.726-7.752 2H56v-2zm-26 2h4.087C38.707 20.783 46.795 16 56 16v-2c-.672 0-1.339.024-1.999.07L54 14a2 2 0 0 1 2-2v-2a4 4 0 0 0-3.98 3.602 28.087 28.087 0 0 0-2.793-3.862A7.994 7.994 0 0 1 56 6V4a9.988 9.988 0 0 0-8.17 4.232 28.156 28.156 0 0 0-3.03-2.634A13.979 13.979 0 0 1 56 0h-7.752a16.078 16.078 0 0 0-5.09 4.454 27.941 27.941 0 0 0-3.536-1.936c.63-.896 1.33-1.738 2.095-2.518H39.03c-.46.557-.893 1.137-1.297 1.737A27.787 27.787 0 0 0 33.723.585c.12-.196.24-.392.364-.585H30l-.001.07A28.406 28.406 0 0 0 26 .07L26 0h-4.087c.124.193.245.389.364.585a27.787 27.787 0 0 0-4.009 1.152c-.404-.6-.837-1.18-1.297-1.737h-2.688c.764.78 1.466 1.622 2.095 2.518-1.23.562-2.41 1.21-3.536 1.936A16.078 16.078 0 0 0 7.752 0H0c4.58 0 8.645 2.199 11.2 5.598a28.156 28.156 0 0 0-3.03 2.634A9.988 9.988 0 0 0 0 4v2a7.994 7.994 0 0 1 6.773 3.74 28.087 28.087 0 0 0-2.793 3.862A4 4 0 0 0 0 10v2a2 2 0 0 1 1.999 2.07C1.339 14.024.672 14 0 14v2c9.205 0 17.292 4.783 21.913 12H26a2 2 0 1 1 4 0zM7.752 28C5.456 26.726 2.812 26 0 26v2h7.752zM56 20c-6.832 0-12.936 3.114-16.971 8h2.688A19.94 19.94 0 0 1 56 22v-2zm-39.029 8C12.936 23.114 6.831 20 0 20v2a19.94 19.94 0 0 1 14.283 6h2.688zm15.01-.398a28.087 28.087 0 0 1 2.792-3.862A7.994 7.994 0 0 0 28 20a7.994 7.994 0 0 0-6.773 3.74 28.087 28.087 0 0 1 2.793 3.862 4 4 0 0 1 7.96 0zm14.287-11.865C42.318 9.864 35.61 6 28 6c-7.61 0-14.318 3.864-18.268 9.737a27.787 27.787 0 0 0-4.009-1.152C10.275 7.043 18.548 2 28 2c9.452 0 17.725 5.043 22.277 12.585a27.787 27.787 0 0 0-4.009 1.152zm-5.426 2.717a27.941 27.941 0 0 1 3.536-1.936C40.76 11.367 34.773 8 28 8s-12.76 3.367-16.378 8.518c1.23.562 2.41 1.21 3.536 1.936C18.075 14.537 22.741 12 28 12s9.925 2.537 12.842 6.454zm-4.672 3.778a28.156 28.156 0 0 1 3.03-2.634A13.979 13.979 0 0 0 28 14c-4.58 0-8.645 2.199-11.2 5.598a28.156 28.156 0 0 1 3.03 2.634A9.988 9.988 0 0 1 28 18a9.988 9.988 0 0 1 8.17 4.232z%27 fill=%27%23ffffff%27 fill-opacity=%270.08%27 fill-rule=%27evenodd%27/%3E%3C/svg%3E");
|
1016
|
-
}
|
1017
|
-
|
1018
|
-
.post-content {
|
1019
|
-
position: relative;
|
1020
|
-
width: auto;
|
1021
|
-
background-color: #fff;
|
1022
|
-
overflow: visible;
|
1023
|
-
padding: 40px 0 80px;
|
1024
|
-
border: 1px solid #e7eaf1;
|
1025
|
-
border-radius: 3px;
|
1026
|
-
box-shadow: 0 1px 3px rgba(0, 37, 55, 0.06);
|
1027
|
-
}
|
1028
|
-
.post-content .post-subtitle {
|
1029
|
-
position: relative;
|
1030
|
-
width: 695px;
|
1031
|
-
font-size: 18px;
|
1032
|
-
color: #585858;
|
1033
|
-
font-weight: normal;
|
1034
|
-
line-height: 28px;
|
1035
|
-
text-align: center;
|
1036
|
-
padding: 35px 0;
|
1037
|
-
margin: 0 auto 40px;
|
1038
|
-
box-sizing: border-box;
|
1039
|
-
}
|
1040
|
-
.post-content .post-subtitle:before, .post-content .post-subtitle:after {
|
1041
|
-
position: absolute;
|
1042
|
-
content: "";
|
1043
|
-
left: 50%;
|
1044
|
-
margin-left: -13%;
|
1045
|
-
width: 26%;
|
1046
|
-
height: 2px;
|
1047
|
-
background-color: #EAECEE;
|
1048
|
-
}
|
1049
|
-
.post-content .post-subtitle:before {
|
1050
|
-
top: 0;
|
1051
|
-
}
|
1052
|
-
.post-content .post-subtitle:after {
|
1053
|
-
bottom: 0;
|
1054
|
-
}
|
1055
|
-
.post-content .container {
|
1056
|
-
width: 1080px;
|
1057
|
-
margin: 0 auto;
|
1058
|
-
display: flex;
|
1059
|
-
flex-direction: row;
|
1060
|
-
justify-content: space-between;
|
1061
|
-
}
|
1062
|
-
.post-content .container .contents {
|
1063
|
-
width: 695px;
|
1064
|
-
padding: 30px;
|
1065
|
-
}
|
1066
|
-
.post-content .interest {
|
1067
|
-
width: auto;
|
1068
|
-
height: 40px;
|
1069
|
-
display: inline-block !important;
|
1070
|
-
margin: 0 20px 0 0 !important;
|
1071
|
-
}
|
1072
|
-
|
1073
|
-
.markdown-body {
|
1074
|
-
font-family: "LXGW WenKai Screen", -apple-system, Verdana, "PingFang SC", "Helvetica Neue", "Arial", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
|
1075
|
-
width: 100%;
|
1076
|
-
box-sizing: border-box;
|
1077
|
-
padding: 0 0 32px;
|
1078
|
-
}
|
1079
|
-
.markdown-body .highlight {
|
1080
|
-
margin: 0 0 16px;
|
1081
|
-
/** overflow: scroll; 修复代码高亮 显示两个 scroll的问题 **/
|
1082
|
-
}
|
1083
|
-
.markdown-body img {
|
1084
|
-
transition: 0.3s;
|
1085
|
-
max-width: 100%;
|
1086
|
-
max-height: 100%;
|
1087
|
-
margin-top: 16px;
|
1088
|
-
margin-bottom: 5px;
|
1089
|
-
}
|
1090
|
-
.markdown-body .caption {
|
1091
|
-
display: block;
|
1092
|
-
text-align: center;
|
1093
|
-
color: #222222;
|
1094
|
-
font-size: 13.5px;
|
1095
|
-
}
|
1096
|
-
.markdown-body ul li p, .markdown-body ol li p {
|
1097
|
-
margin: 0;
|
1098
|
-
}
|
1099
|
-
.markdown-body ul li p:first-child, .markdown-body ol li p:first-child {
|
1100
|
-
margin-bottom: 0;
|
1101
|
-
}
|
1102
|
-
.markdown-body mjx-math {
|
1103
|
-
overflow-x: auto;
|
1104
|
-
overflow-y: unset;
|
1105
|
-
width: 100%;
|
1106
|
-
}
|
1107
|
-
.markdown-body .copy-container {
|
1108
|
-
position: relative;
|
1109
|
-
background-color: #e2e2e2;
|
1110
|
-
height: 28px;
|
1111
|
-
}
|
1112
|
-
.markdown-body .copy-container .lang {
|
1113
|
-
line-height: 28px;
|
1114
|
-
padding-left: 10px;
|
1115
|
-
font-weight: bold;
|
1116
|
-
}
|
1117
|
-
.markdown-body .copy-container .btn {
|
1118
|
-
position: absolute;
|
1119
|
-
top: 0px;
|
1120
|
-
right: 0px;
|
1121
|
-
padding: 2px 2px;
|
1122
|
-
border: none;
|
1123
|
-
cursor: pointer;
|
1124
|
-
height: 28px;
|
1125
|
-
background-color: #ebedf0;
|
1126
|
-
z-index: 100;
|
1127
|
-
}
|
1128
|
-
.markdown-body .copy-container .btn .icon {
|
1129
|
-
width: 24px;
|
1130
|
-
height: 24px;
|
1131
|
-
}
|
1132
|
-
.markdown-body .copy-container .btn .tooltip {
|
1133
|
-
font-family: "LXGW WenKai Screen", -apple-system, Verdana, "PingFang SC", "Helvetica Neue", "Arial", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
|
1134
|
-
font-size: 14px;
|
1135
|
-
float: right;
|
1136
|
-
position: absolute;
|
1137
|
-
margin-left: -38px;
|
1138
|
-
background-color: #dadde1;
|
1139
|
-
padding: 3px 7px;
|
1140
|
-
border-radius: 3px;
|
1141
|
-
margin-top: -35px;
|
1142
|
-
display: none;
|
1143
|
-
}
|
1144
|
-
.markdown-body .copy-container .btn .tooltip.finish {
|
1145
|
-
margin-left: -43px;
|
1146
|
-
}
|
1147
|
-
.markdown-body .copy-container .btn .tooltip:after {
|
1148
|
-
content: "";
|
1149
|
-
position: absolute;
|
1150
|
-
top: calc(100% - 6px);
|
1151
|
-
left: calc(50% - 6px);
|
1152
|
-
width: 10px;
|
1153
|
-
height: 10px;
|
1154
|
-
background-color: #dadde1;
|
1155
|
-
border-width: 1px;
|
1156
|
-
border-style: solid;
|
1157
|
-
border-color: transparent #dadde1 #dadde1 transparent;
|
1158
|
-
transform: rotate(45deg);
|
1159
|
-
clip-path: polygon(145% -50%, 150% 150%, -50% 145%);
|
1160
|
-
}
|
1161
|
-
.markdown-body .copy-container .btn .tooltip.active {
|
1162
|
-
display: inline-block;
|
750
|
+
background-color: rgba(252, 103, 148, 0.5);
|
1163
751
|
}
|
1164
752
|
|
1165
753
|
.social-share-wrapper {
|
@@ -1348,92 +936,317 @@ a.extlinks::after {
|
|
1348
936
|
top: 0;
|
1349
937
|
left: 0;
|
1350
938
|
width: 100%;
|
939
|
+
filter: blur(6px);
|
1351
940
|
-webkit-filter: blur(6px);
|
1352
941
|
z-index: 0;
|
1353
942
|
}
|
1354
943
|
|
1355
|
-
.
|
1356
|
-
|
1357
|
-
|
1358
|
-
|
1359
|
-
.
|
1360
|
-
font-size: 36px;
|
1361
|
-
line-height: 300px;
|
944
|
+
.archives-date {
|
945
|
+
width: 130px;
|
946
|
+
display: inline-block;
|
947
|
+
color: #222222;
|
948
|
+
opacity: 0.63;
|
1362
949
|
}
|
1363
950
|
|
1364
|
-
.
|
1365
|
-
width:
|
1366
|
-
|
951
|
+
.archives-title {
|
952
|
+
width: 95%;
|
953
|
+
display: inline-block;
|
954
|
+
margin-bottom: 0 !important;
|
955
|
+
margin-top: 0 !important;
|
956
|
+
white-space: nowrap;
|
1367
957
|
}
|
1368
958
|
|
1369
|
-
.
|
1370
|
-
|
959
|
+
.friends .friendurl {
|
960
|
+
text-decoration: none !important;
|
961
|
+
color: inherit;
|
962
|
+
box-shadow: none !important;
|
963
|
+
background-color: transparent !important;
|
964
|
+
border-bottom: none !important;
|
1371
965
|
}
|
1372
|
-
.
|
1373
|
-
|
1374
|
-
|
1375
|
-
|
1376
|
-
border-radius:
|
1377
|
-
|
1378
|
-
|
1379
|
-
|
966
|
+
.friends .frienddiv {
|
967
|
+
height: 100px;
|
968
|
+
width: 49%;
|
969
|
+
display: inline-block !important;
|
970
|
+
border-radius: 5px;
|
971
|
+
background: 0 0;
|
972
|
+
-webkit-transition: all ease-out 0.3s;
|
973
|
+
-moz-transition: all ease-out 0.3s;
|
974
|
+
-o-transition: all ease-out 0.3s;
|
975
|
+
transition: all ease-out 0.3s;
|
1380
976
|
}
|
1381
|
-
.
|
1382
|
-
|
1383
|
-
cursor: default;
|
977
|
+
.friends .frienddiv:hover {
|
978
|
+
background: rgba(0, 0, 0, 0.03);
|
1384
979
|
}
|
1385
|
-
.
|
1386
|
-
|
1387
|
-
|
1388
|
-
|
980
|
+
.friends .frienddivleft {
|
981
|
+
width: 92px;
|
982
|
+
float: left;
|
983
|
+
margin-right: -5px;
|
1389
984
|
}
|
1390
|
-
.
|
1391
|
-
|
1392
|
-
|
1393
|
-
|
1394
|
-
|
1395
|
-
margin-
|
985
|
+
.friends .frienddivleft .myfriend {
|
986
|
+
width: 56px !important;
|
987
|
+
height: 56px !important;
|
988
|
+
border-radius: 50% !important;
|
989
|
+
padding: 2px;
|
990
|
+
margin-top: 20px !important;
|
991
|
+
margin-left: 14px !important;
|
992
|
+
background-color: #fff;
|
993
|
+
box-shadow: 0 1px 4px rgba(100, 110, 120, 0.53);
|
1396
994
|
}
|
1397
|
-
.
|
1398
|
-
|
1399
|
-
|
1400
|
-
color: #666;
|
1401
|
-
text-align: center;
|
1402
|
-
margin: 16px auto;
|
995
|
+
.friends .frienddivright {
|
996
|
+
margin-top: 27px;
|
997
|
+
margin-right: 18px;
|
1403
998
|
}
|
1404
|
-
.
|
1405
|
-
|
999
|
+
.friends .frienddivright .friendname {
|
1000
|
+
text-overflow: ellipsis;
|
1001
|
+
font-size: 100%;
|
1002
|
+
margin-bottom: 5px;
|
1003
|
+
color: var(--primary);
|
1004
|
+
}
|
1005
|
+
.friends .frienddivright .friendinfo {
|
1006
|
+
text-overflow: ellipsis;
|
1007
|
+
font-size: 70%;
|
1008
|
+
color: var(--primary);
|
1406
1009
|
}
|
1407
1010
|
|
1408
|
-
.
|
1011
|
+
.alert-tip {
|
1012
|
+
position: fixed;
|
1013
|
+
z-index: 102;
|
1014
|
+
background: hsla(0, 0%, 100%, 0.3);
|
1015
|
+
padding: 10px 20px;
|
1016
|
+
min-width: 150px;
|
1017
|
+
text-align: center;
|
1018
|
+
left: 0;
|
1019
|
+
right: 0;
|
1020
|
+
margin: 0 auto;
|
1021
|
+
color: #000;
|
1022
|
+
backdrop-filter: blur(6px);
|
1023
|
+
visibility: hidden;
|
1024
|
+
opacity: 0;
|
1025
|
+
transition: all 1s linear;
|
1026
|
+
}
|
1027
|
+
.alert-tip.active {
|
1028
|
+
visibility: visible;
|
1029
|
+
opacity: 1;
|
1030
|
+
}
|
1031
|
+
|
1032
|
+
.cookie-tip {
|
1033
|
+
position: fixed;
|
1034
|
+
z-index: 102;
|
1035
|
+
background: rgb(237, 239, 245);
|
1036
|
+
padding: 0.5em 1.8em;
|
1037
|
+
font-size: 13px;
|
1038
|
+
line-height: 2.5em;
|
1039
|
+
min-height: 2.5em;
|
1040
|
+
min-width: 150px;
|
1041
|
+
bottom: 0;
|
1042
|
+
left: 0;
|
1043
|
+
right: 0;
|
1044
|
+
margin: 0 auto;
|
1045
|
+
color: rgb(131, 131, 145);
|
1046
|
+
backdrop-filter: blur(6px);
|
1047
|
+
visibility: hidden;
|
1048
|
+
opacity: 0;
|
1049
|
+
transition: all 0.5s linear;
|
1050
|
+
}
|
1051
|
+
.cookie-tip.active {
|
1052
|
+
visibility: visible;
|
1053
|
+
opacity: 1;
|
1054
|
+
}
|
1055
|
+
.cookie-tip a {
|
1056
|
+
text-decoration: underline;
|
1057
|
+
}
|
1058
|
+
|
1059
|
+
#accept-tos {
|
1060
|
+
float: right;
|
1061
|
+
padding: 6px 20px;
|
1062
|
+
color: #fff;
|
1063
|
+
font-weight: 700;
|
1064
|
+
border-width: 2px;
|
1065
|
+
text-align: center;
|
1066
|
+
border-style: solid;
|
1067
|
+
border-color: transparent;
|
1068
|
+
cursor: pointer;
|
1069
|
+
}
|
1070
|
+
|
1071
|
+
.modal {
|
1072
|
+
visibility: hidden;
|
1073
|
+
padding-top: 100px;
|
1074
|
+
z-index: 1000;
|
1409
1075
|
position: fixed;
|
1410
|
-
top: 0;
|
1411
1076
|
left: 0;
|
1077
|
+
top: 0;
|
1412
1078
|
width: 100%;
|
1413
1079
|
height: 100%;
|
1414
|
-
|
1080
|
+
background-color: rgba(0, 0, 0, 0.4);
|
1081
|
+
overflow: auto;
|
1082
|
+
}
|
1083
|
+
.modal .modal-content {
|
1084
|
+
background-color: #fff;
|
1085
|
+
margin: auto;
|
1086
|
+
min-width: 800px;
|
1087
|
+
max-width: 80%;
|
1088
|
+
padding: 30px;
|
1415
1089
|
text-align: center;
|
1090
|
+
border-radius: 8px;
|
1416
1091
|
}
|
1417
|
-
.
|
1418
|
-
|
1419
|
-
letter-spacing: 4px;
|
1420
|
-
font-weight: normal;
|
1421
|
-
padding: 160px 0 20px;
|
1092
|
+
.modal .modal-content header {
|
1093
|
+
position: relative;
|
1422
1094
|
}
|
1423
|
-
.
|
1424
|
-
|
1095
|
+
.modal .modal-content header span {
|
1096
|
+
cursor: pointer;
|
1097
|
+
position: absolute;
|
1098
|
+
right: 0;
|
1099
|
+
top: 0;
|
1100
|
+
font-size: 30px;
|
1425
1101
|
}
|
1426
|
-
|
1427
|
-
|
1428
|
-
|
1429
|
-
|
1430
|
-
|
1431
|
-
|
1432
|
-
|
1433
|
-
|
1434
|
-
border:
|
1435
|
-
|
1436
|
-
|
1102
|
+
|
1103
|
+
.mobile-list {
|
1104
|
+
position: fixed;
|
1105
|
+
right: 20.8px;
|
1106
|
+
height: 48px;
|
1107
|
+
bottom: 75px;
|
1108
|
+
z-index: 1000;
|
1109
|
+
width: 48px;
|
1110
|
+
border: none;
|
1111
|
+
border-radius: 50%;
|
1112
|
+
box-shadow: 1px 2px 0 rgba(0, 0, 0, 0.1);
|
1113
|
+
cursor: pointer;
|
1114
|
+
visibility: hidden;
|
1115
|
+
padding: 0;
|
1116
|
+
}
|
1117
|
+
.mobile-list .icon.list, .mobile-list .icon.exit {
|
1118
|
+
width: 20px;
|
1119
|
+
height: 20px;
|
1120
|
+
display: none;
|
1121
|
+
vertical-align: middle;
|
1122
|
+
}
|
1123
|
+
.mobile-list .icon.list.active, .mobile-list .icon.exit.active {
|
1124
|
+
display: inline-block;
|
1125
|
+
}
|
1126
|
+
|
1127
|
+
.bttb {
|
1128
|
+
background-color: #ebedf0;
|
1129
|
+
border-radius: 50%;
|
1130
|
+
bottom: 20.8px;
|
1131
|
+
box-shadow: 1px 2px 0 rgba(0, 0, 0, 0.1);
|
1132
|
+
height: 48px;
|
1133
|
+
opacity: 0;
|
1134
|
+
position: fixed;
|
1135
|
+
right: 20.8px;
|
1136
|
+
transform: scale(0);
|
1137
|
+
transition: all 200ms cubic-bezier(0.08, 0.52, 0.52, 1);
|
1138
|
+
visibility: hidden;
|
1139
|
+
width: 48px;
|
1140
|
+
z-index: 1000;
|
1141
|
+
border: none;
|
1142
|
+
cursor: pointer;
|
1143
|
+
}
|
1144
|
+
.bttb.active {
|
1145
|
+
opacity: 1;
|
1146
|
+
transform: scale(1);
|
1147
|
+
visibility: visible;
|
1148
|
+
}
|
1149
|
+
.bttb .icon.up {
|
1150
|
+
width: 16px;
|
1151
|
+
height: 16px;
|
1152
|
+
display: none;
|
1153
|
+
}
|
1154
|
+
.bttb .icon.up.active {
|
1155
|
+
display: inline-block;
|
1156
|
+
}
|
1157
|
+
|
1158
|
+
[data-theme=default] .g-header a:hover {
|
1159
|
+
color: rgb(27, 126, 255) !important;
|
1160
|
+
}
|
1161
|
+
[data-theme=default] .g-header .nav-default .mode {
|
1162
|
+
background-color: rgba(27, 126, 255, 0.6);
|
1163
|
+
border-radius: 50%;
|
1164
|
+
}
|
1165
|
+
[data-theme=default] .g-header .mode:hover {
|
1166
|
+
background-color: rgb(27, 126, 255) !important;
|
1167
|
+
border-radius: 50%;
|
1168
|
+
}
|
1169
|
+
[data-theme=default] .table-of-contents h2,
|
1170
|
+
[data-theme=default] .table-of-contents a.active {
|
1171
|
+
color: rgb(27, 126, 255);
|
1172
|
+
}
|
1173
|
+
[data-theme=default] .article-item .post-meta .post-tag:hover,
|
1174
|
+
[data-theme=default] .tags-card .tag:hover,
|
1175
|
+
[data-theme=default] .tags-content .tag:hover,
|
1176
|
+
[data-theme=default] .table-of-contents a:hover,
|
1177
|
+
[data-theme=default] .g-footer .links a:hover,
|
1178
|
+
[data-theme=default] .g-footer section a:hover,
|
1179
|
+
[data-theme=default] .post-header .post-tags .post-tag:hover,
|
1180
|
+
[data-theme=default] .tags-content .tag-post:hover,
|
1181
|
+
[data-theme=default] .author-card .level .level-item .title:hover,
|
1182
|
+
[data-theme=default] .g-sidebar section .latest-articles li .latest-title a:hover {
|
1183
|
+
color: rgb(27, 126, 255) !important;
|
1184
|
+
}
|
1185
|
+
[data-theme=default] .markdown-body a:not([ref=gallery]) {
|
1186
|
+
background-color: rgba(27, 126, 255, 0.1);
|
1187
|
+
border-bottom: 2px solid rgba(27, 126, 255, 0.6);
|
1188
|
+
text-decoration: none;
|
1189
|
+
color: inherit;
|
1190
|
+
}
|
1191
|
+
[data-theme=default] .markdown-body a:not([ref=gallery]):hover {
|
1192
|
+
background-color: rgba(27, 126, 255, 0.3);
|
1193
|
+
text-decoration: none;
|
1194
|
+
}
|
1195
|
+
[data-theme=default] .markdown-body ol li:before {
|
1196
|
+
background-color: rgba(27, 126, 255, 0.8);
|
1197
|
+
}
|
1198
|
+
[data-theme=default] #accept-tos {
|
1199
|
+
background-color: rgba(27, 126, 255, 0.8);
|
1200
|
+
}
|
1201
|
+
[data-theme=default] #accept-tos:hover {
|
1202
|
+
background-color: rgb(27, 126, 255);
|
1203
|
+
}
|
1204
|
+
|
1205
|
+
[data-theme=pink] .g-header a:hover {
|
1206
|
+
color: rgb(252, 103, 148) !important;
|
1207
|
+
}
|
1208
|
+
[data-theme=pink] .g-header .nav-pink .mode {
|
1209
|
+
background-color: rgba(252, 103, 148, 0.6);
|
1210
|
+
border-radius: 50%;
|
1211
|
+
}
|
1212
|
+
[data-theme=pink] .g-header .mode:hover {
|
1213
|
+
background-color: rgb(252, 103, 148) !important;
|
1214
|
+
border-radius: 50%;
|
1215
|
+
}
|
1216
|
+
[data-theme=pink] .table-of-contents h2,
|
1217
|
+
[data-theme=pink] .table-of-contents a.active {
|
1218
|
+
color: rgb(252, 103, 148);
|
1219
|
+
}
|
1220
|
+
[data-theme=pink] .article-item .post-meta .post-tag:hover,
|
1221
|
+
[data-theme=pink] .tags-card .tag:hover,
|
1222
|
+
[data-theme=pink] .tags-content .tag:hover,
|
1223
|
+
[data-theme=pink] .table-of-contents a:hover,
|
1224
|
+
[data-theme=pink] .g-footer .links a:hover,
|
1225
|
+
[data-theme=pink] .g-footer section a:hover,
|
1226
|
+
[data-theme=pink] .post-header .post-tags .post-tag:hover,
|
1227
|
+
[data-theme=pink] .tags-content .tag-post:hover,
|
1228
|
+
[data-theme=pink] .author-card .level .level-item .title:hover,
|
1229
|
+
[data-theme=pink] .g-sidebar section .latest-articles li .latest-title a:hover:hover {
|
1230
|
+
color: rgb(252, 103, 148) !important;
|
1231
|
+
}
|
1232
|
+
[data-theme=pink] .markdown-body a:not([ref=gallery]) {
|
1233
|
+
background-color: rgba(252, 103, 148, 0.1);
|
1234
|
+
border-bottom: 2px solid rgba(252, 103, 148, 0.6);
|
1235
|
+
text-decoration: none;
|
1236
|
+
color: inherit;
|
1237
|
+
}
|
1238
|
+
[data-theme=pink] .markdown-body a:not([ref=gallery]):hover {
|
1239
|
+
background-color: rgba(252, 103, 148, 0.3);
|
1240
|
+
text-decoration: none;
|
1241
|
+
}
|
1242
|
+
[data-theme=pink] .markdown-body ol li:before {
|
1243
|
+
background-color: rgba(252, 103, 148, 0.8);
|
1244
|
+
}
|
1245
|
+
[data-theme=pink] #accept-tos {
|
1246
|
+
background-color: rgba(252, 103, 148, 0.8);
|
1247
|
+
}
|
1248
|
+
[data-theme=pink] #accept-tos:hover {
|
1249
|
+
background-color: rgb(252, 103, 148);
|
1437
1250
|
}
|
1438
1251
|
|
1439
1252
|
.night-mode {
|
@@ -1455,6 +1268,7 @@ a.extlinks::after {
|
|
1455
1268
|
box-shadow: none;
|
1456
1269
|
}
|
1457
1270
|
.night-mode .article-item .post-cover img {
|
1271
|
+
filter: brightness(0.6);
|
1458
1272
|
-webkit-filter: brightness(0.6);
|
1459
1273
|
}
|
1460
1274
|
.night-mode .article-item .post-preview .post-title, .night-mode .article-item .post-preview .post-subtitle, .night-mode .article-item .post-preview .post-excerpt {
|
@@ -1479,10 +1293,11 @@ a.extlinks::after {
|
|
1479
1293
|
color: #fff;
|
1480
1294
|
}
|
1481
1295
|
.night-mode .avatar img {
|
1296
|
+
filter: brightness(0.6);
|
1482
1297
|
-webkit-filter: brightness(0.6);
|
1483
1298
|
}
|
1484
1299
|
.night-mode .author-name, .night-mode .bio {
|
1485
|
-
color: #AAAAAA;
|
1300
|
+
color: #AAAAAA !important;
|
1486
1301
|
}
|
1487
1302
|
.night-mode .search_result .search_item:last-child {
|
1488
1303
|
border-color: rgba(255, 255, 255, 0.1);
|
@@ -1542,6 +1357,7 @@ a.extlinks::after {
|
|
1542
1357
|
background-color: transparent;
|
1543
1358
|
}
|
1544
1359
|
.night-mode .markdown-body img {
|
1360
|
+
filter: brightness(0.6);
|
1545
1361
|
-webkit-filter: brightness(0.6);
|
1546
1362
|
}
|
1547
1363
|
.night-mode .markdown-body blockquote {
|
@@ -1580,6 +1396,9 @@ a.extlinks::after {
|
|
1580
1396
|
.night-mode .markdown-body .caption {
|
1581
1397
|
color: #aaaaaa;
|
1582
1398
|
}
|
1399
|
+
.night-mode .markdown-body table tr {
|
1400
|
+
background-color: transparent;
|
1401
|
+
}
|
1583
1402
|
.night-mode .read-next-item {
|
1584
1403
|
background-color: #484D59;
|
1585
1404
|
}
|
@@ -1637,261 +1456,615 @@ a.extlinks::after {
|
|
1637
1456
|
background-color: #fff;
|
1638
1457
|
}
|
1639
1458
|
|
1640
|
-
.
|
1641
|
-
width:
|
1642
|
-
display:
|
1643
|
-
|
1644
|
-
|
1645
|
-
}
|
1646
|
-
|
1647
|
-
.archives-title {
|
1648
|
-
width: 95%;
|
1649
|
-
display: inline-block;
|
1650
|
-
margin-bottom: 0 !important;
|
1651
|
-
margin-top: 0 !important;
|
1652
|
-
white-space: nowrap;
|
1459
|
+
.g-container {
|
1460
|
+
width: 1080px;
|
1461
|
+
display: flex;
|
1462
|
+
justify-content: space-between;
|
1463
|
+
flex-direction: row;
|
1653
1464
|
}
|
1654
1465
|
|
1655
|
-
|
1656
|
-
|
1657
|
-
|
1658
|
-
|
1659
|
-
|
1466
|
+
a {
|
1467
|
+
-webkit-user-select: none;
|
1468
|
+
-moz-user-select: none;
|
1469
|
+
-ms-user-select: none;
|
1470
|
+
user-select: none;
|
1660
1471
|
}
|
1661
|
-
.
|
1662
|
-
|
1472
|
+
a.extlinks::after {
|
1473
|
+
content: "↗️";
|
1474
|
+
font-size: 12px;
|
1475
|
+
padding: 0 2px;
|
1476
|
+
vertical-align: 1px;
|
1663
1477
|
}
|
1664
|
-
|
1665
|
-
|
1478
|
+
|
1479
|
+
.home-content {
|
1480
|
+
margin: 40px auto 60px;
|
1666
1481
|
}
|
1667
|
-
.
|
1482
|
+
.home-content:before, .home-content:after {
|
1668
1483
|
content: "";
|
1669
|
-
|
1670
|
-
top: 80%;
|
1671
|
-
left: 0;
|
1672
|
-
right: 0;
|
1673
|
-
bottom: 0;
|
1674
|
-
background: rgba(20, 148, 251, 0.7);
|
1675
|
-
transition: top 0.2s cubic-bezier(0, 0.8, 0.13, 1);
|
1676
|
-
z-index: 1;
|
1484
|
+
display: table;
|
1677
1485
|
}
|
1678
|
-
.
|
1679
|
-
|
1680
|
-
line-height: 1.8;
|
1681
|
-
text-align: justify;
|
1486
|
+
.home-content:after {
|
1487
|
+
clear: both;
|
1682
1488
|
}
|
1683
|
-
|
1684
|
-
|
1489
|
+
|
1490
|
+
.article-list {
|
1491
|
+
width: 695px;
|
1685
1492
|
}
|
1686
|
-
.
|
1687
|
-
|
1493
|
+
.article-list .author-detail {
|
1494
|
+
top: 20px !important;
|
1688
1495
|
}
|
1689
|
-
.
|
1690
|
-
|
1496
|
+
.article-list .article-item {
|
1497
|
+
width: 100%;
|
1498
|
+
margin-bottom: 16px;
|
1499
|
+
padding: 20px 20px;
|
1500
|
+
background-color: #fff;
|
1501
|
+
border: 1px solid #E7EAF1;
|
1502
|
+
border-radius: 3px;
|
1503
|
+
box-sizing: border-box;
|
1504
|
+
box-shadow: 0 1px 3px rgba(0, 37, 55, 0.06);
|
1691
1505
|
}
|
1692
|
-
.
|
1693
|
-
|
1506
|
+
.article-list .article-item:last-child {
|
1507
|
+
margin-bottom: 0;
|
1694
1508
|
}
|
1695
|
-
.
|
1696
|
-
|
1697
|
-
|
1698
|
-
|
1699
|
-
|
1509
|
+
.article-list .article-item .post-link {
|
1510
|
+
position: absolute;
|
1511
|
+
top: 0;
|
1512
|
+
left: 0;
|
1513
|
+
width: 100%;
|
1514
|
+
height: 100%;
|
1515
|
+
}
|
1516
|
+
.article-list .article-item .post-cover {
|
1517
|
+
position: relative;
|
1518
|
+
width: 100%;
|
1519
|
+
max-height: 300px;
|
1520
|
+
margin-bottom: 14px;
|
1521
|
+
overflow: hidden;
|
1522
|
+
}
|
1523
|
+
.article-list .article-item .post-cover img {
|
1524
|
+
width: 100%;
|
1525
|
+
vertical-align: middle;
|
1526
|
+
}
|
1527
|
+
.article-list .article-item .post-preview {
|
1528
|
+
position: relative;
|
1529
|
+
}
|
1530
|
+
.article-list .article-item .post-preview .post-title {
|
1531
|
+
font-family: "LXGW WenKai Screen", -apple-system, Verdana, "PingFang SC", "Helvetica Neue", "Arial", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
|
1532
|
+
color: #4E4E4E;
|
1533
|
+
font-size: 24px;
|
1534
|
+
line-height: 32px;
|
1535
|
+
}
|
1536
|
+
.article-list .article-item .post-preview .post-title .keep-top {
|
1537
|
+
color: red;
|
1538
|
+
}
|
1539
|
+
.article-list .article-item .post-preview .post-subtitle {
|
1540
|
+
margin-top: 3px;
|
1541
|
+
font-size: 18px;
|
1542
|
+
font-weight: normal;
|
1543
|
+
color: #585858;
|
1544
|
+
line-height: 26px;
|
1545
|
+
}
|
1546
|
+
.article-list .article-item .post-preview .post-excerpt {
|
1547
|
+
margin-top: 8px;
|
1548
|
+
font-size: 16px;
|
1549
|
+
font-family: "Merriweather", "LXGW WenKai Screen", -apple-system, Verdana, "PingFang SC", "Helvetica Neue", "Arial", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
|
1550
|
+
line-height: 26px;
|
1551
|
+
word-break: break-all;
|
1552
|
+
color: #585858;
|
1553
|
+
}
|
1554
|
+
.article-list .article-item .post-meta {
|
1555
|
+
min-height: 22px;
|
1556
|
+
margin-top: 8px;
|
1557
|
+
display: flex;
|
1558
|
+
justify-content: space-between;
|
1559
|
+
}
|
1560
|
+
.article-list .article-item .post-meta .post-tags {
|
1561
|
+
display: inline-block;
|
1562
|
+
width: 515px;
|
1563
|
+
}
|
1564
|
+
.article-list .article-item .post-meta .post-date {
|
1565
|
+
color: #585858;
|
1566
|
+
display: inline-block;
|
1567
|
+
font-size: 14px;
|
1568
|
+
letter-spacing: 0.6px;
|
1569
|
+
line-height: 22px;
|
1570
|
+
min-width: 110px;
|
1571
|
+
}
|
1572
|
+
.article-list .article-item .post-meta .post-date .icon {
|
1573
|
+
width: 16px;
|
1574
|
+
height: 16px;
|
1575
|
+
margin-bottom: -3px;
|
1576
|
+
}
|
1577
|
+
|
1578
|
+
.author-card {
|
1700
1579
|
text-align: center;
|
1701
|
-
|
1702
|
-
|
1580
|
+
}
|
1581
|
+
.author-card .avatar {
|
1582
|
+
width: 70px;
|
1583
|
+
height: 70px;
|
1703
1584
|
border-radius: 50%;
|
1585
|
+
margin: 0 auto;
|
1586
|
+
overflow: hidden;
|
1587
|
+
box-shadow: 0 1px 4px rgba(100, 110, 120, 0.53);
|
1704
1588
|
}
|
1705
|
-
.
|
1706
|
-
|
1589
|
+
.author-card .avatar img {
|
1590
|
+
width: 70px;
|
1591
|
+
height: 70px;
|
1707
1592
|
}
|
1708
|
-
.
|
1709
|
-
|
1593
|
+
.author-card .author-name {
|
1594
|
+
width: 100%;
|
1595
|
+
font-size: 16px;
|
1596
|
+
color: #4E4E4E;
|
1597
|
+
font-weight: 500;
|
1598
|
+
margin: 12px 0 6px;
|
1710
1599
|
}
|
1711
|
-
.
|
1712
|
-
|
1713
|
-
|
1600
|
+
.author-card .bio p {
|
1601
|
+
font-size: 14px;
|
1602
|
+
line-height: 20px;
|
1714
1603
|
}
|
1715
|
-
.
|
1716
|
-
|
1604
|
+
.author-card .level {
|
1605
|
+
display: flex;
|
1606
|
+
margin-top: 20px;
|
1717
1607
|
}
|
1718
|
-
.
|
1719
|
-
|
1608
|
+
.author-card .level .level-item {
|
1609
|
+
flex-grow: 1;
|
1720
1610
|
}
|
1721
|
-
.
|
1722
|
-
|
1611
|
+
.author-card .level .level-item .heading {
|
1612
|
+
display: block;
|
1613
|
+
font-size: 11px;
|
1614
|
+
letter-spacing: 1px;
|
1615
|
+
margin-bottom: 5px;
|
1616
|
+
text-transform: uppercase;
|
1723
1617
|
}
|
1724
|
-
.
|
1725
|
-
|
1618
|
+
.author-card .level .level-item .title {
|
1619
|
+
color: #363636;
|
1620
|
+
font-size: 2rem;
|
1621
|
+
font-weight: 400;
|
1622
|
+
line-height: 1.125;
|
1726
1623
|
}
|
1727
|
-
.
|
1728
|
-
|
1729
|
-
|
1730
|
-
line-height: 20px;
|
1731
|
-
float: right;
|
1732
|
-
list-style: none;
|
1733
|
-
font-weight: 500;
|
1734
|
-
color: #57606a;
|
1735
|
-
background-color: #f6f8fa;
|
1736
|
-
box-shadow: 0 1px 0 rgba(27, 31, 36, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.25);
|
1737
|
-
border: 1px solid rgba(27, 31, 36, 0.15);
|
1738
|
-
border-radius: 6px;
|
1739
|
-
cursor: pointer;
|
1624
|
+
.author-card .sns-links {
|
1625
|
+
margin-top: 14px;
|
1626
|
+
cursor: default;
|
1740
1627
|
}
|
1741
|
-
.
|
1742
|
-
|
1743
|
-
|
1744
|
-
|
1628
|
+
.author-card .sns-links li {
|
1629
|
+
position: relative;
|
1630
|
+
display: inline-block;
|
1631
|
+
width: 26px;
|
1632
|
+
height: 26px;
|
1633
|
+
overflow: hidden;
|
1745
1634
|
}
|
1746
|
-
.
|
1747
|
-
|
1748
|
-
border-radius: 0px !important;
|
1749
|
-
border-top: none;
|
1635
|
+
.author-card .sns-links li a {
|
1636
|
+
display: inline-block;
|
1750
1637
|
}
|
1751
|
-
.
|
1752
|
-
|
1753
|
-
|
1754
|
-
display: none;
|
1638
|
+
.author-card .sns-links li .iconfont {
|
1639
|
+
font-size: 22px;
|
1640
|
+
line-height: 30px;
|
1755
1641
|
}
|
1756
|
-
.
|
1757
|
-
color:
|
1758
|
-
|
1642
|
+
.author-card .sns-links li .iconfont {
|
1643
|
+
color: #B8BDC3;
|
1644
|
+
transition: 0.2s;
|
1759
1645
|
}
|
1760
|
-
.
|
1761
|
-
|
1646
|
+
.author-card .sns-links li .iconfont:hover {
|
1647
|
+
color: #7B848F;
|
1648
|
+
}
|
1649
|
+
.author-card .sns-links li .icon {
|
1650
|
+
color: #B8BDC3;
|
1651
|
+
transition: 0.2s;
|
1652
|
+
width: 22px;
|
1653
|
+
height: 22px;
|
1654
|
+
line-height: 30px;
|
1655
|
+
vertical-align: -0.15em;
|
1656
|
+
fill: currentColor;
|
1657
|
+
overflow: hidden;
|
1658
|
+
filter: grayscale(100%);
|
1659
|
+
-webkit-filter: grayscale(100%);
|
1660
|
+
-moz-filter: grayscale(100%);
|
1661
|
+
-ms-filter: grayscale(100%);
|
1662
|
+
}
|
1663
|
+
.author-card .sns-links li .icon:hover {
|
1664
|
+
color: #7B848F;
|
1665
|
+
filter: none;
|
1666
|
+
-webkit-filter: none;
|
1667
|
+
-moz-filter: none;
|
1668
|
+
-ms-filter: none;
|
1669
|
+
}
|
1670
|
+
.author-card .sns-links li .icon-weibo:hover {
|
1671
|
+
color: #F85555;
|
1672
|
+
}
|
1673
|
+
.author-card .sns-links li .icon-zhihu:hover {
|
1674
|
+
color: #1892F5;
|
1675
|
+
}
|
1676
|
+
.author-card .sns-links li .icon-twitter:hover {
|
1677
|
+
color: #39A6F8;
|
1678
|
+
}
|
1679
|
+
.author-card .sns-links li .icon-instagram:hover {
|
1680
|
+
color: #D92580;
|
1681
|
+
}
|
1682
|
+
.author-card .sns-links li .icon-juejin:hover {
|
1683
|
+
color: #1682FC;
|
1684
|
+
}
|
1685
|
+
.author-card .sns-links li .icon-douban:hover {
|
1686
|
+
color: #2E963D;
|
1687
|
+
}
|
1688
|
+
.author-card .sns-links li .icon-github:hover {
|
1689
|
+
color: #575757;
|
1690
|
+
}
|
1691
|
+
.author-card .sns-links li .icon-facebook:hover {
|
1692
|
+
color: #3D5A9A;
|
1693
|
+
}
|
1694
|
+
.author-card .sns-links li .icon-dribbble:hover {
|
1695
|
+
color: #F26798;
|
1696
|
+
}
|
1697
|
+
.author-card .sns-links li .icon-jianshu:hover {
|
1698
|
+
color: #EA6F5A;
|
1699
|
+
}
|
1700
|
+
.author-card .sns-links li .icon-uicn:hover {
|
1701
|
+
color: #3498DB;
|
1702
|
+
}
|
1703
|
+
.author-card .sns-links li .icon-linkedin:hover {
|
1704
|
+
color: #3181BE;
|
1705
|
+
}
|
1706
|
+
.author-card .sns-links li .icon-medium:hover {
|
1707
|
+
color: #0BE370;
|
1708
|
+
}
|
1709
|
+
.author-card .sns-links li .icon-youtube:hover {
|
1710
|
+
color: #FF2600;
|
1711
|
+
}
|
1712
|
+
.author-card .sns-links li .icon-behance:hover {
|
1713
|
+
color: #0057ff;
|
1714
|
+
}
|
1715
|
+
.author-card .sns-links li .icon-vk:hover {
|
1716
|
+
color: #5181b8;
|
1717
|
+
}
|
1718
|
+
|
1719
|
+
.article-item .post-meta .post-tag, .tags-card .tag, .tags-content .tag {
|
1720
|
+
display: inline-block;
|
1721
|
+
width: auto;
|
1722
|
+
height: 24px;
|
1723
|
+
line-height: 24px;
|
1724
|
+
padding: 0 12px;
|
1725
|
+
font-size: 14px;
|
1726
|
+
color: #656565;
|
1727
|
+
box-sizing: border-box;
|
1728
|
+
box-shadow: 0 0 0.6px #D5DAE1;
|
1729
|
+
border: 1px solid rgba(92, 147, 187, 0.168627451);
|
1730
|
+
border-radius: 12px;
|
1731
|
+
background-color: #F7F8FA;
|
1732
|
+
cursor: pointer;
|
1733
|
+
margin-right: 2px;
|
1734
|
+
transition: 0.2s;
|
1735
|
+
margin-bottom: 5px;
|
1736
|
+
}
|
1737
|
+
.article-item .post-meta .post-tag:last-child, .tags-card .tag:last-child, .tags-content .tag:last-child {
|
1738
|
+
margin-right: 0;
|
1739
|
+
}
|
1740
|
+
|
1741
|
+
.tags-card .links {
|
1742
|
+
width: 100%;
|
1743
|
+
font-size: 16px;
|
1744
|
+
color: #4e4e4e;
|
1745
|
+
font-weight: bold;
|
1746
|
+
margin: 10px 0 16px;
|
1762
1747
|
text-align: center;
|
1763
|
-
|
1764
|
-
|
1748
|
+
}
|
1749
|
+
|
1750
|
+
.g-sidebar-wrapper {
|
1751
|
+
width: 300px;
|
1752
|
+
position: sticky;
|
1753
|
+
top: 100px;
|
1754
|
+
height: fit-content;
|
1755
|
+
}
|
1756
|
+
|
1757
|
+
.g-sidebar {
|
1758
|
+
padding: 20px 20px;
|
1765
1759
|
background-color: #fff;
|
1760
|
+
border: 1px solid #E7EAF1;
|
1761
|
+
border-radius: 3px;
|
1762
|
+
box-sizing: border-box;
|
1763
|
+
box-shadow: 0 1px 3px rgba(0, 37, 55, 0.06);
|
1766
1764
|
}
|
1767
|
-
.
|
1768
|
-
|
1765
|
+
.g-sidebar section {
|
1766
|
+
padding: 10px 0;
|
1767
|
+
border-bottom: 1px solid #E7EAF1;
|
1769
1768
|
}
|
1770
|
-
.
|
1771
|
-
|
1769
|
+
.g-sidebar section:first-child {
|
1770
|
+
padding-top: 0;
|
1772
1771
|
}
|
1773
|
-
.
|
1774
|
-
|
1775
|
-
|
1772
|
+
.g-sidebar section:last-child {
|
1773
|
+
border-bottom: none;
|
1774
|
+
padding-bottom: 0;
|
1775
|
+
}
|
1776
|
+
.g-sidebar section .tag {
|
1777
|
+
margin-bottom: 8px;
|
1778
|
+
}
|
1779
|
+
.g-sidebar section .latest-articles li {
|
1780
|
+
margin-bottom: 15px;
|
1781
|
+
font-size: 14px;
|
1782
|
+
}
|
1783
|
+
.g-sidebar section .latest-articles li .latest-title {
|
1784
|
+
margin: 5px 0;
|
1785
|
+
text-align: justify;
|
1786
|
+
white-space: nowrap;
|
1787
|
+
width: 265px;
|
1788
|
+
overflow: hidden;
|
1789
|
+
text-overflow: ellipsis;
|
1790
|
+
}
|
1791
|
+
.g-sidebar section .latest-articles li .latest-date {
|
1792
|
+
font-size: 12px;
|
1793
|
+
}
|
1794
|
+
|
1795
|
+
.search-card {
|
1796
|
+
position: relative;
|
1797
|
+
margin-top: 16px;
|
1798
|
+
padding: 0;
|
1799
|
+
}
|
1800
|
+
.search-card input, .search-card .search_item {
|
1801
|
+
font-size: 16px;
|
1802
|
+
color: #4E4E4E;
|
1803
|
+
}
|
1804
|
+
.search-card input {
|
1805
|
+
padding: 20px 20px;
|
1806
|
+
background-color: #fff;
|
1807
|
+
border: 1px solid #E7EAF1;
|
1808
|
+
border-radius: 3px;
|
1809
|
+
box-sizing: border-box;
|
1810
|
+
box-shadow: 0 1px 3px rgba(0, 37, 55, 0.06);
|
1811
|
+
position: relative;
|
1812
|
+
padding: 12px 46px 12px 18px;
|
1813
|
+
margin: 0;
|
1814
|
+
width: 100%;
|
1815
|
+
background-color: #fff;
|
1816
|
+
outline: none;
|
1817
|
+
z-index: 1;
|
1818
|
+
}
|
1819
|
+
.search-card ::-webkit-input-placeholder {
|
1820
|
+
color: #9EA8B3;
|
1821
|
+
}
|
1822
|
+
.search-card :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
|
1823
|
+
color: #9EA8B3;
|
1824
|
+
}
|
1825
|
+
.search-card ::-moz-placeholder { /* Mozilla Firefox 19+ */
|
1826
|
+
color: #9EA8B3;
|
1827
|
+
}
|
1828
|
+
.search-card .icon-search {
|
1829
|
+
position: absolute;
|
1830
|
+
top: 10px;
|
1831
|
+
right: 18px;
|
1832
|
+
font-size: 26px;
|
1833
|
+
color: #CAD3DC;
|
1834
|
+
transition: 0.2s;
|
1835
|
+
z-index: 1;
|
1836
|
+
}
|
1837
|
+
.search-card .icon {
|
1838
|
+
position: absolute;
|
1839
|
+
top: 13px;
|
1840
|
+
right: 18px;
|
1841
|
+
color: #CAD3DC;
|
1842
|
+
z-index: 1;
|
1843
|
+
width: 20px;
|
1844
|
+
height: 20px;
|
1845
|
+
vertical-align: -0.15em;
|
1846
|
+
fill: currentColor;
|
1847
|
+
overflow: hidden;
|
1848
|
+
}
|
1849
|
+
.search-card .search_result {
|
1850
|
+
position: relative;
|
1851
|
+
margin-top: -2px;
|
1852
|
+
background-color: #fff;
|
1853
|
+
border-radius: 0 0 4px 4px;
|
1854
|
+
z-index: 0;
|
1855
|
+
}
|
1856
|
+
.search-card .search_item {
|
1857
|
+
padding: 6px 18px;
|
1858
|
+
margin-bottom: 0;
|
1859
|
+
width: 100%;
|
1860
|
+
display: block;
|
1861
|
+
overflow: hidden;
|
1776
1862
|
text-overflow: ellipsis;
|
1777
1863
|
white-space: nowrap;
|
1864
|
+
border-left: 1px solid #E7EAF1;
|
1865
|
+
border-right: 1px solid #E7EAF1;
|
1866
|
+
box-sizing: border-box;
|
1867
|
+
opacity: 0.8;
|
1868
|
+
transition: 0.2s;
|
1778
1869
|
}
|
1779
|
-
.
|
1780
|
-
|
1781
|
-
border-radius: 4px;
|
1782
|
-
border: 1px solid #efe1bb;
|
1783
|
-
padding: 18px 20px;
|
1784
|
-
font-size: 14px;
|
1785
|
-
color: #333;
|
1870
|
+
.search-card .search_item:first-child {
|
1871
|
+
padding-top: 14px;
|
1786
1872
|
}
|
1787
|
-
.
|
1788
|
-
|
1873
|
+
.search-card .search_item:last-child {
|
1874
|
+
padding-bottom: 14px;
|
1875
|
+
border-radius: 0 0 4px 4px;
|
1876
|
+
border-bottom: 1px solid #E7EAF1;
|
1877
|
+
}
|
1878
|
+
.search-card .search_item:hover {
|
1879
|
+
opacity: 1;
|
1880
|
+
background-color: #FAFAFA;
|
1881
|
+
}
|
1882
|
+
|
1883
|
+
.pagination {
|
1884
|
+
float: left;
|
1885
|
+
position: relative;
|
1886
|
+
left: 50%;
|
1887
|
+
margin: 8px auto 0;
|
1888
|
+
}
|
1889
|
+
.pagination .page-links {
|
1890
|
+
position: relative;
|
1891
|
+
left: -50%;
|
1892
|
+
border: 1px solid #E7EAF1;
|
1893
|
+
border-radius: 3px;
|
1894
|
+
background-color: #fff;
|
1895
|
+
padding: 0 8px;
|
1896
|
+
overflow: auto;
|
1897
|
+
box-shadow: 0 1px 3px rgba(0, 37, 55, 0.06);
|
1898
|
+
}
|
1899
|
+
.pagination .page-link {
|
1900
|
+
display: block;
|
1901
|
+
float: left;
|
1902
|
+
width: 34px;
|
1903
|
+
height: 34px;
|
1904
|
+
margin: 6px;
|
1905
|
+
font-size: 16px;
|
1906
|
+
color: #A9B0BC;
|
1907
|
+
line-height: 34px;
|
1908
|
+
text-align: center;
|
1909
|
+
border-radius: 2px;
|
1910
|
+
cursor: pointer;
|
1911
|
+
}
|
1912
|
+
.pagination .page-link:hover {
|
1913
|
+
color: #8F98AA;
|
1914
|
+
background-color: #EEF0F4;
|
1915
|
+
}
|
1916
|
+
.pagination .active {
|
1917
|
+
color: #8F98AA;
|
1918
|
+
background-color: #EEF0F4;
|
1919
|
+
}
|
1920
|
+
.pagination #page-link-container {
|
1921
|
+
float: left;
|
1922
|
+
}
|
1923
|
+
|
1924
|
+
.g-footer {
|
1925
|
+
min-height: 40px;
|
1926
|
+
padding: 20px 0;
|
1927
|
+
border-top: 1px solid #E7EAF1;
|
1928
|
+
text-align: center;
|
1929
|
+
background-color: #ffffff;
|
1930
|
+
box-shadow: 0 -1px 3px rgba(0, 37, 55, 0.06);
|
1931
|
+
}
|
1932
|
+
.g-footer .g-container {
|
1933
|
+
margin: 0 auto;
|
1934
|
+
}
|
1935
|
+
.g-footer .g-container:before, .g-footer .g-container:after {
|
1936
|
+
content: "";
|
1937
|
+
display: table;
|
1938
|
+
}
|
1939
|
+
.g-footer .g-container:after {
|
1940
|
+
clear: both;
|
1941
|
+
}
|
1942
|
+
.g-footer .g-container .g-left {
|
1943
|
+
width: 600px;
|
1789
1944
|
text-align: left;
|
1790
1945
|
}
|
1791
|
-
.
|
1792
|
-
|
1946
|
+
.g-footer .g-container .g-right {
|
1947
|
+
width: 400px;
|
1948
|
+
text-align: right;
|
1949
|
+
}
|
1950
|
+
.g-footer .g-container .g-right .badges {
|
1951
|
+
margin-top: 10px;
|
1952
|
+
}
|
1953
|
+
.g-footer section {
|
1954
|
+
font-size: 14px;
|
1955
|
+
line-height: 20px;
|
1956
|
+
color: #4E4E4E;
|
1957
|
+
}
|
1958
|
+
.g-footer section a {
|
1959
|
+
color: #4E4E4E;
|
1960
|
+
}
|
1961
|
+
.g-footer section a:hover {
|
1962
|
+
color: #83888F;
|
1963
|
+
}
|
1964
|
+
.g-footer section a .license {
|
1965
|
+
border-width: 0px;
|
1966
|
+
margin-bottom: -3px;
|
1967
|
+
width: 80px;
|
1968
|
+
height: 15px;
|
1969
|
+
}
|
1970
|
+
.g-footer section .upyun {
|
1971
|
+
height: 25px;
|
1972
|
+
margin-bottom: -8px;
|
1793
1973
|
}
|
1794
|
-
.
|
1795
|
-
|
1796
|
-
|
1974
|
+
.g-footer section .foreverblog img {
|
1975
|
+
width: auto;
|
1976
|
+
height: 16px;
|
1977
|
+
vertical-align: super;
|
1978
|
+
margin: 10px 10px 0 0;
|
1797
1979
|
}
|
1798
|
-
.
|
1799
|
-
|
1980
|
+
.g-footer section .wormhole img {
|
1981
|
+
width: auto;
|
1982
|
+
height: 24px;
|
1983
|
+
margin-right: 10px;
|
1800
1984
|
}
|
1801
|
-
.
|
1802
|
-
|
1985
|
+
.g-footer section .notbyAI img {
|
1986
|
+
width: 100px;
|
1803
1987
|
}
|
1804
1988
|
|
1805
|
-
.
|
1806
|
-
|
1807
|
-
padding-top: 100px;
|
1808
|
-
z-index: 1000;
|
1809
|
-
position: fixed;
|
1810
|
-
left: 0;
|
1811
|
-
top: 0;
|
1812
|
-
width: 100%;
|
1813
|
-
height: 100%;
|
1814
|
-
background-color: rgba(0, 0, 0, 0.4);
|
1815
|
-
overflow: auto;
|
1816
|
-
}
|
1817
|
-
.modal .modal-content {
|
1818
|
-
background-color: #fff;
|
1819
|
-
margin: auto;
|
1820
|
-
min-width: 800px;
|
1821
|
-
max-width: 80%;
|
1822
|
-
padding: 30px;
|
1989
|
+
.tags-banner {
|
1990
|
+
height: 300px;
|
1823
1991
|
text-align: center;
|
1824
|
-
border-radius: 8px;
|
1825
1992
|
}
|
1826
|
-
.
|
1827
|
-
|
1993
|
+
.tags-banner h2 {
|
1994
|
+
font-size: 36px;
|
1995
|
+
line-height: 300px;
|
1828
1996
|
}
|
1829
|
-
|
1830
|
-
|
1831
|
-
|
1832
|
-
|
1833
|
-
top: 0;
|
1834
|
-
font-size: 30px;
|
1997
|
+
|
1998
|
+
.tags-content {
|
1999
|
+
width: 695px;
|
2000
|
+
margin: -100px auto 0;
|
1835
2001
|
}
|
1836
2002
|
|
1837
|
-
.
|
1838
|
-
|
1839
|
-
right: 20.8px;
|
1840
|
-
height: 48px;
|
1841
|
-
bottom: 75px;
|
1842
|
-
z-index: 1000;
|
1843
|
-
width: 48px;
|
1844
|
-
border: none;
|
1845
|
-
border-radius: 50%;
|
1846
|
-
box-shadow: 1px 2px 0 rgba(0, 0, 0, 0.1);
|
1847
|
-
cursor: pointer;
|
1848
|
-
visibility: hidden;
|
1849
|
-
padding: 0;
|
2003
|
+
.tags-list {
|
2004
|
+
padding: 40px 0;
|
1850
2005
|
}
|
1851
|
-
.
|
1852
|
-
|
1853
|
-
|
1854
|
-
|
1855
|
-
|
2006
|
+
.tags-list li {
|
2007
|
+
padding: 20px 20px;
|
2008
|
+
background-color: #fff;
|
2009
|
+
border: 1px solid #E7EAF1;
|
2010
|
+
border-radius: 3px;
|
2011
|
+
box-sizing: border-box;
|
2012
|
+
box-shadow: 0 1px 3px rgba(0, 37, 55, 0.06);
|
2013
|
+
margin-bottom: 12px;
|
1856
2014
|
}
|
1857
|
-
.
|
1858
|
-
|
2015
|
+
.tags-list li:first-child {
|
2016
|
+
margin-bottom: 24px;
|
2017
|
+
cursor: default;
|
2018
|
+
}
|
2019
|
+
.tags-list li .tag {
|
2020
|
+
box-shadow: 0 0 0.3px #BFC2C6;
|
2021
|
+
margin-bottom: 12px;
|
2022
|
+
white-space: nowrap;
|
2023
|
+
}
|
2024
|
+
.tags-list li .tag-name {
|
2025
|
+
display: block;
|
2026
|
+
font-size: 20px;
|
2027
|
+
color: #333;
|
2028
|
+
text-align: center;
|
2029
|
+
margin-bottom: 20px;
|
2030
|
+
}
|
2031
|
+
.tags-list li .tag-post {
|
2032
|
+
display: block;
|
2033
|
+
font-size: 16px;
|
2034
|
+
color: #666;
|
2035
|
+
text-align: center;
|
2036
|
+
margin: 16px auto;
|
1859
2037
|
}
|
1860
2038
|
|
1861
|
-
.
|
1862
|
-
background-color: #ebedf0;
|
1863
|
-
border-radius: 50%;
|
1864
|
-
bottom: 20.8px;
|
1865
|
-
box-shadow: 1px 2px 0 rgba(0, 0, 0, 0.1);
|
1866
|
-
height: 48px;
|
1867
|
-
opacity: 0;
|
2039
|
+
.np-banner {
|
1868
2040
|
position: fixed;
|
1869
|
-
|
1870
|
-
|
1871
|
-
|
1872
|
-
|
1873
|
-
|
1874
|
-
|
1875
|
-
border: none;
|
1876
|
-
cursor: pointer;
|
1877
|
-
}
|
1878
|
-
.bttb.active {
|
1879
|
-
opacity: 1;
|
1880
|
-
transform: scale(1);
|
1881
|
-
visibility: visible;
|
2041
|
+
top: 0;
|
2042
|
+
left: 0;
|
2043
|
+
width: 100%;
|
2044
|
+
height: 100%;
|
2045
|
+
padding: 0 !important;
|
2046
|
+
text-align: center;
|
1882
2047
|
}
|
1883
|
-
.
|
1884
|
-
|
1885
|
-
|
1886
|
-
|
2048
|
+
.np-banner h1 {
|
2049
|
+
font-size: 86px;
|
2050
|
+
letter-spacing: 4px;
|
2051
|
+
font-weight: normal;
|
2052
|
+
padding: 160px 0 20px;
|
1887
2053
|
}
|
1888
|
-
.
|
1889
|
-
|
2054
|
+
.np-banner .subheading {
|
2055
|
+
font-size: 18px;
|
1890
2056
|
}
|
1891
|
-
|
1892
|
-
:
|
1893
|
-
|
1894
|
-
|
2057
|
+
.np-banner .btn {
|
2058
|
+
display: block;
|
2059
|
+
width: 160px;
|
2060
|
+
height: 38px;
|
2061
|
+
font-size: 16px;
|
2062
|
+
color: #fff;
|
2063
|
+
line-height: 38px;
|
2064
|
+
border-radius: 3px;
|
2065
|
+
border: 1px solid #fff;
|
2066
|
+
margin: 80px auto 0;
|
2067
|
+
opacity: 0.8;
|
1895
2068
|
}
|
1896
2069
|
|
1897
2070
|
.year span {
|
@@ -1912,35 +2085,6 @@ a.extlinks::after {
|
|
1912
2085
|
margin-left: -5px;
|
1913
2086
|
}
|
1914
2087
|
|
1915
|
-
.table-of-contents {
|
1916
|
-
padding: 20px;
|
1917
|
-
border-left: 2px solid #efefef;
|
1918
|
-
width: 280px;
|
1919
|
-
position: -webkit-sticky;
|
1920
|
-
position: sticky;
|
1921
|
-
top: 100px;
|
1922
|
-
margin-bottom: 80px;
|
1923
|
-
height: fit-content;
|
1924
|
-
overflow: auto;
|
1925
|
-
max-height: 450px;
|
1926
|
-
}
|
1927
|
-
.table-of-contents h2 {
|
1928
|
-
color: #e32e00;
|
1929
|
-
}
|
1930
|
-
.table-of-contents ul {
|
1931
|
-
margin-left: 20px;
|
1932
|
-
list-style-type: revert;
|
1933
|
-
font-size: 14px;
|
1934
|
-
line-height: 24px;
|
1935
|
-
color: #005b81;
|
1936
|
-
}
|
1937
|
-
.table-of-contents ul a {
|
1938
|
-
color: #005b81;
|
1939
|
-
}
|
1940
|
-
.table-of-contents ul a.active {
|
1941
|
-
color: #e32e00;
|
1942
|
-
}
|
1943
|
-
|
1944
2088
|
.g-footer .links a {
|
1945
2089
|
color: #24292f;
|
1946
2090
|
position: relative;
|
@@ -1953,83 +2097,26 @@ a.extlinks::after {
|
|
1953
2097
|
.g-footer .links a:hover:before {
|
1954
2098
|
top: 0;
|
1955
2099
|
}
|
1956
|
-
.g-footer .links a:before {
|
1957
|
-
content: "";
|
1958
|
-
position: absolute;
|
1959
|
-
top: 80%;
|
1960
|
-
left: 0;
|
1961
|
-
right: 0;
|
1962
|
-
bottom: 0;
|
1963
|
-
background: rgba(20, 148, 251, 0.7);
|
1964
|
-
transition: top 0.2s cubic-bezier(0, 0.8, 0.13, 1);
|
1965
|
-
z-index: 1;
|
1966
|
-
}
|
1967
2100
|
.g-footer #busuanzi_value_site_pv, .g-footer #busuanzi_value_site_uv {
|
1968
2101
|
color: brown;
|
1969
2102
|
}
|
1970
2103
|
|
1971
|
-
.
|
1972
|
-
|
1973
|
-
color: #000;
|
1974
|
-
box-shadow: none !important;
|
1975
|
-
}
|
1976
|
-
.friends .frienddiv {
|
1977
|
-
height: 100px;
|
1978
|
-
width: 49%;
|
1979
|
-
display: inline-block !important;
|
1980
|
-
border-radius: 5px;
|
1981
|
-
background: 0 0;
|
1982
|
-
-webkit-transition: all ease-out 0.3s;
|
1983
|
-
-moz-transition: all ease-out 0.3s;
|
1984
|
-
-o-transition: all ease-out 0.3s;
|
1985
|
-
transition: all ease-out 0.3s;
|
1986
|
-
}
|
1987
|
-
.friends .frienddiv:hover {
|
1988
|
-
background: rgba(0, 0, 0, 0.03);
|
1989
|
-
}
|
1990
|
-
.friends .frienddivleft {
|
1991
|
-
width: 92px;
|
1992
|
-
float: left;
|
1993
|
-
margin-right: -5px;
|
1994
|
-
}
|
1995
|
-
.friends .frienddivleft .myfriend {
|
1996
|
-
width: 56px !important;
|
1997
|
-
height: 56px !important;
|
1998
|
-
border-radius: 50% !important;
|
1999
|
-
padding: 2px;
|
2000
|
-
margin-top: 20px !important;
|
2001
|
-
margin-left: 14px !important;
|
2002
|
-
background-color: #fff;
|
2003
|
-
box-shadow: 0 1px 4px rgba(100, 110, 120, 0.53);
|
2004
|
-
}
|
2005
|
-
.friends .frienddivright {
|
2006
|
-
margin-top: 27px;
|
2007
|
-
margin-right: 18px;
|
2008
|
-
}
|
2009
|
-
.friends .frienddivright .friendname {
|
2010
|
-
text-overflow: ellipsis;
|
2011
|
-
font-size: 100%;
|
2012
|
-
margin-bottom: 5px;
|
2013
|
-
color: var(--primary);
|
2014
|
-
}
|
2015
|
-
.friends .frienddivright .friendinfo {
|
2016
|
-
text-overflow: ellipsis;
|
2017
|
-
font-size: 70%;
|
2018
|
-
color: var(--primary);
|
2104
|
+
.premonition p {
|
2105
|
+
margin-bottom: 0;
|
2019
2106
|
}
|
2020
|
-
|
2021
2107
|
.premonition.note, .premonition.info, .premonition.warning, .premonition.error, .premonition.citation {
|
2022
2108
|
border-radius: 6.4px;
|
2023
|
-
padding:
|
2024
|
-
margin-bottom:
|
2109
|
+
padding: 1rem;
|
2110
|
+
margin-bottom: 1em;
|
2025
2111
|
}
|
2026
2112
|
.premonition.note {
|
2027
|
-
background-color: #
|
2028
|
-
border-left: 5px solid #
|
2029
|
-
color: #
|
2113
|
+
background-color: #eef9fd;
|
2114
|
+
border-left: 5px solid #3b8ba5;
|
2115
|
+
color: #3b8ba5;
|
2030
2116
|
}
|
2031
2117
|
.premonition.note code {
|
2032
|
-
color:
|
2118
|
+
background-color: rgba(84, 199, 236, 0.15);
|
2119
|
+
color: #3b8ba5 !important;
|
2033
2120
|
}
|
2034
2121
|
.premonition.info {
|
2035
2122
|
background-color: #e6f6e6;
|
@@ -2037,23 +2124,26 @@ a.extlinks::after {
|
|
2037
2124
|
color: #009400;
|
2038
2125
|
}
|
2039
2126
|
.premonition.info code {
|
2127
|
+
background-color: rgba(0, 164, 0, 0.15);
|
2040
2128
|
color: #009400 !important;
|
2041
2129
|
}
|
2042
2130
|
.premonition.warning {
|
2043
|
-
background-color: #
|
2044
|
-
border-left: 5px solid #
|
2045
|
-
color: #
|
2131
|
+
background-color: #fff8e6;
|
2132
|
+
border-left: 5px solid #e6a700;
|
2133
|
+
color: #e6a700;
|
2046
2134
|
}
|
2047
2135
|
.premonition.warning code {
|
2048
|
-
color:
|
2136
|
+
background-color: rgba(255, 186, 0, 0.15);
|
2137
|
+
color: #e6a700 !important;
|
2049
2138
|
}
|
2050
2139
|
.premonition.error {
|
2051
2140
|
background-color: #fdf7f7;
|
2052
|
-
border-left: 5px solid #
|
2053
|
-
color: #
|
2141
|
+
border-left: 5px solid #e13238;
|
2142
|
+
color: #e13238;
|
2054
2143
|
}
|
2055
2144
|
.premonition.error code {
|
2056
|
-
color:
|
2145
|
+
background-color: rgba(250, 56, 62, 0.15);
|
2146
|
+
color: #e13238 !important;
|
2057
2147
|
}
|
2058
2148
|
.premonition.citation {
|
2059
2149
|
background-color: #f8f9fa;
|
@@ -2061,16 +2151,16 @@ a.extlinks::after {
|
|
2061
2151
|
color: #495057;
|
2062
2152
|
}
|
2063
2153
|
.premonition.citation code {
|
2154
|
+
background-color: #fdfdfe;
|
2064
2155
|
color: #495057 !important;
|
2065
2156
|
}
|
2066
2157
|
.premonition.citation .ref {
|
2067
2158
|
text-align: right;
|
2068
|
-
margin-bottom: 10px;
|
2069
2159
|
}
|
2070
2160
|
.premonition .header {
|
2071
2161
|
font-weight: 700;
|
2072
2162
|
line-height: 17.5px;
|
2073
|
-
margin-bottom:
|
2163
|
+
margin-bottom: 0.3rem;
|
2074
2164
|
}
|
2075
2165
|
.premonition code {
|
2076
2166
|
text-shadow: none;
|
@@ -2089,23 +2179,20 @@ a.extlinks::after {
|
|
2089
2179
|
color: #fff;
|
2090
2180
|
}
|
2091
2181
|
.night-mode .premonition.note {
|
2092
|
-
background-color: #
|
2182
|
+
background-color: #193c47;
|
2093
2183
|
}
|
2094
2184
|
.night-mode .premonition.info {
|
2095
|
-
background-color: #
|
2185
|
+
background-color: #003100;
|
2096
2186
|
}
|
2097
2187
|
.night-mode .premonition.warning {
|
2098
|
-
background-color: #
|
2188
|
+
background-color: #4d3800;
|
2099
2189
|
}
|
2100
2190
|
.night-mode .premonition.error {
|
2101
|
-
background-color: #
|
2191
|
+
background-color: #4b1113;
|
2102
2192
|
}
|
2103
2193
|
.night-mode .premonition.citation {
|
2104
2194
|
background-color: #323940;
|
2105
2195
|
}
|
2106
|
-
.night-mode .premonition.citation code {
|
2107
|
-
color: #848e97 !important;
|
2108
|
-
}
|
2109
2196
|
|
2110
2197
|
@media screen and (min-width: 1920px) {
|
2111
2198
|
.home-banner {
|
@@ -2149,6 +2236,9 @@ a.extlinks::after {
|
|
2149
2236
|
.g-sidebar-wrapper {
|
2150
2237
|
display: none;
|
2151
2238
|
}
|
2239
|
+
.g-footer .g-container {
|
2240
|
+
margin: auto 20px;
|
2241
|
+
}
|
2152
2242
|
.post-wrapper {
|
2153
2243
|
width: auto;
|
2154
2244
|
padding: 30px;
|
@@ -2212,6 +2302,15 @@ a.extlinks::after {
|
|
2212
2302
|
width: auto;
|
2213
2303
|
}
|
2214
2304
|
}
|
2305
|
+
@media screen and (max-width: 810px) {
|
2306
|
+
.g-footer .g-container {
|
2307
|
+
flex-direction: column;
|
2308
|
+
}
|
2309
|
+
.g-footer .g-container .g-left, .g-footer .g-container .g-right {
|
2310
|
+
width: auto;
|
2311
|
+
text-align: center;
|
2312
|
+
}
|
2313
|
+
}
|
2215
2314
|
@media screen and (max-width: 768px) {
|
2216
2315
|
.post-wrapper, .markdown-body, .read-next {
|
2217
2316
|
width: auto;
|
@@ -2322,7 +2421,7 @@ a.extlinks::after {
|
|
2322
2421
|
.home-content {
|
2323
2422
|
margin-top: 0;
|
2324
2423
|
}
|
2325
|
-
.article-list, .tags-content {
|
2424
|
+
.article-list, .tags-content, .g-footer .g-left, .g-footer .g-right {
|
2326
2425
|
width: 100%;
|
2327
2426
|
}
|
2328
2427
|
.tags-content {
|
@@ -2489,10 +2588,6 @@ a.extlinks::after {
|
|
2489
2588
|
.night-mode .bttb:hover {
|
2490
2589
|
background-color: #606770;
|
2491
2590
|
}
|
2492
|
-
.table-of-contents ul a:hover {
|
2493
|
-
color: #e32e00 !important;
|
2494
|
-
text-decoration: underline;
|
2495
|
-
}
|
2496
2591
|
}
|
2497
2592
|
|
2498
2593
|
/*# sourceMappingURL=app.min.css.map*/
|