aacinfo-theme 0.2.0 → 2.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (489) hide show
  1. checksums.yaml +8 -8
  2. data/README.md +25 -1
  3. data/_includes/footer.html +54 -0
  4. data/_includes/header.html +46 -0
  5. data/_includes/parts/content.html +6 -0
  6. data/_includes/parts/social-media.html +10 -0
  7. data/_includes/theme-menu.html +27 -28
  8. data/_layouts/theme.html +14 -26
  9. data/_layouts/title-page.html +22 -0
  10. data/_sass/_style.scss +122 -0
  11. data/_sass/components/_blockquotes.scss +62 -0
  12. data/_sass/components/_buttons.scss +100 -0
  13. data/_sass/components/_cards.scss +29 -0
  14. data/_sass/components/_dividers.scss +165 -0
  15. data/_sass/components/_featured-image.scss +14 -0
  16. data/_sass/components/_forms.scss +414 -0
  17. data/_sass/components/_links.scss +83 -0
  18. data/_sass/components/_pagination.scss +91 -0
  19. data/_sass/components/_selectric.scss +200 -0
  20. data/_sass/components/_slick-theme.scss +194 -0
  21. data/_sass/components/_slick.scss +98 -0
  22. data/_sass/components/_spinner.scss +356 -0
  23. data/_sass/components/_svg.scss +12 -0
  24. data/_sass/fontawesome/.bower.json +36 -0
  25. data/_sass/fontawesome/.gitignore +33 -0
  26. data/_sass/fontawesome/.npmignore +42 -0
  27. data/_sass/fontawesome/HELP-US-OUT.txt +7 -0
  28. data/_sass/fontawesome/bower.json +22 -0
  29. data/{assets → _sass/fontawesome}/css/font-awesome.css +547 -11
  30. data/_sass/fontawesome/css/font-awesome.css.map +7 -0
  31. data/_sass/fontawesome/css/font-awesome.min.css +4 -0
  32. data/_sass/fontawesome/fonts/FontAwesome.otf +0 -0
  33. data/_sass/fontawesome/fonts/fontawesome-webfont.eot +0 -0
  34. data/_sass/fontawesome/fonts/fontawesome-webfont.svg +2671 -0
  35. data/_sass/fontawesome/fonts/fontawesome-webfont.ttf +0 -0
  36. data/_sass/fontawesome/fonts/fontawesome-webfont.woff +0 -0
  37. data/_sass/fontawesome/fonts/fontawesome-webfont.woff2 +0 -0
  38. data/_sass/fontawesome/less/animated.less +34 -0
  39. data/_sass/fontawesome/less/bordered-pulled.less +25 -0
  40. data/_sass/fontawesome/less/core.less +12 -0
  41. data/_sass/fontawesome/less/fixed-width.less +6 -0
  42. data/_sass/fontawesome/less/font-awesome.less +18 -0
  43. data/_sass/fontawesome/less/icons.less +789 -0
  44. data/_sass/fontawesome/less/larger.less +13 -0
  45. data/_sass/fontawesome/less/list.less +19 -0
  46. data/_sass/fontawesome/less/mixins.less +60 -0
  47. data/_sass/fontawesome/less/path.less +15 -0
  48. data/_sass/fontawesome/less/rotated-flipped.less +20 -0
  49. data/_sass/fontawesome/less/screen-reader.less +5 -0
  50. data/_sass/fontawesome/less/stacked.less +20 -0
  51. data/_sass/fontawesome/less/variables.less +800 -0
  52. data/_sass/fontawesome/scss/_animated.scss +34 -0
  53. data/_sass/fontawesome/scss/_bordered-pulled.scss +25 -0
  54. data/_sass/fontawesome/scss/_core.scss +12 -0
  55. data/_sass/fontawesome/scss/_fixed-width.scss +6 -0
  56. data/_sass/fontawesome/scss/_icons.scss +789 -0
  57. data/_sass/fontawesome/scss/_larger.scss +13 -0
  58. data/_sass/fontawesome/scss/_list.scss +19 -0
  59. data/_sass/fontawesome/scss/_mixins.scss +60 -0
  60. data/_sass/fontawesome/scss/_path.scss +15 -0
  61. data/_sass/fontawesome/scss/_rotated-flipped.scss +20 -0
  62. data/_sass/fontawesome/scss/_screen-reader.scss +5 -0
  63. data/_sass/fontawesome/scss/_stacked.scss +20 -0
  64. data/_sass/fontawesome/scss/_variables.scss +800 -0
  65. data/_sass/fontawesome/scss/font-awesome.scss +18 -0
  66. data/_sass/foundation-sites/.bower.json +44 -0
  67. data/_sass/foundation-sites/.bowerrc +3 -0
  68. data/_sass/foundation-sites/.eslintrc +64 -0
  69. data/_sass/foundation-sites/.github/ISSUE_TEMPLATE.md +21 -0
  70. data/_sass/foundation-sites/.github/PULL_REQUEST_TEMPLATE.md +9 -0
  71. data/_sass/foundation-sites/.sass-lint.yml +409 -0
  72. data/_sass/foundation-sites/.travis.yml +9 -0
  73. data/_sass/foundation-sites/LICENSE +22 -0
  74. data/_sass/foundation-sites/README.md +52 -0
  75. data/_sass/foundation-sites/_vendor/normalize-scss/sass/_normalize.scss +3 -0
  76. data/_sass/foundation-sites/_vendor/normalize-scss/sass/normalize/_import-now.scss +11 -0
  77. data/_sass/foundation-sites/_vendor/normalize-scss/sass/normalize/_normalize-mixin.scss +676 -0
  78. data/_sass/foundation-sites/_vendor/normalize-scss/sass/normalize/_variables.scss +36 -0
  79. data/_sass/foundation-sites/_vendor/normalize-scss/sass/normalize/_vertical-rhythm.scss +61 -0
  80. data/_sass/foundation-sites/_vendor/sassy-lists/stylesheets/functions/_purge.scss +38 -0
  81. data/_sass/foundation-sites/_vendor/sassy-lists/stylesheets/functions/_remove.scss +31 -0
  82. data/_sass/foundation-sites/_vendor/sassy-lists/stylesheets/functions/_replace.scss +46 -0
  83. data/_sass/foundation-sites/_vendor/sassy-lists/stylesheets/functions/_to-list.scss +27 -0
  84. data/_sass/foundation-sites/_vendor/sassy-lists/stylesheets/helpers/_missing-dependencies.scss +25 -0
  85. data/_sass/foundation-sites/_vendor/sassy-lists/stylesheets/helpers/_true.scss +13 -0
  86. data/_sass/foundation-sites/assets/foundation-flex.scss +3 -0
  87. data/_sass/foundation-sites/assets/foundation-rtl.scss +5 -0
  88. data/_sass/foundation-sites/assets/foundation.scss +3 -0
  89. data/_sass/foundation-sites/bower.json +34 -0
  90. data/_sass/foundation-sites/browserstack.json +32 -0
  91. data/_sass/foundation-sites/code-of-conduct.md +43 -0
  92. data/_sass/foundation-sites/customizer/complete.json +48 -0
  93. data/_sass/foundation-sites/customizer/config.yml +228 -0
  94. data/_sass/foundation-sites/customizer/essential.json +11 -0
  95. data/_sass/foundation-sites/customizer/index.html +169 -0
  96. data/_sass/foundation-sites/dist/css/foundation-flex.css +4566 -0
  97. data/_sass/foundation-sites/dist/css/foundation-flex.min.css +2 -0
  98. data/_sass/foundation-sites/dist/css/foundation-rtl.css +4006 -0
  99. data/_sass/foundation-sites/dist/css/foundation-rtl.min.css +2 -0
  100. data/_sass/foundation-sites/dist/css/foundation.css +4001 -0
  101. data/_sass/foundation-sites/dist/css/foundation.min.css +2 -0
  102. data/_sass/foundation-sites/dist/js/foundation.d.ts +496 -0
  103. data/_sass/foundation-sites/dist/js/foundation.js +10207 -0
  104. data/_sass/foundation-sites/dist/js/foundation.min.js +4 -0
  105. data/_sass/foundation-sites/dist/js/plugins/foundation.abide.js +637 -0
  106. data/_sass/foundation-sites/dist/js/plugins/foundation.abide.min.js +1 -0
  107. data/_sass/foundation-sites/dist/js/plugins/foundation.accordion.js +252 -0
  108. data/_sass/foundation-sites/dist/js/plugins/foundation.accordion.min.js +1 -0
  109. data/_sass/foundation-sites/dist/js/plugins/foundation.accordionMenu.js +318 -0
  110. data/_sass/foundation-sites/dist/js/plugins/foundation.accordionMenu.min.js +1 -0
  111. data/_sass/foundation-sites/dist/js/plugins/foundation.core.js +386 -0
  112. data/_sass/foundation-sites/dist/js/plugins/foundation.core.min.js +1 -0
  113. data/_sass/foundation-sites/dist/js/plugins/foundation.drilldown.js +565 -0
  114. data/_sass/foundation-sites/dist/js/plugins/foundation.drilldown.min.js +1 -0
  115. data/_sass/foundation-sites/dist/js/plugins/foundation.dropdown.js +465 -0
  116. data/_sass/foundation-sites/dist/js/plugins/foundation.dropdown.min.js +1 -0
  117. data/_sass/foundation-sites/dist/js/plugins/foundation.dropdownMenu.js +486 -0
  118. data/_sass/foundation-sites/dist/js/plugins/foundation.dropdownMenu.min.js +1 -0
  119. data/_sass/foundation-sites/dist/js/plugins/foundation.equalizer.js +374 -0
  120. data/_sass/foundation-sites/dist/js/plugins/foundation.equalizer.min.js +1 -0
  121. data/_sass/foundation-sites/dist/js/plugins/foundation.interchange.js +233 -0
  122. data/_sass/foundation-sites/dist/js/plugins/foundation.interchange.min.js +1 -0
  123. data/_sass/foundation-sites/dist/js/plugins/foundation.magellan.js +285 -0
  124. data/_sass/foundation-sites/dist/js/plugins/foundation.magellan.min.js +1 -0
  125. data/_sass/foundation-sites/dist/js/plugins/foundation.offcanvas.js +474 -0
  126. data/_sass/foundation-sites/dist/js/plugins/foundation.offcanvas.min.js +1 -0
  127. data/_sass/foundation-sites/dist/js/plugins/foundation.orbit.js +566 -0
  128. data/_sass/foundation-sites/dist/js/plugins/foundation.orbit.min.js +1 -0
  129. data/_sass/foundation-sites/dist/js/plugins/foundation.responsiveMenu.js +169 -0
  130. data/_sass/foundation-sites/dist/js/plugins/foundation.responsiveMenu.min.js +1 -0
  131. data/_sass/foundation-sites/dist/js/plugins/foundation.responsiveToggle.js +177 -0
  132. data/_sass/foundation-sites/dist/js/plugins/foundation.responsiveToggle.min.js +1 -0
  133. data/_sass/foundation-sites/dist/js/plugins/foundation.reveal.js +633 -0
  134. data/_sass/foundation-sites/dist/js/plugins/foundation.reveal.min.js +1 -0
  135. data/_sass/foundation-sites/dist/js/plugins/foundation.slider.js +762 -0
  136. data/_sass/foundation-sites/dist/js/plugins/foundation.slider.min.js +1 -0
  137. data/_sass/foundation-sites/dist/js/plugins/foundation.sticky.js +518 -0
  138. data/_sass/foundation-sites/dist/js/plugins/foundation.sticky.min.js +1 -0
  139. data/_sass/foundation-sites/dist/js/plugins/foundation.tabs.js +512 -0
  140. data/_sass/foundation-sites/dist/js/plugins/foundation.tabs.min.js +1 -0
  141. data/_sass/foundation-sites/dist/js/plugins/foundation.toggler.js +169 -0
  142. data/_sass/foundation-sites/dist/js/plugins/foundation.toggler.min.js +1 -0
  143. data/_sass/foundation-sites/dist/js/plugins/foundation.tooltip.js +492 -0
  144. data/_sass/foundation-sites/dist/js/plugins/foundation.tooltip.min.js +1 -0
  145. data/_sass/foundation-sites/dist/js/plugins/foundation.util.box.js +196 -0
  146. data/_sass/foundation-sites/dist/js/plugins/foundation.util.box.min.js +1 -0
  147. data/_sass/foundation-sites/dist/js/plugins/foundation.util.keyboard.js +163 -0
  148. data/_sass/foundation-sites/dist/js/plugins/foundation.util.keyboard.min.js +1 -0
  149. data/_sass/foundation-sites/dist/js/plugins/foundation.util.mediaQuery.js +233 -0
  150. data/_sass/foundation-sites/dist/js/plugins/foundation.util.mediaQuery.min.js +1 -0
  151. data/_sass/foundation-sites/dist/js/plugins/foundation.util.motion.js +103 -0
  152. data/_sass/foundation-sites/dist/js/plugins/foundation.util.motion.min.js +1 -0
  153. data/_sass/foundation-sites/dist/js/plugins/foundation.util.nest.js +74 -0
  154. data/_sass/foundation-sites/dist/js/plugins/foundation.util.nest.min.js +1 -0
  155. data/_sass/foundation-sites/dist/js/plugins/foundation.util.timerAndImageLoader.js +90 -0
  156. data/_sass/foundation-sites/dist/js/plugins/foundation.util.timerAndImageLoader.min.js +1 -0
  157. data/_sass/foundation-sites/dist/js/plugins/foundation.util.touch.js +352 -0
  158. data/_sass/foundation-sites/dist/js/plugins/foundation.util.touch.min.js +1 -0
  159. data/_sass/foundation-sites/dist/js/plugins/foundation.util.triggers.js +261 -0
  160. data/_sass/foundation-sites/dist/js/plugins/foundation.util.triggers.min.js +1 -0
  161. data/_sass/foundation-sites/dist/js/plugins/foundation.zf.responsiveAccordionTabs.js +262 -0
  162. data/_sass/foundation-sites/dist/js/plugins/foundation.zf.responsiveAccordionTabs.min.js +1 -0
  163. data/_sass/foundation-sites/docslink.sh +3 -0
  164. data/_sass/foundation-sites/js/foundation.abide.js +584 -0
  165. data/_sass/foundation-sites/js/foundation.accordion.js +315 -0
  166. data/_sass/foundation-sites/js/foundation.accordionMenu.js +283 -0
  167. data/_sass/foundation-sites/js/foundation.core.js +378 -0
  168. data/_sass/foundation-sites/js/foundation.drilldown.js +518 -0
  169. data/_sass/foundation-sites/js/foundation.dropdown.js +432 -0
  170. data/_sass/foundation-sites/js/foundation.dropdownMenu.js +442 -0
  171. data/_sass/foundation-sites/js/foundation.equalizer.js +317 -0
  172. data/_sass/foundation-sites/js/foundation.interchange.js +203 -0
  173. data/_sass/foundation-sites/js/foundation.magellan.js +251 -0
  174. data/_sass/foundation-sites/js/foundation.offcanvas.js +434 -0
  175. data/_sass/foundation-sites/js/foundation.orbit.js +523 -0
  176. data/_sass/foundation-sites/js/foundation.responsiveMenu.js +147 -0
  177. data/_sass/foundation-sites/js/foundation.responsiveToggle.js +155 -0
  178. data/_sass/foundation-sites/js/foundation.reveal.js +603 -0
  179. data/_sass/foundation-sites/js/foundation.slider.js +697 -0
  180. data/_sass/foundation-sites/js/foundation.sticky.js +499 -0
  181. data/_sass/foundation-sites/js/foundation.tabs.js +490 -0
  182. data/_sass/foundation-sites/js/foundation.toggler.js +148 -0
  183. data/_sass/foundation-sites/js/foundation.tooltip.js +470 -0
  184. data/_sass/foundation-sites/js/foundation.util.box.js +195 -0
  185. data/_sass/foundation-sites/js/foundation.util.keyboard.js +152 -0
  186. data/_sass/foundation-sites/js/foundation.util.mediaQuery.js +230 -0
  187. data/_sass/foundation-sites/js/foundation.util.motion.js +105 -0
  188. data/_sass/foundation-sites/js/foundation.util.nest.js +81 -0
  189. data/_sass/foundation-sites/js/foundation.util.timerAndImageLoader.js +88 -0
  190. data/_sass/foundation-sites/js/foundation.util.touch.js +352 -0
  191. data/_sass/foundation-sites/js/foundation.util.triggers.js +210 -0
  192. data/_sass/foundation-sites/js/foundation.zf.responsiveAccordionTabs.js +240 -0
  193. data/_sass/foundation-sites/scss/_global.scss +219 -0
  194. data/_sass/foundation-sites/scss/components/_accordion-menu.scss +36 -0
  195. data/_sass/foundation-sites/scss/components/_accordion.scss +150 -0
  196. data/_sass/foundation-sites/scss/components/_badge.scss +63 -0
  197. data/_sass/foundation-sites/scss/components/_breadcrumbs.scss +100 -0
  198. data/_sass/foundation-sites/scss/components/_button-group.scss +253 -0
  199. data/_sass/foundation-sites/scss/components/_button.scss +332 -0
  200. data/_sass/foundation-sites/scss/components/_callout.scss +106 -0
  201. data/_sass/foundation-sites/scss/components/_card.scss +121 -0
  202. data/_sass/foundation-sites/scss/components/_close-button.scss +102 -0
  203. data/_sass/foundation-sites/scss/components/_drilldown.scss +93 -0
  204. data/_sass/foundation-sites/scss/components/_dropdown-menu.scss +226 -0
  205. data/_sass/foundation-sites/scss/components/_dropdown.scss +72 -0
  206. data/_sass/foundation-sites/scss/components/_flex-video.scss +1 -0
  207. data/_sass/foundation-sites/scss/components/_flex.scss +34 -0
  208. data/_sass/foundation-sites/scss/components/_float.scss +27 -0
  209. data/_sass/foundation-sites/scss/components/_label.scss +64 -0
  210. data/_sass/foundation-sites/scss/components/_media-object.scss +114 -0
  211. data/_sass/foundation-sites/scss/components/_menu-icon.scss +9 -0
  212. data/_sass/foundation-sites/scss/components/_menu.scss +376 -0
  213. data/_sass/foundation-sites/scss/components/_off-canvas.scss +329 -0
  214. data/_sass/foundation-sites/scss/components/_orbit.scss +196 -0
  215. data/_sass/foundation-sites/scss/components/_pagination.scss +193 -0
  216. data/_sass/foundation-sites/scss/components/_progress-bar.scss +64 -0
  217. data/_sass/foundation-sites/scss/components/_responsive-embed.scss +70 -0
  218. data/_sass/foundation-sites/scss/components/_reveal.scss +178 -0
  219. data/_sass/foundation-sites/scss/components/_slider.scss +138 -0
  220. data/_sass/foundation-sites/scss/components/_sticky.scss +38 -0
  221. data/_sass/foundation-sites/scss/components/_switch.scss +247 -0
  222. data/_sass/foundation-sites/scss/components/_table.scss +329 -0
  223. data/_sass/foundation-sites/scss/components/_tabs.scss +196 -0
  224. data/_sass/foundation-sites/scss/components/_thumbnail.scss +67 -0
  225. data/_sass/foundation-sites/scss/components/_title-bar.scss +84 -0
  226. data/_sass/foundation-sites/scss/components/_tooltip.scss +107 -0
  227. data/_sass/foundation-sites/scss/components/_top-bar.scss +173 -0
  228. data/_sass/foundation-sites/scss/components/_visibility.scss +132 -0
  229. data/_sass/foundation-sites/scss/forms/_checkbox.scss +41 -0
  230. data/_sass/foundation-sites/scss/forms/_error.scss +88 -0
  231. data/_sass/foundation-sites/scss/forms/_fieldset.scss +54 -0
  232. data/_sass/foundation-sites/scss/forms/_forms.scss +34 -0
  233. data/_sass/foundation-sites/scss/forms/_help-text.scss +30 -0
  234. data/_sass/foundation-sites/scss/forms/_input-group.scss +135 -0
  235. data/_sass/foundation-sites/scss/forms/_label.scss +50 -0
  236. data/_sass/foundation-sites/scss/forms/_meter.scss +110 -0
  237. data/_sass/foundation-sites/scss/forms/_progress.scss +94 -0
  238. data/_sass/foundation-sites/scss/forms/_range.scss +149 -0
  239. data/_sass/foundation-sites/scss/forms/_select.scss +85 -0
  240. data/_sass/foundation-sites/scss/forms/_text.scss +170 -0
  241. data/_sass/foundation-sites/scss/foundation.scss +118 -0
  242. data/_sass/foundation-sites/scss/grid/_classes.scss +176 -0
  243. data/_sass/foundation-sites/scss/grid/_column.scss +112 -0
  244. data/_sass/foundation-sites/scss/grid/_flex-grid.scss +312 -0
  245. data/_sass/foundation-sites/scss/grid/_grid.scss +48 -0
  246. data/_sass/foundation-sites/scss/grid/_gutter.scss +82 -0
  247. data/_sass/foundation-sites/scss/grid/_layout.scss +76 -0
  248. data/_sass/foundation-sites/scss/grid/_position.scss +76 -0
  249. data/_sass/foundation-sites/scss/grid/_row.scss +99 -0
  250. data/_sass/foundation-sites/scss/grid/_size.scss +24 -0
  251. data/_sass/foundation-sites/scss/settings/_settings.scss +620 -0
  252. data/_sass/foundation-sites/scss/typography/_alignment.scss +22 -0
  253. data/_sass/foundation-sites/scss/typography/_base.scss +509 -0
  254. data/_sass/foundation-sites/scss/typography/_helpers.scss +78 -0
  255. data/_sass/foundation-sites/scss/typography/_print.scss +86 -0
  256. data/_sass/foundation-sites/scss/typography/_typography.scss +26 -0
  257. data/_sass/foundation-sites/scss/util/_breakpoint.scss +281 -0
  258. data/_sass/foundation-sites/scss/util/_color.scss +126 -0
  259. data/_sass/foundation-sites/scss/util/_direction.scss +31 -0
  260. data/_sass/foundation-sites/scss/util/_flex.scss +85 -0
  261. data/_sass/foundation-sites/scss/util/_math.scss +72 -0
  262. data/_sass/foundation-sites/scss/util/_mixins.scss +276 -0
  263. data/_sass/foundation-sites/scss/util/_selector.scss +41 -0
  264. data/_sass/foundation-sites/scss/util/_typography.scss +26 -0
  265. data/_sass/foundation-sites/scss/util/_unit.scss +152 -0
  266. data/_sass/foundation-sites/scss/util/_util.scss +14 -0
  267. data/_sass/foundation-sites/scss/util/_value.scss +160 -0
  268. data/_sass/global/_accessibility.scss +32 -0
  269. data/_sass/global/_functions.scss +7 -0
  270. data/_sass/global/_modernizr.scss +0 -0
  271. data/_sass/global/_settings.scss +657 -0
  272. data/_sass/global/_wp-admin.scss +24 -0
  273. data/_sass/global/_wp-overrides.scss +51 -0
  274. data/_sass/jquery/.bower.json +25 -0
  275. data/_sass/jquery/AUTHORS.txt +278 -0
  276. data/_sass/jquery/LICENSE.txt +36 -0
  277. data/_sass/jquery/README.md +65 -0
  278. data/_sass/jquery/bower.json +14 -0
  279. data/_sass/jquery/dist/jquery.js +9814 -0
  280. data/_sass/jquery/dist/jquery.min.js +4 -0
  281. data/_sass/jquery/dist/jquery.min.map +1 -0
  282. data/_sass/jquery/external/sizzle/LICENSE.txt +36 -0
  283. data/_sass/jquery/external/sizzle/dist/sizzle.js +2143 -0
  284. data/_sass/jquery/external/sizzle/dist/sizzle.min.js +3 -0
  285. data/_sass/jquery/external/sizzle/dist/sizzle.min.map +1 -0
  286. data/_sass/jquery/src/.jshintrc +29 -0
  287. data/_sass/jquery/src/ajax.js +845 -0
  288. data/_sass/jquery/src/ajax/jsonp.js +100 -0
  289. data/_sass/jquery/src/ajax/load.js +83 -0
  290. data/_sass/jquery/src/ajax/parseJSON.js +13 -0
  291. data/_sass/jquery/src/ajax/parseXML.js +27 -0
  292. data/_sass/jquery/src/ajax/script.js +68 -0
  293. data/_sass/jquery/src/ajax/var/location.js +3 -0
  294. data/_sass/jquery/src/ajax/var/nonce.js +5 -0
  295. data/_sass/jquery/src/ajax/var/rquery.js +3 -0
  296. data/_sass/jquery/src/ajax/xhr.js +167 -0
  297. data/_sass/jquery/src/attributes.js +11 -0
  298. data/_sass/jquery/src/attributes/attr.js +142 -0
  299. data/_sass/jquery/src/attributes/classes.js +177 -0
  300. data/_sass/jquery/src/attributes/prop.js +125 -0
  301. data/_sass/jquery/src/attributes/support.js +36 -0
  302. data/_sass/jquery/src/attributes/val.js +177 -0
  303. data/_sass/jquery/src/callbacks.js +232 -0
  304. data/_sass/jquery/src/core.js +494 -0
  305. data/_sass/jquery/src/core/access.js +65 -0
  306. data/_sass/jquery/src/core/init.js +134 -0
  307. data/_sass/jquery/src/core/parseHTML.js +41 -0
  308. data/_sass/jquery/src/core/ready.js +103 -0
  309. data/_sass/jquery/src/core/var/rsingleTag.js +5 -0
  310. data/_sass/jquery/src/css.js +502 -0
  311. data/_sass/jquery/src/css/addGetHookIf.js +24 -0
  312. data/_sass/jquery/src/css/adjustCSS.js +65 -0
  313. data/_sass/jquery/src/css/curCSS.js +60 -0
  314. data/_sass/jquery/src/css/defaultDisplay.js +72 -0
  315. data/_sass/jquery/src/css/hiddenVisibleSelectors.js +18 -0
  316. data/_sass/jquery/src/css/showHide.js +48 -0
  317. data/_sass/jquery/src/css/support.js +121 -0
  318. data/_sass/jquery/src/css/var/cssExpand.js +3 -0
  319. data/_sass/jquery/src/css/var/getStyles.js +15 -0
  320. data/_sass/jquery/src/css/var/isHidden.js +16 -0
  321. data/_sass/jquery/src/css/var/rmargin.js +3 -0
  322. data/_sass/jquery/src/css/var/rnumnonpx.js +5 -0
  323. data/_sass/jquery/src/css/var/swap.js +24 -0
  324. data/_sass/jquery/src/data.js +187 -0
  325. data/_sass/jquery/src/data/Data.js +200 -0
  326. data/_sass/jquery/src/data/var/acceptData.js +18 -0
  327. data/_sass/jquery/src/data/var/dataPriv.js +5 -0
  328. data/_sass/jquery/src/data/var/dataUser.js +5 -0
  329. data/_sass/jquery/src/deferred.js +158 -0
  330. data/_sass/jquery/src/deprecated.js +32 -0
  331. data/_sass/jquery/src/dimensions.js +54 -0
  332. data/_sass/jquery/src/effects.js +629 -0
  333. data/_sass/jquery/src/effects/Tween.js +121 -0
  334. data/_sass/jquery/src/effects/animatedSelector.js +13 -0
  335. data/_sass/jquery/src/event.js +711 -0
  336. data/_sass/jquery/src/event/ajax.js +20 -0
  337. data/_sass/jquery/src/event/alias.js +27 -0
  338. data/_sass/jquery/src/event/focusin.js +53 -0
  339. data/_sass/jquery/src/event/support.js +9 -0
  340. data/_sass/jquery/src/event/trigger.js +183 -0
  341. data/_sass/jquery/src/exports/amd.js +24 -0
  342. data/_sass/jquery/src/exports/global.js +26 -0
  343. data/_sass/jquery/src/intro.js +44 -0
  344. data/_sass/jquery/src/jquery.js +37 -0
  345. data/_sass/jquery/src/manipulation.js +481 -0
  346. data/_sass/jquery/src/manipulation/_evalUrl.js +20 -0
  347. data/_sass/jquery/src/manipulation/buildFragment.js +102 -0
  348. data/_sass/jquery/src/manipulation/getAll.js +21 -0
  349. data/_sass/jquery/src/manipulation/setGlobalEval.js +20 -0
  350. data/_sass/jquery/src/manipulation/support.js +33 -0
  351. data/_sass/jquery/src/manipulation/var/rcheckableType.js +3 -0
  352. data/_sass/jquery/src/manipulation/var/rscriptType.js +3 -0
  353. data/_sass/jquery/src/manipulation/var/rtagName.js +3 -0
  354. data/_sass/jquery/src/manipulation/wrapMap.js +27 -0
  355. data/_sass/jquery/src/offset.js +218 -0
  356. data/_sass/jquery/src/outro.js +2 -0
  357. data/_sass/jquery/src/queue.js +143 -0
  358. data/_sass/jquery/src/queue/delay.js +22 -0
  359. data/_sass/jquery/src/selector-native.js +211 -0
  360. data/_sass/jquery/src/selector-sizzle.js +14 -0
  361. data/_sass/jquery/src/selector.js +1 -0
  362. data/_sass/jquery/src/serialize.js +125 -0
  363. data/_sass/jquery/src/traversing.js +175 -0
  364. data/_sass/jquery/src/traversing/findFilter.js +100 -0
  365. data/_sass/jquery/src/traversing/var/dir.js +20 -0
  366. data/_sass/jquery/src/traversing/var/rneedsContext.js +6 -0
  367. data/_sass/jquery/src/traversing/var/siblings.js +15 -0
  368. data/_sass/jquery/src/var/arr.js +3 -0
  369. data/_sass/jquery/src/var/class2type.js +5 -0
  370. data/_sass/jquery/src/var/concat.js +5 -0
  371. data/_sass/jquery/src/var/document.js +3 -0
  372. data/_sass/jquery/src/var/documentElement.js +5 -0
  373. data/_sass/jquery/src/var/hasOwn.js +5 -0
  374. data/_sass/jquery/src/var/indexOf.js +5 -0
  375. data/_sass/jquery/src/var/pnum.js +3 -0
  376. data/_sass/jquery/src/var/push.js +5 -0
  377. data/_sass/jquery/src/var/rcssNum.js +7 -0
  378. data/_sass/jquery/src/var/rnotwhite.js +3 -0
  379. data/_sass/jquery/src/var/slice.js +5 -0
  380. data/_sass/jquery/src/var/support.js +5 -0
  381. data/_sass/jquery/src/var/toString.js +5 -0
  382. data/_sass/jquery/src/wrap.js +79 -0
  383. data/_sass/modules/_editor-style.scss +5 -0
  384. data/_sass/modules/_footer.scss +115 -0
  385. data/_sass/modules/_navigation.scss +570 -0
  386. data/_sass/modules/_sidebar.scss +66 -0
  387. data/_sass/modules/_twitter.scss +58 -0
  388. data/_sass/motion-ui/.bower.json +38 -0
  389. data/_sass/motion-ui/LICENSE +22 -0
  390. data/_sass/motion-ui/README.md +29 -0
  391. data/_sass/motion-ui/bower.json +28 -0
  392. data/_sass/motion-ui/composer.json +25 -0
  393. data/_sass/motion-ui/dist/motion-ui.css +634 -0
  394. data/_sass/motion-ui/dist/motion-ui.js +117 -0
  395. data/_sass/motion-ui/dist/motion-ui.min.css +1 -0
  396. data/_sass/motion-ui/dist/motion-ui.min.js +1 -0
  397. data/_sass/motion-ui/docs/animations.md +230 -0
  398. data/_sass/motion-ui/docs/classes.md +81 -0
  399. data/_sass/motion-ui/docs/configuration.md +63 -0
  400. data/_sass/motion-ui/docs/installation.md +50 -0
  401. data/_sass/motion-ui/docs/javascript.md +36 -0
  402. data/_sass/motion-ui/docs/readme.md +32 -0
  403. data/_sass/motion-ui/docs/transitions.md +112 -0
  404. data/_sass/motion-ui/docs/wow.md +35 -0
  405. data/_sass/motion-ui/gulpfile.js +90 -0
  406. data/_sass/motion-ui/lib/handlebars.js +8 -0
  407. data/_sass/motion-ui/motion-ui.js +105 -0
  408. data/_sass/motion-ui/motion-ui.scss +4 -0
  409. data/_sass/motion-ui/package.json +44 -0
  410. data/_sass/motion-ui/src/_classes.scss +109 -0
  411. data/_sass/motion-ui/src/_settings.scss +61 -0
  412. data/_sass/motion-ui/src/effects/_fade.scss +32 -0
  413. data/_sass/motion-ui/src/effects/_hinge.scss +65 -0
  414. data/_sass/motion-ui/src/effects/_shake.scss +15 -0
  415. data/_sass/motion-ui/src/effects/_slide.scss +41 -0
  416. data/_sass/motion-ui/src/effects/_spin.scss +28 -0
  417. data/_sass/motion-ui/src/effects/_wiggle.scss +13 -0
  418. data/_sass/motion-ui/src/effects/_zoom.scss +15 -0
  419. data/_sass/motion-ui/src/motion-ui.scss +29 -0
  420. data/_sass/motion-ui/src/transitions/_fade.scss +28 -0
  421. data/_sass/motion-ui/src/transitions/_hinge.scss +43 -0
  422. data/_sass/motion-ui/src/transitions/_slide.scss +42 -0
  423. data/_sass/motion-ui/src/transitions/_spin.scss +39 -0
  424. data/_sass/motion-ui/src/transitions/_zoom.scss +39 -0
  425. data/_sass/motion-ui/src/util/_animation.scss +7 -0
  426. data/_sass/motion-ui/src/util/_args.scss +15 -0
  427. data/_sass/motion-ui/src/util/_keyframe.scss +136 -0
  428. data/_sass/motion-ui/src/util/_selector.scss +23 -0
  429. data/_sass/motion-ui/src/util/_series.scss +54 -0
  430. data/_sass/motion-ui/src/util/_transition.scss +45 -0
  431. data/_sass/motion-ui/src/util/_unit.scss +7 -0
  432. data/_sass/templates/_archive.scss +66 -0
  433. data/_sass/templates/_page-accordion-sidebar.scss +137 -0
  434. data/_sass/templates/_page-contact.scss +33 -0
  435. data/_sass/templates/_page-default.scss +472 -0
  436. data/_sass/templates/_page-faq-sidebar.scss +77 -0
  437. data/_sass/templates/_page-front.scss +549 -0
  438. data/_sass/templates/_page-full-width.scss +11 -0
  439. data/_sass/templates/_page-highlights.scss +156 -0
  440. data/_sass/templates/_page-sidebar-left.scss +27 -0
  441. data/_sass/templates/_print.scss +69 -0
  442. data/_sass/templates/_single-post.scss +12 -0
  443. data/_sass/what-input/.bower.json +35 -0
  444. data/_sass/what-input/Gulpfile.js +104 -0
  445. data/_sass/what-input/LICENSE +21 -0
  446. data/_sass/what-input/README.md +178 -0
  447. data/_sass/what-input/bower.json +26 -0
  448. data/_sass/what-input/dist/lte-IE8.js +1 -0
  449. data/_sass/what-input/dist/what-input.js +337 -0
  450. data/_sass/what-input/dist/what-input.min.js +7 -0
  451. data/_sass/what-input/index.html +164 -0
  452. data/_sass/what-input/package.json +38 -0
  453. data/_sass/what-input/src/polyfills/ie8/EventListener.js +150 -0
  454. data/_sass/what-input/src/polyfills/ie8/indexOf.js +65 -0
  455. data/_sass/what-input/src/what-input.js +269 -0
  456. data/_sass/what-input/yarn.lock +3482 -0
  457. data/assets/css/style.scss +4 -0
  458. data/assets/{css → fonts}/comfortaa-bold-webfont.eot +0 -0
  459. data/assets/{css → fonts}/comfortaa-bold-webfont.svg +0 -0
  460. data/assets/{css → fonts}/comfortaa-bold-webfont.ttf +0 -0
  461. data/assets/{css → fonts}/comfortaa-bold-webfont.woff +0 -0
  462. data/assets/{css → fonts}/comfortaa-bold-webfont.woff2 +0 -0
  463. data/assets/{css → fonts}/comfortaa-regular-webfont.eot +0 -0
  464. data/assets/{css → fonts}/comfortaa-regular-webfont.svg +0 -0
  465. data/assets/{css → fonts}/comfortaa-regular-webfont.ttf +0 -0
  466. data/assets/{css → fonts}/comfortaa-regular-webfont.woff +0 -0
  467. data/assets/{css → fonts}/comfortaa-regular-webfont.woff2 +0 -0
  468. data/assets/{css → fonts}/raleway-regular-webfont.svg +0 -0
  469. data/assets/images/ace-centre-logo.png +0 -0
  470. data/assets/images/getting-started-with-aac-logo.png +0 -0
  471. data/assets/images/getting-started-with-aac.png +0 -0
  472. data/assets/images/icon/ace-icon-180x180.png +0 -0
  473. data/assets/images/icon/ace-icon-192x192.png +0 -0
  474. data/assets/images/icon/ace-icon-270x270.png +0 -0
  475. data/assets/images/icon/ace-icon-32x32.png +0 -0
  476. data/assets/javascript/scripts.js +10 -0
  477. metadata +477 -29
  478. data/_includes/theme-footer.html +0 -16
  479. data/_includes/theme-head.html +0 -48
  480. data/assets/css/bootstrap-select.min.css +0 -7
  481. data/assets/css/bootstrap-theme.css +0 -442
  482. data/assets/css/bootstrap.css +0 -6203
  483. data/assets/css/draganddrop.css +0 -210
  484. data/assets/css/fonts.css +0 -41
  485. data/assets/css/responsive.css +0 -90
  486. data/assets/css/style.css +0 -260
  487. data/assets/images/divider.png +0 -0
  488. data/assets/images/logo-1.png +0 -0
  489. data/assets/images/logo-2.png +0 -0
