bubblin-jekyll 1.1.0 → 1.1.1

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
  SHA1:
3
- metadata.gz: 85c81f27195ac786334ab816ab3af69fb2b75df5
4
- data.tar.gz: c3d616f38b21d55e8784ec4c21518894e9a38b65
3
+ metadata.gz: 59d241b60f29648d3174eb174a1d96c7e7ce6368
4
+ data.tar.gz: c8298ae588c7cf40780752969e3f7e10f584e42a
5
5
  SHA512:
6
- metadata.gz: a4ba9c4bf709524197ebea8dc07365f1a1daa94eface4a87fc304ea3692c39e7fee590ae8f3f4d8a37924843e23f8a6d468a0fa7f03fa2401fdbbf92663706e3
7
- data.tar.gz: 870632fe4e412225c1d9bb76689569813a393cfdefe43589b7689202e0e6078e887cf70adcfa3ec0020d337394d5aabef1a2c45b732e00acf05a99001208e656
6
+ metadata.gz: a32d46171b58a84990f311f3d3d4ffe391411c38d9fdd84304eeb85e3db4762a483a1c0b5e882cb6ed22d8b1d23ea4cf4001149a8a8f44125390b5bff21e22ed
7
+ data.tar.gz: 8886965f1c41863df5273c619de7a207842537ba1666ba5d8bef23aa5299ea82147a2e5c1622b1f365f07b42851e46d00da30592da847dc5eb0d221f67b7bdd4
@@ -0,0 +1 @@
1
+ <a href="https://facebook.com/{{ include.page }}"><span class="icon icon--facebook">{% include icon-facebook.svg %}</span>: <span>{{ include.page }}</span></a>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 155.1 155.1" width="16" height="16"><path d="M89.6 155.1V84.4h23.7l3.6-27.6H89.6V39.2c0-8 2.2-13.4 13.7-13.4l14.6 0V1.1C115.3 0.8 106.7 0 96.6 0 75.5 0 61.1 12.9 61.1 36.5v20.3H37.3v27.6h23.8v70.8H89.6z" fill="#444"/></svg>
@@ -0,0 +1,3 @@
1
+ .wrapper {
2
+ margin: 0 auto;
3
+ }
@@ -0,0 +1,37 @@
1
+ /* Site footer */
2
+
3
+ .legend {
4
+ justify-content: center;
5
+ align-items: center;
6
+ background-position: bottom bottom;
7
+ background-repeat: no-repeat;
8
+ width: 100%;
9
+ height: 10vh;
10
+ font-size: 85%;
11
+ }
12
+
13
+ menu.foot-menu li {
14
+ margin: 3px;
15
+ a {
16
+ font-size: 90%;
17
+ padding: 0 10px;
18
+ }
19
+ }
20
+
21
+ .usa {
22
+ background-image: url('images/usa.svg');
23
+ background-position: center center;
24
+ background-repeat: no-repeat;
25
+ height: 20px;
26
+ width: 24px;
27
+ }
28
+
29
+ .heart {
30
+ background-image: url('images/heart.svg');
31
+ background-position: center center;
32
+ background-repeat: no-repeat;
33
+ height: 12px;
34
+ width: 16px;
35
+ display: inline-block;
36
+ background-size: cover;
37
+ }
@@ -0,0 +1,135 @@
1
+ /* Header */
2
+
3
+ .mast {
4
+ text-overflow: ellipsis;
5
+ width: 100%;
6
+ z-index: 19999;
7
+ }
8
+
9
+ .bar {
10
+ clear: both;
11
+ position: relative;
12
+ width: 100%;
13
+ height: 45px;
14
+ margin: 0 auto;
15
+ }
16
+
17
+ .sprite-up {
18
+ background-image: url(images/logo.svg);
19
+ background-position: 44px 44px;
20
+ }
21
+
22
+ .logo {
23
+ background-repeat: no-repeat;
24
+ height: 44px;
25
+ width: 65px;
26
+ background-position: center;
27
+ }
28
+
29
+
30
+ /* In-logo Ajax loader */
31
+
32
+ .loader {
33
+ animation: loading 1s linear infinite;
34
+ box-sizing: content-box;
35
+ width: 20px;
36
+ height: 20px;
37
+ border: 5px solid;
38
+ border-top-color: #f9ff00;
39
+ border-left-color: #ef730c;
40
+ border-bottom-color: #445aff;
41
+ border-right-color: #0da;
42
+ border-radius: 50%;
43
+ margin: 32px -44px;
44
+ }
45
+
46
+ @keyframes loading {
47
+ 0% {
48
+ transform: translate(-9px, -25px) rotate(0deg);
49
+ }
50
+ 100% {
51
+ transform: translate(-9px, -25px) rotate(360deg);
52
+ }
53
+ }
54
+
55
+ .offline {
56
+ -webkit-filter: grayscale(1);
57
+ filter: grayscale(1);
58
+ }
59
+
60
+ .offline.logo {
61
+ animation: loading 2s linear infinite;
62
+ box-sizing: content-box;
63
+ width: 20px;
64
+ height: 20px;
65
+ border: 5px solid;
66
+ border-left-color: transparent;
67
+ border-right-color: transparent;
68
+ border-radius: 50%;
69
+ margin: 32px 8px 0 24px;
70
+ }
71
+
72
+ .beta-label {
73
+ margin: 8px 0 0 -16px;
74
+ transform: rotate(90deg);
75
+ color: #777;
76
+ }
77
+
78
+ .page-label {
79
+ padding: 11px 15px;
80
+ width: 90px;
81
+ }
82
+
83
+ .navi-menu {
84
+ li {
85
+ a:hover,
86
+ &#active a:hover,
87
+ &.selected a:hover {
88
+ color: #1177ff;
89
+ }
90
+ }
91
+ >menu li a {
92
+ display: block;
93
+ }
94
+ white-space: nowrap;
95
+ menu {
96
+ white-space: nowrap;
97
+ height: 45px;
98
+ }
99
+ li {
100
+ &#active {
101
+ background-position: left center;
102
+ background-repeat: no-repeat;
103
+ }
104
+ a {
105
+ /* font-weight: 700; */
106
+ line-height: 44px;
107
+ padding: 13px 20px;
108
+ color: #555;
109
+ }
110
+ }
111
+ }
112
+
113
+ .bar-line {
114
+ border-bottom: 1px solid #eaeaea;
115
+ }
116
+
117
+ .element {
118
+ display: flex;
119
+ height: 44px;
120
+ padding: 0 10px;
121
+ align-items: center;
122
+ justify-content: center;
123
+ }
124
+
125
+ .divider {
126
+ border-left: 1px solid #eaeaea;
127
+ }
128
+
129
+ .transparent-white {
130
+ background-color: rgba(255, 255, 255, 0.85);
131
+ }
132
+
133
+ .super-small {
134
+ font-size: 70%;
135
+ }
@@ -0,0 +1,561 @@
1
+ article,
2
+ aside,
3
+ details,
4
+ footer,
5
+ header,
6
+ hgroup,
7
+ main,
8
+ nav,
9
+ section,
10
+ summary {
11
+ display: block;
12
+ }
13
+
14
+ html {
15
+ font-size: 100%;
16
+ -ms-text-size-adjust: 100%;
17
+ -webkit-text-size-adjust: 100%;
18
+ font-size: 1em;
19
+ line-height: 1.4;
20
+ text-rendering: optimizelegibility;
21
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
22
+ -webkit-backface-visibility: hidden;
23
+ }
24
+
25
+ body {
26
+ color: rgba(0, 0, 0, 0.85);
27
+ margin: 0;
28
+ font-family: 'EB Garamond', serif;
29
+ font-smooth: always;
30
+ -webkit-font-smoothing: subpixel-antialiased;
31
+ text-rendering: optimizelegibility;
32
+ font-display: swap;
33
+ font-display: optional;
34
+ -moz-osx-font-smoothing: grayscale;
35
+ -webkit-osx-font-smoothing: antialiased;
36
+ }
37
+
38
+
39
+ /* Anchors */
40
+
41
+ a {
42
+ color: #1177FF;
43
+ text-decoration: none;
44
+ text-rendering: optimizelegibility;
45
+ outline: 0;
46
+ &:focus,
47
+ &:active,
48
+ &:hover {
49
+ outline: 0;
50
+ }
51
+ }
52
+
53
+
54
+ /* Typography */
55
+
56
+ h1,
57
+ h2,
58
+ h3,
59
+ h4,
60
+ h5,
61
+ h6 {
62
+ margin: 0;
63
+ font-family: 'proxima-nova', Arial, sans-serif;
64
+ }
65
+
66
+ h1 {
67
+ font-size: 280%;
68
+ font-weight: normal;
69
+ }
70
+
71
+ h2 {
72
+ font-size: 200%;
73
+ font-weight: normal;
74
+ }
75
+
76
+ h3 {
77
+ font-size: 150%;
78
+ }
79
+
80
+ h4 {
81
+ font-size: 125%;
82
+ }
83
+
84
+ h5 {
85
+ font-size: 110%;
86
+ }
87
+
88
+ h6 {
89
+ font-size: 100%;
90
+ }
91
+
92
+ b,
93
+ strong {
94
+ font-weight: bold;
95
+ }
96
+
97
+ hr {
98
+ -moz-box-sizing: content-box;
99
+ box-sizing: content-box;
100
+ display: block;
101
+ height: 1px;
102
+ border: 0;
103
+ border-top: 2px solid #1177FF;
104
+ margin: 1em 0;
105
+ padding: 0;
106
+ }
107
+
108
+ p {
109
+ margin: .8em 0;
110
+ }
111
+
112
+ menu,
113
+ ul,
114
+ ol {
115
+ margin: 0;
116
+ padding: 0;
117
+ }
118
+
119
+ menu,
120
+ ul {
121
+ list-style-image: none;
122
+ list-style: none;
123
+ }
124
+
125
+ nav ul {
126
+ list-style: none;
127
+ list-style-image: none;
128
+ }
129
+
130
+ img {
131
+ border: 0;
132
+ -ms-interpolation-mode: bicubic;
133
+ }
134
+
135
+
136
+ /* Code formatting */
137
+
138
+ pre,
139
+ code {
140
+ border: 1px solid #e8e8e8;
141
+ border-radius: 3px;
142
+ background-color: #eff;
143
+ }
144
+
145
+ code {
146
+ padding: 1px 5px;
147
+ }
148
+
149
+ pre {
150
+ padding: 8px 12px;
151
+ overflow-x: auto;
152
+ >code {
153
+ border: 0;
154
+ padding-right: 0;
155
+ padding-left: 0;
156
+ }
157
+ }
158
+
159
+ blockquote {
160
+ color: #333;
161
+ border-left: 10px solid #1177FF;
162
+ letter-spacing: -1px;
163
+ padding: 1em;
164
+ margin: 2em auto;
165
+ font-style: italic;
166
+ background: #fffafa;
167
+ > :last-child {
168
+ margin-bottom: 0;
169
+ }
170
+ }
171
+
172
+
173
+ /*-- Coloring pseudos text selection/inactive state. Sooth! :D --*/
174
+
175
+ * {
176
+ box-sizing: border-box;
177
+ &:after {
178
+ box-sizing: border-box;
179
+ }
180
+ &:before {
181
+ box-sizing: border-box;
182
+ }
183
+ }
184
+
185
+ ::-moz-selection {
186
+ background: #a7d7ff;
187
+ color: #000;
188
+ text-shadow: none;
189
+ }
190
+
191
+ ::selection {
192
+ background: #a7d7ff;
193
+ color: #000;
194
+ text-shadow: none;
195
+ &:window-inactive {
196
+ background: #eaeaea;
197
+ color: #000;
198
+ }
199
+ }
200
+
201
+ input:-webkit-autofill {
202
+ -webkit-box-shadow: 0 0 1000px #FBFBFB inset;
203
+ }
204
+
205
+ ::-webkit-input-placeholder {
206
+ color: #555;
207
+ font-size: 15px;
208
+ }
209
+
210
+ :-moz-placeholder {
211
+ color: #555;
212
+ font-size: 15px;
213
+ }
214
+
215
+ ::-moz-placeholder {
216
+ color: #555;
217
+ font-size: 14px;
218
+ }
219
+
220
+ :-ms-input-placeholder {
221
+ color: #555;
222
+ font-size: 14px;
223
+ }
224
+
225
+ table {
226
+ border-collapse: collapse;
227
+ border-spacing: 0;
228
+ }
229
+
230
+ td,
231
+ th {
232
+ padding: 1vw;
233
+ vertical-align: top;
234
+ }
235
+
236
+
237
+ /* Element Positioning */
238
+
239
+ .container {
240
+ margin-top: 90px;
241
+ }
242
+
243
+ .left {
244
+ float: left;
245
+ left: 0;
246
+ }
247
+
248
+ .right {
249
+ float: right;
250
+ right: 0;
251
+ }
252
+
253
+ .center {
254
+ text-align: center;
255
+ margin: 0 auto;
256
+ }
257
+
258
+ .centerize {
259
+ margin: 0 auto;
260
+ }
261
+
262
+ .fixed {
263
+ position: fixed;
264
+ will-change: transform;
265
+ transform: translateZ(0);
266
+ }
267
+
268
+ .top {
269
+ top: 0;
270
+ }
271
+
272
+ .bottom {
273
+ bottom: 0px;
274
+ }
275
+
276
+ .absolute-center {
277
+ margin: auto;
278
+ position: absolute;
279
+ top: 0;
280
+ left: 0;
281
+ bottom: 0;
282
+ right: 0;
283
+ }
284
+
285
+ .flex {
286
+ display: flex;
287
+ flex-wrap: wrap;
288
+ align-items: center;
289
+ justify-content: center;
290
+ }
291
+
292
+ .fold {
293
+ min-height: calc(90vh - 45px);
294
+ max-width: 100vw;
295
+ overflow-x: hidden;
296
+ -webkit-overflow-scrolling: touch;
297
+ }
298
+
299
+
300
+ /* -- Push aside, out & away ---*/
301
+
302
+ .side-gap {
303
+ margin-right: .5em;
304
+ margin-left: .5em;
305
+ }
306
+
307
+ .top-gap {
308
+ margin-top: .5em;
309
+ }
310
+
311
+ .double-top-gap {
312
+ margin-top: 1em;
313
+ }
314
+
315
+ .bottom-gap {
316
+ margin-bottom: 1em;
317
+ }
318
+
319
+ .double-bottom-gap {
320
+ margin-bottom: 2em;
321
+ }
322
+
323
+ .pad {
324
+ padding: 0.5em 1em;
325
+ }
326
+
327
+ .pad-vertically {
328
+ padding: 1em 0;
329
+ }
330
+
331
+ .pad-horizontally {
332
+ padding: 0 1em;
333
+ }
334
+
335
+
336
+ /* -- Text --*/
337
+
338
+ .justify {
339
+ text-align: justify;
340
+ }
341
+
342
+ .uppercase {
343
+ text-transform: uppercase;
344
+ }
345
+
346
+ .lowercase {
347
+ text-transform: lowercase;
348
+ }
349
+
350
+ .camelcase {
351
+ text-transform: capitalize;
352
+ }
353
+
354
+ .italics {
355
+ font-style: italic;
356
+ }
357
+
358
+ menu.horizontal-list li,
359
+ ul.horizontal-list li {
360
+ float: left;
361
+ }
362
+
363
+ .will-change {
364
+ will-change: transform;
365
+ transform: translate3d(0, 0, 0);
366
+ }
367
+
368
+ .unpointable {
369
+ pointer-events: none;
370
+ }
371
+
372
+ .pointable {
373
+ pointer-events: auto;
374
+ }
375
+
376
+ .ir {
377
+ background-color: transparent;
378
+ border: 0;
379
+ overflow: hidden;
380
+ *text-indent: -9999px;
381
+ &:before {
382
+ content: "";
383
+ display: block;
384
+ width: 0;
385
+ height: 150%;
386
+ }
387
+ }
388
+
389
+ .hidden {
390
+ display: none !important;
391
+ visibility: hidden;
392
+ }
393
+
394
+ .visuallyhidden {
395
+ border: 0;
396
+ clip: rect(0 0 0 0);
397
+ height: 1px;
398
+ margin: -1px;
399
+ overflow: hidden;
400
+ padding: 0;
401
+ position: absolute;
402
+ width: 1px;
403
+ &.focusable {
404
+ &:active,
405
+ &:focus {
406
+ clip: auto;
407
+ height: auto;
408
+ margin: 0;
409
+ overflow: visible;
410
+ position: static;
411
+ width: auto;
412
+ }
413
+ }
414
+ }
415
+
416
+ .invisible {
417
+ visibility: hidden;
418
+ }
419
+
420
+ .clearfix {
421
+ &:before {
422
+ content: " ";
423
+ display: table;
424
+ }
425
+ &:after {
426
+ content: " ";
427
+ display: table;
428
+ clear: both;
429
+ }
430
+ *zoom: 1;
431
+ }
432
+
433
+ @media (orientation: portrait) {
434
+ body {
435
+ .hide-on-mobiles {
436
+ display: none;
437
+ }
438
+ .display-on-mobiles {
439
+ display: inline-block;
440
+ }
441
+ .divide-in-half {
442
+ width: 90vw;
443
+ }
444
+ .one-half {
445
+ width: 100%;
446
+ }
447
+ .one-third {
448
+ width: 100%;
449
+ }
450
+ .two-third {
451
+ width: 100%;
452
+ }
453
+ .shrink {
454
+ width: 95%;
455
+ }
456
+ .align {
457
+ margin: 0 auto;
458
+ text-align: center;
459
+ }
460
+ .wrapper {
461
+ width: 90vw;
462
+ }
463
+ }
464
+ }
465
+
466
+ @media (orientation: landscape) {
467
+ body {
468
+ .hide-on-mobiles {
469
+ display: marker;
470
+ }
471
+ .display-on-mobiles {
472
+ display: none;
473
+ }
474
+ .divide-in-half {
475
+ width: 50vw;
476
+ }
477
+ .one-half {
478
+ width: 50%;
479
+ }
480
+ .one-third {
481
+ width: 33.33333%;
482
+ }
483
+ .two-third {
484
+ width: 66.66666%;
485
+ }
486
+ .shrink {
487
+ width: 90%;
488
+ }
489
+ .align {
490
+ margin: 0 0;
491
+ }
492
+ .wrapper {
493
+ width: 60vw;
494
+ }
495
+ }
496
+ }
497
+
498
+ @media print,
499
+ (-o-min-device-pixel-ratio: 5 / 4),
500
+ (-webkit-min-device-pixel-ratio: 1.25),
501
+ (min-resolution: 120dpi) {
502
+ /* Style adjustments for high resolution devices */
503
+ }
504
+
505
+ @media print {
506
+ * {
507
+ background: transparent !important;
508
+ color: #000 !important;
509
+ box-shadow: none !important;
510
+ text-shadow: none !important;
511
+ }
512
+ a {
513
+ text-decoration: underline;
514
+ &:visited {
515
+ text-decoration: underline;
516
+ }
517
+ &[href]:after {
518
+ content: " (" attr(href) ")";
519
+ }
520
+ }
521
+ abbr[title]:after {
522
+ content: " (" attr(title) ")";
523
+ }
524
+ .ir a:after {
525
+ content: "";
526
+ }
527
+ a {
528
+ &[href^="javascript:"]:after,
529
+ &[href^="#"]:after {
530
+ content: "";
531
+ }
532
+ }
533
+ pre,
534
+ blockquote {
535
+ border: 1px solid #999;
536
+ page-break-inside: avoid;
537
+ }
538
+ thead {
539
+ display: table-header-group;
540
+ }
541
+ tr {
542
+ page-break-inside: avoid;
543
+ }
544
+ img {
545
+ page-break-inside: avoid;
546
+ max-width: 100% !important;
547
+ }
548
+ @page {
549
+ margin: 0.5cm;
550
+ }
551
+ p,
552
+ h2,
553
+ h3 {
554
+ orphans: 3;
555
+ widows: 3;
556
+ }
557
+ h2,
558
+ h3 {
559
+ page-break-after: avoid;
560
+ }
561
+ }
Binary file
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><title>red heart</title><g fill="none"><g style="fill:#F62727;stroke:#F62626"><path d="M16.5 4C14.6 4 13 4.9 12 6.4 11 4.9 9.4 4 7.5 4 4.4 4 2 6.4 2 9.3 2 15.5 9.3 18.8 12 21 14.7 18.8 22 15.5 22 9.3 22 6.4 19.6 4 16.5 4L16.5 4Z"/></g></g></svg>
Binary file
@@ -0,0 +1 @@
1
+ <svg height="44" width="44" xmlns="http://www.w3.org/2000/svg"><title>Bubblin Superbooks</title><desc>Bubblin Superbooks — An online café of books, comics and magazines.</desc><circle r="15" cx="50%" cy="50%" shape-rendering="optimizeQuality"/><circle r="10" cx="50%" cy="50%" fill="#fa0" shape-rendering="optimizeQuality"/><circle r="5" cx="50%" cy="50%" shape-rendering="optimizeQuality"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="25" height="17" viewBox="0 17 25 17"><style>.a{opacity:.2}.a,.b{fill:#fff}</style><path class="a" d="M0 17h25v17H0zM0 0h25v17H0z"/><path d="M1 30.7v-1.2h23v1.2H1zm0-3.5v1.2h23v-1.2H1zm23-8V18H12.4v1.2H24zM1 31.8V33h23v-1.2H1zm11.4-6.9v1.2H24v-1.2H12.4zm0-4.6v1.2H24v-1.2H12.4zm0 2.3v1.2H24v-1.2H12.4z" fill="#B22234"/><path d="M24 31.8H1v-1.2h23v1.2zm0-2.3H1v-1.2h23v1.2zm0-2.3H1V26h23v1.2zm0-2.3H12.4v-1.2H24v1.2zm0-2.3H12.4v-1.2H24v1.2zm0-2.3H12.4v-1.2H24v1.2z" class="b"/><path fill="#3C3B6E" d="M1 18h11.4v8.1H1z"/><path d="M2.1 18.7h.3l-.3.2.1.3L2 19l-.3.2.1-.3-.3-.2h.3l.1-.3.2.3zM2 20l-.2.3h-.3l.3.2-.1.3.3-.2.3.2-.1-.3.3-.2h-.4L2 20zm0 1.6l-.1.3h-.4l.3.2-.1.3.3-.2.3.2-.1-.3.3-.2h-.4l-.1-.3zm0 1.6l-.1.3h-.4l.3.2-.1.3.3-.2.3.2-.1-.3.3-.2h-.4l-.1-.3zm.1 1.9l-.1-.3-.1.3h-.4l.3.2-.1.3.3-.2.3.2-.1-.3.3-.2h-.4zm.8-5.9l-.1.3h-.3l.3.2-.1.3.2-.2.3.2-.1-.3.3-.2H3l-.1-.3zm0 1.6l-.1.3h-.3l.3.2-.1.3.2-.2.3.2-.1-.3.3-.2H3l-.1-.3zm0 1.6l-.1.3h-.3l.2.2-.1.3.3-.2.3.2-.1-.3.3-.2H3l-.1-.3zm.1 1.9l-.1-.3-.1.3h-.3l.3.2-.1.3.2-.2.3.2-.1-.3.3-.2H3zm.9-6l-.1.3h-.4l.3.2-.1.3.3-.2.3.2-.1-.3.3-.2H4l-.1-.3zm0 1.7l-.2.3h-.3l.3.2-.1.3.3-.2.3.2-.1-.3.3-.2H4l-.1-.3zm0 1.6l-.1.3h-.4l.3.2-.1.3.3-.2.3.2-.1-.3.3-.2H4l-.1-.3zm0 1.6l-.1.3h-.4l.3.2-.1.3.3-.2.3.2-.1-.3.3-.2H4l-.1-.3zm.1 1.9l-.1-.3-.1.3h-.4l.3.2-.1.3.3-.2.3.2-.1-.3.3-.2H4zm.8-5.9l-.1.3h-.3l.3.2-.1.3.2-.2.3.2-.1-.3.3-.2h-.4l-.1-.3zm0 1.6l-.1.3h-.3l.3.2-.1.3.2-.2.3.2-.1-.3.3-.2h-.4l-.1-.3zm0 1.6l-.1.3h-.3l.2.2-.1.3.3-.2.3.2-.1-.3.3-.2h-.4l-.1-.3zm.1 1.9l-.1-.3-.1.3h-.3l.3.2-.1.3.2-.2.3.2-.1-.3.3-.2h-.4zm.9-6l-.1.3h-.4l.3.2-.1.3.3-.2.3.2-.1-.3.3-.2h-.4l-.1-.3zm0 1.7l-.2.3h-.3l.3.2-.1.3.3-.2.3.2-.1-.3.3-.2h-.4l-.1-.3zm0 1.6l-.1.3h-.4l.3.2-.1.3.3-.2.3.2-.1-.3.3-.2h-.4l-.1-.3zm0 1.6l-.1.3h-.4l.3.2-.1.3.3-.2.3.2-.1-.3.3-.2h-.4l-.1-.3zm.1 1.9l-.1-.3-.1.3h-.4l.3.2-.1.3.3-.2.3.2-.1-.3.3-.2h-.4zm.8-5.9l-.1.3h-.3l.3.2-.1.3.2-.2.3.2-.1-.3.3-.2h-.4l-.1-.3zm0 1.6l-.1.3h-.3l.3.2-.1.3.2-.2.3.2-.1-.3.3-.2h-.4l-.1-.3zm0 1.6l-.1.3h-.3l.2.2-.1.3.3-.2.3.2-.1-.3.3-.2h-.4l-.1-.3zm.1 1.9l-.1-.3-.1.3h-.3l.3.2-.1.3.2-.2.3.2-.1-.3.3-.2h-.4zm.8-6l-.1.3h-.3l.3.2-.1.3.3-.2.3.2-.1-.3.3-.2h-.4l-.2-.3zm0 1.7l-.1.3h-.3l.3.2-.1.3.3-.2.3.2-.1-.3.3-.2h-.4l-.2-.3zm0 1.6l-.1.3h-.3l.3.2-.1.3.3-.2.3.2-.1-.3.3-.2h-.4l-.2-.3zm0 1.6l-.1.3h-.3l.3.2-.1.3.3-.2.3.2-.1-.3.3-.2h-.4l-.2-.3zm.2 1.9l-.1-.3-.1.3h-.4l.3.2-.1.3.3-.2.3.2-.1-.3.3-.2h-.4zm.8-5.9l-.1.3h-.3l.3.2-.1.3.2-.2.3.2-.1-.3.3-.2h-.4l-.1-.3zm0 1.6l-.1.3h-.3l.3.2-.1.3.2-.2.3.2-.1-.3.3-.2h-.4l-.1-.3zm0 1.6l-.1.3h-.3l.2.2-.1.3.3-.2.3.2-.1-.3.3-.2h-.4l-.1-.3zm.1 1.9l-.1-.3-.1.3h-.3l.3.2-.1.3.2-.2.3.2-.1-.3.3-.2h-.4zm.9-6l-.1.3h-.4l.3.2-.1.3.3-.2.3.2-.1-.3.3-.2h-.4l-.1-.3zm0 1.7l-.2.3h-.3l.3.2-.1.3.3-.2.3.2-.1-.3.3-.2h-.4l-.1-.3zm0 1.6l-.1.3h-.4l.3.2-.1.3.3-.2.3.2-.1-.3.3-.2h-.4l-.1-.3zm0 1.6l-.1.3h-.4l.3.2-.1.3.3-.2.3.2-.1-.3.3-.2h-.4l-.1-.3zm.1 1.9l-.1-.3-.1.3h-.4l.3.2-.1.3.3-.2.3.2-.1-.3.3-.2h-.4zm.8-5.9l-.1.3h-.3l.3.2-.1.3.3-.2.3.2-.1-.3.3-.2h-.3l-.3-.3zm0 1.6l-.1.3h-.3l.3.2-.1.3.3-.2.3.2-.1-.3.3-.2h-.3l-.3-.3zm0 1.6l-.1.3h-.3l.3.2-.1.3.3-.2.3.2-.2-.3.3-.2h-.3l-.2-.3zm.1 1.9l-.1-.3-.1.3h-.3l.3.2-.1.3.3-.2.3.2-.1-.3.3-.2h-.5zm.7-5.4l-.1.3.3-.2.3.2-.1-.3.3-.2h-.3l-.1-.3-.1.3h-.3l.1.2zm.2 1.1l-.1.3h-.3l.3.2-.1.3.3-.2.3.2-.1-.3.3-.2h-.3l-.3-.3zm0 1.6l-.1.3h-.3l.3.2-.1.3.3-.2.3.2-.1-.3.3-.2h-.3l-.3-.3zm0 1.6l-.1.3h-.3l.3.2-.1.3.3-.2.3.2-.1-.3.3-.2h-.3l-.3-.3zm.1 1.9l-.1-.3-.1.3h-.3l.3.2-.1.3.3-.2.3.2-.1-.3.3-.2h-.5z" class="b"/><path fill="none" d="M0 17h25v17H0z"/></svg>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bubblin-jekyll
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marvin Danig
@@ -80,6 +80,8 @@ files:
80
80
  - _includes/google-analytics.html
81
81
  - _includes/head.html
82
82
  - _includes/header.html
83
+ - _includes/icon-facebook.html
84
+ - _includes/icon-facebook.svg
83
85
  - _includes/icon-github.html
84
86
  - _includes/icon-github.svg
85
87
  - _includes/icon-twitter.html
@@ -90,8 +92,17 @@ files:
90
92
  - _layouts/post.html
91
93
  - _sass/bubblin-jekyll.scss
92
94
  - _sass/scss/_base.scss
95
+ - _sass/scss/_content.scss
96
+ - _sass/scss/_footer.scss
97
+ - _sass/scss/_header.scss
93
98
  - _sass/scss/_layout.scss
99
+ - _sass/scss/_reusable.scss
94
100
  - _sass/scss/_syntax-highlighting.scss
101
+ - assets/images/favicon.ico
102
+ - assets/images/heart.svg
103
+ - assets/images/logo.png
104
+ - assets/images/logo.svg
105
+ - assets/images/usa.svg
95
106
  - assets/main.scss
96
107
  homepage: https://github.com/marvindanig/bubblin-jekyll.git
97
108
  licenses: