jekyll-kde-theme 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (51) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +662 -0
  3. data/README.md +64 -0
  4. data/_includes/footer.html +75 -0
  5. data/_includes/head.html +22 -0
  6. data/_includes/header.html +36 -0
  7. data/_layouts/changelog.html +11 -0
  8. data/_layouts/default.html +15 -0
  9. data/_layouts/page.html +13 -0
  10. data/_layouts/post.html +5 -0
  11. data/_sass/aetherCore.scss +479 -0
  12. data/_sass/base.scss +546 -0
  13. data/_sass/download.scss +30 -0
  14. data/_sass/glyphs.scss +136 -0
  15. data/_sass/home.scss +185 -0
  16. data/_sass/social.scss +50 -0
  17. data/assets/Noto-Sans-700/LICENSE.txt +94 -0
  18. data/assets/Noto-Sans-700/Noto-Sans-700.eot +0 -0
  19. data/assets/Noto-Sans-700/Noto-Sans-700.svg +336 -0
  20. data/assets/Noto-Sans-700/Noto-Sans-700.ttf +0 -0
  21. data/assets/Noto-Sans-700/Noto-Sans-700.woff +0 -0
  22. data/assets/Noto-Sans-700/Noto-Sans-700.woff2 +0 -0
  23. data/assets/Noto-Sans-regular/LICENSE.txt +94 -0
  24. data/assets/Noto-Sans-regular/Noto-Sans-regular.eot +0 -0
  25. data/assets/Noto-Sans-regular/Noto-Sans-regular.svg +335 -0
  26. data/assets/Noto-Sans-regular/Noto-Sans-regular.ttf +0 -0
  27. data/assets/Noto-Sans-regular/Noto-Sans-regular.woff +0 -0
  28. data/assets/Noto-Sans-regular/Noto-Sans-regular.woff2 +0 -0
  29. data/assets/aether/media/128x128.svg +80 -0
  30. data/assets/aether/media/16x16.svg +80 -0
  31. data/assets/aether/media/180x180.png +0 -0
  32. data/assets/aether/media/192x192.png +0 -0
  33. data/assets/aether/media/24x24.svg +80 -0
  34. data/assets/aether/media/32x32.svg +80 -0
  35. data/assets/aether/media/64x64.svg +80 -0
  36. data/assets/glyph/glyph.eot +0 -0
  37. data/assets/glyph/glyph.svg +47 -0
  38. data/assets/glyph/glyph.ttf +0 -0
  39. data/assets/glyph/glyph.woff +0 -0
  40. data/assets/img/Next.jpg +0 -0
  41. data/assets/img/ark.svg +46 -0
  42. data/assets/img/flatpak.png +0 -0
  43. data/assets/img/git.svg +24 -0
  44. data/assets/img/konqi-dev.png +0 -0
  45. data/assets/img/konqi-docbook.png +0 -0
  46. data/assets/img/konqi-mail.png +0 -0
  47. data/assets/img/tux.png +0 -0
  48. data/assets/nav.js +7 -0
  49. data/assets/preview.js +5 -0
  50. data/changelog.md +22 -0
  51. metadata +134 -0
