jekyll-zeta 0.5.3 → 0.5.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 96bdde843d3a68c982845f50f0d350a43ddd61acf5e75daa72163a487be058e9
4
- data.tar.gz: 80e95a5e868a96c2150f2f0cd63aa651128f037f72ebab926d50b978dc327f9a
3
+ metadata.gz: 96e42115fb230dd9f645bb9c5b027a3ab4b06eda473051cb9a334eb53ab93d23
4
+ data.tar.gz: db51ea741919c63593ef316723ab77f56d84ed3c4e660fe6ab8fab39042b20ab
5
5
  SHA512:
6
- metadata.gz: 14f617c08663d960190bfb7ce81892c68e80457616831adf0c2d2d8a54f0f0ed1b0f0ff1901be6f8b051c7e22bf7b955c0a6ca05ea39e0dce7336d7de1e58733
7
- data.tar.gz: ba96523833adfb04f78ada11d4c9f5d22bc8f9a24465ff934b324c85f86c32379fddde7c81a5d6ec397e142b92f07cecc0549ae1e6be07a1a9bdb4f6357708aa
6
+ metadata.gz: 4f463af8528b18a8690cd4cee3096850388d509086958e75cc104dd0b059bf65fe74656b1ad7ca6a2bf8c853b917c698b374916acb454f9a0bed4a557b341c76
7
+ data.tar.gz: 66d8f79ab0354f7d3369e454e7604a0e5c33292959563f4eb8d2eb3c06e830ca382bbb48f98844157b6f6a179dc0a7808a8ae107178a53edb6811f41c713c258
data/_config.yml CHANGED
@@ -33,7 +33,8 @@ theme_config:
33
33
  show_more_text: 'show more ...'
34
34
  next_page_title: "next"
35
35
  previous_page_title: "previous"
36
- lock_path: "assets/image/lock.svg"
36
+ # lock_path: "assets/image/lock3.png"
37
+ lock_char: '🔑'
37
38
  show_footnote: true
38
39
  menu:
39
40
  - title: Posts
@@ -9,6 +9,7 @@
9
9
 
10
10
  {%- assign yCounter = 0 -%}
11
11
  {%- assign lock_path = site.theme_config.lock_path -%}
12
+ {%- assign lock_char = site.theme_config.lock_char | default: "🔑" -%}
12
13
  <ul class="postlistul">
13
14
  {%- for post in posts limit: include.limit -%}
14
15
  {%- assign ymCur = post.date | date: archive_date_format -%}
@@ -29,19 +30,20 @@
29
30
 
30
31
  <li class="postlistli">
31
32
  <date datetime="{{post.date}}">{{- post.date | date: archive_date_titleformat }}</date>
32
- {%- if lock_path.size > 0 -%}
33
+
33
34
  {%- assign encid = "" | get_encrypt_id:post | default: "" -%}
34
35
  {%- if encid.size > 1 -%}
35
36
  <div >
36
37
  <a href="{{ post.url | relative_url }} ">{{ post.title }}</a>
37
- <img style="width:12px;height:12px;display: inline;margin-left: 5px;" src="{{ lock_path | relative_url}}">
38
+ {%- if lock_path.size > 1 -%}
39
+ <img style="width:12px;height:12px;display: inline;margin-left: 2px;" src="{{ lock_path | relative_url}}">
40
+ {%- else -%}
41
+ <text class="iconchar"> {{lock_char}} </text>
42
+ {%- endif -%}
38
43
  </div>
39
44
  {%- else -%}
40
45
  <a href="{{ post.url | relative_url }}">{{ post.title }}</a>
41
46
  {%- endif -%}
42
- {%- else -%}
43
- <a href="{{ post.url | relative_url }}">{{ post.title }}</a>
44
- {%- endif -%}
45
47
 
46
48
  </li>
47
49
  {%- endfor -%}
@@ -11,23 +11,24 @@
11
11
  {%- endif -%}
12
12
  {%- if posts.size > 0 -%}
13
13
  {%- assign lock_path = site.theme_config.lock_path -%}
14
+ {%- assign lock_char = site.theme_config.lock_char | default: "🔑" -%}
14
15
  <ul class="postlistul">
15
16
  {%- for post in posts limit: include.limit -%}
16
17
  <li class="postlistli">
17
18
  <date>{{- post.date | date: site.theme_config.date_format -}}</date>
18
- {%- if lock_path.size > 0 -%}
19
19
  {%- assign encid = "" | get_encrypt_id:post | default: "" -%}
