jekyll-theme-h2o-ac 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (46) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +21 -0
  3. data/README.md +73 -0
  4. data/_config.yml +100 -0
  5. data/_includes/anchor.html +41 -0
  6. data/_includes/footer.html +15 -0
  7. data/_includes/head.html +18 -0
  8. data/_includes/header.html +16 -0
  9. data/_includes/mathjax.html +20 -0
  10. data/_includes/pageNav.html +18 -0
  11. data/_includes/post-head.html +25 -0
  12. data/_layouts/default.html +16 -0
  13. data/_layouts/page.html +93 -0
  14. data/_layouts/post.html +167 -0
  15. data/assets/css/app.min.css +1 -0
  16. data/assets/css/plugins.min.css +1 -0
  17. data/assets/fonts/Merriweather-Black.ttf +0 -0
  18. data/assets/fonts/Merriweather-Light.ttf +0 -0
  19. data/assets/fonts/Merriweather-Regular.ttf +0 -0
  20. data/assets/fonts/iconfont.eot +0 -0
  21. data/assets/fonts/iconfont.svg +88 -0
  22. data/assets/fonts/iconfont.ttf +0 -0
  23. data/assets/fonts/iconfont.woff +0 -0
  24. data/assets/icons/author.svg +1 -0
  25. data/assets/icons/date.svg +1 -0
  26. data/assets/icons/logo.svg +20 -0
  27. data/assets/icons/logo_default.svg +15 -0
  28. data/assets/icons/logo_pink.svg +15 -0
  29. data/assets/img/hero.jpg +0 -0
  30. data/assets/img/profile.png +0 -0
  31. data/assets/img/profile.webp +0 -0
  32. data/assets/js/index.min.js +1 -0
  33. data/assets/js/prism.js +279 -0
  34. data/assets/js/social-share.min.js +1 -0
  35. data/assets/js/util.js +16 -0
  36. data/dev/js/index.js +248 -0
  37. data/dev/sass/app.css +1114 -0
  38. data/dev/sass/app.scss +8 -0
  39. data/dev/sass/base.scss +46 -0
  40. data/dev/sass/common.scss +918 -0
  41. data/dev/sass/github-markdown.css +636 -0
  42. data/dev/sass/helper.scss +240 -0
  43. data/dev/sass/layouts.scss +297 -0
  44. data/dev/sass/prism.css +3 -0
  45. data/dev/sass/share.min.css +1 -0
  46. metadata +101 -0