@@ -0,0 +1,479 @@
1
+ @font-face {
2
+ font-family: 'Noto Sans';
3
+ font-weight: 400;
4
+ font-style: normal;
5
+ src: url('/assets/Noto-Sans-regular/Noto-Sans-regular.eot');
6
+ src: url('/assets/Noto-Sans-regular/Noto-Sans-regular.eot?#iefix') format('embedded-opentype'),
7
+ local('Noto Sans'),
8
+ local('Noto-Sans-regular'),
9
+ url('/assets/Noto-Sans-regular/Noto-Sans-regular.woff2') format('woff2'),
10
+ url('/assets/Noto-Sans-regular/Noto-Sans-regular.woff') format('woff'),
11
+ url('/assets/Noto-Sans-regular/Noto-Sans-regular.ttf') format('truetype'),
12
+ url('/assets/Noto-Sans-regular/Noto-Sans-regular.svg#NotoSans') format('svg');
13
+ }
14
+
15
+ @font-face {
16
+ font-family: 'Noto Sans';
17
+ font-weight: 700;
18
+ font-style: normal;
19
+ src: url('/assets/Noto-Sans-700/Noto-Sans-700.eot');
20
+ src: url('/assets/Noto-Sans-700/Noto-Sans-700.eot?#iefix') format('embedded-opentype'),
21
+ local('Noto Sans Bold'),
22
+ local('Noto-Sans-700'),
23
+ url('/assets/Noto-Sans-700/Noto-Sans-700.woff2') format('woff2'),
24
+ url('/assets/Noto-Sans-700/Noto-Sans-700.woff') format('woff'),
25
+ url('/assets/Noto-Sans-700/Noto-Sans-700.ttf') format('truetype'),
26
+ url('/assets/Noto-Sans-700/Noto-Sans-700.svg#NotoSans') format('svg');
27
+ }
28
+
29
+ body {
30
+ padding: 0px;
31
+ font-family: 'Noto Sans', sans-serif;
32
+ font-size: 14px;
33
+ color: #31363b;
34
+ }
35
+
36
+ p {
37
+ margin: 0px;
38
+ margin-bottom: 1em;
39
+ max-width: 900px;
40
+ }
41
+
42
+ p + p {
43
+ margin-top: 5px;
44
+ }
45
+
46
+ a {
47
+ text-decoration: none !important;
48
+ color: #3b85b5;
49
+ }
50
+
51
+ /*
52
+ a:visited {
53
+ color: #7cbcec;
54
+ }
55
+ */
56
+
57
+ a:hover {
58
+ color: #3daefd;
59
+ }
60
+
61
+ main h1 {
62
+ display: block;
63
+ font-size: 20px;
64
+ font-weight: normal;
65
+ margin-top: 20px;
66
+ margin-bottom: 10px;
67
+ }
68
+
69
+ main h2 {
70
+ font-size: 18px;
71
+ font-weight: normal;
72
+ margin-top: 20px;
73
+ margin-bottom: 10px;
74
+ }
75
+
76
+ main h3 {
77
+ font-size: 14px;
78
+ font-weight: bold;
79
+ margin-top: 20px;
80
+ margin-bottom: 10px;
81
+ }
82
+
83
+ main h4 {
84
+ font-size: 12px;
85
+ font-weight: bold;
86
+ font-style: italic;
87
+ color: #536161;
88
+ margin: 0px;
89
+ margin-top: 20px;
90
+ }
91
+
92
+ .learn-more:after {
93
+ content: ">";
94
+ font-family: "glyph";
95
+ font-size: 80%;
96
+ font-weight: bold !important;
97
+ vertical-align: middle;
98
+ padding-left: 1em;
99
+ }
100
+
101
+ .learn-more {
102
+ display: inline-block;
103
+ }
104
+
105
+ a.button {
106
+ position: relative;
107
+ display: inline-block;
108
+ background-color: #54a3d8;
109
+ color: #fcfcfc;
110
+ padding: 5px 10px;
111
+ border-radius: 2px;
112
+ border: solid 1px rgba(0,0,0,.1);
113
+ transition: background-color .2s;
114
+ }
115
+
116
+ a.button:hover {
117
+ background-color: #7cbcec;
118
+ }
119
+
120
+ a.button.expand {
121
+ display: block;
122
+ padding-right: 20px;
123
+ }
124
+
125
+ a.button:after {
126
+ color: #fcfcfc
127
+ }
128
+
129
+ a.button.expand:after {
130
+ position: absolute;
131
+ top: 50%;
132
+ right: 10px;
133
+ margin-top: -.8ex;
134
+ }
135
+
136
+ @media (max-width: 768px) {
137
+ a.button {
138
+ display: block;
139
+ padding-right: 20px;
140
+ }
141
+
142
+ a.button:after {
143
+ position: absolute;
144
+ top: 50%;
145
+ right: 10px;
146
+ margin-top: -.8ex;
147
+ }
148
+
149
+ }
150
+
151
+ main section {
152
+ margin-top: 40px;
153
+ }
154
+
155
+ #kSocial {
156
+
157
+ border-top: solid 1px #cfd5d5;
158
+
159
+ }
160
+
161
+ #kPatrons h3, #kLinks h3 {
162
+ font-size: 12px;
163
+ font-weight: bold;
164
+ margin: 10px 0px 10px 0px;
165
+ }
166
+
167
+ #kPatrons a, #kPatrons span {
168
+ text-align: center;
169
+ padding: 0px 20px;
170
+ display: block;
171
+
172
+ min-width: 200px;
173
+ }
174
+
175
+
176
+ #kPatrons img {
177
+ width: 100%;
178
+ max-width: 300px;
179
+ }
180
+
181
+ #donateAmountField, #donateSubmit, #kMetaStore .button {
182
+ border: solid 1px rgba(0,0,0,.2);
183
+ background-color: #FAFAFA;
184
+ padding: 5px 10px;
185
+ border-radius: 2px;
186
+ background-clip: padding-box;
187
+ position: relative;
188
+ color: #333;
189
+ }
190
+
191
+ #donateSubmit, #kMetaStore .button {
192
+ cursor: pointer;
193
+ }
194
+
195
+ #donateAmountField:focus, #kMetaStore .button:focus {
196
+ border-color: #7cbcec;
197
+ background-color: #FFF;
198
+ }
199
+
200
+ #donateSubmit:hover, #kMetaStore .button:hover {
201
+ background-color: #FFF;
202
+ }
203
+
204
+ #donateSubmit:active, #kMetaStore .button:active {
205
+ background-color: #EEE;
206
+ top: 1px;
207
+ }
208
+
209
+ #kLegal small {
210
+ min-width: 300px;
211
+ }
212
+
213
+ #kLegal {
214
+ color: #6f8181;
215
+ }
216
+
217
+ footer {
218
+ background-color: #EFF1F1;
219
+ position: relative;
220
+ padding-top: 2px;
221
+ font-size: 12px;
222
+ }
223
+
224
+
225
+ #headerCarousel {
226
+ margin-bottom: 20px;
227
+ height: 700px;
228
+ }
229
+
230
+
231
+ @media (max-width: 1700px) {
232
+ #headerCarousel {
233
+ height: 600px;
234
+ }
235
+ }
236
+
237
+ @media (max-width: 1140px) {
238
+ #headerCarousel {
239
+ height: 500px;
240
+ }
241
+ }
242
+
243
+ @media (max-width: 800px) {
244
+ #headerCarousel {
245
+ height: 400px;
246
+ }
247
+ }
248
+
249
+
250
+ #headerCarousel .carousel-inner {
251
+ width: 100%;
252
+ height: 100%;
253
+ }
254
+
255
+ #headerCarousel .carousel-item.dark-text {
256
+ color: #333;
257
+ text-shadow: none;
258
+ }
259
+
260
+
261
+ #headerCarousel .carousel-item {
262
+ color: #EEE;
263
+ text-shadow: 0px 1px 2px rgba(0,0,0,.6);
264
+
265
+ top: 0px !important;
266
+
267
+ width: 100%;
268
+ height: 100%;
269
+
270
+ padding: 40px 50px;
271
+ }
272
+
273
+ #headerCarousel .carousel-item > h1 {
274
+ margin: 10px auto;
275
+ text-align: center;
276
+ display: block;
277
+ }
278
+
279
+ #headerCarousel .carousel-item .alignBottom {
280
+ position: absolute;
281
+ bottom: 0px;
282
+ width: 100%;
283
+ left: 0px;
284
+ padding: 40px 50px;
285
+
286
+ text-align: center;
287
+ }
288
+
289
+ #headerCarousel .carousel-control-prev, #headerCarousel .carousel-control-next {
290
+ top: 50%;
291
+ width: 30px;
292
+ height: 100px;
293
+ margin-top: -50px;
294
+
295
+ background-color: #FAFAFA;
296
+ opacity: 1;
297
+
298
+ font-family: "glyph";
299
+
300
+ color: #333;
301
+ padding: 0px;
302
+ transition: width .2s;
303
+ }
304
+
305
+ #headerCarousel .carousel-control-prev:hover, #headerCarousel .carousel-control-next:hover {
306
+ width: 50px;
307
+ }
308
+
309
+ #headerCarousel .carousel-control-prev:before {
310
+ content: "<";
311
+ width: 100%;
312
+ text-align: center;
313
+ }
314
+
315
+ #headerCarousel .carousel-control-next:before {
316
+ content: ">";
317
+ width: 100%;
318
+ text-align: center;
319
+ }
320
+
321
+ #headerCarousel .carousel-control-prev {
322
+ border-right: solid 2px #3daefd;
323
+ }
324
+
325
+ #headerCarousel .carousel-control-next {
326
+ border-left: solid 2px #3daefd;
327
+ }
328
+
329
+
330
+ #kSocial {
331
+ text-align: right;
332
+ padding-top: 0px !important;
333
+ padding-bottom: 0px !important;
334
+ }
335
+
336
+ #kSocial a {
337
+ padding: 0px 20px;
338
+ text-indent: -9999px;
339
+ text-align: left;
340
+ }
341
+
342
+ #kSocial a:after {
343
+ text-align: center;
344
+ }
345
+
346
+ #kFooterIncome {
347
+ display: flex;
348
+ flex-direction: row;
349
+ align-items: stretch;
350
+ background-color: #abf9c7;
351
+ border: solid 1px #7ceca4;
352
+ border-radius: 2px;
353
+ margin-top: 10px;
354
+ padding: 0px !important;
355
+ }
356
+
357
+ #kDonateForm, #kMetaStore {
358
+ padding: 20px;
359
+ margin: 0px;
360
+ width: 50%;
361
+ display: flex;
362
+ flex-direction: row;
363
+ align-items: center;
364
+ }
365
+
366
+ #kDonateForm {
367
+ border-right: solid 1px #7ceca4;
368
+ }
369
+
370
+ #kFooterIncome .center {
371
+ text-align: center;
372
+ width: 100%;
373
+ }
374
+
375
+ #kMetaStore .button {
376
+ width: auto !important;
377
+ display: inline-block !important;
378
+ }
379
+
380
+ @media (max-width: 768px) {
381
+ #kFooterIncome {
382
+ flex-direction: column;
383
+ }
384
+ #kDonateForm, #kMetaStore {
385
+ width: 100%;
386
+ }
387
+
388
+ #kDonateForm {
389
+ border-right: none;
390
+ border-bottom: solid 1px #7ceca4;
391
+ }
392
+ }
393
+
394
+ #kFooterIncome h3 {
395
+ font-size: 14px;
396
+ color: #377d50;
397
+ padding: 0px 0px 10px;
398
+ margin: 0px;
399
+ }
400
+
401
+ #kFooterIncome h3 a {
402
+ color: auto;
403
+ font-weight: normal;
404
+ margin-left: 20px;
405
+ }
406
+ #kDonateForm h3 a:before {
407
+ content: "( ";
408
+ color: #377d50;
409
+ }
410
+ #kDonateForm h3 a:after {
411
+ content: " )";
412
+ color: #377d50;
413
+ }
414
+
415
+ #kFooterIncome p {
416
+ margin-bottom: 10px;
417
+ }
418
+
419
+ header:after {
420
+ bottom: 0px;
421
+ background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAFCAYAAACzSkmrAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAACkSURBVDiN7dExDsIwDEbh9we1soXE6eCEbJyInQNwgKgxQ9WWFrIShr7ZkewvYm/V5fbwLj8NoKTec0lGzp66ZAzJS8jQ4EKG5KLY+FIeYBAOMoRHyFC4YJwpcqVixGYWnHHG1ebs700YHxBAHWM6DqoYHxBvswvGEegbnL1q/pAqxgQB1DE2EEAdY4aABeMEHH57+n+m8/UerZfYW0qtF9hb9wI2bU03vw4M8QAAAABJRU5ErkJggg==");
422
+
423
+ }
424
+
425
+ footer:before
426
+ {
427
+ top: 0px;
428
+ background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAFCAYAAACzSkmrAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAN1wAADdcBQiibeAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAADOSURBVDiN7ZExTsRQDESfHSJqWq7AKfYOiAtScgmOwQno0CqKIlt/Iw8NYZVF25IU+yoXLmbe2PPrh7ixG3zrADfW3G0dYIckEOtbCRYGiSlUnrhCkMgCwEyJLn5RCE+kABBK1IWbkq6iTpX0ffRe6dXi1D/k3gZZZKxEAFyTcRYB12RcigD4K6Ob3l6e2ka9f1kGGYACJqCdRWg2YwQQdgSgGGU2g36K04DJoEADAOaDSiVsQtYWEXP57G4jwD15BPh8/BrfD4f5P0vvmW/7cKBf79wHGwAAAABJRU5ErkJggg==");
429
+
430
+ }
431
+
432
+ header:after, footer:before {
433
+ content: "";
434
+ display: block !important;
435
+ background-size: 100% 5px;
436
+ position: absolute;
437
+ height: 5px;
438
+ width: 100%;
439
+ left: 0px;
440
+ }
441
+
442
+ #cookieWarning {
443
+ display:none;
444
+ border-top: solid 1px #ffc169;
445
+ background-color: #ffdaa5;
446
+ width: 100%;
447
+ position: fixed;
448
+ bottom: 0px;
449
+ left: 0px;
450
+ right: 0px;
451
+ padding: 10px 20px;
452
+ z-index: 999;
453
+ color: #884d2c;
454
+ }
455
+
456
+
457
+ #cookieWarning button {
458
+ float: right;
459
+ border: solid 1px #ffc169;
460
+ border-radius: 2px;
461
+ background-color: #fff3e1;
462
+ color: #884d2c;
463
+ padding: 10px 20px;
464
+ }
465
+
466
+ main:after {
467
+ content: "";
468
+ display: block !important;
469
+ height: 40px;
470
+ margin: 40px 10px 10px 10px;
471
+ background-repeat: no-repeat;
472
+ background-position: center;
473
+ background-clip: content-box;
474
+ background-size: contain;
475
+
476
+ background-image: url("data:image/svg+xml;utf8,<svg width='100' height='70' xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 100 70'><g fill-rule='evenodd' transform='translate(0 -982)'><path fill='%23ffa92d' d='m53.7 1e3 0.656-2.62-2.53-2.72 0.562 6.75z'/><path fill='%23f58273' d='m74.1 1.02e3s3.37 4.03 8.44 2.16c5.06-1.88 11.6-4.22 11.6-4.22s-1.97-1.03-4.12-2.72c-2.16-1.69-4.69-1.22-4.69-1.22s2.44-1.31 3.19-4.88c0.75-3.56 0.844-8.25 0.844-8.25s-14.5 9.84-15.3 19.1z'/><path d='m84.8 992c0.802-1.87 3.71-6.56-0.421-5.95-2.6 1.68-2.9 5.16-3.52 7.94-0.143 1.09-3.16-2.93-4.11 0.079-0.593 1.67 2.34 3.51 0.538 5.59-0.517 1.63-1.11 3.25-2.81 1.67-6.14-2.92-13.9-4.76-20.1-1.07-6.23 3.76-10.3 11.8-7.94 19 2.53 4.67 8.59 7.12 13.7 5.68-1.12 1.04 0.0138 3.82-1.49 1.64-2.31-1.14 0.602 3.17-1.45 1.29-2.62-0.896-0.566 2.57 0.91 2.71-1.61 4.03 6.66-1.4 3 2.28-2.06 2.78-4.67 5.3-5.87 8.6 0.358 1.69-2.61 5.71 1.07 4.64 3.23-0.762 6.21-2.43 9.5-1.17 2.85 0.226 5.75 0.346 8.58-0.11 2.1 2.4 5.36 3.31 7.31 5.85 2.63 1.62 0.965-3.78 0.985-5.22-0.634-2.13-0.789-3.62 1.82-3.73 3.74-1.29 4.4-5.6 6.84-8.23 1.97-2.9 5.56-3.58 8.36-5.31-1.31-2.27-5.93-1.17-8.43-0.78-4.15 0.788-7.96 2.72-12 3.82-3.77 1.47-5.8-2.3-4.14-5.35 0.638-3.29 1.14-6.61 1.61-9.93 3.64-4.43 7.46-8.73 10.8-13.4 1.52-2.85 1.04-6.77-1.08-9.19-0.509-0.518-1.08-0.975-1.7-1.35z' fill='%233bb566'/><path fill='%23f58273' d='m59.4 1.02e3s0.656 2.62 2.53 4.12 5.06 2.06 5.06 2.06 1.12-5.72 2.53-8.91 3.19-7.78 3.19-7.78-6.37 2.81-8.91 5.16c-2.53 2.34-4.41 5.34-4.41 5.34z'/><path fill='%23ffa92d' d='m70.1 1e3 -0.281-3.84 1.5-1.78 0.562 1.41 6.84-11.5-0.281 5.72-4.12 5.72 1.87 0.938-1.69 1.78-1.03-1.41-1.03 1.78v2.25s-0.75-0.094-1.59-0.281c-0.844-0.188-0.75-0.75-0.75-0.75z'/><path fill='%23ffafa5' d='m29.6 998 1.6-1.15-0.448-6.59 2.24 1.47 0.639 4.09 2.17-4.41 2.37 1.02-4.09 8.06z'/><path fill='%2354d883' d='m23.6 996c-4.93-0.0608-9.92 2.75-11.8 7.42-0.985 2.88-1.97 5.77-2.95 8.65 1.64 1.36 3.43 2.58 4.99 4.03 1.67 2.07 4.57 2.07 6.69 3.41 0.767 1.75-0.444 1.79-1.72 1.97-1.03 1.81 1.55 4.15-0.27 6.08-1.12 2.28-2.43 4.45-3.77 6.6-2.33-0.385-5.91-0.826-5.97-3.83 0.0172-1.85-0.915-5.38-2.79-2.54-2.53 2.75-4.01 7.34-1.53 10.6 1.93 2.56 5.03 5.06 8.43 4.22 0.28 2.44-1.32 4.7-0.754 7.09 1.96 2.43 4.67-1.56 6.34-2.77 1.75-1.22 2.6-3.62 4.64-4.32 2.31-0.463 4.98-0.53 7.11 0.395 1.34 2.17 2.92 4.86 5.65 5.34 3.63-0.144-0.691-3.52-0.351-5.4-0.21-2.56-0.666-5.08-1.09-7.61 1.3-0.095-0.271-2.17 1.17-1.81 2 0.408 4.59-2.72 1.53-3.18-2.21-0.568-4.21-1.08-6.48-1.71-2.84-1.04-0.064-5.2-3.07-5.96-0.926-2 1.24-2.88 2.79-3.14 3.65-1.48 7.72-3.47 9.26-7.35 1.09-3.67-0.925-7.45-3.22-10.2-3.16-3.69-7.92-6.08-12.8-5.95z'/><path d='m28.2 1.03e3 1.21-0.576s0.575 1.85 2.49 1.21c1.92-0.639 3.01-1.41 3.01-1.41s1.6 3.07-0.128 4.99-2.75 2.17-2.75 2.17c-1.77-1.57-3.25-3.47-3.84-6.39z' fill='%23ffe5e1'/><path d='m20.5 1.02e3s0.64 1.28 0.32 2.37-1.98 2.37-1.98 2.37-0.896 2.94-2.62 5.37c-0.864 1.22-2 1.41-3.1 1.54-1.02-1.89-2.26-0.822-3.56 0.294 0.234 0.311 0.485 0.579 0.754 0.804-0.0147 0.019-0.0318 0.032-0.0462 0.052-1.41 1.92 3.13 2.56 3.13 2.56s0.575-1.73 5.31-0.96c4.73 0.767 6.33 3.9 12.4 4.35 6.07 0.448 6.33-3.13 6.33-3.13s-2.37-0.895-6.27-5.37-3.39-9.08-3.39-9.08l-7.29-1.15zm-12.5 8.44c-0.292 0.993-0.115 1.86 0.915 2.52 1.51-1.98 0.325-2.24-0.915-2.52z' fill='%23ffafa5'/><path fill='%23ffafa5' d='m14.9 1e3 -3.45-5.05 5.44-4.48-1.85-2.62-5.56 4.73-0.192-5.5-2.94 0.384s1.15 4.67 0.256 7.23c-0.895 2.56-2.37 5.12-2.37 5.12l2.3 1.41 2.94-4.8 3.01 6.52s0.831-0.384 1.66-1.34c0.831-0.959 0.767-1.6 0.767-1.6z'/><path d='m11.9 1e3 -2.08 1.81s-0.904-2.71-1.09-4.16c-0.181-1.45-0.181-3.89-1.72-3.53-1.54 0.362-0.995 6.96-0.995 6.96s-1.45 0.723-2.35-2.08c-0.904-2.8-2.89-3.07-2.44-0.362 0.452 2.71 1.9 4.34 1.9 4.34s-1.36 0.904-1.36 1.99-0.181 1.81-0.181 1.81-0.814 1.18-0.452 2.44c0.362 1.27 2.98 2.98 3.44 2.89 0.452-0.09 1.09 1.54 2.62 2.17 1.54 0.633 3.17 4.43 3.17 4.43l2.53-0.452 1.27-2.89-0.452-2.8z' fill='%2354d883'/><path fill='%23ffe5e1' d='m18.9 1.02e3s0.767 1.21 0.703 2.37c-0.064 1.15-1.09 2.56-1.09 2.56s-5.05 1.28-7.93 0.064c-2.88-1.21-6.2-4.99-4.09-7.16s6.84-4.73 7.93-2.81 1.02 5.95 2.24 5.75c1.21-0.192 2.24-0.767 2.24-0.767z'/></g></svg>");
477
+
478
+ }
479
+