trusty-festivity-extension 2.4.0 → 2.4.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 25cbd6ac174c98114c89ec39479ea0faa321ec3c
4
- data.tar.gz: 46ffd1cb6a41bdbb55ce9479ab0b9984518f262f
3
+ metadata.gz: d4510d95a5bb5469800f2084743ee4689b171998
4
+ data.tar.gz: e953503a28aed507eb8ab7725c0b1d503e3a7233
5
5
  SHA512:
6
- metadata.gz: e18db3d404a06616b162a59ede39e2a1a042528d885735734f7fbdf1bf753025146b3be381ddaed90a2ac2c889b1dcb64763e151aed087336f203cee9496f65c
7
- data.tar.gz: 25e9fd0d52df46944ff5f50b33a2228640f661773e607687cd1afdf96de2ec482983b5f6045aa6c0d4d6e992dea550138497dd198bbff8d697c01c233abf3564
6
+ metadata.gz: 2d691c35a8b5eca1e78fec220f940c72db6bcfded935827e1641601e8ea926a6b097a1884e4663909419031bcd7382130d267197604e3f981f9e78de7f509391
7
+ data.tar.gz: 7349808a3807143e6478b3543ddd3d9b261206878d4014a5a5d983ecbdd9a4782e2320648e848c0785b82a65ed9961eeaae057fbbdb11b31d277bcf29e7ecf38
@@ -4,24 +4,24 @@ GEM
4
4
  builder (3.2.2)
5
5
  faraday (0.9.2)
6
6
  multipart-post (>= 1.2, < 3)
7
- geminabox (0.12.4)
7
+ geminabox (0.13.0)
8
8
  builder
9
9
  faraday
10
10
  httpclient (>= 2.2.7)
11
11
  nesty
12
12
  sinatra (>= 1.2.7)
13
- httpclient (2.7.0.1)
13
+ httpclient (2.7.1)
14
14
  multipart-post (2.0.0)
15
15
  nesty (1.0.2)
16
16
  rack (1.6.4)
17
17
  rack-protection (1.5.3)
18
18
  rack
19
- rake (10.4.2)
20
- sinatra (1.4.6)
21
- rack (~> 1.4)
19
+ rake (11.1.1)
20
+ sinatra (1.4.7)
21
+ rack (~> 1.5)
22
22
  rack-protection (~> 1.4)
23
23
  tilt (>= 1.3, < 3)
24
- tilt (2.0.1)
24
+ tilt (2.0.2)
25
25
  trustygems (0.1.0)
26
26
  rake
27
27
 
@@ -33,4 +33,4 @@ DEPENDENCIES
33
33
  trustygems (~> 0.1.0)
34
34
 
35
35
  BUNDLED WITH
36
- 1.10.6
36
+ 1.11.2
@@ -0,0 +1,8 @@
1
+ $(document).ready(function(){
2
+ $('.list-group-item').on('click', function(){
3
+ $('.list-group-item').each(function(){
4
+ $(this).removeClass('active');
5
+ });
6
+ $(this).addClass('active');
7
+ });
8
+ });
@@ -18,5 +18,5 @@
18
18
  //= require navigation
19
19
  //= require home-social
20
20
  //= require modal