data/dev/sass/app.css ADDED
@@ -0,0 +1,1114 @@
1
+ @charset "UTF-8";
2
+ /**
3
+ * Jekyll Theme Style
4
+ * - author: liaokeyu (liaokeyu.com)
5
+ */
6
+ /*** Parameters ***/
7
+ /*** Mixins ***/
8
+ /** Font **/
9
+ @font-face {
10
+ font-family: "Merriweather";
11
+ src: url("../fonts/Merriweather-Regular.ttf"); }
12
+
13
+ @font-face {
14
+ font-family: "Merriweather-Light";
15
+ src: url("../fonts/Merriweather-Light.ttf"); }
16
+
17
+ /*** Base ***/
18
+ html, body {
19
+ height: 100%; }
20
+
21
+ html, body, div, span, h1, h2, h3, h4, h5, h6, p, ol, ul, li, textarea,
22
+ form, label, legend, table, caption, menu, nav, section, summary,
23
+ time, mark, audio, video, iframe, main, header, footer {
24
+ padding: 0;
25
+ margin: 0;
26
+ border: 0;
27
+ outline: 0 none; }
28
+
29
+ body {
30
+ font-family: -apple-system, Verdana, "PingFang SC", "Helvetica Neue", "Arial", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
31
+ color: #656565;
32
+ -webkit-font-smoothing: antialiased;
33
+ background-color: #F7F8FA; }
34
+
35
+ ul {
36
+ list-style-type: none; }
37
+
38
+ a {
39
+ color: #4E4E4E;
40
+ text-decoration: none;
41
+ cursor: pointer;
42
+ transition: .2s; }
43
+
44
+ ::selection {
45
+ background-color: rgba(0, 147, 254, 0.2); }
46
+
47
+ ::-moz-selection {
48
+ background-color: rgba(0, 147, 254, 0.2); }
49
+
50
+ ::-webkit-selection {
51
+ background-color: rgba(0, 147, 254, 0.2); }
52
+
53
+ /*** Main style ***/
54
+ .g-container {
55
+ width: 960px; }
56
+
57
+ .g-header {
58
+ position: fixed;
59
+ top: 0;
60
+ left: 0;
61
+ width: 100%;
62
+ height: 26px;
63
+ padding: 16px 0;
64
+ background-color: transparent;
65
+ transition: all .6s;
66
+ z-index: 1000; }
67
+ .g-header .g-logo {
68
+ float: left;
69
+ margin-left: 2%;
70
+ width: 60px;
71
+ height: 26px;
72
+ background: url("../icons/logo.svg") no-repeat center;
73
+ background-size: 100% 100%;
74
+ opacity: .8;
75
+ transition: all .2s; }
76
+ .g-header .g-logo:hover {
77
+ opacity: 1; }
78
+ .g-header .g-logo a {
79
+ display: block;
80
+ width: 100%;
81
+ height: 100%; }
82
+ .g-header .icon-menu {
83
+ display: none;
84
+ position: absolute;
85
+ top: 22px;
86
+ right: 0;
87
+ padding: 8px;
88
+ font-size: 28px;
89
+ color: #fff;
90
+ opacity: .8;
91
+ border-radius: 3px; }
92
+ .g-header .icon-menu:active {
93
+ background-color: rgba(255, 255, 255, 0.2); }
94
+ .g-header .g-nav {
95
+ float: right;
96
+ margin-right: 2%; }
97
+ .g-header .g-nav > ul > li {
98
+ float: left;
99
+ height: 26px;
100
+ line-height: 26px;
101
+ text-transform: uppercase;
102
+ margin-right: 18px; }
103
+ .g-header .g-nav > ul > li:last-child {
104
+ margin-right: 0; }
105
+ .g-header .g-nav > ul > li > a {
106
+ display: inline-block;
107
+ font-size: 14px;
108
+ letter-spacing: 1px;
109
+ color: #fff;
110
+ padding: 0 12px;
111
+ opacity: .7; }
112
+ .g-header .g-nav > ul > li > a:hover {
113
+ opacity: 1; }
114
+ .g-header .nav-default a:hover {
115
+ color: #1494FB !important; }
116
+ .g-header .nav-pink a:hover {
117
+ color: #FC6794 !important; }
118
+
119
+ .headerUp {
120
+ top: -65px; }
121
+
122
+ .headerDown {
123
+ top: 0; }
124
+
125
+ .g-banner {
126
+ height: 460px;
127
+ background-color: #2F3139;
128
+ color: #fff;
129
+ padding: 0 60px; }
130
+
131
+ .home-banner {
132
+ position: relative;
133
+ text-align: center;
134
+ overflow: hidden;
135
+ box-shadow: 0 4px 20px rgba(0, 38, 55, 0.16); }
136
+ .home-banner h2, .home-banner h3 {
137
+ position: relative;
138
+ z-index: 1;
139
+ text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2); }
140
+ .home-banner h2 {
141
+ padding-top: 190px;
142
+ line-height: 38px;
143
+ font-size: 42px;
144
+ font-family: 'Microsoft YaHei', 'Arial', 'Hiragino Sans GB', 'WenQuanYi Micro Hei', sans-serif;
145
+ font-weight: bold;
146
+ line-height: 52px; }
147
+ .home-banner h3 {
148
+ font-size: 20px;
149
+ font-weight: 400;
150
+ margin-top: 8px; }
151
+
152
+ .banner-theme-default {
153
+ background: -webkit-linear-gradient(0deg, #3CD5FF, #007AFF);
154
+ background: -o-linear-gradient(0deg, #3CD5FF, #007AFF);
155
+ background: -moz-linear-gradient(0deg, #3CD5FF, #007AFF);
156
+ background: linear-gradient(100deg, #3CD5FF, #007AFF); }
157
+
158
+ .banner-theme-pink {
159
+ background: -webkit-linear-gradient(0deg, #FFCE69, #FA709A);
160
+ background: -o-linear-gradient(0deg, #FFCE69, #FA709A);
161
+ background: -moz-linear-gradient(0deg, #FFCE69, #FA709A);
162
+ background: linear-gradient(100deg, #FFCE69, #FA709A); }
163
+
164
+ .themeColor-default {
165
+ background-color: #1494FB; }
166
+
167
+ .themeColor-pink {
168
+ background-color: #FC6794; }
169
+
170
+ .home-content {
171
+ margin: 40px auto 60px; }
172
+ .home-content:before, .home-content:after {
173
+ content: '';
174
+ display: table; }
175
+ .home-content:after {
176
+ clear: both; }
177
+
178
+ .article-list {
179
+ float: left;
180
+ width: 695px; }
181
+ .article-list .article-item {
182
+ width: 100%;
183
+ margin-bottom: 16px;
184
+ padding: 30px 20px;
185
+ background-color: #fff;
186
+ border: 1px solid #E7EAF1;
187
+ border-radius: 3px;
188
+ box-sizing: border-box;
189
+ box-shadow: 0 1px 3px rgba(0, 37, 55, 0.06); }
190
+ .article-list .article-item:last-child {
191
+ margin-bottom: 0; }
192
+ .article-list .article-item .post-link {
193
+ position: absolute;
194
+ top: 0;
195
+ left: 0;
196
+ width: 100%;
197
+ height: 100%; }
198
+ .article-list .article-item .post-cover {
199
+ position: relative;
200
+ width: 100%;
201
+ max-height: 300px;
202
+ margin-bottom: 14px;
203
+ overflow: hidden; }
204
+ .article-list .article-item .post-cover img {
205
+ width: 100%;
206
+ vertical-align: middle; }
207
+ .article-list .article-item .post-preview {
208
+ position: relative; }
209
+ .article-list .article-item .post-preview .post-title {
210
+ font-family: "Merriweather", -apple-system, Verdana, "PingFang SC", "Helvetica Neue", "Arial", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
211
+ color: #4E4E4E;
212
+ font-size: 24px;
213
+ line-height: 32px; }
214
+ .article-list .article-item .post-preview .post-subtitle {
215
+ margin-top: 3px;
216
+ font-size: 18px;
217
+ font-weight: normal;
218
+ color: #B8BDC3;
219
+ line-height: 26px; }
220
+ .article-list .article-item .post-preview .post-excerpt {
221
+ margin-top: 8px;
222
+ font-size: 16px;
223
+ font-family: "Merriweather", -apple-system, Verdana, "PingFang SC", "Helvetica Neue", "Arial", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
224
+ line-height: 26px;
225
+ word-break: break-all;
226
+ color: #b8bdc3; }
227
+ .article-list .article-item .post-meta {
228
+ height: 22px;
229
+ margin-top: 16px; }
230
+ .article-list .article-item .post-meta .post-tags {
231
+ float: left;
232
+ display: inline-block; }
233
+ .article-list .article-item .post-meta .post-date {
234
+ float: right;
235
+ color: #A9B0BC;
236
+ display: inline-block;
237
+ font-size: 14px;
238
+ letter-spacing: .6px;
239
+ line-height: 22px; }
240
+ .article-list .article-item .post-meta .post-date:before {
241
+ position: relative;
242
+ top: 2px;
243
+ left: -6px;
244
+ content: '';
245
+ float: left;
246
+ display: inline-block;
247
+ width: 18px;
248
+ height: 18px;
249
+ background: url("../icons/date.svg") no-repeat center;
250
+ background-size: 100%; }
251
+
252
+ .author-card {
253
+ text-align: center; }
254
+ .author-card .avatar {
255
+ width: 70px;
256
+ height: 70px;
257
+ border-radius: 50%;
258
+ margin: 0 auto;
259
+ overflow: hidden;
260
+ box-shadow: 0 1px 4px rgba(100, 110, 120, 0.53); }
261
+ .author-card .avatar img {
262
+ width: 100%; }
263
+ .author-card .author-name {
264
+ width: 100%;
265
+ font-size: 16px;
266
+ color: #4E4E4E;
267
+ font-weight: 500;
268
+ margin: 12px 0 6px; }
269
+ .author-card .bio p {
270
+ font-size: 14px;
271
+ line-height: 20px; }
272
+ .author-card .sns-links {
273
+ margin-top: 14px;
274
+ cursor: default; }
275
+ .author-card .sns-links li {
276
+ position: relative;
277
+ display: inline-block;
278
+ width: 26px;
279
+ height: 26px;
280
+ overflow: hidden; }
281
+ .author-card .sns-links li a {
282
+ display: inline-block; }
283
+ .author-card .sns-links li .iconfont {
284
+ font-size: 22px;
285
+ line-height: 30px; }
286
+ .author-card .sns-links li .iconfont {
287
+ color: #B8BDC3;
288
+ transition: .2s; }
289
+ .author-card .sns-links li .iconfont:hover {
290
+ color: #7B848F; }
291
+ .author-card .sns-links li .icon {
292
+ color: #B8BDC3;
293
+ transition: .2s;
294
+ width: 22px;
295
+ height: 22px;
296
+ line-height: 30px;
297
+ vertical-align: -0.15em;
298
+ fill: currentColor;
299
+ overflow: hidden;
300
+ filter: grayscale(100%);
301
+ -webkit-filter: grayscale(100%);
302
+ -moz-filter: grayscale(100%);
303
+ -ms-filter: grayscale(100%); }
304
+ .author-card .sns-links li .icon:hover {
305
+ color: #7B848F;
306
+ filter: none;
307
+ -webkit-filter: none;
308
+ -moz-filter: none;
309
+ -ms-filter: none; }
310
+ .author-card .sns-links li .icon-weibo:hover {
311
+ color: #F85555; }
312
+ .author-card .sns-links li .icon-zhihu:hover {
313
+ color: #1892F5; }
314
+ .author-card .sns-links li .icon-twitter:hover {
315
+ color: #39A6F8; }
316
+ .author-card .sns-links li .icon-instagram:hover {
317
+ color: #D92580; }
318
+ .author-card .sns-links li .icon-juejin:hover {
319
+ color: #1682FC; }
320
+ .author-card .sns-links li .icon-douban:hover {
321
+ color: #2E963D; }
322
+ .author-card .sns-links li .icon-github:hover {
323
+ color: #575757; }
324
+ .author-card .sns-links li .icon-facebook:hover {
325
+ color: #3D5A9A; }
326
+ .author-card .sns-links li .icon-dribbble:hover {
327
+ color: #F26798; }
328
+ .author-card .sns-links li .icon-jianshu:hover {
329
+ color: #EA6F5A; }
330
+ .author-card .sns-links li .icon-uicn:hover {
331
+ color: #3498DB; }
332
+ .author-card .sns-links li .icon-linkedin:hover {
333
+ color: #3181BE; }
334
+ .author-card .sns-links li .icon-medium:hover {
335
+ color: #0BE370; }
336
+ .author-card .sns-links li .icon-youtube:hover {
337
+ color: #FF2600; }
338
+ .author-card .sns-links li .icon-behance:hover {
339
+ color: #0057ff; }
340
+ .author-card .sns-links li .icon-vk:hover {
341
+ color: #5181b8; }
342
+
343
+ .article-item .post-meta .post-tag, .tags-card .tag, .tags-content .tag {
344
+ display: inline-block;
345
+ width: auto;
346
+ height: 22px;
347
+ padding: 0 8px;
348
+ font-size: 14px;
349
+ color: #A6ABB2;
350
+ font-family: -apple-system, Verdana, "PingFang SC", "Helvetica Neue", "Arial", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
351
+ line-height: 22px;
352
+ box-sizing: border-box;
353
+ box-shadow: 0 0 .6px #D5DAE1;
354
+ border-radius: 2px;
355
+ background-color: #FAFAFA;
356
+ cursor: pointer;
357
+ margin-right: 2px;
358
+ transition: .2s; }
359
+ .article-item .post-meta .post-tag:last-child, .tags-card .tag:last-child, .tags-content .tag:last-child {
360
+ margin-right: 0; }
361
+ .article-item .post-meta .post-tag:hover, .tags-card .tag:hover, .tags-content .tag:hover {
362
+ color: #83888F; }
363
+
364
+ .tags-card .links {
365
+ width: 100%;
366
+ font-size: 16px;
367
+ color: #4e4e4e;
368
+ font-weight: 500;
369
+ margin: 12px 0 6px;
370
+ text-align: center; }
371
+
372
+ .g-sidebar-wrapper {
373
+ float: right;
374
+ width: 240px; }
375
+
376
+ .g-sidebar {
377
+ padding: 30px 20px;
378
+ background-color: #fff;
379
+ border: 1px solid #E7EAF1;
380
+ border-radius: 3px;
381
+ box-sizing: border-box;
382
+ box-shadow: 0 1px 3px rgba(0, 37, 55, 0.06); }
383
+ .g-sidebar section {
384
+ padding: 30px 0;
385
+ border-bottom: 1px solid #E7EAF1; }
386
+ .g-sidebar section:first-child {
387
+ padding-top: 0; }
388
+ .g-sidebar section:last-child {
389
+ border-bottom: none;
390
+ padding-bottom: 0; }
391
+ .g-sidebar section .tag {
392
+ margin-bottom: 8px; }
393
+
394
+ .search-card {
395
+ position: relative;
396
+ margin-top: 16px;
397
+ padding: 0; }
398
+ .search-card input, .search-card .search_item {
399
+ font-size: 16px;
400
+ color: #4E4E4E; }
401
+ .search-card input {
402
+ padding: 30px 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);
408
+ position: relative;
409
+ padding: 12px 46px 12px 18px;
410
+ margin: 0;
411
+ width: 100%;
412
+ background-color: #fff;
413
+ outline: none;
414
+ z-index: 1; }
415
+ .search-card ::-webkit-input-placeholder {
416
+ color: #9EA8B3; }
417
+ .search-card :-moz-placeholder {
418
+ /* Mozilla Firefox 4 to 18 */
419
+ color: #9EA8B3; }
420
+ .search-card ::-moz-placeholder {
421
+ /* Mozilla Firefox 19+ */
422
+ color: #9EA8B3; }
423
+ .search-card .icon-search {
424
+ position: absolute;
425
+ top: 10px;
426
+ right: 18px;
427
+ font-size: 26px;
428
+ color: #CAD3DC;
429
+ transition: .2s;
430
+ z-index: 1; }
431
+ .search-card .icon {
432
+ position: absolute;
433
+ top: 13px;
434
+ right: 18px;
435
+ color: #CAD3DC;
436
+ z-index: 1;
437
+ width: 20px;
438
+ height: 20px;
439
+ vertical-align: -0.15em;
440
+ fill: currentColor;
441
+ overflow: hidden; }
442
+ .search-card .search_result {
443
+ position: relative;
444
+ margin-top: -2px;
445
+ background-color: #fff;
446
+ border-radius: 0 0 4px 4px;
447
+ z-index: 0; }
448
+ .search-card .search_item {
449
+ padding: 6px 18px;
450
+ margin-bottom: 0;
451
+ width: 100%;
452
+ display: block;
453
+ overflow: hidden;
454
+ text-overflow: ellipsis;
455
+ white-space: nowrap;
456
+ border-left: 1px solid #E7EAF1;
457
+ border-right: 1px solid #E7EAF1;
458
+ box-sizing: border-box;
459
+ opacity: .8;
460
+ transition: .2s; }
461
+ .search-card .search_item:first-child {
462
+ padding-top: 14px; }
463
+ .search-card .search_item:last-child {
464
+ padding-bottom: 14px;
465
+ border-radius: 0 0 4px 4px;
466
+ border-bottom: 1px solid #E7EAF1; }
467
+ .search-card .search_item:hover {
468
+ opacity: 1;
469
+ background-color: #FAFAFA; }
470
+
471
+ .pagination {
472
+ float: left;
473
+ position: relative;
474
+ left: 50%;
475
+ margin: 8px auto 0; }
476
+ .pagination .page-links {
477
+ position: relative;
478
+ left: -50%;
479
+ border: 1px solid #E7EAF1;
480
+ border-radius: 3px;
481
+ background-color: #fff;
482
+ padding: 0 8px;
483
+ overflow: auto;
484
+ box-shadow: 0 1px 3px rgba(0, 37, 55, 0.06); }
485
+ .pagination .page-link {
486
+ display: block;
487
+ float: left;
488
+ width: 34px;
489
+ height: 34px;
490
+ margin: 6px;
491
+ font-size: 16px;
492
+ color: #A9B0BC;
493
+ line-height: 34px;
494
+ text-align: center;
495
+ border-radius: 2px;
496
+ cursor: pointer; }
497
+ .pagination .page-link:hover {
498
+ color: #8F98AA;
499
+ background-color: #EEF0F4; }
500
+ .pagination .active {
501
+ color: #8F98AA;
502
+ background-color: #EEF0F4; }
503
+ .pagination #page-link-container {
504
+ display: inline-block;
505
+ float: left; }
506
+
507
+ .g-footer {
508
+ min-height: 40px;
509
+ padding: 20px 0;
510
+ border-top: 1px solid #E7EAF1;
511
+ text-align: center; }
512
+ .g-footer section {
513
+ font-size: 14px;
514
+ line-height: 20px;
515
+ color: #4E4E4E; }
516
+ .g-footer section a {
517
+ color: #4E4E4E; }
518
+ .g-footer section a:hover {
519
+ color: #83888F; }
520
+
521
+ .post-header, .markdown-body, .post-wrapper, .author-detail, .social-share-wrapper {
522
+ margin: 0 auto; }
523
+
524
+ .post-wrapper {
525
+ width: 720px; }
526
+
527
+ .post-header {
528
+ position: relative;
529
+ padding: 0;
530
+ margin: 0;
531
+ color: #fff;
532
+ overflow: hidden;
533
+ background-color: #4285f4;
534
+ z-index: 0; }
535
+ .post-header h1 {
536
+ font-size: 32px;
537
+ line-height: 42px;
538
+ margin-bottom: 12px; }
539
+ .post-header .post-tags {
540
+ margin: 150px 0 16px; }
541
+ .post-header .post-tags .post-tag {
542
+ display: inline-block;
543
+ width: auto;
544
+ height: 22px;
545
+ padding: 0 8px;
546
+ font-size: 14px;
547
+ color: #A6ABB2;
548
+ font-family: -apple-system, Verdana, "PingFang SC", "Helvetica Neue", "Arial", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
549
+ line-height: 22px;
550
+ box-sizing: border-box;
551
+ box-shadow: 0 0 .6px #D5DAE1;
552
+ border-radius: 2px;
553
+ background-color: #FAFAFA;
554
+ cursor: pointer;
555
+ margin-right: 2px;
556
+ transition: .2s;
557
+ color: #fff;
558
+ background-color: rgba(255, 255, 255, 0.26);
559
+ box-shadow: none;
560
+ margin-bottom: 8px; }
561
+ .post-header .post-tags .post-tag:last-child {
562
+ margin-right: 0; }
563
+ .post-header .post-tags .post-tag:hover {
564
+ color: #83888F; }
565
+ .post-header .post-tags .post-tag:hover {
566
+ color: #fff;
567
+ background-color: rgba(255, 255, 255, 0.4); }
568
+ .post-header .post-meta {
569
+ margin-top: 32px; }
570
+ .post-header .post-meta .post-meta-item {
571
+ display: inline-block;
572
+ font-size: 16px;
573
+ color: #fff;
574
+ margin-right: 4px;
575
+ opacity: .8; }
576
+ .post-header .post-meta .post-meta-item:last-child {
577
+ margin-right: 0; }
578
+ .post-header .post-meta .post-meta-item .iconfont {
579
+ font-size: 18px;
580
+ margin-right: 4px; }
581
+ .post-header .post-meta .post-meta-item a {
582
+ color: #fff; }
583
+ .post-header .filter {
584
+ position: absolute;
585
+ content: '';
586
+ top: 0;
587
+ left: 0;
588
+ width: 100%;
589
+ height: 100%;
590
+ background-color: #000;
591
+ opacity: .3;
592
+ z-index: -1; }
593
+ .post-header .post-cover {
594
+ position: absolute;
595
+ top: 0;
596
+ left: 0;
597
+ width: 100%;
598
+ height: 100%;
599
+ z-index: -2; }
600
+
601
+ .bgcolor-default {
602
+ background-color: #1494FB; }
603
+
604
+ .bgcolor-pink {
605
+ background-color: #FC6794; }
606
+
607
+ .post-no-cover {
608
+ height: 360px; }
609
+ .post-no-cover .post-tags {
610
+ margin-top: 100px; }
611
+
612
+ .post-pattern-circuitBoard {
613
+ background-image: url("data:image/svg+xml,%3Csvg width='304' height='304' viewBox='0 0 304 304' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M44.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' fill='%23f8f6fb' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E"); }
614
+
615
+ .post-pattern-overlappingCircles {
616
+ background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M50 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' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
617
+
618
+ .post-pattern-food {
619
+ background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260' viewBox='0 0 260 260'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M24.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'/%3E%3Cpath id='path6_fill-copy' d='M284.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'/%3E%3Cpath d='M159.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'/%3E%3Cpath d='M39 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'/%3E%3Cpath d='M129 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'/%3E%3Cpath d='M212 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'/%3E%3Cpath d='M-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'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
620
+
621
+ .post-pattern-glamorous {
622
+ background-image: url("data:image/svg+xml,%3Csvg width='180' height='180' viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M81.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' fill='%23ffffff' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E"); }
623
+
624
+ .post-pattern-ticTacToe {
625
+ background-image: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 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' fill='%23ffffff' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E"); }
626
+
627
+ .post-pattern-seaOfClouds {
628
+ background-image: url("data:image/svg+xml,%3Csvg width='56' height='28' viewBox='0 0 56 28' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M56 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' fill='%23ffffff' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E"); }
629
+
630
+ .post-content {
631
+ position: relative;
632
+ width: 100%;
633
+ background-color: #fff;
634
+ overflow: hidden;
635
+ padding: 40px 0 80px; }
636
+ .post-content .post-subtitle {
637
+ position: relative;
638
+ width: 720px;
639
+ font-size: 18px;
640
+ color: #a6a6a6;
641
+ font-weight: normal;
642
+ line-height: 28px;
643
+ text-align: center;
644
+ padding: 35px 0;
645
+ margin: 0 auto 40px;
646
+ box-sizing: border-box; }
647
+ .post-content .post-subtitle:before, .post-content .post-subtitle:after {
648
+ position: absolute;
649
+ content: '';
650
+ left: 50%;
651
+ margin-left: -13%;
652
+ width: 26%;
653
+ height: 2px;
654
+ background-color: #EAECEE; }
655
+ .post-content .post-subtitle:before {
656
+ top: 0; }
657
+ .post-content .post-subtitle:after {
658
+ bottom: 0; }
659
+
660
+ .markdown-body {
661
+ font-family: "Merriweather", -apple-system, Verdana, "PingFang SC", "Helvetica Neue", "Arial", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
662
+ width: 720px;
663
+ box-sizing: border-box;
664
+ padding: 0 0 32px; }
665
+ .markdown-body .highlight {
666
+ margin: 0 0 16px;
667
+ /** overflow: scroll; 修复代码高亮 显示两个 scroll的问题 **/ }
668
+ .markdown-body img {
669
+ transition: .3s; }
670
+ .markdown-body ul li p, .markdown-body ol li p {
671
+ margin: 0; }
672
+ .markdown-body ul li p:first-child, .markdown-body ol li p:first-child {
673
+ margin-bottom: 0; }
674
+
675
+ .social-share-wrapper {
676
+ float: left;
677
+ position: relative;
678
+ left: 50%; }
679
+ .social-share-wrapper .social-share {
680
+ position: relative;
681
+ left: -50%; }
682
+
683
+ .post-footer-item {
684
+ margin: 0 auto;
685
+ width: 720px; }
686
+
687
+ .author-detail {
688
+ position: relative;
689
+ top: -35px; }
690
+ .author-detail .comment {
691
+ margin-bottom: 60px; }
692
+
693
+ .read-next {
694
+ display: flex;
695
+ width: 720px;
696
+ margin: 60px auto; }
697
+
698
+ .read-next-item {
699
+ position: relative;
700
+ flex: 1;
701
+ height: 260px;
702
+ padding: 0;
703
+ top: 0;
704
+ background-color: #AAB4CA;
705
+ border-radius: 3px;
706
+ overflow: hidden;
707
+ box-shadow: 0 2px 10px rgba(109, 127, 144, 0.5);
708
+ transition: box-shadow .4s ease, top .3s ease; }
709
+ .read-next-item:first-child {
710
+ margin-right: 10px; }
711
+ .read-next-item:hover {
712
+ top: -5px;
713
+ box-shadow: 0 8px 20px rgba(52, 61, 70, 0.3); }
714
+ .read-next-item .read-next-link {
715
+ position: absolute;
716
+ top: 0;
717
+ left: 0;
718
+ width: 100%;
719
+ height: 100%;
720
+ z-index: 3; }
721
+ .read-next-item section {
722
+ display: none;
723
+ position: relative;
724
+ width: 80%;
725
+ margin-left: 10%;
726
+ margin-top: 45px;
727
+ color: #fff;
728
+ z-index: 2; }
729
+ .read-next-item section span {
730
+ font-size: 22px;
731
+ font-weight: bold;
732
+ margin: 0; }
733
+ .read-next-item section p {
734
+ margin-top: 8px;
735
+ font-size: 15px;
736
+ line-height: 22px;
737
+ opacity: .8; }
738
+ .read-next-item .filter {
739
+ position: absolute;
740
+ top: 0;
741
+ left: 0;
742
+ width: 100%;
743
+ height: 100%;
744
+ background-color: rgba(0, 0, 0, 0.22);
745
+ z-index: 1;
746
+ transition: .3s linear; }
747
+ .read-next-item img {
748
+ display: none;
749
+ position: absolute;
750
+ top: 0;
751
+ left: 0;
752
+ width: 100%;
753
+ -webkit-filter: blur(6px);
754
+ z-index: 0; }
755
+
756
+ .tags-banner {
757
+ height: 300px;
758
+ text-align: center; }
759
+ .tags-banner h2 {
760
+ font-size: 36px;
761
+ line-height: 300px; }
762
+
763
+ .tags-content {
764
+ width: 695px;
765
+ margin: -100px auto 0; }
766
+
767
+ .tags-list {
768
+ padding: 40px 0; }
769
+ .tags-list li {
770
+ padding: 30px 20px;
771
+ background-color: #fff;
772
+ border: 1px solid #E7EAF1;
773
+ border-radius: 3px;
774
+ box-sizing: border-box;
775
+ box-shadow: 0 1px 3px rgba(0, 37, 55, 0.06);
776
+ margin-bottom: 12px; }
777
+ .tags-list li:first-child {
778
+ margin-bottom: 24px;
779
+ cursor: default; }
780
+ .tags-list li .tag {
781
+ box-shadow: 0 0 .3px #BFC2C6;
782
+ margin-bottom: 12px; }
783
+ .tags-list li .tag-name {
784
+ display: block;
785
+ font-size: 20px;
786
+ color: #333;
787
+ text-align: center;
788
+ margin-bottom: 20px; }
789
+ .tags-list li .tag-post {
790
+ display: block;
791
+ font-size: 16px;
792
+ color: #666;
793
+ text-align: center;
794
+ margin: 16px auto; }
795
+ .tags-list li .tag-post:hover {
796
+ color: #000; }
797
+
798
+ .np-banner {
799
+ position: fixed;
800
+ top: 0;
801
+ left: 0;
802
+ width: 100%;
803
+ height: 100%;
804
+ padding: 0 !important;
805
+ text-align: center; }
806
+ .np-banner h1 {
807
+ font-size: 86px;
808
+ letter-spacing: 4px;
809
+ font-weight: normal;
810
+ padding: 160px 0 20px; }
811
+ .np-banner .subheading {
812
+ font-size: 18px; }
813
+ .np-banner .btn {
814
+ display: block;
815
+ width: 160px;
816
+ height: 38px;
817
+ font-size: 16px;
818
+ color: #fff;
819
+ line-height: 38px;
820
+ border-radius: 3px;
821
+ border: 1px solid #fff;
822
+ margin: 80px auto 0;
823
+ opacity: .8; }
824
+
825
+ .night-mode {
826
+ background-color: #282C33; }
827
+ .night-mode .g-banner {
828
+ background-color: #282C33;
829
+ color: #C8CDD3; }
830
+ .night-mode .post-header .filter {
831
+ opacity: .6; }
832
+ .night-mode .article-item, .night-mode .g-sidebar, .night-mode .page-links, .night-mode .search-card input, .night-mode .search_result,
833
+ .night-mode .search_item, .night-mode .article-item .post-tag, .night-mode .tags-card .tag, .night-mode .tags-list li,
834
+ .night-mode .tags-list .tag {
835
+ color: #868A94;
836
+ background-color: #2D313A;
837
+ border-color: rgba(255, 255, 255, 0.1); }
838
+ .night-mode .article-item .post-cover img {
839
+ -webkit-filter: brightness(0.6); }
840
+ .night-mode .article-item .post-preview .post-title, .night-mode .article-item .post-preview .post-subtitle, .night-mode .article-item .post-preview .post-excerpt {
841
+ color: #868A94; }
842
+ .night-mode .article-item .post-meta .post-tags, .night-mode .article-item .post-meta .post-date {
843
+ color: #868A94; }
844
+ .night-mode .pagination .page-link:hover {
845
+ background-color: rgba(255, 255, 255, 0.1); }
846
+ .night-mode .pagination .active {
847
+ background-color: rgba(255, 255, 255, 0.1); }
848
+ .night-mode .g-sidebar section {
849
+ border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
850
+ .night-mode .g-sidebar section:last-child {
851
+ border-bottom: none; }
852
+ .night-mode .avatar img {
853
+ -webkit-filter: brightness(0.6); }
854
+ .night-mode .author-name, .night-mode .bio {
855
+ color: #868A94; }
856
+ .night-mode .search_result .search_item:last-child {
857
+ border-color: rgba(255, 255, 255, 0.1); }
858
+ .night-mode .search_result .search_item:hover {
859
+ background-color: transparent;
860
+ color: #fff; }
861
+ .night-mode .article-item .post-tag, .night-mode .tags-card .tag {
862
+ border: none; }
863
+ .night-mode .tags-list li .tag-name, .night-mode .tags-list li .tag-post {
864
+ color: #868A94; }
865
+ .night-mode .g-footer {
866
+ border-color: rgba(255, 255, 255, 0.1); }
867
+ .night-mode .g-footer section {
868
+ color: #868A94; }
869
+ .night-mode .post-content {
870
+ background-color: #282C33; }
871
+ .night-mode .post-content .post-subtitle:before, .night-mode .post-content .post-subtitle:after {
872
+ background-color: #575B63; }
873
+ .night-mode .markdown-body {
874
+ color: #868A94; }
875
+ .night-mode .markdown-body img {
876
+ -webkit-filter: brightness(0.6); }
877
+ .night-mode .markdown-body blockquote {
878
+ border-left-color: #555A61; }
879
+ .night-mode .read-next-item {
880
+ background-color: #484D59; }
881
+ .night-mode .read-next-item section {
882
+ color: #AEB4BD; }
883
+ .night-mode .read-next-item .filter {
884
+ background-color: rgba(0, 0, 0, 0.6); }
885
+ .night-mode :not(pre) > code[class*="language-"], .night-mode pre[class*="language-"] {
886
+ background-color: #2D313A; }
887
+ .night-mode code[class*="language-"], .night-mode pre[class*="language-"], .night-mode .token.punctuation,
888
+ .night-mode .token.operator, .night-mode .token.entity, .night-mode .token.url, .night-mode .language-css .token.string,
889
+ .night-mode .style .token.string, .night-mode .token.variable {
890
+ color: #8F97A7; }
891
+ .night-mode .token.atrule, .night-mode .token.attr-value, .night-mode .token.function {
892
+ color: #A9A054; }
893
+ .night-mode .token.selector, .night-mode .token.attr-name, .night-mode .token.string, .night-mode .token.char,
894
+ .night-mode .token.builtin, .night-mode .token.inserted {
895
+ color: #84AC35; }
896
+ .night-mode .token.property, .night-mode .token.tag, .night-mode .token.constant, .night-mode .token.symbol, .night-mode .token.deleted {
897
+ color: #D75885; }
898
+ .night-mode .token.keyword {
899
+ color: #61BDCF; }
900
+
901
+ .archives-date {
902
+ width: 130px;
903
+ display: inline-block; }
904
+
905
+ .archives-title {
906
+ width: 95%;
907
+ display: inline-block;
908
+ margin-bottom: 0 !important;
909
+ margin-top: 0 !important; }
910
+
911
+ .markdown-body a {
912
+ color: #005b81;
913
+ text-decoration: none; }
914
+
915
+ .markdown-body a:hover {
916
+ color: #e32e00;
917
+ text-decoration: underline; }
918
+
919
+ .markdown-body p {
920
+ font-size: 16px; }
921
+
922
+ @media screen and (min-width: 1920px) {
923
+ .home-banner {
924
+ height: 600px; }
925
+ .home-banner h2 {
926
+ padding-top: 260px;
927
+ font-size: 42px; }
928
+ .home-banner h3 {
929
+ font-size: 22px; } }
930
+
931
+ @media screen and (max-width: 960px) {
932
+ .g-container {
933
+ width: auto; }
934
+ .article-list {
935
+ float: none;
936
+ margin: 0 auto; }
937
+ .g-sidebar, .search-card {
938
+ display: none; }
939
+ .pagination .page-num {
940
+ display: none; }
941
+ .pagination .page-link {
942
+ width: 56px; } }
943
+
944
+ @media screen and (max-width: 960px) {
945
+ .archives-date {
946
+ display: none; }
947
+ .archives-title {
948
+ width: 290px;
949
+ overflow: hidden;
950
+ white-space: nowrap;
951
+ text-overflow: ellipsis;
952
+ margin-bottom: -8px !important; } }
953
+
954
+ @media screen and (max-width: 768px) {
955
+ .post-wrapper, .markdown-body, .read-next {
956
+ width: 92%; }
957
+ .post-content .post-subtitle {
958
+ width: 92%; }
959
+ .author-detail .author-card {
960
+ width: 92%; } }
961
+
962
+ @media screen and (max-width: 695px) {
963
+ .g-header {
964
+ position: absolute;
965
+ top: 0;
966
+ padding: 28px 0; }
967
+ .g-header .icon-menu {
968
+ display: block;
969
+ width: 40px;
970
+ height: 28px; }
971
+ .g-header .g-nav {
972
+ position: relative;
973
+ top: 48px;
974
+ right: 1%;
975
+ display: none;
976
+ width: 120px;
977
+ background-color: #fff;
978
+ border-radius: 2px;
979
+ padding: 8px 16px;
980
+ box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2); }
981
+ .g-header .g-nav > ul > li {
982
+ float: none;
983
+ height: auto;
984
+ line-height: normal;
985
+ margin-right: 0; }
986
+ .g-header .g-nav > ul > li > a {
987
+ display: block;
988
+ padding: 16px 0;
989
+ font-size: 16px;
990
+ font-weight: bold;
991
+ color: #A5A8B0;
992
+ opacity: 1; }
993
+ .author-detail .author-card .sns-links {
994
+ margin-top: 24px; }
995
+ .author-detail .author-card .sns-links li {
996
+ width: 36px;
997
+ height: 36px; }
998
+ .author-detail .author-card .sns-links li .iconfont {
999
+ font-size: 32px;
1000
+ line-height: 40px; }
1001
+ .author-detail .comment {
1002
+ width: 90%; }
1003
+ .read-next {
1004
+ display: block; }
1005
+ .read-next-item {
1006
+ margin-bottom: 16px; }
1007
+ .read-next-item:first-child {
1008
+ margin-right: 0; }
1009
+ .read-next-item:last-child {
1010
+ margin-bottom: 0; }
1011
+ .read-next-item:hover {
1012
+ top: 0;
1013
+ box-shadow: none; }
1014
+ .read-next-item section {
1015
+ width: 90%;
1016
+ margin-left: 5%;
1017
+ margin-top: 45px; }
1018
+ .g-banner {
1019
+ padding: 0 20px; }
1020
+ .home-banner h3, .tags-banner h3 {
1021
+ margin-top: 8px; }
1022
+ .home-content {
1023
+ margin-top: 0; }
1024
+ .article-list, .tags-content {
1025
+ width: 100%; }
1026
+ .tags-content {
1027
+ margin-top: 0; }
1028
+ .tags-banner {
1029
+ height: 300px; }
1030
+ .tags-list {
1031
+ padding: 0 0 24px; }
1032
+ .g-footer {
1033
+ padding: 30px 0; } }
1034
+
1035
+ @media screen and (max-width: 500px) {
1036
+ .home-banner {
1037
+ height: 400px; }
1038
+ .home-banner h2 {
1039
+ padding-top: 180px;
1040
+ font-size: 28px;
1041
+ line-height: 48px; }
1042
+ .home-banner h3 {
1043
+ margin-top: 2px;
1044
+ font-size: 18px; }
1045
+ .home-content {
1046
+ margin-bottom: 32px; }
1047
+ .article-list .article-item {
1048
+ padding: 20px 16px;
1049
+ margin-bottom: 8px;
1050
+ border-left: none;
1051
+ border-right: none;
1052
+ border-radius: 0;
1053
+ box-shadow: none; }
1054
+ .article-list .article-item:first-child {
1055
+ border-top: none; }
1056
+ .article-list .article-item .post-cover {
1057
+ max-height: 200px; }
1058
+ .article-list .article-item .post-preview .post-title {
1059
+ font-size: 18px;
1060
+ line-height: 26px; }
1061
+ .article-list .article-item .post-preview .post-subtitle {
1062
+ font-size: 16px;
1063
+ line-height: 20px; }
1064
+ .article-list .article-item .post-meta {
1065
+ margin-top: 12px; }
1066
+ .article-list .article-item .post-meta .post-tags {
1067
+ display: none; }
1068
+ .article-list .article-item .post-meta .post-date {
1069
+ float: left;
1070
+ margin-left: 5px; }
1071
+ .pagination .page-links {
1072
+ box-shadow: none; }
1073
+ .post-header {
1074
+ padding: 0;
1075
+ height: 360px; }
1076
+ .post-wrapper .post-tags {
1077
+ margin: 100px 0 8px; }
1078
+ .post-wrapper h1 {
1079
+ font-family: "Helvetica Neue", Helvetica, Arial, "Pingfang SC", "Microsoft Yahei", Sans-serif; }
1080
+ .post-wrapper .post-meta {
1081
+ margin-top: 16px; }
1082
+ .post-content {
1083
+ padding-top: 20px; }
1084
+ .post-content .post-subtitle {
1085
+ padding: 8px 0 24px;
1086
+ margin-bottom: 32px; }
1087
+ .post-content .post-subtitle:before {
1088
+ height: 0; }
1089
+ .markdown-body p, .markdown-body ul > li {
1090
+ font-size: 16px;
1091
+ font-weight: 300;
1092
+ -webkit-font-smoothing: auto;
1093
+ -moz-osx-font-smoothing: auto; }
1094
+ .markdown-body h1, .markdown-body h2, .markdown-body h3, .markdown-body h4 {
1095
+ margin-top: 24px; }
1096
+ .markdown-body table {
1097
+ margin: 16px auto; }
1098
+ .markdown-body img {
1099
+ margin: 0 auto 16px; }
1100
+ .markdown-body strong {
1101
+ font-weight: 400; }
1102
+ .markdown-body blockquote p {
1103
+ font-size: 18px;
1104
+ letter-spacing: 1px;
1105
+ color: #888;
1106
+ word-break: break-all; } }
1107
+
1108
+ @media screen and (max-width: 376px) {
1109
+ .home-banner h2 {
1110
+ font-size: 26px;
1111
+ line-height: 38px; }
1112
+ .home-banner h3 {
1113
+ margin-top: 4px;
1114
+ font-size: 16px; } }