askclass-news-theme 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (49) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +373 -0
  3. data/README.md +68 -0
  4. data/_config.yml +49 -0
  5. data/_includes/footer.html +10 -0
  6. data/_includes/grid.html +43 -0
  7. data/_includes/head/common.html +40 -0
  8. data/_includes/head/meta.html +24 -0
  9. data/_includes/header.html +13 -0
  10. data/_includes/logo.html +8 -0
  11. data/_includes/post/nextprev.html +18 -0
  12. data/_includes/post/paginator.html +6 -0
  13. data/_layouts/default.html +9 -0
  14. data/_layouts/page.html +5 -0
  15. data/_layouts/post.html +52 -0
  16. data/_layouts/writer.html +24 -0
  17. data/_sass/_bullets.scss +17 -0
  18. data/_sass/_default.scss +173 -0
  19. data/_sass/_grid.scss +23 -0
  20. data/_sass/_paginator.scss +29 -0
  21. data/_sass/_post.scss +48 -0
  22. data/_sass/_tab-colors.scss +64 -0
  23. data/_sass/_tab.scss +121 -0
  24. data/_sass/_table.scss +17 -0
  25. data/_sass/_video.scss +13 -0
  26. data/assets/css/grid.scss +5 -0
  27. data/assets/css/md.scss +7 -0
  28. data/assets/css/style.scss +4 -0
  29. data/assets/css/tab.scss +5 -0
  30. data/assets/favicon.ico +0 -0
  31. data/assets/favicon.png +0 -0
  32. data/assets/logo-144.png +0 -0
  33. data/assets/logo-192.png +0 -0
  34. data/assets/logo-300.png +0 -0
  35. data/assets/logo-48.png +0 -0
  36. data/assets/logo-512.png +0 -0
  37. data/assets/logo-96.png +0 -0
  38. data/assets/logo-icon.svg +4 -0
  39. data/assets/logo-square-144.png +0 -0
  40. data/assets/logo-square-192.png +0 -0
  41. data/assets/logo-square-300.png +0 -0
  42. data/assets/logo-square-48.png +0 -0
  43. data/assets/logo-square-512.png +0 -0
  44. data/assets/logo-square-96.png +0 -0
  45. data/assets/logo.png +0 -0
  46. data/assets/logo.svg +3 -0
  47. data/content/_posts/2022-06-15-the-academy.md +37 -0
  48. data/content/_writers/plato.md +5 -0
  49. metadata +104 -0
