jekyll-rebellion 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.txt +21 -0
  3. data/README.md +46 -0
  4. data/_includes/blog-list.html +35 -0
  5. data/_includes/component.html +1 -0
  6. data/_includes/components/big-picture.html +25 -0
  7. data/_includes/components/contents.html +25 -0
  8. data/_includes/components/event-item.html +33 -0
  9. data/_includes/components/event-list.html +22 -0
  10. data/_includes/components/floating-boxes.html +37 -0
  11. data/_includes/components/halves.html +33 -0
  12. data/_includes/components/pull-quote.html +26 -0
  13. data/_includes/components/rich-text.html +11 -0
  14. data/_includes/components/section-full-width.html +8 -0
  15. data/_includes/components/section.html +10 -0
  16. data/_includes/components/text-section.html +10 -0
  17. data/_includes/components/youtube-video.html +16 -0
  18. data/_includes/desktop-header.html +35 -0
  19. data/_includes/footer.html +50 -0
  20. data/_includes/google-analytics.html +8 -0
  21. data/_includes/head.html +12 -0
  22. data/_includes/header.html +18 -0
  23. data/_includes/mobile-header.html +54 -0
  24. data/_includes/site-title.html +10 -0
  25. data/_includes/social-links.html +31 -0
  26. data/_layouts/base-post.html +59 -0
  27. data/_layouts/default.html +65 -0
  28. data/_layouts/home.html +10 -0
  29. data/_layouts/page.html +10 -0
  30. data/_layouts/post.html +9 -0
  31. data/_sass/rebellion.scss +44 -0
  32. data/_sass/rebellion/base.scss +318 -0
  33. data/_sass/rebellion/components.scss +326 -0
  34. data/_sass/rebellion/desktop-header.scss +81 -0
  35. data/_sass/rebellion/footer.scss +83 -0
  36. data/_sass/rebellion/header.scss +106 -0
  37. data/_sass/rebellion/mobile-header.scss +213 -0
  38. data/assets/css/rebellion-style.scss +50 -0
  39. data/assets/css/style.scss +2 -0
  40. data/assets/facebook.svg +4 -0
  41. data/assets/fucxedcaps-v2-webfont.woff +0 -0
  42. data/assets/fucxedcaps-v2-webfont.woff2 +0 -0
  43. data/assets/instagram.svg +9 -0
  44. data/assets/js.js +42 -0
  45. data/assets/logo-black.svg +5 -0
  46. data/assets/logo-square.svg +1 -0
  47. data/assets/logo-white.svg +1 -0
  48. data/assets/twitter.svg +4 -0
  49. metadata +160 -0
