hexo-theme-lnote 1.2.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (145) hide show
  1. package/README.md +123 -0
  2. package/_config.yml +19 -0
  3. package/config/links.yml +63 -0
  4. package/config/svg.yml +34 -0
  5. package/languages/de.yml +69 -0
  6. package/languages/en.yml +69 -0
  7. package/languages/eo.yml +69 -0
  8. package/languages/es.yml +69 -0
  9. package/languages/ja.yml +69 -0
  10. package/languages/ru.yml +69 -0
  11. package/languages/zh-CN.yml +69 -0
  12. package/languages/zh-HK.yml +69 -0
  13. package/languages/zh-TW.yml +69 -0
  14. package/layout/404.ejs +8 -0
  15. package/layout/_partials/archive-list.ejs +17 -0
  16. package/layout/_partials/category-chains.ejs +19 -0
  17. package/layout/_partials/category-list.ejs +62 -0
  18. package/layout/_partials/comments/changyan.ejs +11 -0
  19. package/layout/_partials/comments/cusdis.ejs +25 -0
  20. package/layout/_partials/comments/discuss.ejs +17 -0
  21. package/layout/_partials/comments/disqus.ejs +32 -0
  22. package/layout/_partials/comments/giscus.ejs +36 -0
  23. package/layout/_partials/comments/gitalk.ejs +19 -0
  24. package/layout/_partials/comments/livere.ejs +10 -0
  25. package/layout/_partials/comments/remark42.ejs +29 -0
  26. package/layout/_partials/comments/twikoo.ejs +25 -0
  27. package/layout/_partials/comments/utterances.ejs +27 -0
  28. package/layout/_partials/comments/valine.ejs +23 -0
  29. package/layout/_partials/comments/waline.ejs +24 -0
  30. package/layout/_partials/comments.ejs +8 -0
  31. package/layout/_partials/css.ejs +10 -0
  32. package/layout/_partials/footer/beian.ejs +33 -0
  33. package/layout/_partials/footer/statistics.ejs +39 -0
  34. package/layout/_partials/footer.ejs +7 -0
  35. package/layout/_partials/head.ejs +46 -0
  36. package/layout/_partials/header/banner.ejs +24 -0
  37. package/layout/_partials/header/navigation.ejs +57 -0
  38. package/layout/_partials/header.ejs +4 -0
  39. package/layout/_partials/markdown-plugins.ejs +24 -0
  40. package/layout/_partials/paginator.ejs +14 -0
  41. package/layout/_partials/plugins/analytics.ejs +75 -0
  42. package/layout/_partials/plugins/anchorjs.ejs +39 -0
  43. package/layout/_partials/plugins/code-widget.ejs +7 -0
  44. package/layout/_partials/plugins/encrypt.ejs +18 -0
  45. package/layout/_partials/plugins/fancybox.ejs +11 -0
  46. package/layout/_partials/plugins/highlight.ejs +13 -0
  47. package/layout/_partials/plugins/math.ejs +51 -0
  48. package/layout/_partials/plugins/mermaid.ejs +4 -0
  49. package/layout/_partials/plugins/nprogress.ejs +8 -0
  50. package/layout/_partials/plugins/typed.ejs +20 -0
  51. package/layout/_partials/post/category-bar.ejs +18 -0
  52. package/layout/_partials/post/copyright.ejs +50 -0
  53. package/layout/_partials/post/css.ejs +4 -0
  54. package/layout/_partials/post/meta-bottom.ejs +16 -0
  55. package/layout/_partials/post/meta-top.ejs +28 -0
  56. package/layout/_partials/post/scripts.ejs +8 -0
  57. package/layout/_partials/post/sidebar-left.ejs +1 -0
  58. package/layout/_partials/post/sidebar-right.ejs +3 -0
  59. package/layout/_partials/post/toc.ejs +7 -0
  60. package/layout/_partials/scripts.ejs +10 -0
  61. package/layout/_partials/search.ejs +19 -0
  62. package/layout/about.ejs +22 -0
  63. package/layout/archive.ejs +10 -0
  64. package/layout/categories.ejs +20 -0
  65. package/layout/category.ejs +12 -0
  66. package/layout/index.ejs +61 -0
  67. package/layout/layout.ejs +60 -0
  68. package/layout/links.ejs +31 -0
  69. package/layout/page.ejs +15 -0
  70. package/layout/post.ejs +77 -0
  71. package/layout/tag.ejs +12 -0
  72. package/layout/tags.ejs +26 -0
  73. package/package.json +70 -0
  74. package/scripts/index.js +1 -0
  75. package/source/css/_functions/base.styl +8 -0
  76. package/source/css/_mixins/base.styl +23 -0
  77. package/source/css/_pages/_about/about.styl +32 -0
  78. package/source/css/_pages/_archive/archive.styl +32 -0
  79. package/source/css/_pages/_base/_widget/anchorjs.styl +8 -0
  80. package/source/css/_pages/_base/_widget/banner.styl +29 -0
  81. package/source/css/_pages/_base/_widget/board.styl +11 -0
  82. package/source/css/_pages/_base/_widget/code-widget.styl +36 -0
  83. package/source/css/_pages/_base/_widget/copyright.styl +90 -0
  84. package/source/css/_pages/_base/_widget/footer.styl +65 -0
  85. package/source/css/_pages/_base/_widget/footnote.styl +25 -0
  86. package/source/css/_pages/_base/_widget/header.styl +173 -0
  87. package/source/css/_pages/_base/_widget/modal.styl +100 -0
  88. package/source/css/_pages/_base/_widget/navlink.styl +16 -0
  89. package/source/css/_pages/_base/_widget/ngrogress.styl +12 -0
  90. package/source/css/_pages/_base/_widget/noscript.styl +12 -0
  91. package/source/css/_pages/_base/_widget/pagination.styl +23 -0
  92. package/source/css/_pages/_base/_widget/qrcode.styl +17 -0
  93. package/source/css/_pages/_base/_widget/scroll-btn.styl +48 -0
  94. package/source/css/_pages/_base/_widget/text.styl +19 -0
  95. package/source/css/_pages/_base/_widget/toc.styl +75 -0
  96. package/source/css/_pages/_base/base.styl +68 -0
  97. package/source/css/_pages/_base/color-schema.styl +75 -0
  98. package/source/css/_pages/_base/inline.styl +51 -0
  99. package/source/css/_pages/_base/keyframes.styl +31 -0
  100. package/source/css/_pages/_base/print.styl +38 -0
  101. package/source/css/_pages/_category/category-bar.styl +58 -0
  102. package/source/css/_pages/_category/category-chain.styl +6 -0
  103. package/source/css/_pages/_category/category-list.styl +62 -0
  104. package/source/css/_pages/_index/index.styl +75 -0
  105. package/source/css/_pages/_links/links.styl +79 -0
  106. package/source/css/_pages/_post/comment.styl +27 -0
  107. package/source/css/_pages/_post/highlight.styl +75 -0
  108. package/source/css/_pages/_post/markdown.styl +96 -0
  109. package/source/css/_pages/_post/post-page.styl +179 -0
  110. package/source/css/_pages/_post/post-tag.styl +29 -0
  111. package/source/css/_pages/_tag/tag.styl +9 -0
  112. package/source/css/_pages/_tag/tags.styl +9 -0
  113. package/source/css/_pages/pages.styl +8 -0
  114. package/source/css/_variables/base.styl +72 -0
  115. package/source/css/gitalk.css +546 -0
  116. package/source/css/main.styl +19 -0
  117. package/source/img/avatar.png +0 -0
  118. package/source/img/default.jpg +0 -0
  119. package/source/img/default1.jpg +0 -0
  120. package/source/img/default2.jpg +0 -0
  121. package/source/img/default3.jpg +0 -0
  122. package/source/img/default4.jpg +0 -0
  123. package/source/img/default5.jpg +0 -0
  124. package/source/img/default6.jpg +0 -0
  125. package/source/img/default7.jpg +0 -0
  126. package/source/img/default8.jpg +0 -0
  127. package/source/img/docs.png +0 -0
  128. package/source/img/loading.gif +0 -0
  129. package/source/img/police_beian.png +0 -0
  130. package/source/js/color-schema.js +279 -0
  131. package/source/js/events.js +72 -0
  132. package/source/js/img-lazyload.js +10 -0
  133. package/source/js/local-search.js +70 -0
  134. package/source/js/post/copying-code.js +34 -0
  135. package/source/js/post/enable.js +8 -0
  136. package/source/js/post/img-swipe-bf.js +47 -0
  137. package/source/js/post/img-swipe.js +35 -0
  138. package/source/js/post/mermaiding.js +13 -0
  139. package/source/js/post/play-imgs.js +59 -0
  140. package/source/js/post/toc.js +24 -0
  141. package/source/js/post/view-imgs.js +27 -0
  142. package/source/js/utils.js +245 -0
  143. package/source/xml/local-search.xml +45 -0
  144. package/templates/footer.ejs +13 -0
  145. package/templates/noun.vue +18 -0
