trusty-festivity-extension 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (261) hide show
  1. checksums.yaml +15 -0
  2. data/Gemfile +3 -0
  3. data/Gemfile.lock +33 -0
  4. data/README.md +2 -0
  5. data/Rakefile +110 -0
  6. data/app/assets/fonts/bootstrap/glyphicons-halflings-regular.eot +0 -0
  7. data/app/assets/fonts/bootstrap/glyphicons-halflings-regular.svg +288 -0
  8. data/app/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf +0 -0
  9. data/app/assets/fonts/bootstrap/glyphicons-halflings-regular.woff +0 -0
  10. data/app/assets/fonts/bootstrap/glyphicons-halflings-regular.woff2 +0 -0
  11. data/app/assets/images/pct-black.png +0 -0
  12. data/app/assets/images/skins/pghkids/footer.png +0 -0
  13. data/app/assets/images/skins/pghkids/footer_mobile.png +0 -0
  14. data/app/assets/images/skins/pghkids/frog.png +0 -0
  15. data/app/assets/images/skins/pghkids/frog_mobile.png +0 -0
  16. data/app/assets/images/skins/pghkids/header.png +0 -0
  17. data/app/assets/images/skins/pghkids/header_mobile.png +0 -0
  18. data/app/assets/images/skins/pghkids/seafoam.jpg +0 -0
  19. data/app/assets/javascripts/admin/festivity_admin.js +22 -0
  20. data/app/assets/javascripts/admin/pages/ajax_image_uploader.js +29 -0
  21. data/app/assets/javascripts/admin/pages/page_bindings.js +94 -0
  22. data/app/assets/javascripts/admin/pages/performances.js +59 -0
  23. data/app/assets/javascripts/admin/sites/categories.js +74 -0
  24. data/app/assets/javascripts/admin/sites/category_types.js +63 -0
  25. data/app/assets/javascripts/admin/sites/site_bindings.js +4 -0
  26. data/app/assets/javascripts/ajaxupload.js +1 -0
  27. data/app/assets/javascripts/bootstrap-sprockets.js +12 -0
  28. data/app/assets/javascripts/bootstrap.js +2306 -0
  29. data/app/assets/javascripts/bootstrap.min.js +7 -0
  30. data/app/assets/javascripts/bootstrap/affix.js +162 -0
  31. data/app/assets/javascripts/bootstrap/alert.js +94 -0
  32. data/app/assets/javascripts/bootstrap/button.js +116 -0
  33. data/app/assets/javascripts/bootstrap/carousel.js +237 -0
  34. data/app/assets/javascripts/bootstrap/collapse.js +211 -0
  35. data/app/assets/javascripts/bootstrap/dropdown.js +161 -0
  36. data/app/assets/javascripts/bootstrap/modal.js +324 -0
  37. data/app/assets/javascripts/bootstrap/popover.js +113 -0
  38. data/app/assets/javascripts/bootstrap/scrollspy.js +175 -0
  39. data/app/assets/javascripts/bootstrap/tab.js +153 -0
  40. data/app/assets/javascripts/bootstrap/tooltip.js +472 -0
  41. data/app/assets/javascripts/bootstrap/transition.js +59 -0
  42. data/app/assets/javascripts/events/event_list_bindings.js +3 -0
  43. data/app/assets/javascripts/events/filters.js +100 -0
  44. data/app/assets/javascripts/festivity.js +1 -0
  45. data/app/assets/javascripts/festivity_app.js +13 -0
  46. data/app/assets/javascripts/jasny-bootstrap.js +1024 -0
  47. data/app/assets/javascripts/jquery-migrate.js +521 -0
  48. data/app/assets/javascripts/jquery.collapse.js +176 -0
  49. data/app/assets/javascripts/jquery.collapse_cookie_storage.js +37 -0
  50. data/app/assets/javascripts/jquery.collapse_storage.js +56 -0
  51. data/app/assets/javascripts/jquery.inputmask.bundle.min.js +10 -0
  52. data/app/assets/javascripts/lodash.min.js +88 -0
  53. data/app/assets/javascripts/readmore.min.js +11 -0
  54. data/app/assets/javascripts/script.js +22 -0
  55. data/app/assets/javascripts/underscore.js +1545 -0
  56. data/app/assets/stylesheets/_bootstrap-compass.scss +9 -0
  57. data/app/assets/stylesheets/_bootstrap-mincer.scss +19 -0
  58. data/app/assets/stylesheets/_bootstrap-sprockets.scss +9 -0
  59. data/app/assets/stylesheets/_bootstrap.scss +50 -0
  60. data/app/assets/stylesheets/_defaults.scss +6 -0
  61. data/app/assets/stylesheets/_event_filter_bar.scss +78 -0
  62. data/app/assets/stylesheets/_faq.scss +48 -0
  63. data/app/assets/stylesheets/_filter-bar-mobile.scss +32 -0
  64. data/app/assets/stylesheets/_footer.scss +18 -0
  65. data/app/assets/stylesheets/_global.scss +30 -0
  66. data/app/assets/stylesheets/_header.scss +95 -0
  67. data/app/assets/stylesheets/_landing_page.scss +62 -0
  68. data/app/assets/stylesheets/_locations.scss +17 -0
  69. data/app/assets/stylesheets/_media-queries.scss +9 -0
  70. data/app/assets/stylesheets/_mixins.scss +17 -0
  71. data/app/assets/stylesheets/_nav.scss +128 -0
  72. data/app/assets/stylesheets/_normalize.scss +375 -0
  73. data/app/assets/stylesheets/_overrides.scss +11 -0
  74. data/app/assets/stylesheets/_page-template.scss +124 -0
  75. data/app/assets/stylesheets/_related_events.scss +20 -0
  76. data/app/assets/stylesheets/_search-results.scss +20 -0
  77. data/app/assets/stylesheets/_utils.scss +8 -0
  78. data/app/assets/stylesheets/admin/festivity_admin.scss +28 -0
  79. data/app/assets/stylesheets/admin/modules/_category_styles.scss +23 -0
  80. data/app/assets/stylesheets/admin/modules/_form_styles.scss +40 -0
  81. data/app/assets/stylesheets/admin/modules/_list_styles.scss +30 -0
  82. data/app/assets/stylesheets/admin/modules/_variables.scss +3 -0
  83. data/app/assets/stylesheets/bootstrap/_alerts.scss +73 -0
  84. data/app/assets/stylesheets/bootstrap/_badges.scss +67 -0
  85. data/app/assets/stylesheets/bootstrap/_breadcrumbs.scss +26 -0
  86. data/app/assets/stylesheets/bootstrap/_button-groups.scss +243 -0
  87. data/app/assets/stylesheets/bootstrap/_buttons.scss +160 -0
  88. data/app/assets/stylesheets/bootstrap/_carousel.scss +269 -0
  89. data/app/assets/stylesheets/bootstrap/_close.scss +36 -0
  90. data/app/assets/stylesheets/bootstrap/_code.scss +69 -0
  91. data/app/assets/stylesheets/bootstrap/_component-animations.scss +38 -0
  92. data/app/assets/stylesheets/bootstrap/_dropdowns.scss +214 -0
  93. data/app/assets/stylesheets/bootstrap/_forms.scss +570 -0
  94. data/app/assets/stylesheets/bootstrap/_glyphicons.scss +301 -0
  95. data/app/assets/stylesheets/bootstrap/_grid.scss +84 -0
  96. data/app/assets/stylesheets/bootstrap/_input-groups.scss +166 -0
  97. data/app/assets/stylesheets/bootstrap/_jumbotron.scss +50 -0
  98. data/app/assets/stylesheets/bootstrap/_labels.scss +66 -0
  99. data/app/assets/stylesheets/bootstrap/_list-group.scss +124 -0
  100. data/app/assets/stylesheets/bootstrap/_media.scss +61 -0
  101. data/app/assets/stylesheets/bootstrap/_mixins.scss +39 -0
  102. data/app/assets/stylesheets/bootstrap/_modals.scss +148 -0
  103. data/app/assets/stylesheets/bootstrap/_navbar.scss +663 -0
  104. data/app/assets/stylesheets/bootstrap/_navs.scss +244 -0
  105. data/app/assets/stylesheets/bootstrap/_normalize.scss +427 -0
  106. data/app/assets/stylesheets/bootstrap/_pager.scss +54 -0
  107. data/app/assets/stylesheets/bootstrap/_pagination.scss +88 -0
  108. data/app/assets/stylesheets/bootstrap/_panels.scss +265 -0
  109. data/app/assets/stylesheets/bootstrap/_popovers.scss +135 -0
  110. data/app/assets/stylesheets/bootstrap/_print.scss +107 -0
  111. data/app/assets/stylesheets/bootstrap/_progress-bars.scss +87 -0
  112. data/app/assets/stylesheets/bootstrap/_responsive-embed.scss +35 -0
  113. data/app/assets/stylesheets/bootstrap/_responsive-utilities.scss +177 -0
  114. data/app/assets/stylesheets/bootstrap/_scaffolding.scss +150 -0
  115. data/app/assets/stylesheets/bootstrap/_tables.scss +234 -0
  116. data/app/assets/stylesheets/bootstrap/_theme.scss +273 -0
  117. data/app/assets/stylesheets/bootstrap/_thumbnails.scss +38 -0
  118. data/app/assets/stylesheets/bootstrap/_tooltip.scss +103 -0
  119. data/app/assets/stylesheets/bootstrap/_type.scss +298 -0
  120. data/app/assets/stylesheets/bootstrap/_utilities.scss +56 -0
  121. data/app/assets/stylesheets/bootstrap/_variables.scss +862 -0
  122. data/app/assets/stylesheets/bootstrap/_wells.scss +29 -0
  123. data/app/assets/stylesheets/bootstrap/mixins/_alerts.scss +14 -0
  124. data/app/assets/stylesheets/bootstrap/mixins/_background-variant.scss +11 -0
  125. data/app/assets/stylesheets/bootstrap/mixins/_border-radius.scss +18 -0
  126. data/app/assets/stylesheets/bootstrap/mixins/_buttons.scss +52 -0
  127. data/app/assets/stylesheets/bootstrap/mixins/_center-block.scss +7 -0
  128. data/app/assets/stylesheets/bootstrap/mixins/_clearfix.scss +22 -0
  129. data/app/assets/stylesheets/bootstrap/mixins/_forms.scss +88 -0
  130. data/app/assets/stylesheets/bootstrap/mixins/_gradients.scss +58 -0
  131. data/app/assets/stylesheets/bootstrap/mixins/_grid-framework.scss +81 -0
  132. data/app/assets/stylesheets/bootstrap/mixins/_grid.scss +122 -0
  133. data/app/assets/stylesheets/bootstrap/mixins/_hide-text.scss +21 -0
  134. data/app/assets/stylesheets/bootstrap/mixins/_image.scss +33 -0
  135. data/app/assets/stylesheets/bootstrap/mixins/_labels.scss +12 -0
  136. data/app/assets/stylesheets/bootstrap/mixins/_list-group.scss +31 -0
  137. data/app/assets/stylesheets/bootstrap/mixins/_nav-divider.scss +10 -0
  138. data/app/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss +9 -0
  139. data/app/assets/stylesheets/bootstrap/mixins/_opacity.scss +8 -0
  140. data/app/assets/stylesheets/bootstrap/mixins/_pagination.scss +23 -0
  141. data/app/assets/stylesheets/bootstrap/mixins/_panels.scss +24 -0
  142. data/app/assets/stylesheets/bootstrap/mixins/_progress-bar.scss +10 -0
  143. data/app/assets/stylesheets/bootstrap/mixins/_reset-filter.scss +8 -0
  144. data/app/assets/stylesheets/bootstrap/mixins/_resize.scss +6 -0
  145. data/app/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss +21 -0
  146. data/app/assets/stylesheets/bootstrap/mixins/_size.scss +10 -0
  147. data/app/assets/stylesheets/bootstrap/mixins/_tab-focus.scss +9 -0
  148. data/app/assets/stylesheets/bootstrap/mixins/_table-row.scss +28 -0
  149. data/app/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss +11 -0
  150. data/app/assets/stylesheets/bootstrap/mixins/_text-overflow.scss +8 -0
  151. data/app/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss +222 -0
  152. data/app/assets/stylesheets/events/_event-list-item.scss +85 -0
  153. data/app/assets/stylesheets/events/_event_template.scss +66 -0
  154. data/app/assets/stylesheets/events/_filter-bar.scss +5 -0
  155. data/app/assets/stylesheets/festivity.scss +35 -0
  156. data/app/assets/stylesheets/skins/pghkids/_events.scss +17 -0
  157. data/app/assets/stylesheets/skins/pghkids/_footer.scss +22 -0
  158. data/app/assets/stylesheets/skins/pghkids/_global.scss +42 -0
  159. data/app/assets/stylesheets/skins/pghkids/_header.scss +27 -0
  160. data/app/assets/stylesheets/skins/pghkids/_home.scss +113 -0
  161. data/app/assets/stylesheets/skins/pghkids/skin.scss +8 -0
  162. data/app/assets/stylesheets/vars/_vars_color.scss +6 -0
  163. data/app/assets/stylesheets/vars/_vars_media-queries.scss +5 -0
  164. data/app/assets/stylesheets/vars/_vars_type.scss +1 -0
  165. data/app/controllers/admin/festivity_categories_controller.rb +31 -0
  166. data/app/controllers/admin/festivity_category_types_controller.rb +31 -0
  167. data/app/controllers/admin/festivity_performances_controller.rb +21 -0
  168. data/app/controllers/festivity_events_controller.rb +71 -0
  169. data/app/controllers/festivity_location_areas_controller.rb +17 -0
  170. data/app/controllers/festivity_locations_controller.rb +19 -0
  171. data/app/controllers/search_controller.rb +17 -0
  172. data/app/helpers/admin/festivity_performances_helper.rb +3 -0
  173. data/app/helpers/admin/snippets_helper.rb +3 -0
  174. data/app/helpers/festivity_events_helper.rb +12 -0
  175. data/app/helpers/festivity_locations_helper.rb +4 -0
  176. data/app/models/festivity_base_page.rb +23 -0
  177. data/app/models/festivity_category.rb +17 -0
  178. data/app/models/festivity_category_type.rb +14 -0
  179. data/app/models/festivity_event_list.rb +90 -0
  180. data/app/models/festivity_event_list/festivity_event.rb +40 -0
  181. data/app/models/festivity_event_list/festivity_event_performance.rb +10 -0
  182. data/app/models/festivity_event_list/festivity_location.rb +15 -0
  183. data/app/models/festivity_event_page.rb +55 -0
  184. data/app/models/festivity_location_area_page.rb +5 -0
  185. data/app/models/festivity_location_page.rb +3 -0
  186. data/app/models/festivity_market_page.rb +3 -0
  187. data/app/models/festivity_page_category.rb +4 -0
  188. data/app/models/festivity_performance.rb +29 -0
  189. data/app/views/admin/pages/_festivity_base_fields.html.haml +75 -0
  190. data/app/views/admin/pages/_festivity_featured_image_fields.html.haml +3 -0
  191. data/app/views/admin/pages/_festivity_includes.html.haml +2 -0
  192. data/app/views/admin/pages/_festivity_location_fields.html.haml +26 -0
  193. data/app/views/admin/pages/partials/_categories.html.haml +18 -0
  194. data/app/views/admin/pages/partials/_category.html.haml +4 -0
  195. data/app/views/admin/pages/partials/_featured_image.html.haml +18 -0
  196. data/app/views/admin/pages/partials/_performance.html.haml +13 -0
  197. data/app/views/admin/pages/partials/_performances.html.haml +11 -0
  198. data/app/views/admin/pages/partials/_performances_table.html.haml +15 -0
  199. data/app/views/admin/sites/_festivity_site_fields.html.haml +26 -0
  200. data/app/views/admin/sites/partials/_category.html.haml +7 -0
  201. data/app/views/admin/sites/partials/_category_popup.html.haml +19 -0
  202. data/app/views/admin/sites/partials/_category_popups.haml +27 -0
  203. data/app/views/admin/sites/partials/_category_section.html.haml +7 -0
  204. data/app/views/admin/sites/partials/_category_types.html.haml +23 -0
  205. data/app/views/admin/sites/partials/_filters.html.haml +25 -0
  206. data/app/views/admin/sites/partials/_new_category.html.haml +3 -0
  207. data/app/views/admin/sites/partials/_new_category_type.html.haml +3 -0
  208. data/app/views/festivity_events/_event_filters.html.haml +39 -0
  209. data/app/views/festivity_events/_event_list.html.haml +62 -0
  210. data/app/views/festivity_events/_filter_bar_mobile.html.haml +22 -0
  211. data/app/views/festivity_events/index.html.haml +34 -0
  212. data/app/views/festivity_events/show.html.haml +152 -0
  213. data/app/views/festivity_location_areas/show.html.haml +29 -0
  214. data/app/views/festivity_locations/show.html.haml +66 -0
  215. data/app/views/header/_meta_tags.html.haml +8 -0
  216. data/app/views/navigation/_subnav_one_column.html.haml +15 -0
  217. data/app/views/navigation/_subnav_three_column.html.haml +7 -0
  218. data/app/views/navigation/_three_column_item.html.haml +11 -0
  219. data/app/views/search/_page.html.haml +1 -0
  220. data/app/views/search/_pagination_links.html.haml +7 -0
  221. data/app/views/search/_result_item.html.haml +6 -0
  222. data/app/views/search/show.html.haml +19 -0
  223. data/config/initializers/pluralizations.rb +0 -0
  224. data/config/initializers/radiant_config.rb +1 -0
  225. data/config/locales/en.yml +16 -0
  226. data/config/routes.rb +14 -0
  227. data/config/trustygems.yml +2 -0
  228. data/db/content/layouts/base.html +174 -0
  229. data/db/content/layouts/normal.html +5 -0
  230. data/db/fixtures/home_pages.yml +40 -0
  231. data/db/fixtures/layouts.yml +2 -0
  232. data/db/fixtures/pages.yml +23 -0
  233. data/db/fixtures/sites.yml +57 -0
  234. data/db/fixtures/users.yml +8 -0
  235. data/db/migrate/200150325136087799_add_event_performances_view.rb +27 -0
  236. data/db/migrate/200150425136087799_update_event_performances_view_with_site.rb +27 -0
  237. data/db/migrate/20150123175758_add_site_fields.rb +15 -0
  238. data/db/migrate/20150127090858995_add_base_event_fields.rb +24 -0
  239. data/db/migrate/20150127091005232_add_market_and_event_fields.rb +29 -0
  240. data/db/migrate/20150204113325731_add_category_types_table.rb +15 -0
  241. data/db/migrate/20150204113427832_add_categories_table.rb +15 -0
  242. data/db/migrate/20150204113510326_add_page_categories_table.rb +12 -0
  243. data/db/migrate/20150226131727777_add_location_page_fields.rb +19 -0
  244. data/db/migrate/20150302135485569_add_performances_table.rb +19 -0
  245. data/db/migrate/20150324135487799_add_indexes.rb +21 -0
  246. data/festivity_extension.rb +25 -0
  247. data/lib/festivity/admin/assets_helper.rb +17 -0
  248. data/lib/festivity/engine.rb +9 -0
  249. data/lib/festivity/extensions/page_extensions.rb +61 -0
  250. data/lib/festivity/extensions/pages_helper_extensions.rb +11 -0
  251. data/lib/festivity/extensions/paperclipped_extensions.rb +22 -0
  252. data/lib/festivity/extensions/site_extensions.rb +40 -0
  253. data/lib/festivity/mixins/not_found.rb +10 -0
  254. data/lib/tags/header_tags.rb +41 -0
  255. data/lib/tags/navigation_tags.rb +55 -0
  256. data/lib/tasks/active_record_utils.rb +35 -0
  257. data/lib/tasks/festivity_extension_tasks.rake +7 -0
  258. data/lib/tasks/setup.rake +101 -0
  259. data/lib/trusty-festivity-extension.rb +8 -0
  260. data/trusty-festivity-extension.gemspec +37 -0
  261. metadata +442 -0