20
20
  {%- if encid.size > 1 -%}
21
21
  <div >
22
22
  <a href="{{ post.url | relative_url }} ">{{ post.title }}</a>
23
+ {%- if lock_path.size > 1 -%}
23
24
  <img style="width:12px;height:12px;display: inline;margin-left: 2px;" src="{{ lock_path | relative_url}}">
25
+ {%- else -%}
26
+ <text class="iconchar"> {{ lock_char }} </text>
27
+ {%- endif -%}
24
28
  </div>
25
29
  {%- else -%}
26
30
  <a href="{{ post.url | relative_url }}">{{ post.title }}</a>
27
31
  {%- endif -%}
28
- {%- else -%}
29
- <a href="{{ post.url | relative_url }}">{{ post.title }}</a>
30
- {%- endif -%}
31
32
 
32
33
  </li>
33
34
  {%- endfor -%}
@@ -18,20 +18,6 @@ body{
18
18
  // background-color: #fafafa;
19
19
  margin: 0;
20
20
 
21
- // &::before{
22
- // content: "";
23
- // position: fixed;
24
- // left: 0;
25
- // right: 0;
26
- // top: 0;
27
- // bottom: 0;
28
-
29
- // // background-image: url(../image/bg-2.png) ;
30
- // // background-color: #fffef8 ;//#fffef9;
31
- // z-index: -1;
32
- // // filter: grayscale(0.8);
33
- // // opacity: 0.9;
34
- // }
35
21
  }
36
22
 