@@ -0,0 +1,9 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ {% include header.html %}
4
+ <body>
5
+ {{ content }}
6
+ {% include footer.html %}
7
+ </body>
8
+ </html>
9
+
@@ -0,0 +1,5 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ {{ content }}
@@ -0,0 +1,52 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ {% include header.html %}
4
+ <body>
5
+ {% include logo.html %}
6
+
7
+ <section class="center-align">
8
+ <article>
9
+ <header>
10
+ {% if page.image %}
11
+ <img width="100%" src="{{ page.image }}" alt="{{ page.source }}" />
12
+ {% endif %}
13
+
14
+ <h1>{{ page.title }}</h1>
15
+ <small>{{ page.date | date: "%b %m, %Y" }}</small>
16
+ {% if page.writer %}
17
+ <h5>{{ page.writer }}</h5>
18
+ {% elsif page.category %}
19
+ <h5><a href="/writers/{{ page.category | downcase }}">
20
+ {{ page.category | replace: "_", " " }}
21
+ </a></h5>
22
+ {% else %}
23
+ <h5>Ghost Writer</h5>
24
+ {% endif %}
25
+ </header>
26
+
27
+ <div class="text">{{ page.content }}</div>
28
+
29
+ {% if page.tags %}
30
+ <div class="spacer tags">
31
+ {% for tag in page.tags %}
32
+ <small>{{ tag }}</small>
33
+ {% endfor %}
34
+ </div>
35
+ {% endif %}
36
+
37
+ {% if page.source and page.source_url %}
38
+ <div class="middle-align source">
39
+ <span class="material-icons">source</span>
40
+ <div>
41
+ Source:
42
+ <a target="_blank" href="{{ page.source_url }}">{{ page.source }}</a>
43
+ </div>
44
+ </div>
45
+ {% endif %}
46
+ </div>
47
+ </section>
48
+
49
+ {% include post/paginator.html %}
50
+ {% include footer.html %}
51
+ </body>
52
+ </html>
@@ -0,0 +1,24 @@
1
+ {% assign writer = page.id | remove_first: ".html" | split: "/" | slice: -1 | join: '' %}
2
+ {% for cat in site.categories %}
3
+ {% assign w = cat[0] | downcase %}
4
+ {% if writer == w %}
5
+ {% assign posts = cat[1] %}
6
+ {% assign author = cat[0] | replace: "_", " " %}
7
+ {% break %}
8
+ {% endif %}
9
+ {% endfor %}
10
+
11
+ <!doctype html>
12
+ <html lang="en">
13
+ {% include header.html %}
14
+ <body>
15
+ {% include logo.html image=site.logo.alt_image size=site.logo.alt_size title=author %}
16
+
17
+ {% if posts.size and author %}
18
+ {% include grid.html posts=posts %}
19
+ {% endif %}
20
+
21
+ {% include footer.html %}
22
+ </body>
23
+ </html>
24
+
@@ -0,0 +1,17 @@
1
+ ol > li > ul > li {
2
+ list-style-type: disclosure-closed;
3
+ }
4
+ ol > li > ol > li {
5
+ list-style: lower-alpha;
6
+ }
7
+ ul > li > ul {
8
+ list-style: none;
9
+ li::before {
10
+ content: "\2022";
11
+ color: var(--secondaryColor);
12
+ font-weight: bold;
13
+ margin-left: -1em;
14
+ width: 1em;
15
+ display: inline-block;
16
+ }
17
+ }
@@ -0,0 +1,173 @@
1
+ $specialFont: 'Josefin Sans', sans-serif;
2
+ $mainFont: 'Open Sans', sans-serif;
3
+ $secondaryFont: 'Teko', sans-serif;
4
+ $monoFont: 'Share Tech Mono', monospace;
5
+ $textFont: 'Lexend', sans-serif;
6
+ $primaryColor: aliceblue;
7
+ $secondaryColor: skyblue;
8
+ $linkColor: deeppink;
9
+ $bgColor: #222;
10
+ $fgColor: ivory;
11
+ $darkColor: gray;
12
+ $contentWidth: 600px;
13
+ $themeColor: #ffc100;
14
+ $tertiaryColor: #2cdd88;
15
+
16
+ html {
17
+ --specialFont: #{$specialFont};
18
+ --mainFont: #{$mainFont};
19
+ --secondaryFont: #{$secondaryFont};
20
+ --monoFont: #{$monoFont};
21
+ --textFont: #{$textFont};
22
+ --primaryColor: #{$primaryColor};
23
+ --secondaryColor: #{$secondaryColor};
24
+ --linkColor: #{$linkColor};
25
+ --bgColor: #{$bgColor};
26
+ --fgColor: #{$fgColor};
27
+ --darkColor: #{$darkColor};
28
+ --contentWidth: #{$contentWidth};
29
+ --themeColor: #{$themeColor};
30
+ --tertiaryColor: #{$tertiaryColor};
31
+ }
32
+
33
+ body {
34
+ font-family: $mainFont;
35
+ font-size: 17px;
36
+ line-height: 1.6;
37
+ background-color: $bgColor;
38
+ color: $fgColor;
39
+ &::-webkit-scrollbar {
40
+ width: 6px;
41
+ height: 6px;
42
+ }
43
+ &::-webkit-scrollbar-thumb {
44
+ background-color: rgba(0,0,0,0.5);
45
+ border-radius: 6px;
46
+ }
47
+ &::-webkit-scrollbar-corner {
48
+ background-color: transparent;
49
+ }
50
+ }
51
+
52
+ hr {
53
+ width: 300px;
54
+ margin-bottom: 20px;
55
+ margin-top: 40px;
56
+ border-color: $bgColor;
57
+ }
58
+
59
+ a {
60
+ color: $linkColor;
61
+ text-decoration: none;
62
+ }
63
+
64
+ h1, h2, h3, h4, h5, h6 {
65
+ font-family: $secondaryFont;
66
+ font-weight: normal;
67
+ color: $secondaryColor;
68
+ line-height: 1;
69
+ }
70
+
71
+ h1 { font-size: 2.5em }
72
+ h2 { font-size: 2em }
73
+ h3 { font-size: 1.7em }
74
+ h4 { font-size: 1.4em }
75
+ h5 { font-size: 1.2em }
76
+ h6 { font-size: 1em }
77
+
78
+ .special {
79
+ font-family: $specialFont;
80
+ text-align: center;
81
+ color: $primaryColor;
82
+ margin: 10px 0 5px 0;
83
+ }
84
+
85
+ code, pre {
86
+ font-family: $specialFont;
87
+ }
88
+
89
+ code {
90
+ white-space: pre-wrap;
91
+ color: $primaryColor;
92
+ }
93
+
94
+ pre {
95
+ background: linear-gradient(rgba(0,0,0,0.05),rgba(0,0,0,0.05));
96
+ padding: 10px;
97
+ code {
98
+ color: inherit;
99
+ }
100
+ }
101
+
102
+ sub, sup {
103
+ font-size: small;
104
+ }
105
+ sup {
106
+ vertical-align: 6px;
107
+ }
108
+ sub {
109
+ vertical-align: 0px;
110
+ }
111
+
112
+ .md-18 { font-size: 18px; }
113
+ .md-24 { font-size: 24px; }
114
+ .md-36 { font-size: 36px; }
115
+ .md-48 { font-size: 48px; }
116
+ .md-disabled { color: rgba(0,0,0,0.1); }
117
+
118
+ .buttons {
119
+ margin-bottom: 1em;
120
+ a {
121
+ text-decoration: none;
122
+ color: yellowgreen;
123
+ }
124
+ }
125
+
126
+ @mixin margin-top() {
127
+ margin-top: 100px;
128
+ }
129
+
130
+ @mixin align-middle() {
131
+ display: flex;
132
+ align-items: center;
133
+ text-decoration: none;
134
+ text-align: center;
135
+ img {
136
+ margin-right: 5px;
137
+ }
138
+ }
139
+ @mixin align-center() {
140
+ display: flex;
141
+ align-items: center;
142
+ text-decoration: none;
143
+ flex-direction: column;
144
+ }
145
+
146
+ .middle-align {
147
+ @include align-middle();
148
+ }
149
+
150
+ .center-align {
151
+ @include align-center();
152
+ }
153
+
154
+ .spacer {
155
+ margin-top: 100px;
156
+ }
157
+
158
+ footer {
159
+ @include margin-top();
160
+ @include align-center();
161
+ color: $darkColor;
162
+ font-size: 14px;
163
+ ul {
164
+ display: flex;
165
+ li {
166
+ @include align-middle();
167
+ margin: 0 5px;
168
+ a {
169
+ color: $darkColor;
170
+ }
171
+ }
172
+ }
173
+ }
data/_sass/_grid.scss ADDED
@@ -0,0 +1,23 @@
1
+ $width: 180px;
2
+ $height: 450px;
3
+
4
+ ul.grid {
5
+ list-style-type: none;
6
+ padding-inline-start: unset;
7
+ display: grid;
8
+ grid-gap: 1rem;
9
+ grid-template-columns: repeat(auto-fit, minmax($width, 1fr));
10
+
11
+ li {
12
+ position: relative;
13
+ text-align: center;
14
+ .disabled {
15
+ opacity: .7;
16
+ }
17
+ }
18
+ img {
19
+ object-fit: cover;
20
+ width: 100%;
21
+ max-height: $height;
22
+ }
23
+ }
@@ -0,0 +1,29 @@
1
+ $width: 150px;
2
+
3
+ .paginator-container {
4
+ max-width: var(--contentWidth);
5
+ width: 100%;
6
+ display: flex;
7
+ justify-content: space-between;
8
+ }
9
+
10
+ .paginator {
11
+ width: $width;
12
+ a {
13
+ text-align: center;
14
+ display: block;
15
+ font-size: 14px;
16
+ line-height: 1.3;
17
+ }
18
+ }
19
+
20
+ .pull-left, .pull-right {
21
+ color: var(--darkColor);
22
+ display: flex;
23
+ align-items: end;
24
+ justify-content: flex-end;
25
+ }
26
+
27
+ .pull-left {
28
+ flex-direction: row-reverse;
29
+ }
data/_sass/_post.scss ADDED
@@ -0,0 +1,48 @@
1
+ article {
2
+ max-width: var(--contentWidth);
3
+ display: flex;
4
+ flex-direction: column;
5
+ h1, h2, h3, h4 {
6
+ color: var(--themeColor);
7
+ }
8
+ h1 {
9
+ margin-bottom: 0;
10
+ & + small {
11
+ color: var(--darkColor);
12
+ }
13
+ }
14
+ h5, h5 a {
15
+ color: var(--tertiaryColor);
16
+ }
17
+ .text > p:first-child {
18
+ font-size: 25px;
19
+ line-height: 1.3;
20
+ }
21
+ .tags {
22
+ small {
23
+ font-family: var(--secondaryFont);
24
+ color: var(--darkColor);
25
+ }
26
+ }
27
+ .source {
28
+ color: var(--darkColor);
29
+ font-size: 13px;
30
+ & > * {
31
+ margin-left: 10px;
32
+ }
33
+ }
34
+ }
35
+
36
+ blockquote {
37
+ border-left: 5px solid var(--darkColor);
38
+ padding-left: 10px;
39
+ margin: 0 10px 0 20px;
40
+ font-family: var(--specialFont);
41
+ font-size: 19px;
42
+ p {
43
+ margin: 0;
44
+ }
45
+ & + blockquote {
46
+ margin-bottom: 2em;
47
+ }
48
+ }
@@ -0,0 +1,64 @@
1
+ $c1: #005F73;
2
+ $c2: #03989E;
3
+ $c3: #CA6702;
4
+ $c4: #EE9B00;
5
+ $c5: #355691;
6
+ $c6: #4073A0;
7
+ $c7: #3C5A14;
8
+ $c8: #598B2C;
9
+ $c9: #9B2226;
10
+ $c10: #B18FCF;
11
+
12
+ @mixin paint($color) {
13
+ background-image: linear-gradient(225deg, $color 50%, transparent 50%);
14
+ border-top-color: $color;
15
+ .control {
16
+ .button {
17
+ background-color: $color;
18
+ }
19
+ a {
20
+ color: $color;
21
+ }
22
+ }
23
+ .body {
24
+ h3 {
25
+ color: $color;
26
+ }
27
+ }
28
+ &.current {
29
+ .control {
30
+ background-color: $color;
31
+ }
32
+ }
33
+ }
34
+
35
+ .c1 {
36
+ @include paint($c1);
37
+ }
38
+ .c2 {
39
+ @include paint($c2);
40
+ }
41
+ .c3 {
42
+ @include paint($c3);
43
+ }
44
+ .c4 {
45
+ @include paint($c4);
46
+ }
47
+ .c5 {
48
+ @include paint($c5);
49
+ }
50
+ .c6 {
51
+ @include paint($c6);
52
+ }
53
+ .c7 {
54
+ @include paint($c7);
55
+ }
56
+ .c8 {
57
+ @include paint($c8);
58
+ }
59
+ .c9 {
60
+ @include paint($c9);
61
+ }
62
+ .c10 {
63
+ @include paint($c10);
64
+ }
data/_sass/_tab.scss ADDED
@@ -0,0 +1,121 @@
1
+ $bg: whitesmoke;
2
+ $fg: #444;
3
+ $fontSize: 16px;
4
+
5
+ @mixin special() {
6
+ color: $bg;
7
+ font-family: var(--specialFont);
8
+ }
9
+
10
+ html {
11
+ --bg: #{$bg};
12
+ --fg: #{$fg};
13
+ --fontSize: #{$fontSize};
14
+ }
15
+
16
+ .card-tab {
17
+ display: flex;
18
+ flex-direction: column;
19
+ position: relative;
20
+ background-image: linear-gradient(225deg, $fg 50%, transparent 50%);
21
+ background-size: 120px 27px;
22
+ background-repeat: no-repeat;
23
+ background-position: right top;
24
+ border-radius: 2px;
25
+ box-shadow: 3px 3px 3px rgba(0, 0, 0, .1);
26
+ border-top-width: 22px;
27
+ border-top-style: solid;
28
+ border-top-color: $fg;
29
+ background-color: $bg;
30
+ color: $fg;
31
+ text-transform: none;
32
+ height: calc(100% - 22px);
33
+ }
34
+
35
+ .top-bar {
36
+ @include special();
37
+ margin: -21px 0 0 5px;
38
+ font-size: 15px;
39
+ text-align: left;
40
+ }
41
+
42
+ .tab {
43
+ @include special();
44
+ position: absolute;
45
+ top: -10px;
46
+ right: 3px;
47
+ font-size: 30px;
48
+ line-height: 18px;
49
+ text-align: right;
50
+ small {
51
+ display: block;
52
+ font-size: 12px;
53
+ }
54
+ .material-icons {
55
+ font-size: 24px;
56
+ }
57
+ }
58
+
59
+ .header {
60
+ margin: 0px 50px 0 5px;
61
+ text-align: left;
62
+ line-height: 1;
63
+ height: 30px;
64
+ font-size: 20px;
65
+ overflow: hidden;
66
+ text-overflow: ellipsis;
67
+ display: -webkit-box;
68
+ -webkit-line-clamp: 2;
69
+ -webkit-box-orient: vertical;
70
+ font-family: var(--secondaryFont);
71
+ a {
72
+ color: var(--bgColor);
73
+ }
74
+ }
75
+
76
+ .body {
77
+ flex-grow: 2;
78
+ padding: 0 10px;
79
+ overflow: hidden;
80
+ h2 {
81
+ word-break: break-word;
82
+ margin-top: 10px;
83
+ line-height: 2.4rem;
84
+ }
85
+ .item {
86
+ margin-bottom: 20px;
87
+ text-align: left;
88
+ font-size: $fontSize;
89
+ border-top: 3px outset;
90
+ line-height: normal;
91
+ h3 {
92
+ margin: 0 0 0 5px;
93
+ color: $fg;
94
+ }
95
+ }
96
+ }
97
+
98
+ .control {
99
+ margin-top: 10px;
100
+ padding: 10px;
101
+ display: flex;
102
+ justify-content: space-between;
103
+ a {
104
+ text-decoration: none;
105
+ font-size: $fontSize;
106
+ display: contents;
107
+ &.button {
108
+ display: flex;
109
+ border-radius: 5px;
110
+ padding: 5px 10px;
111
+ color: white!important;
112
+ background-color: $fg;
113
+ }
114
+ }
115
+ .tags {
116
+ font-family: var(--secondaryFont);
117
+ white-space: nowrap;
118
+ text-overflow: ellipsis;
119
+ overflow: hidden;
120
+ }
121
+ }
data/_sass/_table.scss ADDED
@@ -0,0 +1,17 @@
1
+ $odd: #3f3f3f;
2
+ $header: #2f2f2f;
3
+ $border: #333;
4
+
5
+ table, th, td {
6
+ border-bottom: 1px solid $border;
7
+ border-collapse: collapse;
8
+ padding: 5px;
9
+ }
10
+
11
+ th {
12
+ background-color: $header;
13
+ }
14
+
15
+ tr:nth-child(odd) {
16
+ background-color: $odd;
17
+ }
data/_sass/_video.scss ADDED
@@ -0,0 +1,13 @@
1
+ .video-background {
2
+ position: relative;
3
+ padding-bottom: 56.25%; /* 16:9 */
4
+ height: 0;
5
+ iframe {
6
+ position: absolute;
7
+ top: 0;
8
+ left: 0;
9
+ width: 100%;
10
+ height: 100%;
11
+ }
12
+ }
13
+
@@ -0,0 +1,5 @@
1
+ ---
2
+ ---
3
+
4
+ @import "grid";
5
+
@@ -0,0 +1,7 @@
1
+ ---
2
+ ---
3
+
4
+ @import "post";
5
+ @import "paginator";
6
+ @import "bullets";
7
+
@@ -0,0 +1,4 @@
1
+ ---
2
+ ---
3
+
4
+ @import "default";
@@ -0,0 +1,5 @@
1
+ ---
2
+ ---
3
+
4
+ @import "tab";
5
+ @import "tab-colors";
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 300 300">
2
+ <circle cx="150" cy="150" r="150" fill="#ffc100"/>
3
+ <path fill="#2b2b2b" d="m151.53 40.55-86.76 186.5h28.5l30.76-67.62 63.84 25 18.4 42.62h28.96zm.15 58.57 26.38 60.3h-54.03z" />
4
+ </svg>
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
data/assets/logo.png ADDED
Binary file
data/assets/logo.svg ADDED
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1500 500">
2
+ <path fill="#ffc100" fill-rule="nonzero" d="M222.46 374 263 285l83.77 33.01L370.95 374H409L299.01 129 185 374ZM334 285h-71l36.33-79zm119.43 93c14.12 0 26.18-4.49 36.16-13.47 10.27-9.48 15.41-21.25 15.41-35.32 0-10.97-3.06-19.7-9.19-26.19-6.12-6.48-18.03-13.57-35.72-21.25-12.84-5.49-19.26-11.03-19.26-16.61 0-3.2 1.09-5.82 3.26-7.86a11.05 11.05 0 0 1 7.85-3.07c6.43 0 11.81 4.5 16.16 13.47l27.56-14.82c-8.99-19.25-22.72-28.88-41.2-28.88-12.54 0-23.21 4.14-32 12.42-8.6 8.28-12.9 18.76-12.9 31.43 0 9.58 2.52 17.41 7.56 23.5 3.95 4.79 10.77 9.58 20.45 14.36 3.46 1.7 6.87 3.35 10.22 4.94 3.36 1.6 6.72 3.25 10.08 4.94 8.7 5.19 13.04 10.78 13.04 16.76 0 10.38-5.63 15.57-16.9 15.57-5.62 0-10.46-1.9-14.52-5.69-2.07-1.9-5.08-6.33-9.04-13.32L402 342.23c10.08 23.85 27.22 35.77 51.43 35.77Zm94.51-4v-56.17l5.43-5.4L601.95 374H646l-68.49-84.63 63.81-61.27h-45.56l-47.82 47.19V121H514v253zm212.3 5c21.92 0 42.84-5.64 62.76-16.93v-42.1a175.77 175.77 0 0 1-16.21 12.29 90 90 0 0 1-14.87 8.09c-8.57 4-18.98 6-31.23 6-23.7 0-43.73-8.35-60.07-25.03-16.34-16.68-24.5-37.15-24.5-61.42 0-24.57 8.16-45.34 24.5-62.32 16.24-17.08 36.21-25.62 59.92-25.62 21.52 0 42.34 8.44 62.46 25.32v-41.35C803.67 144.64 783.65 139 762.93 139c-37.95 0-68.88 14.13-92.8 42.4-19.42 23.07-29.13 49.34-29.13 78.8 0 32.86 11.6 60.92 34.82 84.2 23.3 23.06 51.45 34.6 84.42 34.6ZM875 374V121h-34v253zm84.52 4c15.94 0 30.84-6.49 44.7-19.46v15.27H1038V228.04h-33.79v16.91c-13.45-13.97-28.65-20.95-45.6-20.95-19.63 0-35.97 7.28-49.03 21.85-13.05 14.57-19.58 32.78-19.58 54.63 0 22.25 6.53 40.8 19.58 55.67 13.16 14.57 29.8 21.85 49.94 21.85Zm4.73-29c-11.67 0-21.35-4.46-29.03-13.39-7.48-8.82-11.22-20.25-11.22-34.29 0-13.13 3.84-24.16 11.52-33.08 7.78-8.83 17.46-13.24 29.03-13.24 12.27 0 22.25 4.36 29.93 13.08 7.68 8.93 11.52 20.26 11.52 34 0 13.73-3.84 25.06-11.52 33.99-7.68 8.62-17.76 12.93-30.23 12.93Zm139.18 29c14.12 0 26.18-4.49 36.16-13.47 10.27-9.48 15.41-21.25 15.41-35.32 0-10.97-3.06-19.7-9.19-26.19-6.12-6.48-18.03-13.57-35.71-21.25-12.85-5.49-19.27-11.03-19.27-16.61 0-3.2 1.09-5.82 3.26-7.86a11.05 11.05 0 0 1 7.85-3.07c6.43 0 11.81 4.5 16.16 13.47l27.56-14.82c-8.99-19.25-22.72-28.88-41.2-28.88-12.54 0-23.21 4.14-32 12.42-8.6 8.28-12.9 18.76-12.9 31.43 0 9.58 2.52 17.41 7.56 23.5 3.95 4.79 10.77 9.58 20.45 14.36 3.46 1.7 6.86 3.35 10.22 4.94 3.36 1.6 6.72 3.25 10.08 4.94 8.7 5.19 13.04 10.78 13.04 16.76 0 10.38-5.63 15.57-16.9 15.57-5.62 0-10.46-1.9-14.52-5.69-2.07-1.9-5.08-6.33-9.04-13.32L1052 342.23c10.08 23.85 27.22 35.77 51.43 35.77Zm103 0c14.12 0 26.18-4.49 36.16-13.47 10.27-9.48 15.41-21.25 15.41-35.32 0-10.97-3.06-19.7-9.19-26.19-6.12-6.48-18.03-13.57-35.71-21.25-12.85-5.49-19.27-11.03-19.27-16.61 0-3.2 1.09-5.82 3.26-7.86a11.05 11.05 0 0 1 7.85-3.07c6.43 0 11.81 4.5 16.16 13.47l27.56-14.82c-8.99-19.25-22.72-28.88-41.2-28.88-12.54 0-23.21 4.14-32 12.42-8.6 8.28-12.9 18.76-12.9 31.43 0 9.58 2.52 17.41 7.56 23.5 3.95 4.79 10.77 9.58 20.45 14.36 3.46 1.7 6.86 3.35 10.22 4.94 3.36 1.6 6.72 3.25 10.08 4.94 8.7 5.19 13.04 10.78 13.04 16.76 0 10.38-5.63 15.57-16.9 15.57-5.62 0-10.46-1.9-14.52-5.69-2.07-1.9-5.08-6.33-9.04-13.32L1155 342.23c10.08 23.85 27.22 35.77 51.43 35.77Zm88.07 0c5.7 0 10.52-1.97 14.45-5.9a19.9 19.9 0 0 0 6.05-14.6c0-5.6-2.02-10.42-6.05-14.45a19.72 19.72 0 0 0-14.45-6.05c-5.6 0-10.42 2.02-14.45 6.05a19.56 19.56 0 0 0-6.05 14.3c0 5.9 1.97 10.82 5.9 14.75 3.93 3.93 8.8 5.9 14.6 5.9z" display="inline"/>
3
+ </svg>