@@ -0,0 +1,106 @@
1
+
2
+ .nav-hide {
3
+ top: -$action-bar-height;
4
+ }
5
+
6
+ .nav-visible {
7
+ top: 0;
8
+ }
9
+
10
+ .Rebellion-Header {
11
+ transition: top 0.2s ease-in-out;
12
+ box-shadow: 0 1px 10px $shadow-color;
13
+ position: fixed;
14
+ left: 0;
15
+ right: 0;
16
+ z-index: 2;
17
+ color: $brand-text-color;
18
+
19
+ a {
20
+ font-weight: normal;
21
+ }
22
+
23
+ .edgePadding {
24
+ flex-basis: 40px;
25
+ flex-shrink: 10000;
26
+ flex-grow: 0;
27
+ min-width: 5px;
28
+ }
29
+
30
+ .centralPadding {
31
+ flex-basis: 40px;
32
+ flex-shrink: 10000;
33
+ flex-grow: 10000;
34
+ min-width: 20px;
35
+ }
36
+
37
+ .social-links {
38
+ a {
39
+ text-decoration: none;
40
+
41
+ svg {
42
+ transition: 0.2s;
43
+ fill: $brand-text-color;
44
+ height: 38px;
45
+
46
+ &:hover{ fill: invert($brand-text-color);
47
+ path, .st0 {
48
+ fill: $brand-text-color;
49
+ }
50
+ }
51
+
52
+ path, .st0 { fill: invert($brand-text-color); }
53
+ }
54
+ }
55
+
56
+
57
+ }
58
+
59
+ .site-title {
60
+ font-family: $header-font-stack;
61
+ font-size: $base-font-size * 1.625;
62
+ &, &:visited { color: $text-color; }
63
+ transition: 0.1s;
64
+ &:hover {
65
+ text-decoration: none;
66
+ border-bottom: 3px solid $accent-color;
67
+ color: $background-color;
68
+ }
69
+
70
+ height: 100%;
71
+ display: flex;
72
+ flex-direction: column;
73
+ justify-content: center;
74
+
75
+ line-height: 1.2;
76
+ }
77
+
78
+ .site-title img {
79
+ max-height: $action-bar-height;
80
+ box-sizing: border-box;
81
+ padding: 10px 0;
82
+ }
83
+
84
+ .site-title .logo-square
85
+ {
86
+ display: none;
87
+ max-width: $action-bar-height;
88
+ max-height: $action-bar-height;
89
+ }
90
+
91
+ @media screen and (max-width: 250px) {
92
+ .site-title .main-logo { display: none; }
93
+ .site-title .logo-square { display: block; }
94
+ .centralPadding { min-width: 0;}
95
+ .site-title span { display: none; }
96
+ }
97
+ @media screen and (max-width: 140px) {
98
+ .site-title .logo-square { display: none; }
99
+ }
100
+
101
+ @import
102
+ "rebellion/desktop-header",
103
+ "rebellion/mobile-header"
104
+ ;
105
+ }
106
+
@@ -0,0 +1,213 @@
1
+ .mobile {
2
+ background-color: $brand-color;
3
+ display: flex;
4
+ flex-direction: row;
5
+ flex-wrap: nowrap;
6
+ justify-items: space-between;
7
+ align-items: center;
8
+ min-height: $action-bar-height;
9
+ height: 100%;
10
+
11
+ .nav-trigger { display: none; }
12
+
13
+ .site-title {
14
+ order: 2
15
+ }
16
+
17
+ > .Rebellion-Button {
18
+ position: relative;
19
+ top: -1px;
20
+ order: 4;
21
+ margin-right: 16px;
22
+ font-size: 15px;
23
+ line-height: 1;
24
+ height: 42px;
25
+ padding: 13px 16px;
26
+ box-sizing: border-box;
27
+ display: none;
28
+
29
+ @media screen and (min-width: $on-small) {
30
+ & { display: inline-block;}
31
+ }
32
+ }
33
+
34
+ .menu-icon {
35
+ width: 18px;
36
+ height: 15px;
37
+ position: relative;
38
+ left: 0;
39
+ top:0;
40
+ transition: 0.3s;
41
+ padding: 14px;
42
+ border-radius: $rounding;
43
+ background-color: $accent-color;
44
+
45
+ &:hover {
46
+ background-color: $accent-color-dark;
47
+ }
48
+
49
+ > svg path { fill: $accent-text-color; }
50
+ }
51
+
52
+ .close-menu, .open-menu {
53
+ width: 46px;
54
+ height: 46px;
55
+ align-self: center;
56
+ cursor: pointer;
57
+ order: 4
58
+ }
59
+
60
+ .centralPadding { order: 3}
61
+
62
+ .edgePadding {
63
+ order: 6;
64
+ max-width: 16px;
65
+
66
+ &:first-of-type { order: 1; }
67
+ }
68
+
69
+ input { order: 5}
70
+
71
+ .menu-icon { display: block; }
72
+
73
+ .desktop-nav { display: none; }
74
+
75
+ .social-links {
76
+ margin: 5px 20px 20px 0;
77
+ text-align: right;
78
+ align-items: center;
79
+
80
+ svg {
81
+ width: 42px;
82
+ height: 42px;
83
+ transition: 0.2s;
84
+ }
85
+ }
86
+
87
+ .close-menu {
88
+ display: none;
89
+ z-index: 2;
90
+ position: fixed;
91
+ top: 14px;
92
+ right: 16px;
93
+
94
+ .menu-icon {
95
+ width: 18px;
96
+ height: 18px;
97
+ padding: 12px 14px;
98
+ }
99
+ }
100
+
101
+ input ~ .mobile-drawer-container {
102
+ right: -100%;
103
+
104
+ @media screen and (min-width: $on-medium) {
105
+ & { display: none; }
106
+ }
107
+ }
108
+
109
+ input:checked ~ .close-menu { display: block; }
110
+
111
+ .mobile-drawer-container {
112
+ transition: right 0.3s ease-in-out;
113
+ box-shadow: -1px 0 10px $shadow-color;
114
+ position: fixed;
115
+ display: flex;
116
+ top: 0;
117
+ bottom: 0;
118
+ right: 0;
119
+ z-index: 1;
120
+ min-width: 240px;
121
+ max-width: 400px;
122
+ width:85%;
123
+
124
+ @media screen and (max-width: $on-tiny) {
125
+ & { min-width: unset; width: 100%;}
126
+ }
127
+
128
+ .mobile-drawer
129
+ {
130
+ background-color: $brand-color;
131
+
132
+ width: 100%;
133
+ position: relative;
134
+ padding-top: $action-bar-height;
135
+
136
+ display: flex;
137
+ flex-direction: column;
138
+ flex-wrap: nowrap;
139
+ justify-content: space-between;
140
+ align-items: stretch;
141
+ align-content: space-around;
142
+
143
+ > a {
144
+ align-self: center;
145
+ }
146
+
147
+ .mobile-nav {
148
+ display: flex;
149
+ flex-direction: column;
150
+ flex-wrap: nowrap;
151
+ justify-content: flex-start;
152
+ align-items: stretch;
153
+ align-content: space-around;
154
+
155
+ .page-link {
156
+ border-top: 1px solid $text-color;
157
+ color: $text-color;
158
+ line-height: $base-line-height;
159
+ font-family: $header-font-stack;
160
+
161
+ &:hover {
162
+ text-decoration: none;
163
+ border-bottom: 1px solid $accent-color;
164
+ color: $background-color;
165
+ }
166
+ padding: 0.5rem;
167
+ padding-left: 1.5rem;
168
+ }
169
+
170
+ .page-link:hover + .page-link {
171
+ border-top: none;
172
+ }
173
+
174
+ }
175
+ }
176
+ }
177
+
178
+ input:checked ~ .mobile-drawer-container {
179
+ right: 0;
180
+
181
+ @media screen and (min-width: $on-medium) {
182
+ & { display: none;}
183
+ }
184
+ }
185
+
186
+ .scrim {
187
+ position: fixed;
188
+ top:0;
189
+ left:0;
190
+ right:0;
191
+ bottom: 0;
192
+ background-color: black;
193
+ opacity: 0;
194
+ z-index: 0;
195
+ cursor: pointer;
196
+ display: block;
197
+ transition: opacity 0.3s ease-in-out;
198
+ pointer-events:none;
199
+ }
200
+
201
+ input:checked ~ .scrim {
202
+ pointer-events:initial;
203
+ opacity: 0.5;
204
+ }
205
+
206
+ @media screen and (min-width: $on-medium) {
207
+ .open-menu { display: none; }
208
+ }
209
+
210
+ @media screen and (min-width: $on-medium) {
211
+ & { display: none; }
212
+ }
213
+ }
@@ -0,0 +1,50 @@
1
+ ---
2
+ ---
3
+
4
+
5
+ $xr-green: #21a73d !default;
6
+ $xr-yellow: #ffc113 !default;
7
+ $xr-light-blue: #71d0f1 !default;
8
+ $xr-pink: #ed9bc4 !default;
9
+ $xr-purple: #986297 !default;
10
+ $xr-dark-blue: #3f61b6 !default;
11
+ $xr-light-green: #a1da68 !default;
12
+ $xr-pastel-yellow: #f3f35b !default;
13
+
14
+ // Other colours
15
+ $black-color: #111 !default;
16
+ $white-color: #fdfdfd !default;
17
+ $shadow-color: #222;
18
+ $grey-color: #828282 !default;
19
+ $grey-color-light: lighten($grey-color, 40%) !default;
20
+ $grey-color-dark: darken($grey-color, 25%) !default;
21
+
22
+
23
+ $text-color: $black-color !default;
24
+
25
+
26
+ {% if site.invert_brand_text %}
27
+ $brand-text-color: $white-color !default;
28
+ $brand-text-color-invert: $black-color !default;
29
+ {% else %}
30
+ $brand-text-color: $black-color !default;
31
+ $brand-text-color-invert: $white-color !default;
32
+ {% endif %}
33
+
34
+ {% if site.invert_accent_text %}
35
+ $accent-text-color: $white-color !default;
36
+ {% else %}
37
+ $accent-text-color: $black-color !default;
38
+ {% endif %}
39
+ $text-color-light: lighten($text-color, 18%);
40
+ $background-color: $white-color !default;
41
+ $brand-color: {{ site.brand_color | default: "$xr-green" }} !default;
42
+ $accent-color: {{ site.accent_color | default: "$xr-yellow" }} !default;
43
+ $accent-color-dark: darken($accent-color, 15%) !default;
44
+
45
+ $on-tiny: {{ site.theme_tiny | default: 250 }}px !default;
46
+ $on-small: {{ site.theme_small | default: 425 }}px !default;
47
+ $on-medium: {{ site.theme_medium | default: 850 }}px !default;
48
+ $on-large: {{ site.theme_large | default: 1300 }}px !default;
49
+
50
+ @import "rebellion";
@@ -0,0 +1,2 @@
1
+ ---
2
+ ---
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
2
+ <circle cx="151.69" cy="148.96" r="135.04"/>
3
+ <path d="M128.44 242.77c.02-.47.05-.94.05-1.41v-85.19-1.09H100.1c-1.26 0-1.26 0-1.26-1.21 0-10.63.01-21.26-.02-31.89 0-.97.29-1.21 1.23-1.21 9.06.03 18.11.02 27.17.02h1.27v-1.03c.02-8.84-.05-17.67.07-26.51.1-7.11 1.48-13.99 4.58-20.44 4.21-8.76 10.82-15.01 19.8-18.75 6.01-2.49 12.29-3.66 18.76-3.56 7.42.11 14.83.44 22.24.71 1.38.05 2.75.28 4.13.35.77.04 1.03.32 1.02 1.09-.03 4.4-.01 8.8-.01 13.21 0 5.19-.02 10.38.02 15.57.01.9-.25 1.18-1.17 1.17-5.63-.04-11.26-.11-16.89.02-2.56.06-5.15.34-7.65.88-4.82 1.06-7.67 4.24-8.63 9.03-.39 1.93-.6 3.92-.62 5.88-.07 7.2-.03 14.4-.03 21.6 0 .21.03.43.05.76h32.36c1.36 0 1.38 0 1.21 1.29-.73 5.66-1.49 11.32-2.22 16.98-.61 4.73-1.2 9.46-1.77 14.2-.22 1.81-.17 1.81-1.99 1.81h-27.64v85.61c0 .69-.01 1.38-.02 2.07-11.88.04-23.77.04-35.65.04z" fill="#fff"/>
4
+ </svg>
Binary file
Binary file
@@ -0,0 +1,9 @@
1
+ <svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300">
2
+ <style>
3
+ .st0{fill:#fff}
4
+ </style>
5
+ <circle cx="153" cy="150.23" r="135.04"/>
6
+ <path class="st0" d="M185.18 230.32h-64.36c-25.23 0-45.76-20.53-45.76-45.76v-68.67c0-25.23 20.53-45.76 45.76-45.76h64.36c25.23 0 45.76 20.53 45.76 45.76v68.67c0 25.23-20.53 45.76-45.76 45.76zM120.82 81.86c-18.76 0-34.03 15.26-34.03 34.03v68.67c0 18.76 15.26 34.03 34.03 34.03h64.36c18.76 0 34.03-15.26 34.03-34.03v-68.67c0-18.76-15.26-34.03-34.03-34.03h-64.36z"/>
7
+ <path class="st0" d="M153 192.56c-23.47 0-42.56-19.09-42.56-42.56 0-11.57 4.76-22.83 13.05-30.88 8.08-7.85 18.64-12 29.72-11.67 13.25.39 24.25 4.85 31.8 12.92 7.16 7.64 10.81 17.95 10.55 29.8-.25 11.34-4.72 21.97-12.6 29.91-7.99 8.05-18.63 12.48-29.96 12.48zm-.98-70.79c-6.89 0-13.45 2.7-18.54 7.64-5.53 5.37-8.7 12.88-8.7 20.59 0 15.56 12.66 28.22 28.22 28.22 15.48 0 27.87-12.46 28.22-28.37.18-8.02-2.13-14.83-6.68-19.68-4.88-5.21-12.41-8.11-21.75-8.39-.26-.01-.52-.01-.77-.01z"/>
8
+ <circle class="st0" cx="196.59" cy="106.24" r="9.93"/>
9
+ </svg>
data/assets/js.js ADDED
@@ -0,0 +1,42 @@
1
+ // Hide Header on on scroll down
2
+ var didScroll;
3
+ var lastScrollTop = 0;
4
+ var delta = 5;
5
+
6
+ var header = document.querySelector('.Rebellion-Header');
7
+ var main = document.querySelector('main');
8
+ var navbarHeight = header.offsetHeight;
9
+
10
+ window.onscroll = function(event){
11
+ didScroll = true;
12
+ };
13
+
14
+ setInterval(function() {
15
+ if (didScroll) {
16
+ hasScrolled();
17
+ didScroll = false;
18
+ }
19
+ }, 250);
20
+
21
+ function hasScrolled()
22
+ {
23
+ var scrollPos = -main.getBoundingClientRect().top;
24
+
25
+ if (Math.abs(lastScrollTop - scrollPos) <= delta)
26
+ return;
27
+
28
+ if (scrollPos > lastScrollTop)
29
+ {
30
+ if (scrollPos > navbarHeight)
31
+ {
32
+ header.classList.add("nav-hide");
33
+ header.classList.remove("nav-visible");
34
+ }
35
+ } else
36
+ {
37
+ header.classList.remove("nav-hide");
38
+ header.classList.add("nav-visible");
39
+ }
40
+
41
+ lastScrollTop = scrollPos;
42
+ }
@@ -0,0 +1,5 @@
1
+ <svg width="251" height="84" xmlns="http://www.w3.org/2000/svg">
2
+ <g fill="#000105" fill-rule="evenodd">
3
+ <path d="M250.849 74.111V32.859l-45.546 4.924v30.49s.036.618-.926.618h-3.63c-.962 0-.926-.618-.926-.618V38.377l-1.922.208v29.688s.036.618-.926.618h-3.63c-.962 0-.926-.618-.926-.618V39.177l-26.598 2.876v9.764c.234-.006.69-.084 1.122-.546.612-.656 1.78-1.838 3.062-1.838 1.28 0 4.84 1.004 4.84 9.156 0 8.152-3.346 10.572-4.84 10.572-.82 0-1.702.044-2.67-.818-1.104-.982-1.06-1.096-1.346-1.054-.062.01-.168.064-.168.184v.8s.036.618-.924.618h-3.632c-.96 0-.924-.618-.924-.618V42.645l-60.574 6.55v24.916h151.084zm-107.448-19.1s.018.482-.354.482c-.322 0-4.228-.284-4.23 2.56v10.22s.036.616-.926.616h-3.63c-.96 0-.926-.616-.926-.616V50.389c0-.54.712-.484.712-.484h4.058s.712-.056.712.484v1.436a1.66 1.66 0 0 0 1.132-.568c.57-.642 1.602-1.816 3.098-1.816.306 0 .354.178.354.462v5.108zm15.292 5.822c-.178.598-1.102.552-1.102.552h-7.476c0 1.514.076 3.204 1.826 3.204 1.246 0 1.488-.836 1.594-1.228.13-.498.834-.428.834-.428h3.204c.694 0 .658.534.658.534s.356 5.91-6.514 5.91-7.244-8.544-7.244-8.544-1.352-11.336 7.154-11.336c8.58 0 7.266 10.672 7.066 11.336zm31.766 0c-.18.598-1.104.552-1.104.552h-7.476c0 1.514.076 3.204 1.826 3.204 1.246 0 1.488-.836 1.596-1.228.128-.498.832-.428.832-.428h3.204c.694 0 .658.534.658.534s.356 5.91-6.514 5.91-7.244-8.544-7.244-8.544-1.352-11.336 7.156-11.336c8.578 0 7.264 10.672 7.066 11.336zm17.4-10.442c0-.542.712-.484.712-.484h4.058s.712-.058.712.484v17.882s.036.618-.926.618h-3.63c-.96 0-.926-.618-.926-.618V50.391zm6.034-5.734c0 1.778-1.474 3.22-3.292 3.22-1.818 0-3.294-1.442-3.294-3.22 0-1.78 1.476-3.222 3.294-3.222s3.292 1.442 3.292 3.222zm16.03 14.802v.002c0 9.488-5.8 9.74-6.804 9.74-.122 0-.284.006-.462.006-.192 0-.392-.014-.512-.014-1.004 0-6.792-.86-6.792-9.732v-.006c.002-10.208 6.464-9.96 7.132-9.96.046 0 .1.004.152.008.054-.004.108-.008.152-.008.67 0 7.13-.248 7.134 9.96v.004zm14.844-4.89v13.704s.036.618-.926.618h-3.334c-.962 0-.926-.618-.926-.618V56.527s.1-1.282-.854-1.282c-1.172 0-1.576.876-1.578 1.272v11.756s.036.618-.926.618h-3.63c-.962 0-.926-.618-.926-.618V50.391c0-.542.712-.484.712-.484h4.058s.712-.058.712.484v1.432c.424-.016.758-.212.868-.294.342-.256 1.638-2.086 3.368-2.086 3.772 0 3.382 5.126 3.382 5.126zm-20.64 4.632c0-.098.014-1.39-.094-2.72-.112-1.382-1.374-1.308-1.374-1.308s-1.262-.074-1.374 1.308c-.108 1.33-.094 2.622-.094 2.72 0 .096-.014 1.52.094 2.85.064.8.514 1.112.882 1.232.252.11.47.096.47.096s.162.01.364-.056c.384-.082.958-.358 1.032-1.272.108-1.33.094-2.754.094-2.85zm-38.698-2.222s.028-2.482-1.724-2.482c-1.7 0-1.842 2.054-1.842 2.474 0 .42.818.392.818.392h1.922c.926 0 .826-.384.826-.384zm-31.764 0s.028-2.482-1.724-2.482c-1.702 0-1.844 2.054-1.844 2.474 0 .42.82.392.82.392h1.922c.924 0 .826-.384.826-.384zm12.066 2.222c0 .096-.014 1.388.094 2.718.112 1.384 1.374 1.308 1.374 1.308s1.262.076 1.374-1.308c.108-1.33.096-2.622.094-2.718.002-.098.014-1.39-.094-2.72-.112-1.382-1.374-1.308-1.374-1.308s-1.262-.074-1.374 1.308c-.108 1.33-.094 2.622-.094 2.72zM238.588 30.012V5.096H87.504v41.25L193.472 34.89c-2.018-.548-5.564-2.554-5.564-9.52v-.008c.002-10.208 6.464-9.96 7.134-9.96.044 0 .098.004.153.008.051-.004.105-.008.151-.008.668 0 7.13-.248 7.132 9.96v.008c0 5.562-1.991 7.938-3.844 8.962l5.353-.578V16.356c0-.542.711-.484.711-.484h4.058s.712-.058.712.484v1.432c.422-.016.758-.212.868-.294.342-.256 1.638-2.086 3.366-2.086 3.774 0 3.382 5.126 3.382 5.126v11.802l21.504-2.324zm-57.782-13.656c0-.542.712-.484.712-.484h4.058s.712-.058.712.484V34.24s.036.616-.926.616h-3.629c-.96 0-.927-.616-.927-.616V16.356zm-44.066 0c0-.542.712-.484.712-.484h4.058s.71-.058.71.484V34.24s.036.616-.924.616h-3.632c-.96 0-.924-.616-.924-.616V16.356zM108.908 26.8c-.18.598-1.104.552-1.104.552h-7.476c0 1.512.076 3.202 1.828 3.202 1.244 0 1.486-.836 1.594-1.228.128-.498.832-.426.832-.426h3.204c.694 0 .658.534.658.534s.356 5.908-6.514 5.908-7.244-8.542-7.244-8.542-1.352-11.338 7.156-11.338c8.578 0 7.266 10.672 7.066 11.338zm15.676 8.056h-4.934s-.526 0-.834-.546c-.28-.5-1.744-3.666-1.744-3.666s-.142-.284-.426-.284c-.286 0-.428.284-.428.284s-1.462 3.166-1.744 3.666c-.306.546-.832.546-.832.546h-4.934c-.534 0 0-.866 0-.866s4.806-8.044 4.982-8.418c.18-.374 0-.766 0-.766s-4.324-7.724-4.698-8.382c-.374-.658.66-.552.66-.552h4.43c.784 0 .962.498.962.498s1.104 2.564 1.282 2.954c.192.448.32.392.32.392s.114.056.32-.392c.178-.39 1.282-2.954 1.282-2.954s.178-.498.96-.498h4.432s1.032-.106.658.552-4.698 8.382-4.698 8.382-.178.392 0 .766 4.984 8.418 4.984 8.418.534.866 0 .866zM134.7 19.944s.028.59-.584.59h-1.204V34.24s.036.616-.924.616h-3.632c-.96 0-.924-.616-.924-.616V20.534h-1.204c-.612 0-.584-.59-.584-.59v-3.516c0-.556.542-.556.542-.556h1.246v-4.714c0-.54.71-.484.71-.484h4.058s.712-.056.712.484v4.714h1.246s.542 0 .542.556v3.516zm8.073-9.322c0 1.778-1.475 3.22-3.293 3.22s-3.292-1.442-3.292-3.22c0-1.78 1.474-3.222 3.292-3.222 1.818 0 3.293 1.442 3.293 3.222zm14.523 9.912V34.24s.036.616-.926.616h-3.334c-.96 0-.925-.616-.925-.616V22.492s.099-1.282-.855-1.282c-1.172 0-1.576.876-1.578 1.272V34.24s.036.616-.926.616h-3.63c-.962 0-.926-.616-.926-.616V16.356c0-.542.712-.484.712-.484h4.058s.712-.058.712.484v1.432a1.65 1.65 0 0 0 .868-.294c.342-.256 1.638-2.086 3.368-2.086 3.775 0 3.382 5.126 3.382 5.126zm11.532 12.544s.01.412-.17.84c-.576 1.112-2.673 1.218-3.21 1.218-1.003 0-6.795.44-6.799-9.768v-.006c.004-10.208 6.463-9.96 7.133-9.96.538 0 1.67.23 2.206.654.17.136.514.386.67.756.18.428.17.84.17.84v3.114c0 .588-.444.392-.444.392s-.748-.374-1.246-.374c-2.414 0-2.418 4.428-2.418 4.578v.006c0 .15.004 4.578 2.418 4.578.498 0 1.246-.374 1.246-.374s.444-.196.444.392v3.114zm10.695-13.134s.027.59-.584.59h-1.204V34.24s.035.616-.925.616h-3.632c-.96 0-.924-.616-.924-.616V20.534h-1.204c-.611 0-.584-.59-.584-.59v-3.516c0-.556.542-.556.542-.556h1.246v-4.714c0-.54.712-.484.712-.484h4.057s.712-.056.712.484v4.714h1.246s.542 0 .542.556v3.516zm7.317-9.322c0 1.778-1.474 3.22-3.292 3.22-1.817 0-3.294-1.442-3.294-3.22 0-1.78 1.477-3.222 3.294-3.222 1.818 0 3.292 1.442 3.292 3.222zm-82.962 12.322s.028-2.48-1.722-2.48c-1.702 0-1.846 2.054-1.846 2.474 0 .42.82.392.82.392h1.922c.926 0 .826-.386.826-.386zm89.868 2.164c0 .096-.013 1.52.094 2.85.066.8.515 1.112.882 1.232.252.11.473.096.473.096s.16.01.363-.056c.383-.082.956-.358 1.03-1.272.108-1.33.094-2.754.094-2.85 0-.096.014-1.39-.094-2.72-.112-1.382-1.374-1.308-1.374-1.308s-1.262-.074-1.374 1.308c-.107 1.33-.094 2.624-.094 2.72zm15.722-2.626V33.16l2.433-.262V22.492s.099-1.282-.855-1.282c-1.174 0-1.578.876-1.578 1.272zM83.53 42.234C83.53 19.168 64.83.468 41.764.468S-.002 19.168 0 42.234C-.002 65.3 18.698 84 41.764 84 64.832 84 83.53 65.3 83.53 42.234zM41.764 77.568c-8.85 0-16.932-3.262-23.132-8.638h46.266c-6.2 5.376-14.284 8.638-23.134 8.638zm0-30.16l13.1 15.068H28.666l13.098-15.068zm0-10.356l-13.092-15.06h26.184l-13.092 15.06zm-25.63-19.126L37.262 42.23 16.13 66.538c-6.006-6.334-9.7-14.884-9.7-24.304 0-9.42 3.694-17.974 9.704-24.308zM41.764 6.9c8.85 0 16.934 3.26 23.134 8.636h-4.43v.002H23.062v-.002h-4.43C24.832 10.16 32.914 6.9 41.764 6.9zm35.334 35.334c0 9.42-3.692 17.97-9.7 24.304L46.266 42.23l21.13-24.304c6.01 6.334 9.702 14.888 9.702 24.308z"/>
4
+ </g>
5
+ </svg>