scoobr 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,235 @@
1
+ /* Scaffolding
2
+ =============== */
3
+
4
+ // HTML base
5
+ html {
6
+ -webkit-font-smoothing: antialiased;
7
+ -moz-osx-font-smoothing: grayscale;
8
+ font: $font-style $font-variant $font-weight #{$font-size}/#{$line-height} $font-family;
9
+ font-size: $font-size;
10
+ }
11
+
12
+ // Body base
13
+ body {
14
+ color: $font-color;
15
+ background: $background;
16
+ font-size: $body-font-size;
17
+ }
18
+
19
+ p,
20
+ ol,
21
+ ul,
22
+ dl,
23
+ table {
24
+ margin: 0 0 $margins 0;
25
+ }
26
+
27
+ // Remove extra margin for nested lists
28
+ ul li ul {
29
+ margin-bottom: 0;
30
+ }
31
+
32
+ ol li ol {
33
+ margin-bottom: 0;
34
+ }
35
+
36
+ // Headings
37
+ h1,
38
+ h2,
39
+ h3,
40
+ h4,
41
+ h5 {
42
+ margin: $margins 0;
43
+ font-weight: $heading-font-weight;
44
+ font-family: $heading-font-family;
45
+ line-height: $heading-line-height;
46
+ color: $heading-font-color;
47
+ &:not(:first-child) {
48
+ margin: 1.5rem 0;
49
+ }
50
+ }
51
+
52
+ // Increased margin on additional headings
53
+ h1:not(:first-child),
54
+ h2:not(:first-child),
55
+ h3:not(:first-child) {
56
+ margin-top: 2rem;
57
+ }
58
+
59
+ // Heading individual styles
60
+ h1 {
61
+ font-size: $h1-mobile;
62
+ }
63
+
64
+ h2 {
65
+ font-size: $h2-mobile;
66
+ }
67
+
68
+ h3 {
69
+ font-size: $h3-mobile;
70
+ }
71
+
72
+ h4 {
73
+ font-size: $h4-mobile;
74
+ }
75
+
76
+ h5 {
77
+ font-size: $h5-mobile;
78
+ }
79
+
80
+ @include small-breakpoint {
81
+ // Increased margin on additional headings
82
+ h1:not(:first-child),
83
+ h2:not(:first-child),
84
+ h3:not(:first-child) {
85
+ margin-top: 2.5rem;
86
+ } // Heading desktop individual styles
87
+ h1 {
88
+ font-size: $h1;
89
+ }
90
+ h2 {
91
+ font-size: $h2;
92
+ }
93
+ h3 {
94
+ font-size: $h3;
95
+ }
96
+ h4 {
97
+ font-size: $h4;
98
+ }
99
+ h5 {
100
+ font-size: $h5;
101
+ }
102
+ }
103
+
104
+ // Link styling
105
+ a {
106
+ color: $link-color;
107
+ text-decoration: none;
108
+ &:hover,
109
+ &:active,
110
+ &:focus {
111
+ color: $link-hover-color;
112
+ text-decoration: underline;
113
+ }
114
+ }
115
+
116
+ .title-link {
117
+ color: inherit;
118
+ }
119
+
120
+ // Highlight
121
+ mark {
122
+ background: $highlight;
123
+ padding: 0 0.2rem;
124
+ }
125
+
126
+ // Blockquote
127
+ blockquote {
128
+ margin: 0 0 $margins 0;
129
+ border-left: $bq-border;
130
+ padding: 0 1.5rem;
131
+ font-size: 1.5rem;
132
+ cite {
133
+ display: block;
134
+ margin-top: $margins;
135
+ font-size: 1rem;
136
+ text-align: right;
137
+ }
138
+ }
139
+
140
+ // Code block styling
141
+ pre {
142
+ border: 0;
143
+ border-radius: $border-radius;
144
+ background: $code-background;
145
+ padding: 1rem;
146
+ tab-size: 2;
147
+ color: $code-color;
148
+ font-family: $code-family;
149
+ font-size: $code-size;
150
+ margin: 0 0 $margins 0;
151
+ code {
152
+ font-family: $code-family;
153
+ line-height: 1.2;
154
+ }
155
+ }
156
+
157
+ // Keyboard input
158
+ kbd {
159
+ background-color: #f7f7f7;
160
+ border: 1px solid #ccc;
161
+ border-radius: 3px;
162
+ box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), 0 0 0 2px #fff inset;
163
+ color: #333;
164
+ display: inline-block;
165
+ font-family: Helvetica, Arial, sans-serif;
166
+ font-size: 13px;
167
+ line-height: 1.4;
168
+ margin: 0 .1em;
169
+ padding: .1em .6em;
170
+ text-shadow: 0 1px 0 #fff;
171
+ }
172
+
173
+ // Inline code styling
174
+ :not(pre)>code {
175
+ color: $code-color;
176
+ background: $code-background;
177
+ font-family: $code-family;
178
+ font-size: $code-size;
179
+ padding: 0 0.2rem;
180
+ border: $borders;
181
+ border-radius: $border-radius;
182
+ }
183
+
184
+ // Line break
185
+ hr {
186
+ height: 0;
187
+ border: 0;
188
+ border-top: $borders;
189
+ }
190
+
191
+ // Definition list
192
+ dt {
193
+ font-weight: 600;
194
+ }
195
+
196
+ dd {
197
+ margin-bottom: .5rem;
198
+ }
199
+
200
+ // Full container
201
+ .full-container {
202
+ max-width: 100%;
203
+ padding: 0 1rem;
204
+ }
205
+
206
+ // Container
207
+ .container {
208
+ max-width: $large;
209
+ padding: 0 $padding;
210
+ margin-left: auto;
211
+ margin-right: auto;
212
+ }
213
+
214
+ // Small container
215
+ .small-container {
216
+ @extend .container;
217
+ max-width: $small;
218
+ }
219
+
220
+ // Medium container
221
+ .medium-container {
222
+ @extend .container;
223
+ max-width: $medium;
224
+ }
225
+
226
+ // Content
227
+ .content-section {
228
+ padding: $content-padding-mobile;
229
+ }
230
+
231
+ @include small-breakpoint {
232
+ .content-section {
233
+ padding: $content-padding;
234
+ }
235
+ }
@@ -0,0 +1,51 @@
1
+ /* Tables
2
+ =============== */
3
+
4
+ // Table expands to full width of containing element
5
+ table {
6
+ border-collapse: collapse;
7
+ border-spacing: 0;
8
+ width: 100%;
9
+ max-width: 100%;
10
+ }
11
+
12
+ // Extra border underneath header
13
+ thead th {
14
+ border-bottom: 2px solid $border-color;
15
+ }
16
+
17
+ // Extra border above footer
18
+ tfoot th {
19
+ border-top: 2px solid $border-color;
20
+ }
21
+
22
+ td {
23
+ border-bottom: 1px solid $border-color;
24
+ }
25
+
26
+ th,
27
+ td {
28
+ text-align: left;
29
+ padding: .5rem;
30
+ }
31
+
32
+ caption {
33
+ padding: $padding 0;
34
+ caption-side: bottom;
35
+ color: $caption;
36
+ }
37
+
38
+ .striped-table tbody tr:nth-child(odd) {
39
+ background-color: $stripes;
40
+ }
41
+
42
+ // Container for responsive tables
43
+ .contain-table {
44
+ overflow-x: auto;
45
+ }
46
+
47
+ @include small-breakpoint {
48
+ .contain-table {
49
+ width: 100%;
50
+ }
51
+ }
data/assets/main.scss ADDED
@@ -0,0 +1,24 @@
1
+ ---
2
+
3
+ ---
4
+
5
+ /*! Primitive
6
+ by Tania Rascia */
7
+
8
+ // Configuration
9
+ @import "base/variables";
10
+ @import "base/mixins";
11
+
12
+ // Reset
13
+ @import "base/normalize";
14
+ @import "base/reset";
15
+
16
+ // Components
17
+ @import "components/scaffolding";
18
+ @import "components/grid";
19
+ @import "components/helpers";
20
+ @import "components/buttons";
21
+ @import "components/forms";
22
+ @import "components/tables";
23
+ @import "components/navigation";
24
+ @import "components/layout";
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fi="http://pattern.flaticon.com/" x="0" y="0" width="700" height="350" viewBox="0 0 700 350"><rect x="0px" y="0px" width="100%" height="100%" opacity="1" fill="#34b9f5"/><defs><g transform="matrix(0.1250632444216025 0.08598097747332789 -0.08598097747332789 0.1250632444216025 298.1961980801245 -31.340021429030614)" id="L1_66"><path d="M124.154,6.729c0.014,0.344,0.026,0.688,0.026,1.035c0,14.145-11.467,25.612-25.612,25.612 S72.956,21.909,72.956,7.764c0-0.347,0.013-0.691,0.026-1.035h-9.883c0.014,0.344,0.026,0.688,0.026,1.035 c0,14.145-11.467,25.612-25.612,25.612S11.901,21.909,11.901,7.764c0-0.347,0.013-0.691,0.026-1.035H8.538l17.075,221.972 l17.075,17.075v25.612C42.687,285.533,54.154,297,68.299,297s25.612-11.467,25.612-25.612v-25.612l17.075-17.075L128.061,6.729 H124.154z" fill="#66a7f7"/><path d="M124.154,6.729c0.014,0.344,0.026,0.688,0.026,1.035c0,14.145-11.467,25.612-25.612,25.612 S72.956,21.909,72.956,7.764c0-0.347,0.013-0.691,0.026-1.035h-5.286v290.256c0.201,0.004,0.401,0.015,0.603,0.015 c14.145,0,25.612-11.467,25.612-25.612v-25.612l17.075-17.075L128.061,6.729H124.154z" fill="#458ed6"/><path d="M25.605,235.427c-3.481,0-6.428-2.682-6.699-6.21L1.832,7.245C1.547,3.54,4.318,0.307,8.022,0.022 c3.724-0.294,6.939,2.487,7.223,6.19l17.074,221.973c0.285,3.705-2.486,6.938-6.19,7.223 C25.953,235.421,25.778,235.427,25.605,235.427z" fill="#6169bc"/><path d="M68.299,252.502c-3.715,0-6.726-3.012-6.726-6.726V6.729c0-3.715,3.012-6.726,6.726-6.726 c3.715,0,6.726,3.012,6.726,6.726v239.047C75.026,249.491,72.014,252.502,68.299,252.502z" fill="#6169bc"/><path d="M68.299,0.003c-0.204,0-0.404,0.013-0.603,0.03v252.439c0.199,0.018,0.4,0.03,0.603,0.03 c3.715,0,6.726-3.012,6.726-6.726V6.729C75.026,3.014,72.014,0.003,68.299,0.003z" fill="#414c9e"/><path d="M110.993,235.427c-0.173,0-0.348-0.006-0.523-0.02c-3.704-0.285-6.475-3.518-6.19-7.223 L121.355,6.213c0.284-3.703,3.501-6.495,7.223-6.19c3.704,0.285,6.475,3.518,6.19,7.223l-17.075,221.972 C117.422,232.745,114.474,235.427,110.993,235.427z" fill="#414c9e"/><path d="M68.299,279.925L68.299,279.925c-7.887,0-14.281-6.394-14.281-14.281v-35.133 c0-7.887,6.394-14.281,14.281-14.281l0,0c7.887,0,14.281,6.394,14.281,14.281v35.133C82.58,273.532,76.186,279.925,68.299,279.925 z" fill="#126cc6"/><path d="M68.299,216.231c-0.204,0-0.402,0.022-0.603,0.03v63.633c0.202,0.008,0.4,0.03,0.603,0.03 c7.887,0,14.281-6.394,14.281-14.281V230.51C82.58,222.625,76.186,216.231,68.299,216.231z" fill="#0b64a0"/><path d="M284.553,6.729c0.014,0.344,0.026,0.688,0.026,1.035c0,14.145-11.467,25.612-25.612,25.612 c-14.145,0-25.612-11.467-25.612-25.612c0-0.347,0.013-0.691,0.026-1.035h-9.883c0.014,0.344,0.026,0.688,0.026,1.035 c0,14.145-11.467,25.612-25.612,25.612S172.3,21.909,172.3,7.764c0-0.347,0.012-0.691,0.026-1.035h-3.389l17.075,221.972 l17.075,17.075v25.612c0,14.145,11.467,25.612,25.612,25.612s25.612-11.467,25.612-25.612v-25.612l17.075-17.075L288.46,6.729 H284.553z" fill="#66a7f7"/><path d="M284.553,6.729c0.014,0.344,0.026,0.688,0.026,1.035c0,14.145-11.467,25.612-25.612,25.612 c-14.145,0-25.612-11.467-25.612-25.612c0-0.347,0.013-0.691,0.026-1.035h-5.286v290.256c0.201,0.005,0.401,0.015,0.603,0.015 c14.145,0,25.612-11.467,25.612-25.612v-25.612l17.075-17.075L288.46,6.729H284.553z" fill="#458ed6"/><path d="M186.005,235.427c-3.481,0-6.428-2.682-6.699-6.21L162.231,7.245 c-0.285-3.705,2.486-6.938,6.19-7.223c3.724-0.294,6.939,2.487,7.223,6.19l17.075,221.972c0.285,3.705-2.486,6.938-6.19,7.223 C186.352,235.421,186.177,235.427,186.005,235.427z" fill="#6169bc"/><path d="M228.699,252.502c-3.715,0-6.726-3.012-6.726-6.726V6.729c0-3.715,3.012-6.726,6.726-6.726 s6.726,3.012,6.726,6.726v239.047C235.425,249.491,232.414,252.502,228.699,252.502z" fill="#6169bc"/><path d="M228.699,0.003c-0.204,0-0.404,0.013-0.603,0.03v252.439c0.199,0.018,0.4,0.03,0.603,0.03 c3.715,0,6.726-3.012,6.726-6.726V6.729C235.425,3.014,232.413,0.003,228.699,0.003z" fill="#414c9e"/><path d="M271.393,235.427c-0.173,0-0.348-0.006-0.523-0.02c-3.704-0.285-6.475-3.518-6.19-7.223 L281.754,6.213c0.284-3.703,3.501-6.495,7.223-6.19c3.704,0.285,6.475,3.518,6.19,7.223l-17.075,221.972 C277.821,232.745,274.873,235.427,271.393,235.427z" fill="#414c9e"/><path d="M228.699,279.925L228.699,279.925c-7.887,0-14.281-6.394-14.281-14.281v-35.133 c0-7.887,6.394-14.281,14.281-14.281l0,0c7.887,0,14.281,6.394,14.281,14.281v35.133 C242.979,273.532,236.586,279.925,228.699,279.925z" fill="#126cc6"/><path d="M228.699,216.231c-0.204,0-0.402,0.022-0.603,0.03v63.633c0.202,0.008,0.4,0.03,0.603,0.03 c7.887,0,14.281-6.394,14.281-14.281V230.51C242.979,222.625,236.586,216.231,228.699,216.231z" fill="#0b64a0"/></g><g transform="matrix(0.1346796751022339 0 0 0.1346796751022339 155 330)" id="L1_68"><path d="M293.072,143.554c-2.356-0.793-4.951,0.014-6.446,1.999 c-11.571,15.381-44.898,29.739-45.233,29.882c-1.761,0.753-3.035,2.33-3.398,4.21c-0.363,1.88,0.23,3.818,1.584,5.172 l11.921,11.921c-16.652,12.817-36.259,41.735-69.662,15.34c-17.913-14.155-20.456-56.95-19.449-90.283h29.046 c4.742,0,8.587-3.844,8.587-8.587c0-4.742-3.844-8.587-8.587-8.587H163.23c0.462-6.908,1.006-12.857,1.462-17.301 c16.808-6.514,28.763-22.845,28.763-41.925c0-24.787-20.167-44.954-44.954-44.954s-44.954,20.167-44.954,44.954 c0,19.08,11.955,35.412,28.763,41.925c0.457,4.445,1,10.393,1.462,17.301h-28.205c-4.742,0-8.587,3.844-8.587,8.587 c0,4.742,3.844,8.587,8.587,8.587h29.046c1.007,33.333-1.536,76.128-19.449,90.283c-33.403,26.396-53.011-2.523-69.662-15.34 l11.921-11.921c1.355-1.354,1.949-3.293,1.584-5.173c-0.363-1.88-1.637-3.458-3.399-4.209 c-0.335-0.144-33.639-14.472-45.232-29.882c-1.493-1.985-4.091-2.789-6.446-1.999c-2.355,0.791-3.938,3.002-3.93,5.486 c0.007,2.01,0.364,49.437,17.448,67.392c1.071,1.127,2.552,1.772,4.107,1.792c0.023,0,0.048,0,0.071,0 c1.528,0,2.996-0.607,4.078-1.69l7.236-7.236c3.873,5.549,8.509,11.677,13.981,18.107c18.84,22.142,51.483,52.066,100.005,68.889 c0.51,0.176,1.042,0.265,1.574,0.265s1.064-0.088,1.574-0.265c48.522-16.822,81.165-46.747,100.005-68.889 c5.472-6.431,10.107-12.558,13.981-18.107l7.236,7.236c1.081,1.082,2.549,1.69,4.078,1.69c0.023,0,0.048,0,0.071,0 c1.554-0.02,3.036-0.665,4.107-1.792c17.084-17.955,17.442-65.383,17.448-67.392C297.01,146.556,295.427,144.346,293.072,143.554z M126.783,45.394c0-11.976,9.743-21.719,21.719-21.719s21.719,9.743,21.719,21.719s-9.743,21.719-21.719,21.719 S126.783,57.371,126.783,45.394z" fill="#404066"/><path d="M293.072,143.554c-2.356-0.793-4.951,0.014-6.446,1.999 c-11.571,15.381-44.898,29.739-45.233,29.882c-1.761,0.753-3.035,2.33-3.398,4.21c-0.363,1.88,0.23,3.818,1.584,5.172 l11.921,11.921c-16.652,12.817-36.259,41.735-69.662,15.34c-17.913-14.155-20.456-56.95-19.449-90.283h29.046 c4.742,0,8.587-3.844,8.587-8.587c0-4.742-3.844-8.587-8.587-8.587H163.23c0.462-6.908,1.006-12.857,1.462-17.301 c16.808-6.514,28.763-22.845,28.763-41.925c0-24.787-20.167-44.954-44.954-44.954c-0.113,0-0.224,0.008-0.336,0.009v23.243 c0.113-0.002,0.223-0.017,0.336-0.017c11.976,0,21.719,9.743,21.719,21.719s-9.743,21.719-21.719,21.719 c-0.114,0-0.223-0.015-0.336-0.017v229.435c0.112,0.008,0.224,0.028,0.336,0.028c0.532,0,1.064-0.088,1.574-0.265 c48.522-16.822,81.165-46.747,100.005-68.889c5.472-6.431,10.107-12.558,13.981-18.107l7.236,7.236 c1.081,1.082,2.549,1.69,4.078,1.69c0.023,0,0.048,0,0.071,0c1.554-0.02,3.036-0.665,4.107-1.792 c17.084-17.955,17.442-65.383,17.448-67.392C297.01,146.556,295.427,144.346,293.072,143.554z" fill="#313052"/></g><g transform="matrix(0.18646984645882905 0.016951804266224474 -0.016951804266224474 0.18646984645882905 244.33874186230364 61.29586890185597)" id="L1_71"><path d="M244.53,145.48L244.53,145.48c0,5.28-2.885,10.145-7.535,12.646 c-12.015,6.463-35.667,20.927-50.499,41.41c-5.758,7.953-17.566,7.953-23.324,0c-14.831-20.483-38.484-34.947-50.499-41.41 c-4.65-2.501-7.535-7.366-7.535-12.646l0,0c0-7.942,6.438-14.38,14.38-14.38H230.15C238.092,131.099,244.53,137.538,244.53,145.48 z" fill="#fab63b"/><path d="M230.15,131.099h-56.24v74.349c4.692,0.299,9.504-1.657,12.586-5.912 c14.831-20.483,38.484-34.947,50.499-41.41c4.65-2.501,7.535-7.366,7.535-12.646l0,0 C244.53,137.537,238.092,131.099,230.15,131.099z" fill="#ea9a1b"/><path d="M192.654,192.06v34.848c0,38.649-31.443,70.092-70.092,70.092S52.47,265.557,52.47,226.908V17.82 C52.47,7.978,60.448,0,70.29,0s17.82,7.978,17.82,17.82v209.088c0,18.997,15.455,34.452,34.452,34.452 s34.452-15.455,34.452-34.452V192.06H192.654z" fill="#46467c"/><g><path d="M52.47,17.82v209.088c0,17.711,6.617,33.897,17.49,46.25V0.017 C60.272,0.194,52.47,8.089,52.47,17.82z" fill="#353568"/><path d="M192.654,192.06H173.91v82.49c11.619-12.515,18.743-29.258,18.743-47.642V192.06H192.654z" fill="#353568"/></g><g><path d="M88.11,17.82C88.11,7.978,80.132,0,70.29,0S52.47,7.978,52.47,17.82v33h35.64V17.82z" fill="#eb6a0f"/><rect x="52px" y="50px" width="35px" height="31px" fill="#292966"/></g><g><path d="M52.47,17.82v33h17.49V0.017C60.272,0.194,52.47,8.089,52.47,17.82z" fill="#d35c0b"/><rect x="52px" y="50px" width="17px" height="31px" fill="#222259"/></g></g><g transform="matrix(0.19603370130062103 0 0 0.19603370130062103 320.8790812827647 145.88899541646242)" id="L1_72"><rect x="56px" y="201px" width="17px" height="16px" transform="matrix(-0.7071 0.7071 -0.7071 -0.7071 260.4228 312.4639)" fill="#6169bc"/><rect x="222px" y="201px" width="17px" height="16px" transform="matrix(0.7071 0.7071 -0.7071 0.7071 216.4183 -102.1381)" fill="#6169bc"/><rect x="222px" y="78px" width="17px" height="16px" transform="matrix(0.7071 -0.7071 0.7071 0.7071 6.4067 189.1294)" fill="#6169bc"/><rect x="56px" y="78px" width="17px" height="16px" transform="matrix(-0.7071 -0.7071 0.7071 -0.7071 50.4169 194.5448)" fill="#6169bc"/><path d="M100.584,297h95.833c9.987,0,18.083-8.096,18.083-18.083V18.083C214.5,8.096,206.404,0,196.417,0 h-95.833C90.596,0,82.5,8.096,82.5,18.083v260.833C82.5,288.904,90.596,297,100.584,297z" fill="#66a7f7"/><circle cx="148" cy="148" r="99" fill="#46467c"/><rect x="222px" y="201px" width="17px" height="16px" transform="matrix(0.7071 0.7071 -0.7071 0.7071 216.4183 -102.1381)" fill="#4f5aa8"/><rect x="222px" y="78px" width="17px" height="16px" transform="matrix(0.7071 -0.7071 0.7071 0.7071 6.4067 189.1294)" fill="#4f5aa8"/><path d="M196.417,0H148.5v297h47.916c9.987,0,18.083-8.096,18.083-18.083V18.083 C214.5,8.096,206.404,0,196.417,0z" fill="#5397db"/><path d="M247.5,148.5c0-54.676-44.324-99-99-99v198C203.176,247.5,247.5,203.176,247.5,148.5z" fill="#3b3b5e"/><path d="M82.5,263.167v15.75c0,9.987,8.096,18.083,18.083,18.083h95.833 c9.987,0,18.083-8.096,18.083-18.083v-15.75H82.5z" fill="#7ed9f2"/><path d="M148.5,263.167V297h47.916c9.987,0,18.083-8.096,18.083-18.083v-15.75H148.5z" fill="#5ebdd3"/><path d="M214.5,18.083C214.5,8.096,206.404,0,196.417,0h-95.833C90.596,0,82.5,8.096,82.5,18.083V32.5h132 V18.083z" fill="#7ed9f2"/><path d="M214.5,18.083C214.5,8.096,206.404,0,196.417,0H148.5v32.5h66V18.083z" fill="#5ebdd3"/><circle cx="148" cy="148" r="79" fill="#6169bc"/><path d="M227.5,148.5c0-43.63-35.369-79-79-79v158C192.131,227.5,227.5,192.13,227.5,148.5z" fill="#4f5aa8"/><path d="M181.5,125h-66c-5.247,0-9.5-4.253-9.5-9.5s4.253-9.5,9.5-9.5h66c5.247,0,9.5,4.253,9.5,9.5 S186.747,125,181.5,125z" fill="#ffffff"/><path d="M181.5,106h-33v19h33c5.247,0,9.5-4.253,9.5-9.5S186.747,106,181.5,106z" fill="#e2e2e2"/><path d="M115.5,165c0-9.113,7.387-16.5,16.5-16.5s16.5,7.387,16.5,16.5c0-9.113,7.387-16.5,16.5-16.5 s16.5,7.387,16.5,16.5c0,17-33,33-33,33S115.5,182.5,115.5,165z" fill="#ffffff"/><path d="M181.5,165c0-9.113-7.387-16.5-16.5-16.5c-9.111,0-16.496,7.384-16.5,16.494V198 C148.507,197.997,181.5,181.998,181.5,165z" fill="#e2e2e2"/></g><g transform="matrix(0.25104501843452454 0 0 0.25104501843452454 225.2198161035776 225.2198161035776)" id="L1_74"><path d="M33,140.25L22.695,96.53c-0.798-3.387-3.821-5.78-7.3-5.78H7.5c-4.142,0-7.5,3.358-7.5,7.5v1.5 c0,4.142,3.358,7.5,7.5,7.5h1.222l7.778,33H33z" fill="#b3bbbc"/><path d="M148.5,140.25h-99L66,123.019c0-9.268,6.307-17.346,15.298-19.594l44.996-11.249 c3.726-0.932,7.641-0.781,11.285,0.433l43.92,14.64L148.5,140.25z" fill="#65c9ed"/><path d="M181.5,107.25 147.667,95.972 147.667,140.25 148.5,140.25z" fill="#50b6d1"/><path d="M280.5,143.75 181.5,107.25 148.5,123.75 6.5,123.75 10.5,143.75z" fill="#cdcecc"/><path d="M287.5,147.25c0,0-3.834,39.167-122.5,59H66c0,0-57.833-8.5-55.5-59H287.5z" fill="#adadad"/><path d="M181.5,107.25 148.5,123.75 147.667,123.75 147.667,143.75 280.5,143.75z" fill="#acadac"/><path d="M147.667,147.25v59H165c118.666-19.833,122.5-59,122.5-59H147.667z" fill="#969696"/><path d="M288.75,156.75H8.25c-4.556,0-8.25-3.694-8.25-8.25l0,0c0-4.556,3.694-8.25,8.25-8.25h280.5 c4.556,0,8.25,3.694,8.25,8.25l0,0C297,153.056,293.306,156.75,288.75,156.75z" fill="#4a4a52"/><path d="M288.75,140.25H147.667v16.5H288.75c4.556,0,8.25-3.694,8.25-8.25S293.306,140.25,288.75,140.25z" fill="#38383d"/></g><g transform="matrix(0.18661827119308907 -0.027215164282864565 0.027215164282864565 0.18661827119308907 181.24573489142554 151.3286386834363)" id="L1_75"><g><path d="M74.25,148.5c0-40.896,33.064-74.061,73.917-74.242V0.004C66.306,0.184,0,66.597,0,148.5 s66.306,148.316,148.167,148.496v-74.254C107.314,222.561,74.25,189.396,74.25,148.5z" fill="#fab63b"/><path d="M148.5,0c-0.111,0-0.222,0.004-0.333,0.004v74.254c0.112,0,0.221-0.008,0.333-0.008 c41.007,0,74.25,33.243,74.25,74.25s-33.243,74.25-74.25,74.25c-0.112,0-0.221-0.008-0.333-0.008v74.254 c0.111,0,0.222,0.004,0.333,0.004c82.014,0,148.5-66.486,148.5-148.5S230.514,0,148.5,0z" fill="#dd9117"/></g><g><path d="M148.5,74.25c5.674,0,11.191,0.658,16.5,1.863V0.917C159.581,0.318,154.078,0,148.5,0 S137.419,0.318,132,0.917v75.196C137.309,74.908,142.826,74.25,148.5,74.25z" fill="#c92c35"/><path d="M148.5,222.75c-5.674,0-11.191-0.658-16.5-1.863v75.196c5.419,0.599,10.922,0.917,16.5,0.917 s11.081-0.318,16.5-0.917v-75.196C159.691,222.092,154.174,222.75,148.5,222.75z" fill="#c92c35"/><path d="M148.5,0c-0.334,0-0.666,0.012-1,0.014v74.25c0.333-0.004,0.665-0.014,1-0.014 c5.674,0,11.191,0.658,16.5,1.863V0.917C159.581,0.318,154.078,0,148.5,0z" fill="#a81b29"/><path d="M148.5,222.75c-0.334,0-0.666-0.01-1-0.014v74.25c0.334,0.002,0.665,0.014,1,0.014 c5.578,0,11.081-0.318,16.5-0.917v-75.196C159.691,222.092,154.174,222.75,148.5,222.75z" fill="#a81b29"/><path d="M296.083,132h-75.196c1.205,5.309,1.863,10.826,1.863,16.5s-0.658,11.191-1.863,16.5h75.196 c0.599-5.418,0.917-10.922,0.917-16.5S296.682,137.418,296.083,132z" fill="#a81b29"/><path d="M74.25,148.5c0-5.674,0.658-11.191,1.863-16.5H0.917C0.318,137.418,0,142.922,0,148.5 s0.318,11.082,0.917,16.5h75.196C74.908,159.691,74.25,154.174,74.25,148.5z" fill="#c92c35"/></g></g><g transform="matrix(0.16603277383354906 0.019533267956634886 -0.019533267956634886 0.16603277383354906 69.23966389289252 202.43402385034406)" id="L1_76"><path d="M291.641,148.041c-4.521-1.968-9.773,0.083-11.74,4.604c-0.337,0.753-6.237,13.531-20.072,20.777 c4.129-5.834,7.395-11.523,9.955-16.794c12.172-25.057,11.727-46.259,11.702-47.15c-0.138-4.929-4.239-8.84-9.175-8.675 c-4.929,0.138-8.813,4.245-8.675,9.175c0.015,0.52,0.516,38.164-32.664,69.396c-13.195-15.72-11.573-37.525-11.547-37.848 c0.431-4.898-3.181-9.226-8.081-9.675c-4.919-0.452-9.256,3.167-9.705,8.079c-0.112,1.229-2.413,29.147,15.431,50.646 c-8.539,5.888-18.653,11.284-30.609,15.834c-1.215-16.721-5.344-35.084-14.398-54.012c-3.643-7.615-7.004-15.006-10.105-22.151 c32.06-14.186,46.109-38.733,52.246-57.58c0.034-0.106,0.065-0.211,0.099-0.316c29.84-0.5,47.222-24.197,51.291-37.559 c1.436-4.717-1.216-9.728-5.933-11.164c-4.722-1.442-9.7,1.201-11.136,5.917c-0.323,1.022-7.538,22.944-30.065,24.828 c1.926-13.133,1.008-22.549,0.951-23.102c-0.507-4.896-4.87-8.439-9.776-7.952c-4.897,0.494-8.469,4.87-7.989,9.768 c0.016,0.162,1.506,16.289-4.622,34.653c-1.813,5.435-4.103,10.468-6.816,15.135c-10.606-7.832-16.157-28.717-17.377-36.54 c-0.754-4.869-5.3-8.211-10.177-7.462c-4.874,0.747-8.22,5.304-7.473,10.179c0.616,4.017,5.822,34.353,24.206,48.076 c-6.685,6.83-14.802,12.382-24.317,16.63c-23.739-59.176-28.666-97.687-28.722-98.147c-0.593-4.892-5.033-8.374-9.929-7.792 c-4.896,0.588-8.388,5.034-7.801,9.93c0.285,2.367,7.422,58.925,47.333,142.357c12.019,25.125,15.732,52.197,11.034,80.467 c-0.085,0.511-0.172,1.017-0.261,1.519c-0.226-0.701-0.459-1.409-0.7-2.122c-7.101-20.94-23.11-51.051-59.05-75.584 c-2.803-1.913-5.495-3.936-8.106-6.039c10.448-9.226,15.913-22.759,15.913-39.688c0-14.658-4.196-26.863-4.374-27.375 c-1.623-4.656-6.717-7.113-11.37-5.492c-4.656,1.624-7.115,6.714-5.492,11.37c0.123,0.354,11.438,33.689-7.867,48.899 c-13.792-14.897-23.95-33.247-30.312-54.838c-7.049-23.919-6.538-43.037-6.532-43.212c0.172-4.929-3.685-9.063-8.613-9.233 c-4.935-0.191-9.063,3.685-9.233,8.613c-0.03,0.874-0.654,21.692,7.064,48.246c10.276,35.358,30.629,64.232,58.856,83.5 c0.143,0.098,0.278,0.2,0.421,0.298c-6.99-0.179-15.362-0.968-24.096-3.076c-29.113-7.029-47.852-25.025-55.694-53.491 c-1.31-4.753-6.227-7.544-10.98-6.237c-4.754,1.31-7.546,6.226-6.236,10.98c9.561,34.702,33.323,57.561,68.719,66.105 c11.713,2.828,22.818,3.618,31.57,3.618c8.469,0,14.722-0.738,17.203-1.087c9.343,9.195,17.023,19.36,23,30.435 c-13,3.176-50.148,9.248-79.657-15.266c-3.792-3.15-9.421-2.631-12.573,1.163c-3.151,3.792-2.63,9.421,1.163,12.573 c21.566,17.917,45.798,22.588,65.207,22.588c15.325,0,27.638-2.912,33.261-4.517c0.208,0.573,0.434,1.136,0.634,1.713 c6.864,19.807,6.214,34.756,6.207,34.875c-0.236,4.189,2.475,7.978,6.517,9.105c0.797,0.222,1.603,0.329,2.398,0.329 c3.241,0,6.312-1.772,7.889-4.749c0.316-0.596,2.263-4.354,4.654-10.624c51.675-1.83,85.089-32.129,86.596-33.522 c3.615-3.341,3.837-8.971,0.505-12.594c-3.331-3.622-8.975-3.859-12.608-0.535c-0.305,0.279-27.389,24.598-68.812,28.375 c2.123-8.633,3.886-18.874,4.464-30.267c22.448-7.672,39.474-18.024,52.378-29.129c0.078,0,0.157,0.001,0.235,0.001 c40.681,0,56.332-34.892,56.982-36.385C298.224,155.29,296.162,150.008,291.641,148.041z" fill="#a91523"/><path d="M291.641,148.041c-4.521-1.968-9.773,0.083-11.74,4.604c-0.337,0.753-6.237,13.531-20.072,20.777 c4.129-5.834,7.395-11.523,9.955-16.794c12.172-25.057,11.727-46.259,11.702-47.15c-0.138-4.929-4.239-8.84-9.175-8.675 c-4.929,0.138-8.813,4.245-8.675,9.175c0.015,0.52,0.516,38.164-32.664,69.396c-13.195-15.72-11.573-37.525-11.547-37.848 c0.431-4.898-3.181-9.226-8.081-9.675c-4.919-0.452-9.256,3.167-9.705,8.079c-0.112,1.229-2.413,29.147,15.431,50.646 c-8.539,5.888-18.653,11.284-30.609,15.834c-1.215-16.721-5.344-35.084-14.398-54.012c-3.643-7.615-7.004-15.006-10.105-22.151 c32.06-14.186,46.109-38.733,52.246-57.58c0.034-0.106,0.065-0.211,0.099-0.316c29.84-0.5,47.222-24.197,51.291-37.559 c1.436-4.717-1.216-9.728-5.933-11.164c-4.722-1.442-9.7,1.201-11.136,5.917c-0.323,1.022-7.538,22.944-30.065,24.828 c1.926-13.133,1.008-22.549,0.951-23.102c-0.507-4.896-4.87-8.439-9.776-7.952c-4.897,0.494-8.469,4.87-7.989,9.768 c0.016,0.162,1.506,16.289-4.622,34.653c-1.813,5.435-4.103,10.468-6.816,15.135c-10.606-7.832-16.157-28.717-17.377-36.54 c-0.754-4.869-5.3-8.211-10.177-7.462c-4.874,0.747-8.22,5.304-7.473,10.179c0.616,4.017,5.822,34.353,24.206,48.076 c-6.685,6.83-14.802,12.382-24.317,16.63c-2.877-7.171-5.475-14.035-7.824-20.568v48.003c2.713,6.134,5.61,12.442,8.706,18.913 c12.019,25.125,15.732,52.197,11.034,80.467c-0.085,0.511-0.172,1.017-0.261,1.519c-0.226-0.701-0.459-1.409-0.7-2.122 c-3.559-10.495-9.357-23.293-18.779-36.539v40.062c0.339-0.093,0.669-0.184,0.97-0.27c0.208,0.573,0.434,1.136,0.634,1.713 c6.864,19.807,6.214,34.756,6.207,34.875c-0.236,4.189,2.475,7.978,6.517,9.105c0.797,0.222,1.603,0.329,2.398,0.329 c3.241,0,6.312-1.772,7.889-4.749c0.316-0.596,2.263-4.354,4.654-10.624c51.675-1.83,85.089-32.129,86.596-33.522 c3.615-3.341,3.837-8.971,0.505-12.594c-3.331-3.622-8.975-3.859-12.608-0.535c-0.305,0.279-27.389,24.598-68.812,28.375 c2.123-8.633,3.886-18.874,4.464-30.267c22.448-7.672,39.474-18.024,52.378-29.129c0.078,0,0.157,0.001,0.235,0.001 c40.681,0,56.332-34.892,56.982-36.385C298.224,155.29,296.162,150.008,291.641,148.041z" fill="#8e1325"/></g><g transform="matrix(0.20201952755451202 0 0 0.20201952755451202 21 314.99999785452883)" id="L1_77"><path d="M269.537,168.352c-4.043,0-7.81-2.557-9.163-6.6l-18.323-54.786 c-5.82-17.399-22.056-29.089-40.403-29.089H95.352c-18.347,0-34.583,11.69-40.403,29.089l-18.323,54.786 c-1.694,5.06-7.169,7.787-12.229,6.099c-5.061-1.693-7.791-7.168-6.099-12.229l18.323-54.786 c8.46-25.291,32.062-42.284,58.731-42.284h106.295c26.669,0,50.271,16.993,58.731,42.284l18.323,54.786 c1.693,5.062-1.038,10.537-6.099,12.229C271.586,168.19,270.553,168.352,269.537,168.352z" fill="#8c9496"/><path d="M170.306,165.245l19.292,45.998c8.105,19.324-3.682,42.061-21.806,42.061h-38.585 c-18.123,0-29.91-22.737-21.806-42.061l19.292-45.998C135.679,143.824,161.321,143.824,170.306,165.245z" fill="#a1beb9"/><path d="M189.598,211.244l-19.292-45.998c-4.375-10.431-12.699-15.767-21.127-16.04v104.1h18.614 C185.915,253.305,197.703,230.568,189.598,211.244z" fill="#86a8a1"/><g><path d="M202.847,240.211c-15.499,0-29.207-9.879-34.107-24.583l-12.267-36.801 c-1.146-3.437-4.35-5.746-7.972-5.746c-3.623,0-6.826,2.309-7.972,5.746l-12.267,36.801 c-4.901,14.704-18.608,24.583-34.107,24.583H43.072c-19.824,0-35.952-16.128-35.952-35.952v-35.077 c0-24.21,19.696-43.906,43.905-43.906h194.949c24.21,0,43.906,19.696,43.906,43.906v35.077c0,19.824-16.128,35.952-35.952,35.952 H202.847z" fill="#297cce"/><path d="M85.511,125.277L19.61,231.466c6.302,5.442,14.501,8.745,23.462,8.745h32.355l62.001-114.935 L85.511,125.277L85.511,125.277z" fill="#559dd8"/><path d="M245.974,125.277h-97.813v47.832c0.114-0.005,0.224-0.027,0.339-0.027 c3.623,0,6.826,2.309,7.972,5.746l12.267,36.801c4.901,14.704,18.608,24.583,34.107,24.583h51.082 c19.824,0,35.952-16.128,35.952-35.952v-35.077C289.88,144.972,270.184,125.277,245.974,125.277z" fill="#0f68b2"/><path d="M293.168,149.807c-5.463-14.654-19.843-59.327-19.843-59.327 c-9.359-27.984-35.471-46.785-64.978-46.785H88.653c-29.507,0-55.619,18.801-64.978,46.784c0,0-14.38,44.674-19.843,59.328 C1.573,155.866,0,162.326,0,169.182v35.077c0,23.75,19.322,43.072,43.072,43.072h51.082c18.569,0,34.99-11.836,40.862-29.451 l12.267-36.801c0.175-0.525,0.664-0.878,1.217-0.878s1.043,0.353,1.218,0.878l12.267,36.801 c5.872,17.616,22.293,29.451,40.862,29.451h51.082c23.75,0,43.072-19.322,43.072-43.072v-35.077 C297,162.326,295.427,155.865,293.168,149.807z M42.003,96.608c6.719-20.09,25.466-33.588,46.65-33.588h119.695 c21.184,0,39.931,13.498,46.65,33.589l8.211,24.55c-5.386-1.939-11.188-3.002-17.233-3.002H51.026 c-6.046,0-11.847,1.063-17.234,3.002L42.003,96.608z M282.76,204.26c0,15.924-12.909,28.832-28.832,28.832h-51.082 c-12.41,0-23.428-7.941-27.353-19.715l-12.267-36.801c-2.113-6.339-8.045-10.614-14.726-10.614s-12.614,4.276-14.726,10.614 l-12.267,36.801c-3.924,11.773-14.942,19.715-27.353,19.715H43.072c-15.924,0-28.832-12.909-28.832-28.832v-35.077 c0-20.316,16.47-36.786,36.786-36.786h194.949c20.316,0,36.786,16.47,36.786,36.786v35.077H282.76z" fill="#313052"/></g></g><g transform="matrix(0.1577560156583786 0 0 0.1577560156583786 84.5512004494667 68.55870527697152)" id="L1_78"><path d="M70.331,258.613c4.538-4.538,11.228-5.611,16.784-3.219c3.344,1.439,7.222,0.736,9.797-1.839 l0.645-0.645c2.574-2.574,3.278-6.452,1.839-9.797c-2.392-5.556-1.318-12.247,3.219-16.784c4.538-4.538,11.228-5.611,16.784-3.219 c3.344,1.439,7.222,0.736,9.797-1.839l0.645-0.645c2.574-2.574,3.278-6.452,1.839-9.797c-2.392-5.556-1.318-12.247,3.219-16.784 c4.538-4.538,11.228-5.611,16.784-3.219c3.344,1.439,7.222,0.736,9.797-1.839l27.009-27.009l-53.807-53.807L11.143,231.71 c-14.858,14.858-14.858,38.949,0,53.807l0,0c14.858,14.858,38.949,14.858,53.807,0l0.323-0.323 c2.574-2.574,3.278-6.452,1.839-9.797C64.72,269.842,65.793,263.151,70.331,258.613z" fill="#66a7f7"/><path d="M285.56,0.339c0,0-29.039,34.43-75.33,32.284l-75.33,75.33l53.807,53.807 c0,0,56.655-56.341,75.33-75.33C279.592,70.613,315.234,33.493,285.56,0.339z" fill="#c2cacc"/><path d="M10.969,285.333c0.059,0.06,0.114,0.123,0.174,0.183l0,0c14.858,14.858,38.949,14.858,53.807,0 l0.323-0.323c2.574-2.574,3.278-6.452,1.839-9.797c-2.392-5.556-1.318-12.247,3.219-16.784c4.538-4.538,11.228-5.611,16.784-3.219 c3.344,1.439,7.222,0.736,9.797-1.839l0.645-0.645c2.574-2.574,3.278-6.452,1.839-9.797c-2.392-5.556-1.318-12.246,3.219-16.784 c4.538-4.538,11.228-5.611,16.784-3.219c3.344,1.439,7.222,0.736,9.797-1.839l0.645-0.645c2.574-2.574,3.278-6.452,1.839-9.797 c-2.392-5.556-1.318-12.247,3.219-16.784c4.538-4.538,11.228-5.611,16.784-3.219c3.344,1.439,7.222,0.736,9.797-1.839 l27.009-27.009l-27.082-27.082L10.969,285.333z" fill="#4f98e0"/><path d="M161.624,134.678l27.082,27.082c0,0,56.655-56.341,75.33-75.33 c14.646-14.892,47.087-48.665,26.07-80.235L161.624,134.678z" fill="#aeb6b7"/><circle cx="156" cy="140" r="38" fill="#313052"/><path d="M183.143,113.16l-53.798,53.798c0.059,0.06,0.114,0.123,0.174,0.183 c14.858,14.858,38.949,14.858,53.807,0c14.858-14.858,14.858-38.949,0-53.807C183.266,113.274,183.202,113.219,183.143,113.16z" fill="#262644"/><circle cx="156" cy="140" r="22" fill="#505089"/><path d="M172.376,123.926l-32.266,32.266c0.06,0.061,0.109,0.128,0.17,0.188 c8.915,8.915,23.369,8.915,32.284,0s8.915-23.369,0-32.284C172.505,124.035,172.438,123.985,172.376,123.926z" fill="#444477"/></g></defs><g fi:class="KUsePattern"><pattern id="pattern_L1_66" width="350" height="350" patternUnits="userSpaceOnUse"><use xlink:href="#L1_66" x="-350" y="-350"/><use xlink:href="#L1_66" x="0" y="-350"/><use xlink:href="#L1_66" x="350" y="-350"/><use xlink:href="#L1_66" x="-350" y="0"/><use xlink:href="#L1_66" x="0" y="0"/><use xlink:href="#L1_66" x="350" y="0"/><use xlink:href="#L1_66" x="-350" y="350"/><use xlink:href="#L1_66" x="0" y="350"/><use xlink:href="#L1_66" x="350" y="350"/></pattern><rect x="0" y="0" width="100%" height="100%" fill="url(#pattern_L1_66)"/></g><g fi:class="KUsePattern"><pattern id="pattern_L1_68" width="350" height="350" patternUnits="userSpaceOnUse"><use xlink:href="#L1_68" x="-350" y="-350"/><use xlink:href="#L1_68" x="0" y="-350"/><use xlink:href="#L1_68" x="350" y="-350"/><use xlink:href="#L1_68" x="-350" y="0"/><use xlink:href="#L1_68" x="0" y="0"/><use xlink:href="#L1_68" x="350" y="0"/><use xlink:href="#L1_68" x="-350" y="350"/><use xlink:href="#L1_68" x="0" y="350"/><use xlink:href="#L1_68" x="350" y="350"/></pattern><rect x="0" y="0" width="100%" height="100%" fill="url(#pattern_L1_68)"/></g><g fi:class="KUsePattern"><pattern id="pattern_L1_71" width="350" height="350" patternUnits="userSpaceOnUse"><use xlink:href="#L1_71" x="-350" y="-350"/><use xlink:href="#L1_71" x="0" y="-350"/><use xlink:href="#L1_71" x="350" y="-350"/><use xlink:href="#L1_71" x="-350" y="0"/><use xlink:href="#L1_71" x="0" y="0"/><use xlink:href="#L1_71" x="350" y="0"/><use xlink:href="#L1_71" x="-350" y="350"/><use xlink:href="#L1_71" x="0" y="350"/><use xlink:href="#L1_71" x="350" y="350"/></pattern><rect x="0" y="0" width="100%" height="100%" fill="url(#pattern_L1_71)"/></g><g fi:class="KUsePattern"><pattern id="pattern_L1_72" width="350" height="350" patternUnits="userSpaceOnUse"><use xlink:href="#L1_72" x="-350" y="-350"/><use xlink:href="#L1_72" x="0" y="-350"/><use xlink:href="#L1_72" x="350" y="-350"/><use xlink:href="#L1_72" x="-350" y="0"/><use xlink:href="#L1_72" x="0" y="0"/><use xlink:href="#L1_72" x="350" y="0"/><use xlink:href="#L1_72" x="-350" y="350"/><use xlink:href="#L1_72" x="0" y="350"/><use xlink:href="#L1_72" x="350" y="350"/></pattern><rect x="0" y="0" width="100%" height="100%" fill="url(#pattern_L1_72)"/></g><g fi:class="KUsePattern"><pattern id="pattern_L1_74" width="350" height="350" patternUnits="userSpaceOnUse"><use xlink:href="#L1_74" x="-350" y="-350"/><use xlink:href="#L1_74" x="0" y="-350"/><use xlink:href="#L1_74" x="350" y="-350"/><use xlink:href="#L1_74" x="-350" y="0"/><use xlink:href="#L1_74" x="0" y="0"/><use xlink:href="#L1_74" x="350" y="0"/><use xlink:href="#L1_74" x="-350" y="350"/><use xlink:href="#L1_74" x="0" y="350"/><use xlink:href="#L1_74" x="350" y="350"/></pattern><rect x="0" y="0" width="100%" height="100%" fill="url(#pattern_L1_74)"/></g><g fi:class="KUsePattern"><pattern id="pattern_L1_75" width="350" height="350" patternUnits="userSpaceOnUse"><use xlink:href="#L1_75" x="-350" y="-350"/><use xlink:href="#L1_75" x="0" y="-350"/><use xlink:href="#L1_75" x="350" y="-350"/><use xlink:href="#L1_75" x="-350" y="0"/><use xlink:href="#L1_75" x="0" y="0"/><use xlink:href="#L1_75" x="350" y="0"/><use xlink:href="#L1_75" x="-350" y="350"/><use xlink:href="#L1_75" x="0" y="350"/><use xlink:href="#L1_75" x="350" y="350"/></pattern><rect x="0" y="0" width="100%" height="100%" fill="url(#pattern_L1_75)"/></g><g fi:class="KUsePattern"><pattern id="pattern_L1_76" width="350" height="350" patternUnits="userSpaceOnUse"><use xlink:href="#L1_76" x="-350" y="-350"/><use xlink:href="#L1_76" x="0" y="-350"/><use xlink:href="#L1_76" x="350" y="-350"/><use xlink:href="#L1_76" x="-350" y="0"/><use xlink:href="#L1_76" x="0" y="0"/><use xlink:href="#L1_76" x="350" y="0"/><use xlink:href="#L1_76" x="-350" y="350"/><use xlink:href="#L1_76" x="0" y="350"/><use xlink:href="#L1_76" x="350" y="350"/></pattern><rect x="0" y="0" width="100%" height="100%" fill="url(#pattern_L1_76)"/></g><g fi:class="KUsePattern"><pattern id="pattern_L1_77" width="350" height="350" patternUnits="userSpaceOnUse"><use xlink:href="#L1_77" x="-350" y="-350"/><use xlink:href="#L1_77" x="0" y="-350"/><use xlink:href="#L1_77" x="350" y="-350"/><use xlink:href="#L1_77" x="-350" y="0"/><use xlink:href="#L1_77" x="0" y="0"/><use xlink:href="#L1_77" x="350" y="0"/><use xlink:href="#L1_77" x="-350" y="350"/><use xlink:href="#L1_77" x="0" y="350"/><use xlink:href="#L1_77" x="350" y="350"/></pattern><rect x="0" y="0" width="100%" height="100%" fill="url(#pattern_L1_77)"/></g><g fi:class="KUsePattern"><pattern id="pattern_L1_78" width="350" height="350" patternUnits="userSpaceOnUse"><use xlink:href="#L1_78" x="-350" y="-350"/><use xlink:href="#L1_78" x="0" y="-350"/><use xlink:href="#L1_78" x="350" y="-350"/><use xlink:href="#L1_78" x="-350" y="0"/><use xlink:href="#L1_78" x="0" y="0"/><use xlink:href="#L1_78" x="350" y="0"/><use xlink:href="#L1_78" x="-350" y="350"/><use xlink:href="#L1_78" x="0" y="350"/><use xlink:href="#L1_78" x="350" y="350"/></pattern><rect x="0" y="0" width="100%" height="100%" fill="url(#pattern_L1_78)"/></g></svg>
@@ -0,0 +1,15 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
3
+ <svg version="1.1" id="placeholder" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
4
+ width="600px" height="400px" viewBox="0 0 600 400" enable-background="new 0 0 600 400" xml:space="preserve">
5
+ <radialGradient id="SVGID_1_" cx="615.8203" cy="-47.6318" r="447.8687" gradientTransform="matrix(1 0 0 -1 -321 163.5)" gradientUnits="userSpaceOnUse">
6
+ <stop offset="0" style="stop-color:#FCB42A"/>
7
+ <stop offset="1" style="stop-color:#FCB42A"/>
8
+ </radialGradient>
9
+ <rect fill="url(#SVGID_1_)" width="600" height="400"/>
10
+ <path fill="#FFFFFF" d="M234.539,148.5v103h130.922v-103H234.539z M354.909,240.33H245.707v-80.661h109.202V240.33L354.909,240.33z"
11
+ />
12
+ <polygon fill="#FFFFFF" points="251.58,231.643 274.088,207.984 282.521,211.633 309.13,183.308 319.604,195.836 324.33,192.982
13
+ 349.898,231.643 "/>
14
+ <circle fill="#FFFFFF" cx="277.582" cy="180.18" r="9.83"/>
15
+ </svg>
metadata ADDED
@@ -0,0 +1,113 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: scoobr
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - Jon
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-07-19 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: jekyll
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.5'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.5'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.12'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.12'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '10.0'
55
+ description:
56
+ email:
57
+ - ''
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - LICENSE.txt
63
+ - README.md
64
+ - _includes/footer.html
65
+ - _includes/form-box.html
66
+ - _includes/head.html
67
+ - _includes/mailchimp-form.html
68
+ - _includes/navigation.html
69
+ - _includes/social-icon.html
70
+ - _layouts/default.html
71
+ - _layouts/home.html
72
+ - _layouts/page.html
73
+ - _layouts/post.html
74
+ - _sass/base/_mixins.scss
75
+ - _sass/base/_normalize.scss
76
+ - _sass/base/_reset.scss
77
+ - _sass/base/_variables.scss
78
+ - _sass/components/_buttons.scss
79
+ - _sass/components/_forms.scss
80
+ - _sass/components/_grid.scss
81
+ - _sass/components/_helpers.scss
82
+ - _sass/components/_layout.scss
83
+ - _sass/components/_navigation.scss
84
+ - _sass/components/_scaffolding.scss
85
+ - _sass/components/_tables.scss
86
+ - assets/main.scss
87
+ - assets/pattern.svg
88
+ - assets/thumbnail.svg
89
+ homepage: https://jonp.io
90
+ licenses:
91
+ - MIT
92
+ metadata: {}
93
+ post_install_message:
94
+ rdoc_options: []
95
+ require_paths:
96
+ - lib
97
+ required_ruby_version: !ruby/object:Gem::Requirement
98
+ requirements:
99
+ - - ">="
100
+ - !ruby/object:Gem::Version
101
+ version: '0'
102
+ required_rubygems_version: !ruby/object:Gem::Requirement
103
+ requirements:
104
+ - - ">="
105
+ - !ruby/object:Gem::Version
106
+ version: '0'
107
+ requirements: []
108
+ rubyforge_project:
109
+ rubygems_version: 2.6.12
110
+ signing_key:
111
+ specification_version: 4
112
+ summary: This is a work in progress
113
+ test_files: []