@@ -0,0 +1,41 @@
1
+ // Foundation for Sites by ZURB
2
+ // foundation.zurb.com
3
+ // Licensed under MIT Open Source
4
+
5
+ ////
6
+ /// @group functions
7
+ ////
8
+
9
+ /// Generates a selector with every text input type. You can also filter the list to only output a subset of those selectors.
10
+ ///
11
+ /// @param {List|Keyword} $types [()] - A list of text input types to use. Leave blank to use all of them.
12
+ /// @param {Keyword} $modifier [''] - A modifier to be applied to each text input type (e.g. a class or a pseudo-class). Leave blank to ignore.
13
+ @function text-inputs($types: (), $modifier: '') {
14
+ $return: ();
15
+
16
+ $all-types:
17
+ text
18
+ password
19
+ date
20
+ datetime
21
+ datetime-local
22
+ month
23
+ week
24
+ email
25
+ number
26
+ search
27
+ tel
28
+ time
29
+ url
30
+ color;
31
+
32
+ @if not has-value($types) {
33
+ $types: $all-types;
34
+ }
35
+
36
+ @each $type in $types {
37
+ $return: append($return, unquote('[type=\'#{$type}\']#{$modifier}'), comma);
38
+ }
39
+
40
+ @return $return;
41
+ }
@@ -0,0 +1,26 @@
1
+ // Foundation for Sites by ZURB
2
+ // foundation.zurb.com
3
+ // Licensed under MIT Open Source
4
+
5
+ ////
6
+ /// @group functions
7
+ ////
8
+
9
+ $-zf-font-stack: (
10
+ 'georgia': (Georgia, "URW Bookman L", serif),
11
+ 'helvetica': (Helvetica, Arial, "Nimbus Sans L", sans-serif),
12
+ 'lucida-grande': ("Lucida Grande", "Lucida Sans Unicode", "Bitstream Vera Sans", sans-serif),
13
+ 'monospace': ("Courier New", Courier, "Nimbus Sans L", monospace),
14
+ 'system': (-apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif),
15
+ 'verdana': (Verdana, Geneva, "DejaVu Sans", sans-serif),
16
+ );
17
+
18
+ /// Return a font stack list from a map. Equivalent to `map-safe-get($name, $-zf-font-stack)`.
19
+ ///
20
+ /// @param {String} $stack - Name of the font stack.
21
+ /// @param {Map} $map [$-zf-font-stack] - Map of font stacks to retrieve a list from.
22
+ ///
23
+ /// @returns {List} Found font stack.
24
+ @function font-stack($stack, $map: $-zf-font-stack) {
25
+ @return map-safe-get($map, $stack);
26
+ }
@@ -0,0 +1,152 @@
1
+ // Foundation for Sites by ZURB
2
+ // foundation.zurb.com
3
+ // Licensed under MIT Open Source
4
+
5
+ ////
6
+ /// @group functions
7
+ ////
8
+
9
+ $global-font-size: 100% !default;
10
+
11
+ /// Removes the unit (e.g. px, em, rem) from a value, returning the number only.
12
+ ///
13
+ /// @param {Number} $num - Number to strip unit from.
14
+ ///
15
+ /// @returns {Number} The same number, sans unit.
16
+ @function strip-unit($num) {
17
+ @return $num / ($num * 0 + 1);
18
+ }
19
+
20
+ /// Converts one or more pixel values into matching rem values.
21
+ ///
22
+ /// @param {Number|List} $values - One or more values to convert. Be sure to separate them with spaces and not commas. If you need to convert a comma-separated list, wrap the list in parentheses.
23
+ /// @param {Number} $base [null] - The base value to use when calculating the `rem`. If you're using Foundation out of the box, this is 16px. If this parameter is `null`, the function will reference the `$base-font-size` variable as the base.
24
+ ///
25
+ /// @returns {List} A list of converted values.
26
+ @function rem-calc($values, $base: null) {
27
+ $rem-values: ();
28
+ $count: length($values);
29
+
30
+ // If no base is defined, defer to the global font size
31
+ @if $base == null {
32
+ $base: $global-font-size;
33
+ }
34
+
35
+ // If the base font size is a %, then multiply it by 16px
36
+ // This is because 100% font size = 16px in most all browsers
37
+ @if unit($base) == '%' {
38
+ $base: ($base / 100%) * 16px;
39
+ }
40
+
41
+ // Using rem as base allows correct scaling
42
+ @if unit($base) == 'rem' {
43
+ $base: strip-unit($base) * 16px;
44
+ }
45
+
46
+ @if $count == 1 {
47
+ @return -zf-to-rem($values, $base);
48
+ }
49
+
50
+ @for $i from 1 through $count {
51
+ $rem-values: append($rem-values, -zf-to-rem(nth($values, $i), $base));
52
+ }
53
+
54
+ @return $rem-values;
55
+ }
56
+
57
+ // Converts a unitless, pixel, or rem value to em, for use in breakpoints.
58
+ @function -zf-bp-to-em($value) {
59
+ // Pixel and unitless values are converted to rems
60
+ @if unit($value) == 'px' or unitless($value) {
61
+ $value: rem-calc($value, $base: 16px);
62
+ }
63
+
64
+ // Then the value is converted to ems
65
+ @return strip-unit($value) * 1em;
66
+ }
67
+
68
+ /// Converts a pixel value to matching rem value. *Any* value passed, regardless of unit, is assumed to be a pixel value. By default, the base pixel value used to calculate the rem value is taken from the `$global-font-size` variable.
69
+ /// @access private
70
+ ///
71
+ /// @param {Number} $value - Pixel value to convert.
72
+ /// @param {Number} $base [null] - Base for pixel conversion.
73
+ ///
74
+ /// @returns {Number} A number in rems, calculated based on the given value and the base pixel value. rem values are passed through as is.
75
+ @function -zf-to-rem($value, $base: null) {
76
+ // Check if the value is a number
77
+ @if type-of($value) != 'number' {
78
+ @warn inspect($value) + ' was passed to rem-calc(), which is not a number.';
79
+ @return $value;
80
+ }
81
+
82
+ // Transform em into rem if someone hands over 'em's
83
+ @if unit($value) == 'em' {
84
+ $value: strip-unit($value) * 1rem;
85
+ }
86
+
87
+ // Calculate rem if units for $value is not rem or em
88
+ @if unit($value) != 'rem' {
89
+ $value: strip-unit($value) / strip-unit($base) * 1rem;
90
+ }
91
+
92
+ // Turn 0rem into 0
93
+ @if $value == 0rem {
94
+ $value: 0;
95
+ }
96
+
97
+ @return $value;
98
+ }
99
+
100
+ /// Converts a pixel, percentage, rem or em value to a unitless value based on a given font size. Ideal for working out unitless line heights.
101
+ ///
102
+ /// @param {Number} $value - Value to convert to a unitless line height
103
+ /// @param {Number} $base - The font size to use to work out the line height - defaults to $global-font-size
104
+ ///
105
+ /// @return {Number} - Unitless number
106
+ @function unitless-calc($value, $base: null) {
107
+
108
+ // If no base is defined, defer to the global font size
109
+ @if $base == null {
110
+ $base: $global-font-size;
111
+ }
112
+
113
+ // First, lets convert our $base to pixels
114
+
115
+ // If the base font size is a %, then multiply it by 16px
116
+ @if unit($base) == '%' {
117
+ $base: ($base / 100%) * 16px;
118
+ }
119
+
120
+ @if unit($base) == 'rem' {
121
+ $base: strip-unit($base) * 16px;
122
+ }
123
+
124
+ @if unit($base) == 'em' {
125
+ $base: strip-unit($base) * 16px;
126
+ }
127
+
128
+ // Now lets convert our value to pixels too
129
+ @if unit($value) == '%' {
130
+ $value: ($value / 100%) * $base;
131
+ }
132
+
133
+ @if unit($value) == 'rem' {
134
+ $value: strip-unit($value) * $base;
135
+ }
136
+
137
+ @if unit($value) == 'em' {
138
+ $value: strip-unit($value) * $base;
139
+ }
140
+
141
+ // 'px'
142
+ @if unit($value) == 'px' {
143
+ @return strip-unit($value) / strip-unit($base);
144
+ }
145
+
146
+ // assume that line-heights greatern then 10 are meant to be absolute in 'px'
147
+ @if unitless($value) and ($value > 10) {
148
+ @return $value / strip-unit($base);
149
+ }
150
+
151
+ @return $value;
152
+ }
@@ -0,0 +1,14 @@
1
+ // Foundation for Sites by ZURB
2
+ // foundation.zurb.com
3
+ // Licensed under MIT Open Source
4
+
5
+ @import 'math';
6
+ @import 'unit';
7
+ @import 'value';
8
+ @import 'direction';
9
+ @import 'color';
10
+ @import 'selector';
11
+ @import 'flex';
12
+ @import 'breakpoint';
13
+ @import 'mixins';
14
+ @import 'typography';
@@ -0,0 +1,160 @@
1
+ // Foundation for Sites by ZURB
2
+ // foundation.zurb.com
3
+ // Licensed under MIT Open Source
4
+
5
+ ////
6
+ /// @group functions
7
+ ////
8
+
9
+ /// Determine if a value is not falsey, in CSS terms. Falsey values are `null`, `none`, `0` with any unit, or an empty list.
10
+ ///
11
+ /// @param {Mixed} $val - Value to check.
12
+ ///
13
+ /// @returns {Boolean} `true` if `$val` is not falsey.
14
+ @function has-value($val) {
15
+ @if $val == null or $val == none {
16
+ @return false;
17
+ }
18
+ @if type-of($val) == 'number' and strip-unit($val) == 0 {
19
+ @return false;
20
+ }
21
+ @if type-of($val) == 'list' and length($val) == 0 {
22
+ @return false;
23
+ }
24
+ @return true;
25
+ }
26
+
27
+ /// Determine a top/right/bottom/right value on a padding, margin, etc. property, no matter how many values were passed in. Use this function if you need to know the specific side of a value, but don't know if the value is using a shorthand format.
28
+ ///
29
+ /// @param {List|Number} $val - Value to analyze. Should be a shorthand sizing property, e.g. "1em 2em 1em"
30
+ /// @param {Keyword} $side - Side to return. Should be `top`, `right`, `bottom`, or `left`.
31
+ ///
32
+ /// @returns {Number} A single value based on `$val` and `$side`.
33
+ @function get-side($val, $side) {
34
+ $length: length($val);
35
+
36
+ @if $length == 1 {
37
+ @return $val;
38
+ }
39
+ @if $length == 2 {
40
+ @return map-get((
41
+ top: nth($val, 1),
42
+ bottom: nth($val, 1),
43
+ left: nth($val, 2),
44
+ right: nth($val, 2),
45
+ ), $side);
46
+ }
47
+ @if $length == 3 {
48
+ @return map-get((
49
+ top: nth($val, 1),
50
+ left: nth($val, 2),
51
+ right: nth($val, 2),
52
+ bottom: nth($val, 3),
53
+ ), $side);
54
+ }
55
+ @if $length == 4 {
56
+ @return map-get((
57
+ top: nth($val, 1),
58
+ right: nth($val, 2),
59
+ bottom: nth($val, 3),
60
+ left: nth($val, 4),
61
+ ), $side);
62
+ }
63
+ }
64
+
65
+ /// Given border $val, find a specific element of the border, which is $elem. The possible values for $elem are width, style, and color.
66
+ ///
67
+ /// @param {List} $val - Border value to find a value in.
68
+ /// @param {Keyword} $elem - Border component to extract.
69
+ ///
70
+ /// @returns {Mixed} If the value exists, returns the value. If the value is not in the border definition, the function will return a 0px width, solid style, or black border.
71
+ @function get-border-value($val, $elem) {
72
+ // Find the width, style, or color and return it
73
+ @each $v in $val {
74
+ $type: type-of($v);
75
+ @if $elem == width and $type == 'number' {
76
+ @return $v;
77
+ }
78
+ @if $elem == style and $type == 'string' {
79
+ @return $v;
80
+ }
81
+ @if $elem == color and $type == 'color' {
82
+ @return $v;
83
+ }
84
+ }
85
+
86
+ // Defaults
87
+ $defaults: (
88
+ width: 0,
89
+ style: solid,
90
+ color: #000,
91
+ );
92
+
93
+ @return map-get($defaults, $elem);
94
+ }
95
+
96
+ /// Finds a value in a nested map.
97
+ /// @link https://css-tricks.com/snippets/sass/deep-getset-maps/ Deep Get/Set in Maps
98
+ ///
99
+ /// @param {Map} $map - Map to pull a value from.
100
+ /// @param {String} $keys... - Keys to use when looking for a value.
101
+ /// @returns {Mixed} The value found in the map.
102
+ @function map-deep-get($map, $keys...) {
103
+ @each $key in $keys {
104
+ $map: map-get($map, $key);
105
+ }
106
+ @return $map;
107
+ }
108
+
109
+ /// Casts a map into a list.
110
+ /// @link http://hugogiraudel.com/2014/04/28/casting-map-into-list/
111
+ ///
112
+ /// @param {Map} $map - Map to pull a value from.
113
+ ///
114
+ /// @returns {List} Depending on the flag, returns either $keys or $values or both.
115
+ @function map-to-list($map, $keep: 'both') {
116
+ $keep: if(index('keys' 'values', $keep), $keep, 'both');
117
+
118
+ @if type-of($map) == 'map' {
119
+ $keys: ();
120
+ $values: ();
121
+
122
+ @each $key, $val in $map {
123
+ $keys: append($keys, $key);
124
+ $values: append($values, $val);
125
+ }
126
+
127
+ @if $keep == 'keys' {
128
+ @return $keys;
129
+ }
130
+ @else if $keep == 'values' {
131
+ @return $values;
132
+ }
133
+ @else {
134
+ @return zip($keys, $values);
135
+ }
136
+ }
137
+
138
+ @return if(type-of($map) != 'list', ($value,), $map);
139
+
140
+ }
141
+
142
+ /// Safely return a value from a map.
143
+ ///
144
+ /// @param {Map} $map - Map to retrieve a value from.
145
+ /// @param {String} $key - Name of the map key.
146
+ ///
147
+ /// @returns {List} Found value.
148
+ @function map-safe-get($map, $key) {
149
+ @if (type-of($map) == 'map' or (type-of($map) == 'list' and length($map) == 0)) {
150
+ @if (map-has-key($map, $key)) {
151
+ @return map-get($map, $key);
152
+ }
153
+ @else {
154
+ @error 'Key: `#{$key}` is not available in `#{$map}`';
155
+ }
156
+ }
157
+ @else {
158
+ @error '`#{$map}` is not a valid map';
159
+ }
160
+ }
@@ -0,0 +1,32 @@
1
+ // Text meant only for screen readers. Addresses part of theme-check issue #840.
2
+ // https://github.com/Automattic/_s/blob/master/style.css
3
+ %screen-reader-text {
4
+ clip: rect(1px, 1px, 1px, 1px);
5
+ position: absolute !important;
6
+ height: 1px;
7
+ width: 1px;
8
+ overflow: hidden;
9
+ &:focus {
10
+ background-color: #f1f1f1;
11
+ border-radius: 3px;
12
+ box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
13
+ clip: auto !important;
14
+ color: #21759b;
15
+ display: block;
16
+ font-size: 14px;
17
+ font-size: 0.875rem;
18
+ font-weight: bold;
19
+ height: auto;
20
+ left: 5px;
21
+ line-height: normal;
22
+ padding: 15px 23px 14px;
23
+ text-decoration: none;
24
+ top: 5px;
25
+ width: auto;
26
+ z-index: 100000; // Above WP toolbar.
27
+ }
28
+ }
29
+
30
+ .screen-reader-text {
31
+ @extend %screen-reader-text;
32
+ }
@@ -0,0 +1,7 @@
1
+ @function tint($color, $percentage) {
2
+ @return mix(white, $color, $percentage);
3
+ }
4
+
5
+ @function shade($color, $percentage) {
6
+ @return mix(black, $color, $percentage);
7
+ }
File without changes
@@ -0,0 +1,657 @@
1
+ // Foundation for Sites Settings
2
+ // -----------------------------
3
+ //
4
+ // Table of Contents:
5
+ //
6
+ // 1. Global
7
+ // 2. Breakpoints
8
+ // 3. The Grid
9
+ // 4. Base Typography
10
+ // 5. Typography Helpers
11
+ // 6. Abide
12
+ // 7. Accordion
13
+ // 8. Accordion Menu
14
+ // 9. Badge
15
+ // 10. Breadcrumbs
16
+ // 11. Button
17
+ // 12. Button Group
18
+ // 13. Callout
19
+ // 14. Card
20
+ // 15. Close Button
21
+ // 16. Drilldown
22
+ // 17. Dropdown
23
+ // 18. Dropdown Menu
24
+ // 19. Forms
25
+ // 20. Label
26
+ // 21. Media Object
27
+ // 22. Menu
28
+ // 23. Meter
29
+ // 24. Off-canvas
30
+ // 25. Orbit
31
+ // 26. Pagination
32
+ // 27. Progress Bar
33
+ // 28. Responsive Embed
34
+ // 29. Reveal
35
+ // 30. Slider
36
+ // 31. Switch
37
+ // 32. Table
38
+ // 33. Tabs
39
+ // 34. Thumbnail
40
+ // 35. Title Bar
41
+ // 36. Tooltip
42
+ // 37. Top Bar
43
+
44
+ @import 'foundation-sites/scss/util/util';
45
+
46
+ // 1. Global
47
+ // ---------
48
+
49
+ $global-font-size: 100%;
50
+ $global-width: rem-calc(1200);
51
+ $global-lineheight: 1.25;
52
+
53
+ $ace-navy: #113656;
54
+ $ace-navy-h: tint($ace-navy, 20%);
55
+ $ace-lime: #CAD400;
56
+ $ace-lime-h: #A3AD1C;
57
+ $ace-blue: #699CC6;
58
+ $ace-blue-h: #537B9B;
59
+ $ace-grey: #7F7F7F;
60
+ $ace-grey-h: #686969;
61
+
62
+ $ace-orange: #E08800;
63
+ $ace-orange-h: #C37812;
64
+ $ace-pink: #B16384;
65
+ $ace-pink-h: #92526C;
66
+ $ace-plum: #574867;
67
+ $ace-plum-h: #453852;
68
+ $ace-teal: #008079;
69
+ $ace-teal-h: #006D67;
70
+ $ace-gold: #C29E00;
71
+ $ace-gold-h: #977E16;
72
+
73
+ $foundation-palette: (
74
+ primary: $ace-orange,
75
+ secondary: $ace-navy,
76
+ success: #3adb76,
77
+ warning: #ffae00,
78
+ alert: #cc4b37,
79
+ );
80
+
81
+ $light-gray: #e5e5e5;
82
+ $medium-gray: #cacaca;
83
+ $dark-gray: #8a8a8a;
84
+ $black: #0a0a0a;
85
+ $white: #fefefe;
86
+
87
+ @include add-foundation-colors;
88
+
89
+ $body-background: $white;
90
+ $body-font-color: $secondary-color;
91
+ $body-font-family: "Montserrat", sans-serif;
92
+ $body-antialiased: true;
93
+
94
+ $global-margin: 1rem;
95
+ $global-padding: 1rem;
96
+ $global-weight-normal: 300;
97
+ $global-weight-bold: 400;
98
+ $global-radius: 8px;
99
+ $global-text-direction: ltr;
100
+ $global-flexbox: false;
101
+
102
+ $print-transparent-backgrounds: true;
103
+
104
+ // 2. Breakpoints
105
+ // --------------
106
+
107
+ $breakpoints: (
108
+ small: 0,
109
+ tablet: 640px,
110
+ medium: 745px,
111
+ large: 1024px,
112
+ xlarge: 1200px,
113
+ xxlarge: 1440px,
114
+ );
115
+ $print-breakpoint: large;
116
+ $breakpoint-classes: (small medium large);
117
+
118
+ // 3. The Grid
119
+ // -----------
120
+
121
+ $grid-row-width: $global-width;
122
+ $grid-column-count: 12;
123
+ $grid-column-gutter: (
124
+ small: 24px,
125
+ medium: 36px,
126
+ );
127
+ $grid-column-align-edge: true;
128
+ $block-grid-max: 8;
129
+
130
+ // 4. Base Typography
131
+ // ------------------
132
+
133
+ $header-font-family: $body-font-family;
134
+ $header-font-weight: $global-weight-normal;
135
+ $header-font-style: normal;
136
+ $font-family-monospace: Consolas, 'Liberation Mono', Courier, monospace;
137
+ $header-color: inherit;
138
+ $header-lineheight: 1.2;
139
+ $header-margin-bottom: 0.5rem;
140
+ $header-styles: (
141
+ small: (
142
+ 'h1': ('font-size': 28),
143
+ 'h2': ('font-size': 24),
144
+ 'h3': ('font-size': 21),
145
+ 'h4': ('font-size': 18),
146
+ 'h5': ('font-size': 17),
147
+ 'h6': ('font-size': 16),
148
+ ),
149
+
150
+ medium: (
151
+ 'h1': ('font-size': 38),
152
+ 'h2': ('font-size': 32),
153
+ 'h3': ('font-size': 27),
154
+ 'h4': ('font-size': 25),
155
+ 'h5': ('font-size': 20),
156
+ 'h6': ('font-size': 16),
157
+ ),
158
+ large: (
159
+ 'h1': ('font-size': 48),
160
+ 'h2': ('font-size': 40),
161
+ 'h3': ('font-size': 31),
162
+ 'h4': ('font-size': 25),
163
+ 'h5': ('font-size': 20),
164
+ 'h6': ('font-size': 16),
165
+ ),
166
+
167
+
168
+ );
169
+ $header-text-rendering: optimizeLegibility;
170
+ $small-font-size: 80%;
171
+ $header-small-font-color: $medium-gray;
172
+ $paragraph-lineheight: $global-lineheight;
173
+ $paragraph-margin-bottom: 1rem;
174
+ $paragraph-text-rendering: optimizeLegibility;
175
+ $code-color: $black;
176
+ $code-font-family: $font-family-monospace;
177
+ $code-font-weight: $global-weight-normal;
178
+ $code-background: $light-gray;
179
+ $code-border: 1px solid $medium-gray;
180
+ $code-padding: rem-calc(2 5 1);
181
+ $anchor-color: $ace-blue;
182
+ $anchor-color-hover: $ace-orange;
183
+ $anchor-text-decoration: none;
184
+ $anchor-text-decoration-hover: none;
185
+ $hr-width: $global-width;
186
+ $hr-border: 1px solid $medium-gray;
187
+ $hr-margin: rem-calc(20) auto;
188
+ $list-lineheight: $paragraph-lineheight;
189
+ $list-margin-bottom: $paragraph-margin-bottom;
190
+ $list-style-type: disc;
191
+ $list-style-position: outside;
192
+ $list-side-margin: 1.25rem;
193
+ $list-nested-side-margin: 1.25rem;
194
+ $defnlist-margin-bottom: 1rem;
195
+ $defnlist-term-weight: $global-weight-bold;
196
+ $defnlist-term-margin-bottom: 0.3rem;
197
+ $blockquote-color: $ace-pink;
198
+ $blockquote-padding: rem-calc(9) 20% rem-calc(9 0);
199
+ $blockquote-border: none;
200
+ $cite-font-size: rem-calc(16);
201
+ $cite-color: $ace-pink;
202
+ $cite-pseudo-content: '\2014 \0020';
203
+ $keystroke-font: $font-family-monospace;
204
+ $keystroke-color: $black;
205
+ $keystroke-background: $light-gray;
206
+ $keystroke-padding: rem-calc(2 4 0);
207
+ $keystroke-radius: $global-radius;
208
+ $abbr-underline: 1px dotted $black;
209
+
210
+ // 5. Typography Helpers
211
+ // ---------------------
212
+
213
+ $lead-font-size: $global-font-size * 1.25;
214
+ $lead-lineheight: 1.6;
215
+ $subheader-lineheight: 1.4;
216
+ $subheader-color: $dark-gray;
217
+ $subheader-font-weight: $global-weight-normal;
218
+ $subheader-margin-top: 0.2rem;
219
+ $subheader-margin-bottom: 0.5rem;
220
+ $stat-font-size: 2.5rem;
221
+
222
+ // 6. Abide
223
+ // --------
224
+
225
+ $abide-inputs: true;
226
+ $abide-labels: true;
227
+ $input-background-invalid: get-color(alert);
228
+ $form-label-color-invalid: get-color(alert);
229
+ $input-error-color: get-color(alert);
230
+ $input-error-font-size: rem-calc(12);
231
+ $input-error-font-weight: $global-weight-bold;
232
+
233
+ // 7. Accordion
234
+ // ------------
235
+
236
+ $accordion-background: none;
237
+ $accordion-plusminus: true;
238
+ $accordion-title-font-size: rem-calc(12);
239
+ $accordion-item-color: $primary-color;
240
+ $accordion-item-background-hover: none;
241
+ $accordion-item-padding: 1.25rem 1rem;
242
+ $accordion-content-background: none;
243
+ $accordion-content-border: none;
244
+ $accordion-content-color: $body-font-color;
245
+ $accordion-content-padding: 1rem;
246
+
247
+ // 8. Accordion Menu
248
+ // -----------------
249
+
250
+ $accordionmenu-arrows: true;
251
+ $accordionmenu-arrow-color: $primary-color;
252
+ $accordionmenu-arrow-size: 6px;
253
+
254
+ // 9. Badge
255
+ // --------
256
+
257
+ $badge-background: $primary-color;
258
+ $badge-color: $white;
259
+ $badge-color-alt: $black;
260
+ $badge-palette: $foundation-palette;
261
+ $badge-padding: 0.3em;
262
+ $badge-minwidth: 2.1em;
263
+ $badge-font-size: 0.6rem;
264
+
265
+ // 10. Breadcrumbs
266
+ // ---------------
267
+
268
+ $breadcrumbs-margin: 0 0 $global-margin 0;
269
+ $breadcrumbs-item-font-size: 1rem;
270
+ $breadcrumbs-item-color: $ace-grey;
271
+ $breadcrumbs-item-color-current: $ace-grey;
272
+ $breadcrumbs-item-color-disabled: $medium-gray;
273
+ $breadcrumbs-item-margin: rem-calc(10);
274
+ $breadcrumbs-item-uppercase: false;
275
+ $breadcrumbs-item-slash: true;
276
+
277
+ // 11. Button
278
+ // ----------
279
+
280
+ $button-padding: 0.85em 1em;
281
+ $button-margin: 0 0 $global-margin 0;
282
+ $button-fill: solid;
283
+ $button-background: $primary-color;
284
+ $button-background-hover: scale-color($button-background, $lightness: -15%);
285
+ $button-color: $white;
286
+ $button-color-alt: $black;
287
+ $button-radius: $global-radius;
288
+ $button-sizes: (
289
+ tiny: 0.6rem,
290
+ small: 0.75rem,
291
+ default: 0.9rem,
292
+ large: 1.25rem,
293
+ );
294
+ $button-palette: $foundation-palette;
295
+ $button-opacity-disabled: 0.25;
296
+ $button-background-hover-lightness: -20%;
297
+ $button-hollow-hover-lightness: -50%;
298
+ $button-transition: background-color 0.25s ease-out, color 0.25s ease-out;
299
+
300
+ // 12. Button Group
301
+ // ----------------
302
+
303
+ $buttongroup-margin: 1rem;
304
+ $buttongroup-spacing: 1px;
305
+ $buttongroup-child-selector: '.button';
306
+ $buttongroup-expand-max: 6;
307
+ $buttongroup-radius-on-each: true;
308
+
309
+ // 13. Callout
310
+ // -----------
311
+
312
+ $callout-background: $white;
313
+ $callout-background-fade: 85%;
314
+ $callout-border: 1px solid rgba($black, 0.25);
315
+ $callout-margin: 0 0 1rem 0;
316
+ $callout-padding: 1rem;
317
+ $callout-font-color: $body-font-color;
318
+ $callout-font-color-alt: $body-background;
319
+ $callout-radius: $global-radius;
320
+ $callout-link-tint: 30%;
321
+
322
+ // 14. Card
323
+ // --------
324
+
325
+ $card-background: $white;
326
+ $card-font-color: $body-font-color;
327
+ $card-divider-background: $light-gray;
328
+ $card-border: 1px solid $light-gray;
329
+ $card-shadow: none;
330
+ $card-border-radius: $global-radius;
331
+ $card-padding: $global-padding;
332
+ $card-margin: $global-margin;
333
+
334
+ // 15. Close Button
335
+ // ----------------
336
+
337
+ $closebutton-position: right top;
338
+ $closebutton-offset-horizontal: (
339
+ small: 0.66rem,
340
+ medium: 1rem,
341
+ );
342
+ $closebutton-offset-vertical: (
343
+ small: 0.33em,
344
+ medium: 0.5rem,
345
+ );
346
+ $closebutton-size: (
347
+ small: 1.5em,
348
+ medium: 2em,
349
+ );
350
+ $closebutton-lineheight: 1;
351
+ $closebutton-color: $dark-gray;
352
+ $closebutton-color-hover: $black;
353
+
354
+ // 16. Drilldown
355
+ // -------------
356
+
357
+ $drilldown-transition: transform 0.15s linear;
358
+ $drilldown-arrows: true;
359
+ $drilldown-arrow-color: $primary-color;
360
+ $drilldown-arrow-size: 6px;
361
+ $drilldown-background: $white;
362
+
363
+ // 17. Dropdown
364
+ // ------------
365
+
366
+ $dropdown-padding: 1rem;
367
+ $dropdown-background: $body-background;
368
+ $dropdown-border: 1px solid $medium-gray;
369
+ $dropdown-font-size: 1rem;
370
+ $dropdown-width: 300px;
371
+ $dropdown-radius: $global-radius;
372
+ $dropdown-sizes: (
373
+ tiny: 100px,
374
+ small: 200px,
375
+ large: 400px,
376
+ );
377
+
378
+ // 18. Dropdown Menu
379
+ // -----------------
380
+
381
+ $dropdownmenu-arrows: false;
382
+ $dropdownmenu-arrow-color: $anchor-color;
383
+ $dropdownmenu-arrow-size: 6px;
384
+ $dropdownmenu-min-width: 200px;
385
+ $dropdownmenu-background: $white;
386
+ $dropdownmenu-border: 1px solid $medium-gray;
387
+
388
+ // 19. Forms
389
+ // ---------
390
+
391
+ $fieldset-border: 1px solid $medium-gray;
392
+ $fieldset-padding: rem-calc(20);
393
+ $fieldset-margin: rem-calc(18 0);
394
+ $legend-padding: rem-calc(0 3);
395
+ $form-spacing: rem-calc(16);
396
+ $helptext-color: $black;
397
+ $helptext-font-size: rem-calc(13);
398
+ $helptext-font-style: italic;
399
+ $input-prefix-color: $black;
400
+ $input-prefix-background: $light-gray;
401
+ $input-prefix-border: 1px solid $medium-gray;
402
+ $input-prefix-padding: 1rem;
403
+ $form-label-color: $black;
404
+ $form-label-font-size: rem-calc(14);
405
+ $form-label-font-weight: $global-weight-normal;
406
+ $form-label-line-height: 1.8;
407
+ $select-background: $white;
408
+ $select-triangle-color: $dark-gray;
409
+ $select-radius: $global-radius;
410
+ $input-color: $black;
411
+ $input-placeholder-color: $medium-gray;
412
+ $input-font-family: inherit;
413
+ $input-font-size: rem-calc(16);
414
+ $input-font-weight: $global-weight-normal;
415
+ $input-background: $white;
416
+ $input-background-focus: $white;
417
+ $input-background-disabled: $light-gray;
418
+ $input-border: 1px solid $medium-gray;
419
+ $input-border-focus: 1px solid $dark-gray;
420
+ $input-shadow: inset 0 1px 2px rgba($black, 0.1);
421
+ $input-shadow-focus: 0 0 5px $medium-gray;
422
+ $input-cursor-disabled: not-allowed;
423
+ $input-transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
424
+ $input-number-spinners: true;
425
+ $input-radius: $global-radius;
426
+ $form-button-radius: $global-radius;
427
+
428
+ // 20. Label
429
+ // ---------
430
+
431
+ $label-background: $primary-color;
432
+ $label-color: $white;
433
+ $label-color-alt: $black;
434
+ $label-palette: $foundation-palette;
435
+ $label-font-size: 0.8rem;
436
+ $label-padding: 0.33333rem 0.5rem;
437
+ $label-radius: $global-radius;
438
+
439
+ // 21. Media Object
440
+ // ----------------
441
+
442
+ $mediaobject-margin-bottom: $global-margin;
443
+ $mediaobject-section-padding: $global-padding;
444
+ $mediaobject-image-width-stacked: 100%;
445
+
446
+ // 22. Menu
447
+ // --------
448
+
449
+ $menu-margin: 0;
450
+ $menu-margin-nested: 1rem;
451
+ $menu-item-padding: 0.7rem 1rem;
452
+ $menu-item-color-active: $white;
453
+ $menu-item-background-active: invalid;
454
+ $menu-icon-spacing: 0.25rem;
455
+ $menu-item-background-hover: $light-gray;
456
+ $menu-border: $light-gray;
457
+
458
+ // 23. Meter
459
+ // ---------
460
+
461
+ $meter-height: 1rem;
462
+ $meter-radius: $global-radius;
463
+ $meter-background: $medium-gray;
464
+ $meter-fill-good: $success-color;
465
+ $meter-fill-medium: $warning-color;
466
+ $meter-fill-bad: $alert-color;
467
+
468
+ // 24. Off-canvas
469
+ // --------------
470
+
471
+ $offcanvas-size: 250px;
472
+ $offcanvas-vertical-size: 250px;
473
+ $offcanvas-background: $light-gray;
474
+ $offcanvas-shadow: 0 0 10px rgba($black, 0.7);
475
+ $offcanvas-push-zindex: 1;
476
+ $offcanvas-overlap-zindex: 10;
477
+ $offcanvas-reveal-zindex: 1;
478
+ $offcanvas-transition-length: 0.5s;
479
+ $offcanvas-transition-timing: ease;
480
+ $offcanvas-fixed-reveal: true;
481
+ $offcanvas-exit-background: rgba($white, 0.25);
482
+ $maincontent-class: 'off-canvas-content';
483
+
484
+ // 25. Orbit
485
+ // ---------
486
+
487
+ $orbit-bullet-background: $medium-gray;
488
+ $orbit-bullet-background-active: $dark-gray;
489
+ $orbit-bullet-diameter: 1.2rem;
490
+ $orbit-bullet-margin: 0.1rem;
491
+ $orbit-bullet-margin-top: 0.8rem;
492
+ $orbit-bullet-margin-bottom: 0.8rem;
493
+ $orbit-caption-background: rgba($black, 0.5);
494
+ $orbit-caption-padding: 1rem;
495
+ $orbit-control-background-hover: rgba($black, 0.5);
496
+ $orbit-control-padding: 1rem;
497
+ $orbit-control-zindex: 10;
498
+
499
+ // 26. Pagination
500
+ // --------------
501
+
502
+ $pagination-font-size: rem-calc(14);
503
+ $pagination-margin-bottom: $global-margin;
504
+ $pagination-item-color: $black;
505
+ $pagination-item-padding: rem-calc(3 10);
506
+ $pagination-item-spacing: rem-calc(1);
507
+ $pagination-radius: $global-radius;
508
+ $pagination-item-background-hover: $light-gray;
509
+ $pagination-item-background-current: $primary-color;
510
+ $pagination-item-color-current: $white;
511
+ $pagination-item-color-disabled: $medium-gray;
512
+ $pagination-ellipsis-color: $black;
513
+ $pagination-mobile-items: false;
514
+ $pagination-mobile-current-item: false;
515
+ $pagination-arrows: true;
516
+
517
+ // 27. Progress Bar
518
+ // ----------------
519
+
520
+ $progress-height: 1rem;
521
+ $progress-background: $medium-gray;
522
+ $progress-margin-bottom: $global-margin;
523
+ $progress-meter-background: $primary-color;
524
+ $progress-radius: $global-radius;
525
+
526
+ // 28. Responsive Embed
527
+ // --------------------
528
+
529
+ $responsive-embed-margin-bottom: rem-calc(16);
530
+ $responsive-embed-ratios: (
531
+ default: 4 by 3,
532
+ widescreen: 16 by 9,
533
+ );
534
+
535
+ // 29. Reveal
536
+ // ----------
537
+
538
+ $reveal-background: $white;
539
+ $reveal-width: 600px;
540
+ $reveal-max-width: $global-width;
541
+ $reveal-padding: $global-padding;
542
+ $reveal-border: 1px solid $medium-gray;
543
+ $reveal-radius: $global-radius;
544
+ $reveal-zindex: 1005;
545
+ $reveal-overlay-background: rgba($black, 0.45);
546
+
547
+ // 30. Slider
548
+ // ----------
549
+
550
+ $slider-width-vertical: 0.5rem;
551
+ $slider-transition: all 0.2s ease-in-out;
552
+ $slider-height: 0.5rem;
553
+ $slider-background: $light-gray;
554
+ $slider-fill-background: $medium-gray;
555
+ $slider-handle-height: 1.4rem;
556
+ $slider-handle-width: 1.4rem;
557
+ $slider-handle-background: $primary-color;
558
+ $slider-opacity-disabled: 0.25;
559
+ $slider-radius: $global-radius;
560
+
561
+ // 31. Switch
562
+ // ----------
563
+
564
+ $switch-background: $medium-gray;
565
+ $switch-background-active: $primary-color;
566
+ $switch-height: 2rem;
567
+ $switch-height-tiny: 1.5rem;
568
+ $switch-height-small: 1.75rem;
569
+ $switch-height-large: 2.5rem;
570
+ $switch-radius: $global-radius;
571
+ $switch-margin: $global-margin;
572
+ $switch-paddle-background: $white;
573
+ $switch-paddle-offset: 0.25rem;
574
+ $switch-paddle-radius: $global-radius;
575
+ $switch-paddle-transition: all 0.25s ease-out;
576
+
577
+ // 32. Table
578
+ // ---------
579
+
580
+ $table-background: $white;
581
+ $table-color-scale: 5%;
582
+ $table-border: 1px solid smart-scale($table-background, $table-color-scale);
583
+ $table-padding: rem-calc(8 10 10);
584
+ $table-hover-scale: 2%;
585
+ $table-row-hover: darken($table-background, $table-hover-scale);
586
+ $table-row-stripe-hover: darken($table-background, $table-color-scale + $table-hover-scale);
587
+ $table-is-striped: true;
588
+ $table-striped-background: smart-scale($table-background, $table-color-scale);
589
+ $table-stripe: even;
590
+ $table-head-background: smart-scale($table-background, $table-color-scale / 2);
591
+ $table-head-row-hover: darken($table-head-background, $table-hover-scale);
592
+ $table-foot-background: smart-scale($table-background, $table-color-scale);
593
+ $table-foot-row-hover: darken($table-foot-background, $table-hover-scale);
594
+ $table-head-font-color: $body-font-color;
595
+ $table-foot-font-color: $body-font-color;
596
+ $show-header-for-stacked: false;
597
+
598
+ // 33. Tabs
599
+ // --------
600
+
601
+ $tab-margin: 0;
602
+ $tab-background: $white;
603
+ $tab-color: $primary-color;
604
+ $tab-background-active: $light-gray;
605
+ $tab-active-color: $primary-color;
606
+ $tab-item-font-size: rem-calc(12);
607
+ $tab-item-background-hover: $white;
608
+ $tab-item-padding: 1.25rem 1.5rem;
609
+ $tab-expand-max: 6;
610
+ $tab-content-background: $white;
611
+ $tab-content-border: $light-gray;
612
+ $tab-content-color: $body-font-color;
613
+ $tab-content-padding: 1rem;
614
+
615
+ // 34. Thumbnail
616
+ // -------------
617
+
618
+ $thumbnail-border: solid 4px $white;
619
+ $thumbnail-margin-bottom: $global-margin;
620
+ $thumbnail-shadow: 0 0 0 1px rgba($black, 0.2);
621
+ $thumbnail-shadow-hover: 0 0 6px 1px rgba($primary-color, 0.5);
622
+ $thumbnail-transition: box-shadow 200ms ease-out;
623
+ $thumbnail-radius: $global-radius;
624
+
625
+ // 35. Title Bar
626
+ // -------------
627
+
628
+ $titlebar-background: invalid;
629
+ $titlebar-color: $ace-blue;
630
+ $titlebar-padding: 0.5rem;
631
+ $titlebar-text-font-weight: 400;
632
+ $titlebar-icon-color: $ace-blue;
633
+ $titlebar-icon-color-hover: $ace-orange;
634
+ $titlebar-icon-spacing: 0.25rem;
635
+
636
+ // 36. Tooltip
637
+ // -----------
638
+
639
+ $has-tip-font-weight: $global-weight-bold;
640
+ $has-tip-border-bottom: dotted 1px $dark-gray;
641
+ $tooltip-background-color: $black;
642
+ $tooltip-color: $white;
643
+ $tooltip-padding: 0.75rem;
644
+ $tooltip-font-size: $small-font-size;
645
+ $tooltip-pip-width: 0.75rem;
646
+ $tooltip-pip-height: $tooltip-pip-width * 0.866;
647
+ $tooltip-radius: $global-radius;
648
+
649
+ // 37. Top Bar
650
+ // -----------
651
+
652
+ $topbar-padding: 0;
653
+ $topbar-background: invalid;
654
+ $topbar-submenu-background: $light-gray;
655
+ $topbar-title-spacing: 0.5rem 1rem 0.5rem 0;
656
+ $topbar-input-width: 200px;
657
+ $topbar-unstack-breakpoint: medium;