@@ -0,0 +1,546 @@
1
+ @font-face {
2
+ font-family: octicons-link;
3
+ src: url(data:font/woff;charset=utf-8;base64,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) format('woff');
4
+ }
5
+ /* variables */
6
+ /* functions & mixins */
7
+ /* variables - calculated */
8
+ /* styles */
9
+ .gt-container {
10
+ -webkit-box-sizing: border-box;
11
+ box-sizing: border-box;
12
+ font-size: 16px;
13
+ /* loader */
14
+ /* error */
15
+ /* initing */
16
+ /* no int */
17
+ /* link */
18
+ /* meta */
19
+ /* popup */
20
+ /* header */
21
+ /* comments */
22
+ /* comment */
23
+ }
24
+ .gt-container * {
25
+ -webkit-box-sizing: border-box;
26
+ box-sizing: border-box;
27
+ }
28
+ .gt-container a {
29
+ color: #6190e8;
30
+ }
31
+ .gt-container a:hover {
32
+ color: #81a6ed;
33
+ border-color: #81a6ed;
34
+ }
35
+ .gt-container a.is--active {
36
+ color: #333;
37
+ cursor: default !important;
38
+ }
39
+ .gt-container a.is--active:hover {
40
+ color: #333;
41
+ }
42
+ .gt-container .hide {
43
+ display: none !important;
44
+ }
45
+ .gt-container .gt-svg {
46
+ display: inline-block;
47
+ width: 1em;
48
+ height: 1em;
49
+ vertical-align: sub;
50
+ }
51
+ .gt-container .gt-svg svg {
52
+ width: 100%;
53
+ height: 100%;
54
+ fill: #6190e8;
55
+ }
56
+ .gt-container .gt-ico {
57
+ display: inline-block;
58
+ }
59
+ .gt-container .gt-ico-text {
60
+ margin-left: 0.3125em;
61
+ }
62
+ .gt-container .gt-ico-github {
63
+ width: 100%;
64
+ height: 100%;
65
+ }
66
+ .gt-container .gt-ico-github .gt-svg {
67
+ width: 100%;
68
+ height: 100%;
69
+ }
70
+ .gt-container .gt-ico-github svg {
71
+ fill: inherit;
72
+ }
73
+ .gt-container .gt-spinner {
74
+ position: relative;
75
+ }
76
+ .gt-container .gt-spinner::before {
77
+ content: '';
78
+ -webkit-box-sizing: border-box;
79
+ box-sizing: border-box;
80
+ position: absolute;
81
+ top: 3px;
82
+ width: 0.75em;
83
+ height: 0.75em;
84
+ margin-top: -0.1875em;
85
+ margin-left: -0.375em;
86
+ border-radius: 50%;
87
+ border: 1px solid #fff;
88
+ border-top-color: #6190e8;
89
+ -webkit-animation: gt-kf-rotate 0.6s linear infinite;
90
+ animation: gt-kf-rotate 0.6s linear infinite;
91
+ }
92
+ .gt-container .gt-loader {
93
+ position: relative;
94
+ border: 1px solid #999;
95
+ -webkit-animation: ease gt-kf-rotate 1.5s infinite;
96
+ animation: ease gt-kf-rotate 1.5s infinite;
97
+ display: inline-block;
98
+ font-style: normal;
99
+ width: 1.75em;
100
+ height: 1.75em;
101
+ line-height: 1.75em;
102
+ border-radius: 50%;
103
+ }
104
+ .gt-container .gt-loader:before {
105
+ content: '';
106
+ position: absolute;
107
+ display: block;
108
+ top: 0;
109
+ left: 50%;
110
+ margin-top: -0.1875em;
111
+ margin-left: -0.1875em;
112
+ width: 0.375em;
113
+ height: 0.375em;
114
+ background-color: #999;
115
+ border-radius: 50%;
116
+ }
117
+ .gt-container .gt-avatar {
118
+ display: inline-block;
119
+ width: 3.125em;
120
+ height: 3.125em;
121
+ }
122
+ @media (max-width: 479px) {
123
+ .gt-container .gt-avatar {
124
+ width: 2em;
125
+ height: 2em;
126
+ }
127
+ }
128
+ .gt-container .gt-avatar img {
129
+ width: 100%;
130
+ height: auto;
131
+ border-radius: 3px;
132
+ }
133
+ .gt-container .gt-avatar-github {
134
+ width: 3em;
135
+ height: 3em;
136
+ }
137
+ @media (max-width: 479px) {
138
+ .gt-container .gt-avatar-github {
139
+ width: 1.875em;
140
+ height: 1.875em;
141
+ }
142
+ }
143
+ .gt-container .gt-btn {
144
+ padding: 0.75em 1.25em;
145
+ display: inline-block;
146
+ line-height: 1;
147
+ text-decoration: none;
148
+ white-space: nowrap;
149
+ cursor: pointer;
150
+ border: 1px solid #6190e8;
151
+ border-radius: 5px;
152
+ background-color: #6190e8;
153
+ color: #fff;
154
+ outline: none;
155
+ font-size: 0.75em;
156
+ }
157
+ .gt-container .gt-btn-text {
158
+ font-weight: 400;
159
+ }
160
+ .gt-container .gt-btn-loading {
161
+ position: relative;
162
+ margin-left: 0.5em;
163
+ display: inline-block;
164
+ width: 0.75em;
165
+ height: 1em;
166
+ vertical-align: top;
167
+ }
168
+ .gt-container .gt-btn.is--disable {
169
+ cursor: not-allowed;
170
+ opacity: 0.5;
171
+ }
172
+ .gt-container .gt-btn-login {
173
+ margin-right: 0;
174
+ }
175
+ .gt-container .gt-btn-preview {
176
+ background-color: #fff;
177
+ color: #6190e8;
178
+ }
179
+ .gt-container .gt-btn-preview:hover {
180
+ background-color: #f2f2f2;
181
+ border-color: #81a6ed;
182
+ }
183
+ .gt-container .gt-btn-public:hover {
184
+ background-color: #81a6ed;
185
+ border-color: #81a6ed;
186
+ }
187
+ .gt-container .gt-error {
188
+ text-align: center;
189
+ margin: 0.625em;
190
+ color: #ff3860;
191
+ }
192
+ .gt-container .gt-initing {
193
+ padding: 1.25em 0;
194
+ text-align: center;
195
+ }
196
+ .gt-container .gt-initing-text {
197
+ margin: 0.625em auto;
198
+ font-size: 92%;
199
+ }
200
+ .gt-container .gt-no-init {
201
+ padding: 1.25em 0;
202
+ text-align: center;
203
+ }
204
+ .gt-container .gt-link {
205
+ border-bottom: 1px dotted #6190e8;
206
+ }
207
+ .gt-container .gt-link-counts,
208
+ .gt-container .gt-link-project {
209
+ text-decoration: none;
210
+ }
211
+ .gt-container .gt-meta {
212
+ margin: 1.25em 0;
213
+ padding: 1em 0;
214
+ position: relative;
215
+ border-bottom: 1px solid #e9e9e9;
216
+ font-size: 1em;
217
+ position: relative;
218
+ z-index: 10;
219
+ }
220
+ .gt-container .gt-meta:before,
221
+ .gt-container .gt-meta:after {
222
+ content: " ";
223
+ display: table;
224
+ }
225
+ .gt-container .gt-meta:after {
226
+ clear: both;
227
+ }
228
+ .gt-container .gt-counts {
229
+ margin: 0 0.625em 0 0;
230
+ }
231
+ .gt-container .gt-user {
232
+ float: right;
233
+ margin: 0;
234
+ font-size: 92%;
235
+ }
236
+ .gt-container .gt-user-pic {
237
+ width: 16px;
238
+ height: 16px;
239
+ vertical-align: top;
240
+ margin-right: 0.5em;
241
+ }
242
+ .gt-container .gt-user-inner {
243
+ display: inline-block;
244
+ cursor: pointer;
245
+ }
246
+ .gt-container .gt-user .gt-ico {
247
+ margin: 0 0 0 0.3125em;
248
+ }
249
+ .gt-container .gt-user .gt-ico svg {
250
+ fill: inherit;
251
+ }
252
+ .gt-container .gt-user .is--poping .gt-ico svg {
253
+ fill: #6190e8;
254
+ }
255
+ .gt-container .gt-version {
256
+ color: #a1a1a1;
257
+ margin-left: 0.375em;
258
+ }
259
+ .gt-container .gt-copyright {
260
+ margin: 0 0.9375em 0.5em;
261
+ border-top: 1px solid #e9e9e9;
262
+ padding-top: 0.5em;
263
+ }
264
+ .gt-container .gt-popup {
265
+ position: absolute;
266
+ right: 0;
267
+ top: 2.375em;
268
+ background: #fff;
269
+ display: inline-block;
270
+ border: 1px solid #e9e9e9;
271
+ padding: 0.625em 0;
272
+ font-size: 0.875em;
273
+ letter-spacing: 0.5px;
274
+ }
275
+ .gt-container .gt-popup .gt-action {
276
+ cursor: pointer;
277
+ display: block;
278
+ margin: 0.5em 0;
279
+ padding: 0 1.125em;
280
+ position: relative;
281
+ text-decoration: none;
282
+ }
283
+ .gt-container .gt-popup .gt-action.is--active:before {
284
+ content: '';
285
+ width: 0.25em;
286
+ height: 0.25em;
287
+ background: #6190e8;
288
+ position: absolute;
289
+ left: 0.5em;
290
+ top: 0.4375em;
291
+ }
292
+ .gt-container .gt-header {
293
+ position: relative;
294
+ display: -webkit-box;
295
+ display: -ms-flexbox;
296
+ display: flex;
297
+ }
298
+ .gt-container .gt-header-comment {
299
+ -webkit-box-flex: 1;
300
+ -ms-flex: 1;
301
+ flex: 1;
302
+ margin-left: 1.25em;
303
+ }
304
+ @media (max-width: 479px) {
305
+ .gt-container .gt-header-comment {
306
+ margin-left: 0.875em;
307
+ }
308
+ }
309
+ .gt-container .gt-header-textarea {
310
+ padding: 0.75em;
311
+ display: block;
312
+ -webkit-box-sizing: border-box;
313
+ box-sizing: border-box;
314
+ width: 100%;
315
+ min-height: 5.125em;
316
+ max-height: 15em;
317
+ border-radius: 5px;
318
+ border: 1px solid rgba(0,0,0,0.1);
319
+ font-size: 0.875em;
320
+ word-wrap: break-word;
321
+ resize: vertical;
322
+ background-color: #f6f6f6;
323
+ outline: none;
324
+ -webkit-transition: all 0.25s ease;
325
+ transition: all 0.25s ease;
326
+ }
327
+ .gt-container .gt-header-textarea:hover {
328
+ background-color: #fbfbfb;
329
+ }
330
+ .gt-container .gt-header-preview {
331
+ padding: 0.75em;
332
+ border-radius: 5px;
333
+ border: 1px solid rgba(0,0,0,0.1);
334
+ background-color: #f6f6f6;
335
+ }
336
+ .gt-container .gt-header-controls {
337
+ position: relative;
338
+ margin: 0.75em 0 0;
339
+ }
340
+ .gt-container .gt-header-controls:before,
341
+ .gt-container .gt-header-controls:after {
342
+ content: " ";
343
+ display: table;
344
+ }
345
+ .gt-container .gt-header-controls:after {
346
+ clear: both;
347
+ }
348
+ @media (max-width: 479px) {
349
+ .gt-container .gt-header-controls {
350
+ margin: 0;
351
+ }
352
+ }
353
+ .gt-container .gt-header-controls-tip {
354
+ font-size: 0.875em;
355
+ color: #6190e8;
356
+ text-decoration: none;
357
+ vertical-align: sub;
358
+ }
359
+ @media (max-width: 479px) {
360
+ .gt-container .gt-header-controls-tip {
361
+ display: none;
362
+ }
363
+ }
364
+ .gt-container .gt-header-controls .gt-btn {
365
+ float: right;
366
+ margin-left: 1.25em;
367
+ }
368
+ @media (max-width: 479px) {
369
+ .gt-container .gt-header-controls .gt-btn {
370
+ float: none;
371
+ width: 100%;
372
+ margin: 0.75em 0 0;
373
+ }
374
+ }
375
+ .gt-container:after {
376
+ content: '';
377
+ position: fixed;
378
+ bottom: 100%;
379
+ left: 0;
380
+ right: 0;
381
+ top: 0;
382
+ opacity: 0;
383
+ }
384
+ .gt-container.gt-input-focused {
385
+ position: relative;
386
+ }
387
+ .gt-container.gt-input-focused:after {
388
+ content: '';
389
+ position: fixed;
390
+ bottom: 0%;
391
+ left: 0;
392
+ right: 0;
393
+ top: 0;
394
+ background: #000;
395
+ opacity: 0.6;
396
+ -webkit-transition: opacity 0.3s, bottom 0s;
397
+ transition: opacity 0.3s, bottom 0s;
398
+ z-index: 9999;
399
+ }
400
+ .gt-container.gt-input-focused .gt-header-comment {
401
+ z-index: 10000;
402
+ }
403
+ .gt-container .gt-comments {
404
+ padding-top: 1.25em;
405
+ }
406
+ .gt-container .gt-comments-null {
407
+ text-align: center;
408
+ }
409
+ .gt-container .gt-comments-controls {
410
+ margin: 1.25em 0;
411
+ text-align: center;
412
+ }
413
+ .gt-container .gt-comment {
414
+ position: relative;
415
+ padding: 0.625em 0;
416
+ display: -webkit-box;
417
+ display: -ms-flexbox;
418
+ display: flex;
419
+ }
420
+ .gt-container .gt-comment-content {
421
+ -webkit-box-flex: 1;
422
+ -ms-flex: 1;
423
+ flex: 1;
424
+ margin-left: 1.25em;
425
+ padding: 0.75em 1em;
426
+ background-color: #f9f9f9;
427
+ overflow: auto;
428
+ -webkit-transition: all ease 0.25s;
429
+ transition: all ease 0.25s;
430
+ }
431
+ .gt-container .gt-comment-content:hover {
432
+ -webkit-box-shadow: 0 0.625em 3.75em 0 #f4f4f4;
433
+ box-shadow: 0 0.625em 3.75em 0 #f4f4f4;
434
+ }
435
+ @media (max-width: 479px) {
436
+ .gt-container .gt-comment-content {
437
+ margin-left: 0.875em;
438
+ padding: 0.625em 0.75em;
439
+ }
440
+ }
441
+ .gt-container .gt-comment-header {
442
+ margin-bottom: 0.5em;
443
+ font-size: 0.875em;
444
+ position: relative;
445
+ }
446
+ .gt-container .gt-comment-block-1 {
447
+ float: right;
448
+ height: 1.375em;
449
+ width: 2em;
450
+ }
451
+ .gt-container .gt-comment-block-2 {
452
+ float: right;
453
+ height: 1.375em;
454
+ width: 4em;
455
+ }
456
+ .gt-container .gt-comment-username {
457
+ font-weight: 500;
458
+ color: #6190e8;
459
+ text-decoration: none;
460
+ }
461
+ .gt-container .gt-comment-username:hover {
462
+ text-decoration: underline;
463
+ }
464
+ .gt-container .gt-comment-text {
465
+ margin-left: 0.5em;
466
+ color: #a1a1a1;
467
+ }
468
+ .gt-container .gt-comment-date {
469
+ margin-left: 0.5em;
470
+ color: #a1a1a1;
471
+ }
472
+ .gt-container .gt-comment-like,
473
+ .gt-container .gt-comment-edit,
474
+ .gt-container .gt-comment-reply {
475
+ position: absolute;
476
+ height: 1.375em;
477
+ }
478
+ .gt-container .gt-comment-like:hover,
479
+ .gt-container .gt-comment-edit:hover,
480
+ .gt-container .gt-comment-reply:hover {
481
+ cursor: pointer;
482
+ }
483
+ .gt-container .gt-comment-like {
484
+ top: 0;
485
+ right: 2em;
486
+ }
487
+ .gt-container .gt-comment-edit,
488
+ .gt-container .gt-comment-reply {
489
+ top: 0;
490
+ right: 0;
491
+ }
492
+ .gt-container .gt-comment-body {
493
+ color: #333 !important;
494
+ }
495
+ .gt-container .gt-comment-body .email-hidden-toggle a {
496
+ display: inline-block;
497
+ height: 12px;
498
+ padding: 0 9px;
499
+ font-size: 12px;
500
+ font-weight: 600;
501
+ line-height: 6px;
502
+ color: #444d56;
503
+ text-decoration: none;
504
+ vertical-align: middle;
505
+ background: #dfe2e5;
506
+ border-radius: 1px;
507
+ }
508
+ .gt-container .gt-comment-body .email-hidden-toggle a:hover {
509
+ background-color: #c6cbd1;
510
+ }
511
+ .gt-container .gt-comment-body .email-hidden-reply {
512
+ display: none;
513
+ white-space: pre-wrap;
514
+ }
515
+ .gt-container .gt-comment-body .email-hidden-reply .email-signature-reply {
516
+ padding: 0 15px;
517
+ margin: 15px 0;
518
+ color: #586069;
519
+ border-left: 4px solid #dfe2e5;
520
+ }
521
+ .gt-container .gt-comment-body .email-hidden-reply.expanded {
522
+ display: block;
523
+ }
524
+ .gt-container .gt-comment-admin .gt-comment-content {
525
+ background-color: #f6f9fe;
526
+ }
527
+ @-webkit-keyframes gt-kf-rotate {
528
+ 0% {
529
+ -webkit-transform: rotate(0);
530
+ transform: rotate(0);
531
+ }
532
+ 100% {
533
+ -webkit-transform: rotate(360deg);
534
+ transform: rotate(360deg);
535
+ }
536
+ }
537
+ @keyframes gt-kf-rotate {
538
+ 0% {
539
+ -webkit-transform: rotate(0);
540
+ transform: rotate(0);
541
+ }
542
+ 100% {
543
+ -webkit-transform: rotate(360deg);
544
+ transform: rotate(360deg);
545
+ }
546
+ }
@@ -0,0 +1,19 @@
1
+ // --------------------------------------
2
+ // LNote
3
+ // https://github.com/fluid-dev/hexo-theme-fluid
4
+ // --------------------------------------
5
+
6
+ @import "_variables/base"
7
+ for $inject_variable in hexo-config("injects.variable")
8
+ @import $inject_variable;
9
+
10
+ @import "_functions/base"
11
+
12
+ @import "_mixins/base"
13
+ for $inject_mixin in hexo-config("injects.mixin")
14
+ @import $inject_mixin;
15
+
16
+ @import "_pages/pages"
17
+
18
+ for $inject_style in hexo-config("injects.style")
19
+ @import $inject_style;
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file