21
-
22
- //= require modernizr/modernizr
21
+ //= require faq
22
+ //= require modernizr/modernizr
@@ -1,7 +1,7 @@
1
1
  .social-footer {
2
- background-color: $text-color;
2
+ background-color: $social-footer-color;
3
3
  padding: 1.25em 0 1.5em 0;
4
- text-align: center;
4
+ text-align: center;
5
5
 
6
6
  @include breakpoint($breakpoint-m) {
7
7
  padding: 2.25em 0 2.5em 0;
@@ -55,7 +55,7 @@
55
55
  .footer-navigation {
56
56
  padding-top: 1em;
57
57
  padding-bottom: 1em;
58
-
58
+
59
59
  h3, h4 {
60
60
  color: $background-color;
61
61
  }
@@ -87,4 +87,4 @@
87
87
  a {
88
88
  @include link-reverse;
89
89
  }
90
- }
90
+ }
@@ -30,4 +30,3 @@
30
30
  @import "modules/event";
31
31
  @import "modules/toggler";
32
32
  @import "modules/callout";
33
-
@@ -0,0 +1,40 @@
1
+ @import url('http://fonts.googleapis.com/css?family=Open+Sans:300,400,700,800,600');
2
+ // from bower_components
3
+ @import "breakpoint-sass/stylesheets/breakpoint";
4
+
5
+ @import "library/reset";
6
+ @import "library/grid";
7
+ // @import "library/variables";
8
+ @import "library/mediaqueries";
9
+ @import "library/typographic-mixins";
10
+ @import "library/general-mixins";
11
+ @import "library/icons";
12
+ @import "skins/pghkids/library/general-mixins";
13
+ @import "skins/pghkids/library/icons";
14
+ @import "library/modal";
15
+
16
+ @import "globals/forms.scss";
17
+ @import "globals/general.scss";
18
+
19
+ @import "contexts/site-header";
20
+ @import "contexts/site-footer";
21
+ @import "contexts/events-list";
22
+ @import "contexts/event-detail";
23
+ @import "contexts/location";
24
+ @import "contexts/related-events";
25
+ @import "contexts/callouts";
26
+ @import "skins/pghkids/contexts/faq";
27
+ @import "contexts/subnav";
28
+ @import "contexts/subnav_one_column";
29
+ @import "contexts/subnav_two_column";
30
+ @import "contexts/subnav_three_column";
31
+
32
+ @import "modules/navigation";
33
+ @import "modules/filters";
34
+ @import "modules/event";
35
+ @import "modules/toggler";
36
+ @import "modules/callout";
37
+
38
+ // override for pghkids
39
+ @import "skins/pghkids/contexts/homepage";
40
+ @import "skins/pghkids/contexts/pghkids";
@@ -0,0 +1,87 @@
1
+ //questions
2
+ .FAQ {
3
+ .faq-wrapper {
4
+ list-style: none;
5
+ display: flex;
6
+ flex-wrap: nowrap;
7
+ }
8
+ .faq-list {
9
+ @include column(4);
10
+ ul.list-group {
11
+ z-index: 2;
12
+ color: $link-color;
13
+ background-color: $background-color;
14
+ margin-bottom: 1.25em;
15
+ a.list-group-item {
16
+ position: relative;
17
+ display: block;
18
+ padding: 1em;
19
+ border:1px solid #ddd;
20
+ &:hover {
21
+ cursor: pointer;
22
+ text-decoration: none;
23
+ background-color: #f5f5f5;
24
+ }
25
+ &.active, {
26
+ background-color: #00A3B4;
27
+ color: #fff;
28
+ }
29
+ }
30
+ }
31
+ }
32
+ .faq-answers {
33
+ position: relative;
34
+ margin-bottom: 10em;
35
+ @include column(7);
36
+ }
37
+
38
+ //answers
39
+ .faq-header {
40
+ padding-bottom: 1rem;
41
+ }
42
+ .q {
43
+ padding-top: 4rem;
44
+ }
45
+
46
+ .q:first-child {
47
+ padding-top: 0;
48
+ }
49
+
50
+ nav.faq-navigation {
51
+ width: 300px;
52
+ }
53
+
54
+ // stuff for the affixed side menu
55
+
56
+ .affix-top,.affix{
57
+ position: static;
58
+ }
59
+
60
+ .affix-bottom {
61
+ position: fixed;
62
+ }
63
+
64
+ .affix {
65
+ position: fixed;
66
+ width: 300px;
67
+ top: 60px;
68
+ }
69
+
70
+ #totop {
71
+ a {
72
+ position: fixed;
73
+ right: 15px;
74
+ bottom: 20px;
75
+ text-align: center;
76
+ z-index: 1000;
77
+ background-color: $background-color;
78
+ padding: 10px;
79
+ text-decoration: none;
80
+ color: white;
81
+ display: block;
82
+ @include breakpoint($breakpoint-l) {
83
+ display: none;
84
+ }
85
+ }
86
+ }
87
+ }
@@ -0,0 +1,527 @@
1
+ //Header
2
+
3
+ .utility-navigation a:hover {
4
+ color: $text-color;
5
+ }
6
+
7
+ .site-header {
8
+ background: url(/assets/skins/pghkids/header_mobile.png) no-repeat $header-bg-color;
9
+ @include breakpoint($breakpoint-xl) {
10
+ background: url(/assets/skins/pghkids/header.png) no-repeat $header-bg-color;
11
+ }
12
+ }
13
+
14
+ //Navigation
15
+
16
+ .mobile-navigation {
17
+ padding: .5em 0;
18
+ @include breakpoint($breakpoint-xs) {
19
+ float: right;
20
+ }
21
+ }
22
+
23
+ .nav-wrapper {
24
+ background-color: $header-bg-color;
25
+ @include breakpoint($breakpoint-nav) {
26
+ background-color: transparent;
27
+ margin-top:0;
28
+ }
29
+ @include breakpoint($breakpoint-nav) {
30
+ @include column(12);
31
+ margin-top:4em;
32
+ }
33
+ }
34
+
35
+ .primary-navigation {
36
+ a {
37
+ color: $background-color;
38
+ @include breakpoint($breakpoint-xl) {
39
+ color: $text-color;
40
+ &:hover,
41
+ &:focus {
42
+ color: $link-color;
43
+ }
44
+ }
45
+ }
46
+ }
47
+
48
+ .utility-navigation {
49
+ a {
50
+ color: $background-color;
51
+ @include breakpoint($breakpoint-xl) {
52
+ color: $utility-nav-color;
53
+ }
54
+ &:hover {
55
+ color: $text-color;
56
+ }
57
+ }
58
+ }
59
+
60
+ .site-search {
61
+ input {
62
+ background-color: $search-input-bg-color;
63
+ color: $search-placeholder-color;
64
+ padding: 0.6em;
65
+ border-radius: 3px 0 0 3px;
66
+ @include reversed-text-smoothing;
67
+
68
+ @include breakpoint($breakpoint-nav) {
69
+ padding: 0.36em;
70
+ }
71
+ }
72
+ button.search-submit {
73
+ background-color: $background-color;
74
+ vertical-align:top;
75
+ border-radius: 0 3px 3px 0;
76
+ &:hover,
77
+ &:focus {
78
+ background-color: darken($background-color, 5%);
79
+ }
80
+ .icon-search {
81
+ vertical-align: baseline;
82
+ }
83
+ }
84
+ }
85
+
86
+ .overflow-wrapper .menu-content-wrapper .filters-wrapper {
87
+ background-color: $footer-color;
88
+ @include breakpoint($breakpoint-nav) {
89
+ background-color: transparent;
90
+ }
91
+ .title {
92
+ @include breakpoint($breakpoint-nav) {
93
+ @include heading-4;
94
+ }
95
+ }
96
+ .filter-type {
97
+ @include breakpoint($breakpoint-xs) {
98
+ h4 {
99
+ color: $text-color;
100
+ }
101
+ .toggler-content {
102
+ color: $text-color;
103
+ }
104
+ }
105
+ }
106
+ .cancel-filters {
107
+ background-color: lighten($text-color, 15%);
108
+ color: $background-color;
109
+ &:hover,
110
+ &:focus {
111
+ color: $background-color;
112
+ background-color: darken($text-color, 10%);
113
+ }
114
+ }
115
+ }
116
+
117
+ //Home
118
+
119
+ .home {
120
+ .main-content {
121
+ padding-top: 0;
122
+ .container {
123
+ @include breakpoint($breakpoint-xl) {
124
+ width: 100%;
125
+ max-width: 100%;
126
+ }
127
+ }
128
+ }
129
+ .section-wrapper {
130
+ max-width: 73.25em;
131
+ margin-left: auto;
132
+ margin-right: auto;
133
+ @include pie-clearfix;
134
+ }
135
+ .featured {
136
+ position: relative;
137
+ background-color: $header-bg-color;
138
+
139
+ .lead-image {
140
+ width: 100%;
141
+ @include breakpoint($breakpoint-m) {
142
+ max-width: 100em;
143
+ margin-left: auto;
144
+ margin-right: auto;
145
+ }
146
+ }
147
+ h1.featured-text {
148
+ background-color: $homepage-featured-background;
149
+ padding: 0.5em;
150
+ margin-bottom:0;
151
+ line-height: 1;
152
+ font-size:2em;
153
+ max-width: 800px;
154
+
155
+ @include breakpoint($breakpoint-s) {
156
+ padding: 1em 0.5em;
157
+ }
158
+
159
+ @include breakpoint($breakpoint-m) {
160
+ @include column(8);
161
+ background: url(fn-featured-bg.svg) no-repeat transparent;
162
+ position: absolute;
163
+ bottom: 0;
164
+ }
165
+
166
+ @include breakpoint($breakpoint-xl) {
167
+ @include column(6);
168
+ padding: 1em;
169
+ font-size: 2.25em;
170
+ }
171
+ @include breakpoint($breakpoint-xxl) {
172
+ font-size: 2.5em;
173
+ }
174
+
175
+ span {
176
+ @include title-face-highlight;
177
+ color: $background-color;
178
+ display: block;
179
+ font-size: 0.5em;
180
+ text-transform: uppercase;
181
+
182
+ @include breakpoint($breakpoint-m) {
183
+ display: inline-block;
184
+ }
185
+ }
186
+ }
187
+ }
188
+ .get-access, .how-it-works {
189
+ .section-wrapper {
190
+ padding: 1.5em;
191
+
192
+ @include breakpoint($breakpoint-xl) {
193
+ padding: 4em 1.5em;
194
+ }
195
+ }
196
+ }
197
+ .get-access {
198
+ .section-wrapper {
199
+ padding-top: 2.5em;
200
+ @include breakpoint($breakpoint-m) {
201
+ padding: 4em 1.5em 3em 1.5em;
202
+ }
203
+ @include breakpoint($breakpoint-xl) {
204
+ padding-top:5em;
205
+ }
206
+ }
207
+ .pin-img {
208
+ display:none;
209
+ @include breakpoint($breakpoint-s) {
210
+ @include column(4);
211
+ display:block;
212
+ img {
213
+ max-width: 150px;
214
+ }
215
+ }
216
+ @include breakpoint($breakpoint-nav) {
217
+ @include column(3);
218
+ img {
219
+ margin: 0 auto;
220
+ }
221
+ }
222
+ }
223
+ .description {
224
+ @include breakpoint($breakpoint-s) {
225
+ @include column(8);
226
+ @include last;
227
+ }
228
+ @include breakpoint($breakpoint-nav) {
229
+ @include column(6);
230
+
231
+ p{
232
+ font-size: 1.25em;
233
+ }
234
+ }
235
+ }
236
+ .buy-button-group {
237
+ @include breakpoint($breakpoint-s) {
238
+ @include column(8);
239
+ @include last;
240
+ }
241
+ @include breakpoint($breakpoint-nav) {
242
+ @include column(3);
243
+ @include last;
244
+ text-align:center;
245
+ margin-top:2em;
246
+ }
247
+ }
248
+ .title {
249
+ @include breakpoint($breakpoint-nav){
250
+ @include heading-2;
251
+ }
252
+ }
253
+ .price {
254
+ @include title-face;
255
+ display: inline-block;
256
+ margin-left: 1em;
257
+ @include breakpoint($breakpoint-nav) {
258
+ display: block;
259
+ margin-left: 0;
260
+ }
261
+ }
262
+ }
263
+ .how-it-works {
264
+ background: url(fn-homepage-howitworks-topbg.svg) -1.5em 0 no-repeat, url(fn-homepage-howitworks-bg-sm.jpg) no-repeat, $text-color;
265
+ @include pie-clearfix;
266
+
267
+ @include breakpoint($breakpoint-l){
268
+ background: url(fn-homepage-howitworks-topbg.svg) -1.5em 0 no-repeat, url(fn-homepage-howitworks-bg.jpg) no-repeat, $text-color;
269
+ }
270
+ h3.section-title {
271
+ @include reversed-text-smoothing;
272
+ color: $background-color;
273
+ text-transform: uppercase;
274
+ margin-bottom: 2em;
275
+ margin-top: 2em;
276
+
277
+ @include breakpoint($breakpoint-m){
278
+ text-align:center;
279
+ @include heading-2;
280
+ color: $background-color;
281
+ text-transform: uppercase;
282
+ margin-bottom: 2em;
283
+ }
284
+ }
285
+
286
+ article {
287
+ @include pie-clearfix;
288
+ @include divider-bottom;
289
+ text-align: center;
290
+ @include breakpoint($breakpoint-xs) {
291
+ text-align: left;
292
+ }
293
+ @include breakpoint($breakpoint-m) {
294
+ @include column(4);
295
+ border: 0 none;
296
+ padding: 0;
297
+ text-align: center;
298
+ }
299
+ img {
300
+ margin: 0 auto;
301
+ width: 100%;
302
+ max-width: 60px;
303
+ margin-bottom: 1em;
304
+ @include breakpoint($breakpoint-xs) {
305
+ @include column(3);
306
+ }
307
+ @include breakpoint($breakpoint-m) {
308
+ @include reset-column;
309
+ margin: 0.5em auto 1em auto;
310
+ max-width: 80px;
311
+ }
312
+ }
313
+ .title {
314
+ @include reversed-text-smoothing;
315
+ color: $background-color;
316
+ }
317
+ }
318
+ article.last {
319
+ @include divider-none;
320
+ @include breakpoint($breakpoint-m) {
321
+ @include last;
322
+ }
323
+ }
324
+ }
325
+ .social-posts {
326
+ @include pie-clearfix;
327
+ }
328
+ .social-feed {
329
+ .section-wrapper {
330
+ padding: 1.5em;
331
+ }
332
+ .section-title {
333
+ text-align:center;
334
+ margin-bottom: 1.5em;
335
+ @include breakpoint($breakpoint-l) {
336
+ margin-top: 1.5em;
337
+ }
338
+ a {
339
+ color: $link-color;
340
+ }
341
+ }
342
+ article {
343
+ margin-bottom: 1em;
344
+ width: 100%;
345
+ @include breakpoint($breakpoint-s) {
346
+ width: 48.3%;
347
+ }
348
+ @include breakpoint($breakpoint-nav) {
349
+ width: 31.15%;
350
+ }
351
+ @include breakpoint($breakpoint-xl) {
352
+ width: 22.53%;
353
+ }
354
+ }
355
+ .grid-sizer {
356
+ width: 3.25%;
357
+ }
358
+ .instagram-post {
359
+ background: url('fn-instagram-bg.svg') no-repeat $link-color;
360
+ background-position: 90% 93%;
361
+ background-size: 35px auto;
362
+ }
363
+ .twitter-post {
364
+ background: url('fn-twitter-bg.svg') no-repeat $homepage-featured-background;
365
+ background-position: 90% 85%;
366
+ background-size: 38px 31px;
367
+ }
368
+ .post-text {
369
+ overflow: hidden;
370
+ padding: 1.5em;
371
+ .user-account, time {
372
+ max-width: 85%;
373
+ }
374
+ .user-account {
375
+ display:block;
376
+ font-weight: 700;
377
+ }
378
+ }
379
+ }
380
+ }
381
+
382
+
383
+ //Internal
384
+
385
+ .events-list {
386
+ .content-wrapper {
387
+ background-image: none;
388
+ }
389
+ .event {
390
+ .event-title {
391
+ @include breakpoint($breakpoint-l) {
392
+ @include heading-2;
393
+ margin-bottom:0.15em;
394
+ }
395
+ }
396
+ }
397
+ .event-location {
398
+ margin-top: 1em;
399
+ margin-bottom:0;
400
+ }
401
+ }
402
+
403
+ .event-subtitle, .page-subtitle {
404
+ font-weight:400;
405
+ color:$text-color-subtle;
406
+ }
407
+ .event-detail {
408
+ .page-header {
409
+ background-image: none;
410
+ margin-bottom: 2.5em;
411
+ .page-title {
412
+ margin-bottom: 0.25em;
413
+ padding-bottom: 0;
414
+ }
415
+ }
416
+ .page-subtitle {
417
+ color: $link-color-reverse;
418
+ }
419
+ }
420
+
421
+ .event-genre {
422
+ text-transform: uppercase;
423
+ }
424
+
425
+ .event-date {
426
+ .time {
427
+ @include text-highlighted;
428
+ }
429
+ }
430
+
431
+ .event-tags {
432
+ a {
433
+ color: $text-color;
434
+ }
435
+ }
436
+
437
+ .pricing-free {
438
+ @include heading-2;
439
+ @include text-highlighted;
440
+ display: inline-block;
441
+ }
442
+
443
+ .callout {
444
+ .callout-title {
445
+ color: $link-color-reverse;
446
+ }
447
+ &.location {
448
+ a {
449
+ color: $link-color;
450
+ }
451
+ }
452
+ &.dates ul .day, {
453
+ @include copy-face;
454
+ font-size: 1em;
455
+ }
456
+ .time {
457
+ @include text-highlighted;
458
+ }
459
+ &.connect {
460
+ a {
461
+ @include callout-secondary-link;
462
+ }
463
+ }
464
+ }
465
+
466
+ .footer-banner {
467
+ height: 102px;
468
+ background: url('/assets/skins/pghkids/footer_mobile.png') no-repeat;
469
+ @include breakpoint($breakpoint-xl) {
470
+ background: url('/assets/skins/pghkids/footer.png') no-repeat;
471
+ background-position: center top;
472
+ background-repeat: no-repeat;
473
+ margin-bottom: 20px;
474
+ height: 229px;
475
+ }
476
+ }
477
+
478
+ .social-footer {
479
+ .title {
480
+ color: $text-color;
481
+ }
482
+ }
483
+ .footer-navigation-header {
484
+ @include heading-4;
485
+ color: $text-color;
486
+ }
487
+ .footer-navigation {
488
+ a {
489
+ color: $text-color;
490
+ &:hover {
491
+ color: $background-color;
492
+ }
493
+ }
494
+ li {
495
+ border-bottom: 1px solid $text-color-subtle;
496
+ padding: .6em;
497
+ }
498
+ }
499
+
500
+ .site-footer {
501
+ .copyright {
502
+ color: $text-color;
503
+ }
504
+ }
505
+
506
+ button.search-submit .icon-search {
507
+ height: 19px;
508
+ width: 19px;
509
+ }
510
+
511
+ .logolink {
512
+ position: absolute;
513
+ z-index: 1000;
514
+ background: none;
515
+ }
516
+ @media all and (min-width: 62em) {
517
+ .logolink {
518
+ margin: 45px 0 0 0;
519
+ height: 135px;
520
+ width: 385px;}
521
+ }
522
+ @media all and (max-width: 62em) {
523
+ .logolink {
524
+ margin: 0;
525
+ height: 60px;
526
+ width: 165px;}
527
+ }