37
23
  article{
@@ -77,26 +63,10 @@ blockquote {
77
63
  font-style: italic;
78
64
  border-left: 5px solid #dfe2e5;
79
65
  color: #999;
80
- // padding: 2rem 0.25rem .25rem 0.25rem;
81
66
  padding: 15px;
82
67
  margin: 3em 0;
83
68
  background-color: $color-lightGrayBg;
84
69
 
85
-
86
- &::before{
87
- content: "";
88
- display: block;
89
- background: url(../image/quote.svg) no-repeat 50% 50%;
90
- width: 27px;
91
- height: 20px;
92
- position: absolute;
93
- z-index: 1;
94
-
95
- margin-left: -10px;
96
- margin-top: -24px;
97
- opacity: 0.1;
98
-
99
- }
100
70
  }
101
71
 
102
72
  blockquote p {
@@ -122,17 +92,7 @@ td {
122
92
  tr:nth-child(even){
123
93
  background-color: #f5f5f5;
124
94
  }
125
-
126
- // hr {
127
- // margin-top: 2rem;
128
- // margin-bottom: 2rem;
129
-
130
-
131
- // border: 0;
132
- // padding: 3px;
133
-
134
- // background: repeating-linear-gradient(135deg, #000 0px, #000 1px, transparent 1px, transparent 5px);
135
- // }
95
+
136
96
 
137
97
  hr{
138
98
  border: none;
@@ -140,9 +100,7 @@ hr{
140
100
  border:none;
141
101
  text-align: center;
142
102
  color: $color-gray;
143
-
144
- &:before { content: '/////' }
145
- &:after { content: '/////' }
103
+ border-bottom: $color-lightGray dashed 1px;
146
104
  }
147
105
 
148
106
 
@@ -277,4 +235,19 @@ input[type="button"]{
277
235
  input[type="button"]:hover{
278
236
  background-color: $color-black;
279
237
  color: white;
280
- }
238
+ }
239
+
240
+
241
+ pre{
242
+ white-space: pre-wrap; /* 保留空白字符,但是允许自动换行 */
243
+ overflow-wrap: break-word; /* 在单词内允许换行 */
244
+ }
245
+
246
+ img{
247
+ max-width: 80%;
248
+
249
+ }
250
+
251
+ // .iconchar{
252
+ // filter: grayscale(0.2);
253
+ // }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-zeta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.3
4
+ version: 0.5.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - vitock
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-12-08 00:00:00.000000000 Z
11
+ date: 2023-12-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -44,14 +44,14 @@ dependencies:
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: 0.6.0
47
+ version: 0.7.0
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: 0.6.0
54
+ version: 0.7.0
55
55
  description:
56
56
  email:
57
57
  - r
@@ -84,15 +84,7 @@ files:
84
84
  - _layouts/tags.html
85
85
  - _sass/jekyll-zeta.scss
86
86
  - assets/css/main.scss
87
- - assets/image/bg-1.svg
88
- - assets/image/bg-2.png
89
- - assets/image/bg.svg
90
87
  - assets/image/lock.svg
91
- - assets/image/lock1.png
92
- - assets/image/lock2.png
93
- - assets/image/lock3.png
94
- - assets/image/lock4.png
95
- - assets/image/quote.svg
96
88
  - assets/js/mouse_coords.js
97
89
  - index.html
98
90
  homepage: https://github.com/vitock/jekyll-zeta
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.dev/svgjs" width="1440" height="500" preserveAspectRatio="none" viewBox="0 0 1440 500"><g mask="url(&quot;#SvgjsMask18767&quot;)" fill="none"><rect width="116.2" height="116.2" clip-path="url(&quot;#SvgjsClipPath18768&quot;)" x="956.61" y="112.33" fill="url(&quot;#SvgjsPattern18769&quot;)" transform="rotate(198.98, 1014.71, 170.43)"></rect><circle r="60.259228039575376" cx="633.46" cy="438.05" stroke="#037b0b" stroke-width="1.34" stroke-dasharray="3, 2"></circle><rect width="336" height="336" clip-path="url(&quot;#SvgjsClipPath18770&quot;)" x="-151.25" y="60.8" fill="url(&quot;#SvgjsPattern18771&quot;)" transform="rotate(232.62, 16.75, 228.8)"></rect><path d="M1420.22 152.12L1432.32 147.92 1439.07 158.81 1451.17 154.61 1457.92 165.49 1470.02 161.29 1476.77 172.17M1417.55 159.66L1429.65 155.47 1436.4 166.35 1448.5 162.15 1455.25 173.03 1467.35 168.83 1474.1 179.71" stroke="#d3b714" stroke-width="1.89" stroke-dasharray="3, 2"></path><rect width="113.8" height="113.8" clip-path="url(&quot;#SvgjsClipPath18772&quot;)" x="187.67" y="-8.96" fill="url(&quot;#SvgjsPattern18773&quot;)" transform="rotate(124.58, 244.57, 47.94)"></rect><path d="M848.06 421.91 L734.52 538.07L730.1840860792236 418.88408607922355z" stroke="#037b0b" stroke-width="2.68" stroke-dasharray="3, 3"></path><rect width="135.12" height="135.12" clip-path="url(&quot;#SvgjsClipPath18774&quot;)" x="1175.47" y="263.52" fill="url(&quot;#SvgjsPattern18775&quot;)" transform="rotate(61.61, 1243.03, 331.08)"></rect><rect width="283.36" height="283.36" clip-path="url(&quot;#SvgjsClipPath18776&quot;)" x="862.07" y="199.57" fill="url(&quot;#SvgjsPattern18777&quot;)" transform="rotate(104.32, 1003.75, 341.25)"></rect><path d="M1193.57 184.7 L1324.12 245.68L1327.0305341330209 147.00446586697893z" stroke="#037b0b" stroke-width="1"></path><rect width="306.28" height="306.28" clip-path="url(&quot;#SvgjsClipPath18778&quot;)" x="-37.11" y="-67.55" fill="url(&quot;#SvgjsPattern18779&quot;)" transform="rotate(71.67, 116.03, 85.59)"></rect><rect width="119" height="119" clip-path="url(&quot;#SvgjsClipPath18780&quot;)" x="335.21" y="36.32" fill="url(&quot;#SvgjsPattern18781&quot;)" transform="rotate(258.6, 394.71, 95.82)"></rect><circle r="61.72659227992349" cx="1304.84" cy="328.15" stroke="#e73635" stroke-width="2.94" stroke-dasharray="3, 2"></circle><rect width="118.4" height="118.4" clip-path="url(&quot;#SvgjsClipPath18782&quot;)" x="365.98" y="201.7" fill="url(&quot;#SvgjsPattern18783&quot;)" transform="rotate(321.66, 425.18, 260.9)"></rect></g><defs><mask id="SvgjsMask18767"><rect width="1440" height="500" fill="#ffffff"></rect></mask><pattern x="0" y="0" width="116.2" height="11.62" patternUnits="userSpaceOnUse" id="SvgjsPattern18769"><rect width="116.2" height="5.81" x="0" y="0" fill="#d3b714"></rect><rect width="116.2" height="5.81" x="0" y="5.81" fill="rgba(0, 0, 0, 0)"></rect></pattern><clipPath id="SvgjsClipPath18768"><circle r="29.05" cx="1014.71" cy="170.43"></circle></clipPath><pattern x="0" y="0" width="6" height="6" patternUnits="userSpaceOnUse" id="SvgjsPattern18771"><path d="M0 6L3 0L6 6" stroke="#d3b714" fill="none"></path></pattern><clipPath id="SvgjsClipPath18770"><circle r="84" cx="16.75" cy="228.8"></circle></clipPath><pattern x="0" y="0" width="113.8" height="11.38" patternUnits="userSpaceOnUse" id="SvgjsPattern18773"><rect width="113.8" height="5.69" x="0" y="0" fill="#d3b714"></rect><rect width="113.8" height="5.69" x="0" y="5.69" fill="rgba(0, 0, 0, 0)"></rect></pattern><clipPath id="SvgjsClipPath18772"><circle r="28.45" cx="244.57" cy="47.94"></circle></clipPath><pattern x="0" y="0" width="11.26" height="11.26" patternUnits="userSpaceOnUse" id="SvgjsPattern18775"><path d="M5.63 1L5.63 10.26M1 5.63L10.26 5.63" stroke="#e73635" fill="none" stroke-width="1.98"></path></pattern><clipPath id="SvgjsClipPath18774"><circle r="33.78" cx="1243.03" cy="331.08"></circle></clipPath><pattern x="0" y="0" width="12.88" height="12.88" patternUnits="userSpaceOnUse" id="SvgjsPattern18777"><path d="M6.44 1L6.44 11.88M1 6.44L11.88 6.44" stroke="#d3b714" fill="none" stroke-width="2.96"></path></pattern><clipPath id="SvgjsClipPath18776"><circle r="70.84" cx="1003.75" cy="341.25"></circle></clipPath><pattern x="0" y="0" width="11.78" height="11.78" patternUnits="userSpaceOnUse" id="SvgjsPattern18779"><path d="M5.89 1L5.89 10.78M1 5.89L10.78 5.89" stroke="#e73635" fill="none" stroke-width="4.66"></path></pattern><clipPath id="SvgjsClipPath18778"><circle r="76.57" cx="116.03" cy="85.59"></circle></clipPath><pattern x="0" y="0" width="11.9" height="11.9" patternUnits="userSpaceOnUse" id="SvgjsPattern18781"><path d="M0 11.9L5.95 0L11.9 11.9" stroke="#037b0b" fill="none"></path></pattern><clipPath id="SvgjsClipPath18780"><circle r="29.75" cx="394.71" cy="95.82"></circle></clipPath><pattern x="0" y="0" width="7.4" height="7.4" patternUnits="userSpaceOnUse" id="SvgjsPattern18783"><path d="M3.7 1L3.7 6.4M1 3.7L6.4 3.7" stroke="#e73635" fill="none" stroke-width="1"></path></pattern><clipPath id="SvgjsClipPath18782"><circle r="29.6" cx="425.18" cy="260.9"></circle></clipPath></defs></svg>
Binary file
data/assets/image/bg.svg DELETED
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svgjs="http://svgjs.dev/svgjs" width="1000" height="300" preserveAspectRatio="none" viewBox="0 0 1000 300"><g mask="url(&quot;#SvgjsMask25453&quot;)" fill="none"><path d="M319.21 194.97L325.14 183.62 337.51 186.92 343.44 175.57 355.82 178.86 361.75 167.51 374.12 170.81M322.43 202.3L328.36 190.95 340.73 194.24 346.66 182.89 359.04 186.19 364.97 174.84 377.35 178.13" stroke="#e73635" stroke-width="2.23"></path><path d="M166.98 197.66a5.6 5.6 0 1 0-4.55-10.23 5.6 5.6 0 1 0 4.55 10.23zM160.48 183.04a5.6 5.6 0 1 0-4.55-10.23 5.6 5.6 0 1 0 4.55 10.23zM153.98 168.42a5.6 5.6 0 1 0-4.55-10.23 5.6 5.6 0 1 0 4.55 10.23zM147.48 153.8a5.6 5.6 0 1 0-4.55-10.23 5.6 5.6 0 1 0 4.55 10.23zM194.6 220.4a5.6 5.6 0 1 0-4.55-10.23 5.6 5.6 0 1 0 4.55 10.23zM188.1 205.78a5.6 5.6 0 1 0-4.55-10.23 5.6 5.6 0 1 0 4.55 10.23zM181.6 191.16a5.6 5.6 0 1 0-4.55-10.23 5.6 5.6 0 1 0 4.55 10.23zM175.1 176.54a5.6 5.6 0 1 0-4.55-10.23 5.6 5.6 0 1 0 4.55 10.23z" stroke="#d3b714" stroke-width="1.49" stroke-dasharray="3, 2"></path><rect width="60" height="60" clip-path="url(&quot;#SvgjsClipPath25454&quot;)" x="867" y="-10.73" fill="url(&quot;#SvgjsPattern25455&quot;)" transform="rotate(349.78, 897, 19.27)"></rect><rect width="92.2" height="92.2" clip-path="url(&quot;#SvgjsClipPath25456&quot;)" x="905.96" y="215.06" fill="url(&quot;#SvgjsPattern25457&quot;)" transform="rotate(354.02, 952.06, 261.16)"></rect><path d="M639.56 109.91 L615.8299999999999 125.6L640.708427788835 130.76842778883506z" fill="#e73635"></path><path d="M958.47 144.81 L1004.55 166.25L962.7986997292716 174.2413002707284z" fill="#d3b714"></path><rect width="132.48" height="132.48" clip-path="url(&quot;#SvgjsClipPath25458&quot;)" x="818.28" y="131.36" fill="url(&quot;#SvgjsPattern25459&quot;)" transform="rotate(35.14, 884.52, 197.6)"></rect><path d="M943.15 269.03a5.6 5.6 0 1 0 4.53-10.24 5.6 5.6 0 1 0-4.53 10.24zM949.62 254.4a5.6 5.6 0 1 0 4.52-10.25 5.6 5.6 0 1 0-4.52 10.25zM956.08 239.76a5.6 5.6 0 1 0 4.52-10.24 5.6 5.6 0 1 0-4.52 10.24zM962.54 225.12a5.6 5.6 0 1 0 4.53-10.24 5.6 5.6 0 1 0-4.53 10.24zM944.86 304.77a5.6 5.6 0 1 0 4.52-10.25 5.6 5.6 0 1 0-4.52 10.25zM951.32 290.13a5.6 5.6 0 1 0 4.53-10.24 5.6 5.6 0 1 0-4.53 10.24zM957.79 275.5a5.6 5.6 0 1 0 4.52-10.25 5.6 5.6 0 1 0-4.52 10.25zM964.25 260.86a5.6 5.6 0 1 0 4.53-10.24 5.6 5.6 0 1 0-4.53 10.24z" stroke="#e73635" stroke-width="1" stroke-dasharray="3, 2"></path><rect width="128.4" height="128.4" clip-path="url(&quot;#SvgjsClipPath25460&quot;)" x="177.26" y="38.5" fill="url(&quot;#SvgjsPattern25461&quot;)" transform="rotate(259.02, 241.46, 102.7)"></rect><path d="M417.69 86.36 L438.53000000000003 83.93L440.9785627898483 98.01356278984831z" fill="#037b0b"></path><path d="M333.59 171.39L322.49 177.77 313.83 168.34 302.73 174.72 294.06 165.29 282.96 171.68 274.29 162.25M334.81 163.48L323.71 169.86 315.05 160.43 303.94 166.82 295.28 157.39 284.18 163.77 275.51 154.34M336.03 155.57L324.93 161.96 316.26 152.53 305.16 158.91 296.5 149.48 285.4 155.86 276.73 146.43" stroke="#d3b714" stroke-width="1.13" stroke-dasharray="3, 2"></path><rect width="60" height="60" clip-path="url(&quot;#SvgjsClipPath25462&quot;)" x="517.77" y="67.78" fill="url(&quot;#SvgjsPattern25463&quot;)" transform="rotate(133.37, 547.77, 97.78)"></rect><path d="M882.96 112.24L895.06 116.44 893.61 129.16 905.71 133.36 904.27 146.09 916.37 150.29 914.93 163.01" stroke="#d3b714" stroke-width="1.16" stroke-dasharray="3, 3"></path><path d="M115.51 284.04L116.1 271.25 128.72 269.03 129.31 256.23 141.92 254.01 142.52 241.21 155.13 238.99M121.52 289.33L122.11 276.53 134.72 274.31 135.32 261.52 147.93 259.29 148.53 246.5 161.14 244.27M127.52 294.61L128.12 281.82 140.73 279.59 141.33 266.8 153.94 264.57 154.54 251.78 167.15 249.55" stroke="#037b0b" stroke-width="1" stroke-dasharray="3, 2"></path><rect width="156" height="156" clip-path="url(&quot;#SvgjsClipPath25464&quot;)" x="677.33" y="-33.74" fill="url(&quot;#SvgjsPattern25465&quot;)" transform="rotate(220.5, 755.33, 44.26)"></rect></g><defs><mask id="SvgjsMask25453"><rect width="1000" height="300" fill="#ffffff"></rect></mask><pattern x="0" y="0" width="6" height="6" patternUnits="userSpaceOnUse" id="SvgjsPattern25455"><path d="M3 1L3 5M1 3L5 3" stroke="#e73635" fill="none" stroke-width="1.44"></path></pattern><clipPath id="SvgjsClipPath25454"><circle r="15" cx="897" cy="19.27"></circle></clipPath><pattern x="0" y="0" width="9.22" height="9.22" patternUnits="userSpaceOnUse" id="SvgjsPattern25457"><path d="M4.61 1L4.61 8.22M1 4.61L8.22 4.61" stroke="#d3b714" fill="none" stroke-width="3.35"></path></pattern><clipPath id="SvgjsClipPath25456"><circle r="23.05" cx="952.06" cy="261.16"></circle></clipPath><pattern x="0" y="0" width="132.48" height="8.28" patternUnits="userSpaceOnUse" id="SvgjsPattern25459"><rect width="132.48" height="4.14" x="0" y="0" fill="#d3b714"></rect><rect width="132.48" height="4.14" x="0" y="4.14" fill="rgba(0, 0, 0, 0)"></rect></pattern><clipPath id="SvgjsClipPath25458"><circle r="33.12" cx="884.52" cy="197.6"></circle></clipPath><pattern x="0" y="0" width="128.4" height="12.84" patternUnits="userSpaceOnUse" id="SvgjsPattern25461"><rect width="128.4" height="6.42" x="0" y="0" fill="#e73635"></rect><rect width="128.4" height="6.42" x="0" y="6.42" fill="rgba(0, 0, 0, 0)"></rect></pattern><clipPath id="SvgjsClipPath25460"><circle r="32.1" cx="241.46" cy="102.7"></circle></clipPath><pattern x="0" y="0" width="60" height="6" patternUnits="userSpaceOnUse" id="SvgjsPattern25463"><rect width="60" height="3" x="0" y="0" fill="#d3b714"></rect><rect width="60" height="3" x="0" y="3" fill="rgba(0, 0, 0, 0)"></rect></pattern><clipPath id="SvgjsClipPath25462"><circle r="15" cx="547.77" cy="97.78"></circle></clipPath><pattern x="0" y="0" width="6" height="6" patternUnits="userSpaceOnUse" id="SvgjsPattern25465"><path d="M3 1L3 5M1 3L5 3" stroke="#d3b714" fill="none" stroke-width="1"></path></pattern><clipPath id="SvgjsClipPath25464"><circle r="39" cx="755.33" cy="44.26"></circle></clipPath></defs></svg>
Binary file
Binary file
Binary file
Binary file
@@ -1 +0,0 @@
1
- <svg fill="none" height="21" viewBox="0 0 27 21" width="27" xmlns="http://www.w3.org/2000/svg"><path d="m11.96 15.32c0 1.5467-.5067 2.8-1.52 3.76-1.01332.9067-2.29332 1.36-3.83999 1.36-1.86666 0-3.41333-.6133-4.64-1.84-1.173331-1.2267-1.759998-2.9867-1.759998-5.28 0-2.4533.693333-4.85333 2.079998-7.19999 1.44-2.40001 3.44-4.29334 6-5.680008l1.83999 2.799998c-1.38665.96-2.50665 2.02667-3.35999 3.20001-.8 1.17333-1.33333 2.53333-1.6 4.07999.48-.2133 1.04-.32 1.68-.32 1.49334 0 2.72.48 3.67999 1.44.96.96 1.44 2.1867 1.44 3.68zm14.72 0c0 1.5467-.5067 2.8-1.52 3.76-1.0133.9067-2.2933 1.36-3.84 1.36-1.8667 0-3.4133-.6133-4.64-1.84-1.1733-1.2267-1.76-2.9867-1.76-5.28 0-2.4533.6933-4.85333 2.08-7.19999 1.44-2.40001 3.44-4.29334 6-5.680008l1.84 2.799998c-1.3867.96-2.5067 2.02667-3.36 3.20001-.8 1.17333-1.3333 2.53333-1.6 4.07999.48-.2133 1.04-.32 1.68-.32 1.4933 0 2.72.48 3.68 1.44s1.44 2.1867 1.44 3.68z" fill="#000"/></svg>