@@ -0,0 +1,85 @@
1
+ .event-list {
2
+ .event-list-item {
3
+ position: relative;
4
+ > hr {
5
+ margin: 3em 0;
6
+ }
7
+ .popover {
8
+ max-width: 400px;
9
+ }
10
+ .event-list-item__info {
11
+ @media #{$medium-up} {
12
+ padding-left: 1.5em;
13
+ }
14
+ h2 {
15
+ //remove the normalize top margin on h2 elements
16
+ margin-top: 1em;
17
+ font-size: 1.5em;
18
+ font-weight: 700;
19
+ line-height: 1.3;
20
+ @media #{$small-up} {
21
+ margin-top: 0;
22
+ font-size: 2em;
23
+ }
24
+ }
25
+ h3 {
26
+ font-size: 1.25em;
27
+ .light {
28
+ font-weight: 300;
29
+ }
30
+ }
31
+ .event-list-item__button-group {
32
+ margin-top: 2em;
33
+ .event-list-item__btn {
34
+ background-color: $ghost-gray;
35
+ @include border-radius(0);
36
+ font-size: .75em;
37
+ font-weight: 600;
38
+ padding: 10px 8px;
39
+ border-right: 2px solid white;
40
+ @media #{$small-up} {
41
+ background-color: $ghost-gray;
42
+ color: #808284;
43
+ @include border-radius($default-border-radius);
44
+ font-size: .85em;
45
+ font-weight: 600;
46
+ margin-right: 2em;
47
+ padding: 3px 15px;
48
+ }
49
+ }
50
+ }
51
+ .event-list-item__info_short_description {
52
+ font-size: 1.25em;
53
+ color: $middle-gray;
54
+ }
55
+ }
56
+ .event-list-item__photo {
57
+ .photo {
58
+ position: relative;
59
+ .event_list-item__photo-featured-item {
60
+ background-color: #F05A28;
61
+ font-size: 10px;
62
+ color: white;
63
+ width: 100%;
64
+ text-align: center;
65
+ padding: 5px 0;
66
+ font-weight: 600;
67
+ }
68
+ img {
69
+ width: 100%;
70
+ }
71
+ .categories {
72
+ position: absolute;
73
+ top: 20px;
74
+ left: 20px;
75
+ background-color: #27A9E1;
76
+ color: white;
77
+ font-size: 10px;
78
+ font-weight: 600;
79
+ @include border-radius($default-border-radius);
80
+ padding: 5px;
81
+ }
82
+ }
83
+ }
84
+ }
85
+ }
@@ -0,0 +1,66 @@
1
+ .event-header {
2
+ h1 {
3
+ font-size: 2em;
4
+ font-weight: 800;
5
+ line-height: 1.3;
6
+ @media #{$small-up} {
7
+ font-size: 3em;
8
+ }
9
+ }
10
+ .event-header__name {
11
+ font-size: 1.5em;
12
+ }
13
+ .event-header__subheadline {
14
+ font-size: 1.25em;
15
+ padding-bottom: .5em;
16
+ font-weight: 800;
17
+ @media #{$small-up} {
18
+ font-size: 1em;
19
+ }
20
+ }
21
+ }
22
+ .event-details__event-description {
23
+ padding-bottom: 2em;
24
+ }
25
+
26
+ .event-sidebar {
27
+ .sidebar-item {
28
+ margin: 0 0 3rem 0;
29
+ padding: 0;
30
+ }
31
+ .list-group-title {
32
+ background-color: $ghost-gray;
33
+ h3 {
34
+ font-weight: 700;
35
+ font-style: 1em;
36
+ padding: 0;
37
+ margin: 0;
38
+ }
39
+ .tickets-button {
40
+ width: 100%;
41
+ }
42
+ }
43
+
44
+ .event-sidebar__connect-with-artist {
45
+ text-align: center;
46
+ ul li {
47
+ font-size:1.25em;
48
+ text-align: left;
49
+ .icon-text {
50
+ padding-left: 1em;
51
+ display: inline-block;
52
+ }
53
+ }
54
+ }
55
+ }
56
+
57
+ .img-large {
58
+ width: 100%;
59
+ padding-bottom: 2em;
60
+ }
61
+
62
+ .event-buttons {
63
+ > button, > a {
64
+ margin-right: 2em;
65
+ }
66
+ }
@@ -0,0 +1,5 @@
1
+ .current-filters {
2
+ ul li {
3
+ margin-right: 10px;
4
+ }
5
+ }
@@ -0,0 +1,35 @@
1
+ @import "normalize";
2
+ // Import bootstrap. We are using everything for prototyping purposes for for
3
+ // production we recommend only importing components that are actually used.
4
+ @import url(http://fonts.googleapis.com/css?family=Open+Sans:300,400,700,800,600);
5
+
6
+ // this is a temporary spacer
7
+ @import "vars/vars_color";
8
+ @import "vars/vars_type";
9
+ @import "vars/vars_media-queries";
10
+ @import "mixins";
11
+ @import "defaults";
12
+ @import "global";
13
+ @import "header";
14
+ @import "footer";
15
+ @import "landing_page";
16
+ @import "nav";
17
+ @import "faq";
18
+ @import "events/event-list-item";
19
+ @import "events/event_template";
20
+ @import "event_filter_bar";
21
+ @import "utils";
22
+ @import "overrides";
23
+ @import "events/filter-bar";
24
+ @import "filter-bar-mobile";
25
+ @import "related_events";
26
+ @import "locations";
27
+ @import "media-queries";
28
+ @import "search-results";
29
+ @import "page-template";
30
+
31
+
32
+ #placeHolder {
33
+ display: none !important;
34
+ }
35
+
@@ -0,0 +1,17 @@
1
+ .event-buttons > button, .event-buttons > a {
2
+ color: #0495a4;}
3
+ .event-header .event-header__name {
4
+ color: #000;}
5
+ .event-sidebar .list-group-title {
6
+ background: #c8eef2;}
7
+ list-group-item .a {
8
+ color: #0495a4;}
9
+ li.list-group-item .a:hover {
10
+ color: #03616b;
11
+ text-decoration: none;}
12
+ .event-filter-bar__header {
13
+ background-color: #c2e8eb !important;}
14
+ .related-events .related-events__event h3:hover,.related-events .related-events__event h3:focus {
15
+ color: #03616b;}
16
+ .related-events .related-events__event a h3{
17
+ color: #0495A4;}
@@ -0,0 +1,22 @@
1
+ footer {
2
+ background: #bfd857;
3
+ margin-top: 0rem;
4
+ padding-top: 0rem;}
5
+ footer .birds {
6
+ background-position: center top;
7
+ background-repeat: no-repeat;
8
+ margin-bottom: 20px;}
9
+ @media all and (min-width: 62em) {
10
+ footer .birds {
11
+ background-image: url(footer.png);
12
+ height: 229px;} }
13
+ @media all and (max-width: 62em) {
14
+ footer .birds {
15
+ background-image: url(footer_mobile.png);
16
+ height: 102px;} }
17
+ footer a {
18
+ color: #000;
19
+ text-decoration: none; }
20
+ footer a:hover {
21
+ font-weight: bold;
22
+ color: #fff; }
@@ -0,0 +1,42 @@
1
+ a {
2
+ color: #0495a4;
3
+ font-weight: bold;}
4
+ a:hover {
5
+ color: #03616b;
6
+ font-weight: bold;
7
+ text-decoration: none;}
8
+ h1 {
9
+ color: #0495a4;
10
+ font-weight: bold;}
11
+ h2 {
12
+ color: #c05917;
13
+ font-weight: bold;}
14
+ h3 {
15
+ color: #000;
16
+ font-weight: bold;}
17
+ .btn-primary {
18
+ background-color: #fcba36;
19
+ border-color: #363636;
20
+ font-weight: bold;
21
+ color: #1d1c1c; }
22
+ .btn-primary:hover{
23
+ background-color: #e09603;}
24
+ .btn-default {
25
+ color: #0495A4;
26
+ background-color: #fff;
27
+ border-color: #ccc;}
28
+ .btn-default:focus,.btn-default:hover,.btn-default:focus a,.btn-default:hover a {
29
+ color: #fff;
30
+ background-color: #0495A4;
31
+ border-color: #000;
32
+ text-decoration: none;
33
+ font-weight: normal;}
34
+ .popover-title {
35
+ background-color: #c2e8eb;}
36
+ .mobile-navigation .secondary-nav ul.list-inline.social-icons a{
37
+ padding: 5px !important;}
38
+ .mobile-navigation .secondary-nav a {
39
+ color: #0495a4;
40
+ font-weight: normal;}
41
+ .mobile-navigation .secondary-nav a:hover {
42
+ text-decoration: underline;}
@@ -0,0 +1,27 @@
1
+ .logolink {
2
+ position: absolute;
3
+ z-index: 1000;
4
+ background: none;}
5
+ @media all and (min-width: 62em) {
6
+ .logolink {
7
+ margin: 45px 0 0 0;
8
+ height: 135px;
9
+ width: 385px;}}
10
+ @media all and (max-width: 62em) {
11
+ .logolink {
12
+ margin: 0;
13
+ height: 60px;
14
+ width: 165px;}}
15
+ header.site-header .secondary-navigation li {
16
+ font-weight: bold;
17
+ color: #000;}
18
+ header.site-header .secondary-navigation li a:hover,a:focus {
19
+ color: #03616b;}
20
+ @media all and (min-width: 62em) {
21
+ header.site-header {
22
+ background-image: url(header.png);
23
+ height: 100%;}}
24
+ @media all and (max-width: 62em) {
25
+ header.site-header {
26
+ background-image: url(header_mobile.png);
27
+ background-repeat: no-repeat;}}
@@ -0,0 +1,113 @@
1
+ .home {
2
+ color: #fff;
3
+ font-size: 16px;
4
+ padding-bottom: 10px;}
5
+ .home a {
6
+ color: #000;}
7
+ .home .col-md-4, .col-md-6 {
8
+ padding-left: 10px!important;
9
+ padding-right: 10px!important;}
10
+ .home .title {
11
+ font-weight: bold;
12
+ font-size: 24px;
13
+ text-shadow: 1px 1px #000;
14
+ padding-bottom: 0px;}
15
+ .home hr{
16
+ padding: 10px 0 10px 0;
17
+ margin: 0;
18
+ font-weight: bold;}
19
+ .home .title .subtitle{
20
+ font-size: 24px;
21
+ font-weight: bold;
22
+ color: #fcba36;
23
+ text-shadow: 1px 1px #000;}
24
+ .home-header {
25
+ font-size: 48px;
26
+ font-weight: bold;
27
+ color: #22bdcd;
28
+ text-shadow: 1px 1px #000;
29
+ background-position: right top;
30
+ background-repeat: no-repeat;}
31
+ @media all and (min-width: 62em) {
32
+ .home-header{
33
+ background-image: url(frog.png);}}
34
+ @media all and (max-width: 62em) {
35
+ .home-header {
36
+ font-size: 28px;
37
+ background-image: url(frog_mobile.png);}}
38
+ .home-primary {
39
+ background-color: #008379; }
40
+ @media all and (min-width: 62em) {
41
+ .home-primary{
42
+ background-image: url(seafoam.jpg);
43
+ background-position: right top;
44
+ background-repeat: no-repeat;} }
45
+ .home-secondary-1 {
46
+ background-color: #c05917;
47
+ margin-top: 10px;}
48
+ @media all and (min-width: 62em) {
49
+ .home-secondary-1 {
50
+ width: 49.5%;
51
+ margin-right: .5% }}
52
+ .home-secondary-2 {
53
+ background-color: #c30f38;
54
+ margin-top: 10px;}
55
+ @media all and (min-width: 62em) {
56
+ .home-secondary-2 {
57
+ width: 49.5%;
58
+ margin-left: .5% } }
59
+ .home .highlight {
60
+ color: #000;
61
+ text-shadow: none;}
62
+ .home .highlight hr {
63
+ border-color: #000;}
64
+ .home .highlight .title{
65
+ font-size: 24px;
66
+ font-weight: bold;
67
+ color: #000;
68
+ text-shadow: none;}
69
+ .home-highlight-1 {
70
+ background-color: #93d6de;
71
+ margin-top: 10px;}
72
+ @media all and (min-width: 62em) {
73
+ .home-highlight-1 {
74
+ width: 49.5%;
75
+ margin-right: .5% } }
76
+ .home-highlight-2 {
77
+ background-color: #fbb72d;
78
+ margin-top: 10px;}
79
+ @media all and (min-width: 62em) {
80
+ .home-highlight-2 {
81
+ width: 49.5%;
82
+ margin-left: .5% } }
83
+ .home ul {
84
+ padding: 20px;}
85
+ /* set column height */
86
+ /* Small devices (tablets, 768px and up) */
87
+ @media (min-width: 768px) {
88
+ .home-secondary-1, .home-secondary-2 {
89
+ height: 100%;
90
+ }
91
+
92
+ .home-highlight-1, .home-highlight-2 {
93
+ height: 100%;
94
+ }
95
+ }
96
+ /* Medium devices (desktops, 992px and up) */
97
+ @media (min-width: 992px) {
98
+ .home-secondary-1, .home-secondary-2 {
99
+ height: 390px;
100
+ }
101
+ .home-highlight-1, .home-highlight-2 {
102
+ height: 210px;
103
+ }
104
+ }
105
+ /* Large devices (large desktops, 1200px and up) */
106
+ @media (min-width: 1200px) {
107
+ .home-secondary-1, .home-secondary-2 {
108
+ height: 380px;
109
+ }
110
+ .home-highlight-1, .home-highlight-2 {
111
+ height: 210px;
112
+ }
113
+ }
@@ -0,0 +1,8 @@
1
+ // this is a temporary spacer
2
+ @import "header";
3
+ @import "global";
4
+ @import "events";
5
+ @import "footer";
6
+ @import "home";
7
+
8
+
@@ -0,0 +1,6 @@
1
+ // colors
2
+
3
+ $middle-gray: #939597;
4
+ $dark-gray: #404041;
5
+ $ghost-gray: #F1F1F2;
6
+ $border-gray: darken($ghost-gray, 5%);
@@ -0,0 +1,5 @@
1
+ $small-up: "all and (min-width: 48.000em)";
2
+ $medium-up: "all and (min-width: 62.000em)";
3
+ $large-up: "all and (min-width: 75.000em)";
4
+
5
+ $small-down: "all and (max-width: 48.000em)";