shibori 1.0.0.beta1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (239) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +20 -0
  3. data/Gemfile +4 -0
  4. data/Gemfile.lock +27 -0
  5. data/Procfile +1 -0
  6. data/README.md +24 -0
  7. data/Rakefile +2 -0
  8. data/app.json +11 -0
  9. data/builder/lineage_hunter.js +80 -0
  10. data/builder/list_item_hunter.js +106 -0
  11. data/builder/media_hunter.js +51 -0
  12. data/builder/object_factory.js +60 -0
  13. data/builder/parameter_hunter.js +69 -0
  14. data/builder/pattern_assembler.js +258 -0
  15. data/builder/pattern_exporter.js +43 -0
  16. data/builder/patternlab.js +365 -0
  17. data/builder/patternlab_grunt.js +38 -0
  18. data/builder/patternlab_gulp.js +26 -0
  19. data/builder/pseudopattern_hunter.js +78 -0
  20. data/config.json +34 -0
  21. data/docs/Pattern Lab Node.md +225 -0
  22. data/favicon.ico +0 -0
  23. data/gulpfile.js +148 -0
  24. data/index.js +20 -0
  25. data/lib/shibori/version.rb +3 -0
  26. data/lib/shibori.rb +11 -0
  27. data/package.json +44 -0
  28. data/public/data/annotations.js +109 -0
  29. data/public/styleguide/css/static.css +458 -0
  30. data/public/styleguide/css/static.scss +404 -0
  31. data/public/styleguide/css/styleguide-specific.css +170 -0
  32. data/public/styleguide/css/styleguide-specific.scss +204 -0
  33. data/public/styleguide/css/styleguide.css +880 -0
  34. data/public/styleguide/css/styleguide.scss +950 -0
  35. data/public/styleguide/css/vendor/prism.css +112 -0
  36. data/public/styleguide/css/vendor/typeahead.css +66 -0
  37. data/public/styleguide/fonts/icomoon.eot +0 -0
  38. data/public/styleguide/fonts/icomoon.svg +22 -0
  39. data/public/styleguide/fonts/icomoon.ttf +0 -0
  40. data/public/styleguide/fonts/icomoon.woff +0 -0
  41. data/public/styleguide/html/README +1 -0
  42. data/public/styleguide/images/spinner.gif +0 -0
  43. data/public/styleguide/js/annotations-pattern.js +308 -0
  44. data/public/styleguide/js/annotations-viewer.js +289 -0
  45. data/public/styleguide/js/code-pattern.js +120 -0
  46. data/public/styleguide/js/code-viewer.js +443 -0
  47. data/public/styleguide/js/data-saver.js +169 -0
  48. data/public/styleguide/js/pattern-finder.js +114 -0
  49. data/public/styleguide/js/postmessage.js +127 -0
  50. data/public/styleguide/js/styleguide.js +600 -0
  51. data/public/styleguide/js/url-handler.js +182 -0
  52. data/public/styleguide/js/vendor/classlist-polyfill.js +176 -0
  53. data/public/styleguide/js/vendor/jquery.js +4 -0
  54. data/public/styleguide/js/vendor/jwerty.js +523 -0
  55. data/public/styleguide/js/vendor/prism.js +7 -0
  56. data/public/styleguide/js/vendor/typeahead.bundle.min.js +7 -0
  57. data/script/bootstrap +58 -0
  58. data/shibori.gemspec +18 -0
  59. data/shibori.jpg +0 -0
  60. data/source/_data/annotations.js +109 -0
  61. data/source/_data/data.json +93 -0
  62. data/source/_data/listitems.json +782 -0
  63. data/source/_patternlab-files/README +1 -0
  64. data/source/_patternlab-files/index.mustache +94 -0
  65. data/source/_patternlab-files/partials/ishControls.mustache +64 -0
  66. data/source/_patternlab-files/partials/patternNav.mustache +17 -0
  67. data/source/_patternlab-files/partials/patternPaths.mustache +3 -0
  68. data/source/_patternlab-files/partials/viewAllPaths.mustache +3 -0
  69. data/source/_patternlab-files/pattern-header-footer/README +1 -0
  70. data/source/_patternlab-files/pattern-header-footer/footer.html +34 -0
  71. data/source/_patternlab-files/pattern-header-footer/header.html +44 -0
  72. data/source/_patternlab-files/styleguide.mustache +75 -0
  73. data/source/_patternlab-files/viewall.mustache +75 -0
  74. data/source/_patterns/00-atoms/00-typography/00-headings.mustache +6 -0
  75. data/source/_patterns/00-atoms/00-typography/01-headings-options.mustache +7 -0
  76. data/source/_patterns/00-atoms/00-typography/02-body.mustache +2 -0
  77. data/source/_patterns/00-atoms/00-typography/03-text-manipulation.mustache +12 -0
  78. data/source/_patterns/00-atoms/00-typography/04-blockquotes.mustache +3 -0
  79. data/source/_patterns/00-atoms/00-typography/05-lists.mustache +64 -0
  80. data/source/_patterns/00-atoms/01-colors/00-colors-monochromatic.mustache +36 -0
  81. data/source/_patterns/00-atoms/01-colors/01-colors-brand.mustache +26 -0
  82. data/source/_patterns/00-atoms/01-colors/02-colors-gradients.mustache +38 -0
  83. data/source/_patterns/00-atoms/02-buttons/00-btn-lg.mustache +7 -0
  84. data/source/_patterns/00-atoms/02-buttons/01-btn-sm.mustache +7 -0
  85. data/source/_patterns/00-atoms/02-buttons/02-btn-xs.mustache +7 -0
  86. data/source/_patterns/00-atoms/02-buttons/03-btn-block.mustache +7 -0
  87. data/source/_patterns/00-atoms/02-buttons/04-btn-deploy.mustache +4 -0
  88. data/source/_patterns/00-atoms/03-forms/00-text-fields.mustache +24 -0
  89. data/source/_patterns/00-atoms/03-forms/01-select-menu.mustache +6 -0
  90. data/source/_patterns/00-atoms/03-forms/02-checkbox.mustache +10 -0
  91. data/source/_patterns/00-atoms/03-forms/03-radios.mustache +10 -0
  92. data/source/_patterns/00-atoms/03-forms/04-validation.mustache +14 -0
  93. data/source/_patterns/00-atoms/04-quote/00-pullquote.mustache +7 -0
  94. data/source/_patterns/00-atoms/04-quote/01-quote-small.mustache +7 -0
  95. data/source/_patterns/00-atoms/05-code/01-pre.mustache +11 -0
  96. data/source/_patterns/00-atoms/06-tooltips/00-text.mustache +3 -0
  97. data/source/_patterns/00-atoms/06-tooltips/01-diagram-callout.mustache +1 -0
  98. data/source/_patterns/00-atoms/07-loader/00-spinner.mustache +5 -0
  99. data/source/_patterns/00-atoms/08-readmore/00-readmore.mustache +3 -0
  100. data/source/_patterns/00-atoms/09-slider/00-dots.mustache +8 -0
  101. data/source/_patterns/00-atoms/10-tables/00-tables.mustache +26 -0
  102. data/source/_patterns/00-atoms/12-modal/00-modal.mustache +14 -0
  103. data/source/_patterns/00-atoms/13-panel/00-panel.mustache +3 -0
  104. data/source/_patterns/00-atoms/14-users/00-avatar.mustache +3 -0
  105. data/source/_patterns/00-atoms/15-icons/00-icons.mustache +333 -0
  106. data/source/_patterns/00-atoms/15-icons/04-icon-colors.mustache +38 -0
  107. data/source/_patterns/00-atoms/15-icons/05-icon-sizes.mustache +31 -0
  108. data/source/_patterns/00-atoms/15-icons/_02-languages.mustache +0 -0
  109. data/source/_patterns/00-atoms/15-icons/_03-social.mustache +0 -0
  110. data/source/_patterns/00-atoms/15-icons/_05-icon-containers.mustache +0 -0
  111. data/source/_patterns/00-atoms/16-video/01-video.mustache +3 -0
  112. data/source/_patterns/00-atoms/16-video/_00-play-button.mustache +0 -0
  113. data/source/_patterns/00-atoms/17-utilities/00-visibility.mustache +8 -0
  114. data/source/_patterns/00-atoms/17-utilities/01-ui-elements.mustache +3 -0
  115. data/source/_patterns/00-atoms/18-grid/_00-grid.mustache +0 -0
  116. data/source/_patterns/01-molecules/00-text/00-header-groups.mustache +4 -0
  117. data/source/_patterns/01-molecules/00-text/01-intro-text.mustache +5 -0
  118. data/source/_patterns/01-molecules/01-layout/00-one-up.mustache +8 -0
  119. data/source/_patterns/01-molecules/01-layout/01-two-up.mustache +9 -0
  120. data/source/_patterns/01-molecules/01-layout/02-three-up.mustache +10 -0
  121. data/source/_patterns/01-molecules/01-layout/03-four-up.mustache +11 -0
  122. data/source/_patterns/01-molecules/01-layout/04-masonary-2.mustache +24 -0
  123. data/source/_patterns/01-molecules/01-layout/05-masonary-3.mustache +24 -0
  124. data/source/_patterns/01-molecules/02-navigation/01-subnav.mustache +21 -0
  125. data/source/_patterns/01-molecules/02-navigation/02-breadcrumbs.mustache +25 -0
  126. data/source/_patterns/01-molecules/02-navigation/03-side-nav.mustache +11 -0
  127. data/source/_patterns/01-molecules/02-navigation/04-side-nav-small.mustache +32 -0
  128. data/source/_patterns/01-molecules/02-navigation/05-pagination.mustache +0 -0
  129. data/source/_patterns/01-molecules/02-navigation/06-tabs.mustache +46 -0
  130. data/source/_patterns/01-molecules/03-forms/_00-search.mustache +0 -0
  131. data/source/_patterns/01-molecules/04-slider/00-slider.mustache +8 -0
  132. data/source/_patterns/01-molecules/05-messages/00-alert.mustache +15 -0
  133. data/source/_patterns/01-molecules/06-components/_00-social-share.mustache +0 -0
  134. data/source/_patterns/01-molecules/07-Elements/01-Addons-Card.mustache +79 -0
  135. data/source/_patterns/01-molecules/07-Elements/02-Buttons-Card.mustache +131 -0
  136. data/source/_patterns/01-molecules/07-Elements/03-Buildpack-Card.mustache +109 -0
  137. data/source/_patterns/01-molecules/08-vertical-tabs/01-vertical-tabs.mustache +30 -0
  138. data/source/_patterns/02-organisms/03-sections/00-purple.mustache +11 -0
  139. data/source/_patterns/02-organisms/03-sections/01-purple-dark.mustache +12 -0
  140. data/source/_patterns/02-organisms/03-sections/03-gray-light.mustache +12 -0
  141. data/source/css/hk-icon-rails.scss +13 -0
  142. data/source/css/scss/base/_base.scss +62 -0
  143. data/source/css/scss/base/_fonts.scss +12 -0
  144. data/source/css/scss/base/_normalize.scss +431 -0
  145. data/source/css/scss/base/_type.scss +128 -0
  146. data/source/css/scss/base/_utilities.scss +78 -0
  147. data/source/css/scss/components/_alert.scss +38 -0
  148. data/source/css/scss/components/_animate.scss +3340 -0
  149. data/source/css/scss/components/_animation.scss +15 -0
  150. data/source/css/scss/components/_buttons.scss +175 -0
  151. data/source/css/scss/components/_code.scss +26 -0
  152. data/source/css/scss/components/_forms.scss +136 -0
  153. data/source/css/scss/components/_hero.scss +18 -0
  154. data/source/css/scss/components/_hr.scss +11 -0
  155. data/source/css/scss/components/_icons.scss +85 -0
  156. data/source/css/scss/components/_lists.scss +45 -0
  157. data/source/css/scss/components/_logos.scss +15 -0
  158. data/source/css/scss/components/_masonary.scss +46 -0
  159. data/source/css/scss/components/_modal.scss +218 -0
  160. data/source/css/scss/components/_owlCarousel.scss +270 -0
  161. data/source/css/scss/components/_panel.scss +11 -0
  162. data/source/css/scss/components/_pill-box.scss +38 -0
  163. data/source/css/scss/components/_quote.scss +96 -0
  164. data/source/css/scss/components/_readmore.scss +11 -0
  165. data/source/css/scss/components/_slider.scss +96 -0
  166. data/source/css/scss/components/_spinner.scss +64 -0
  167. data/source/css/scss/components/_sprites.scss +3 -0
  168. data/source/css/scss/components/_sr-only.scss +10 -0
  169. data/source/css/scss/components/_tables.scss +62 -0
  170. data/source/css/scss/components/_tooltips.scss +93 -0
  171. data/source/css/scss/components/_users.scss +11 -0
  172. data/source/css/scss/components/_vertical-tabs.scss +129 -0
  173. data/source/css/scss/components/_video.scss +7 -0
  174. data/source/css/scss/ecosystem/_addons-card.scss +3 -0
  175. data/source/css/scss/ecosystem/_cards.scss +369 -0
  176. data/source/css/scss/ecosystem/_elements-brand.scss +32 -0
  177. data/source/css/scss/ecosystem/_elements.scss +4 -0
  178. data/source/css/scss/globals/_colors.scss +189 -0
  179. data/source/css/scss/globals/_mixins.scss +45 -0
  180. data/source/css/scss/globals/_variables.scss +87 -0
  181. data/source/css/scss/layout/_grid-settings.scss +13 -0
  182. data/source/css/scss/layout/_layout.scss +95 -0
  183. data/source/css/scss/page-elements/_headers.scss +3 -0
  184. data/source/css/scss/page-elements/_navigation.scss +254 -0
  185. data/source/css/scss/page-elements/_sections.scss +66 -0
  186. data/source/css/scss/page-elements/_sidebar.scss +34 -0
  187. data/source/css/shibori.scss +63 -0
  188. data/source/fonts/bentonsans/bentonsans-book.eot +0 -0
  189. data/source/fonts/bentonsans/bentonsans-book.svg +400 -0
  190. data/source/fonts/bentonsans/bentonsans-book.ttf +0 -0
  191. data/source/fonts/bentonsans/bentonsans-book.woff +0 -0
  192. data/source/fonts/bentonsans/bentonsans-medium.eot +0 -0
  193. data/source/fonts/bentonsans/bentonsans-medium.svg +416 -0
  194. data/source/fonts/bentonsans/bentonsans-medium.ttf +0 -0
  195. data/source/fonts/bentonsans/bentonsans-medium.woff +0 -0
  196. data/source/fonts/bentonsans/bentonsans-regular.eot +0 -0
  197. data/source/fonts/bentonsans/bentonsans-regular.svg +416 -0
  198. data/source/fonts/bentonsans/bentonsans-regular.ttf +0 -0
  199. data/source/fonts/bentonsans/bentonsans-regular.woff +0 -0
  200. data/source/fonts/hk-icon/hk-icon.eot +0 -0
  201. data/source/fonts/hk-icon/hk-icon.svg +261 -0
  202. data/source/fonts/hk-icon/hk-icon.ttf +0 -0
  203. data/source/fonts/hk-icon/hk-icon.woff +0 -0
  204. data/source/fonts/inconsolata/inconsolata-bold.eot +0 -0
  205. data/source/fonts/inconsolata/inconsolata-bold.svg +239 -0
  206. data/source/fonts/inconsolata/inconsolata-bold.ttf +0 -0
  207. data/source/fonts/inconsolata/inconsolata-bold.woff +0 -0
  208. data/source/fonts/inconsolata/inconsolata-regular.eot +0 -0
  209. data/source/fonts/inconsolata/inconsolata-regular.svg +239 -0
  210. data/source/fonts/inconsolata/inconsolata-regular.ttf +0 -0
  211. data/source/fonts/inconsolata/inconsolata-regular.woff +0 -0
  212. data/source/images/blockquote/close-sm.png +0 -0
  213. data/source/images/blockquote/close.png +0 -0
  214. data/source/images/blockquote/close@2x.png +0 -0
  215. data/source/images/blockquote/open-sm.png +0 -0
  216. data/source/images/blockquote/open.png +0 -0
  217. data/source/images/blockquote/open@2x.png +0 -0
  218. data/source/images/elements/heroku_suported.svg +32 -0
  219. data/source/images/forms/select-input-arrows.svg +8 -0
  220. data/source/js/init.js +26 -0
  221. data/source/js/main.js +22 -0
  222. data/source/js/vendor/bourbon-modal.js +17 -0
  223. data/source/js/vendor/fitvids.js +77 -0
  224. data/source/js/vendor/fixto.js +719 -0
  225. data/source/js/vendor/jquery-2.0.0b2.js +8690 -0
  226. data/source/js/vendor/modernizr.js +4 -0
  227. data/source/js/vendor/owl.carousel.js +3069 -0
  228. data/source/js/vendor/readmore.js +11 -0
  229. data/source/js/vendor/unslider.js +1 -0
  230. data/source/js/vendor/vertical-tabs.js +34 -0
  231. data/test/files/test.css +19 -0
  232. data/test/lineage_hunter_tests.js +262 -0
  233. data/test/list_item_hunter_tests.js +167 -0
  234. data/test/media_hunter_tests.js +74 -0
  235. data/test/object_factory_tests.js +62 -0
  236. data/test/parameter_hunter_tests.js +298 -0
  237. data/test/pattern_assembler_tests.js +43 -0
  238. data/test/patternlab_tests.js +8 -0
  239. metadata +320 -0
@@ -0,0 +1,30 @@
1
+ <div class="vertical-tabs-container">
2
+ <div class="vertical-tabs">
3
+ <a href="javascript:void(0)" class="js-vertical-tab vertical-tab is-active" rel="tab1">Item 1</a>
4
+ <a href="javascript:void(0)" class="js-vertical-tab vertical-tab" rel="tab2">Item 2</a>
5
+ <a href="javascript:void(0)" class="js-vertical-tab vertical-tab" rel="tab3">Item 3</a>
6
+ <a href="javascript:void(0)" class="js-vertical-tab vertical-tab" rel="tab4">Item 4</a>
7
+ </div>
8
+
9
+ <div class="vertical-tab-content-container">
10
+ <a href="" class="js-vertical-tab-accordion-heading vertical-tab-accordion-heading is-active" rel="tab1">Item 1</a>
11
+ <div id="tab1" class="js-vertical-tab-content vertical-tab-content">
12
+ <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras tincidunt pellentesque lorem, id suscipit dolor rutrum id. Morbi facilisis porta volutpat. Fusce adipiscing, mauris quis congue tincidunt, sapien purus suscipit odio, quis dictum odio tortor in sem. Ut sit amet libero nec orci mattis fringilla. Praesent eu ipsum in sapien tincidunt molestie sed ut magna. Nam accumsan dui at orci rhoncus pharetra tincidunt elit ullamcorper. Sed ac mauris ipsum. Nullam imperdiet sapien id purus pretium id aliquam mi ullamcorper.</p>
13
+ </div>
14
+
15
+ <a href="" class="js-vertical-tab-accordion-heading vertical-tab-accordion-heading" rel="tab2">Item 2</a>
16
+ <div id="tab2" class="js-vertical-tab-content vertical-tab-content">
17
+ <p>Ut laoreet augue et neque pretium non sagittis nibh pulvinar. Etiam ornare tincidunt orci quis ultrices. Pellentesque ac sapien ac purus gravida ullamcorper. Duis rhoncus sodales lacus, vitae adipiscing tellus pharetra sed. Praesent bibendum.</p>
18
+ </div>
19
+
20
+ <a href="" class="js-vertical-tab-accordion-heading vertical-tab-accordion-heading" rel="tab3">Item 3</a>
21
+ <div id="tab3" class="js-vertical-tab-content vertical-tab-content">
22
+ <p>Donec mattis mauris gravida metus laoreet non rutrum sem viverra. Aenean nibh libero, viverra vel vestibulum in, porttitor ut sapien. Phasellus tempor lorem id justo ornare tincidunt. Nulla faucibus, purus eu placerat fermentum, velit mi iaculis nunc, bibendum tincidunt ipsum justo eu mauris. Nulla facilisi. Vestibulum vel lectus ac purus tempus suscipit nec sit amet eros. Nullam fringilla, enim eu lobortis dapibus, quam magna tincidunt nibh, sit amet imperdiet dolor justo congue turpis.</p>
23
+ </div>
24
+
25
+ <a href="" class="js-vertical-tab-accordion-heading vertical-tab-accordion-heading" rel="tab4">Item 4</a>
26
+ <div id="tab4" class="js-vertical-tab-content vertical-tab-content">
27
+ <p>Sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Phasellus dui urna, mollis vel suscipit in, pharetra at ligula. Pellentesque a est vel est fermentum pellentesque sed sit amet dolor. Nunc in dapibus nibh. Aliquam erat volutpat. Phasellus vel dui sed nibh iaculis convallis id sit amet urna. Proin nec tellus quis justo consequat accumsan. Vivamus turpis enim, auctor eget placerat eget, aliquam ut sapien.</p>
28
+ </div>
29
+ </div>
30
+ </div>
@@ -0,0 +1,11 @@
1
+ <section class="section-purple">
2
+ <div class="wrapper">
3
+ <h2 class="text-white">Header 2</h2>
4
+ <p>Body paragraph. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Cumque eveniet reprehenderit error sit, est magni quis, harum, voluptates ipsa ducimus vitae similique nam illum totam magnam. Maxime eos voluptas autem!</p>
5
+
6
+ <p>Lorem ipsum dolor sit amet, <a href="#">consectetur adipisicing elit</a>. Tempora consequatur dignissimos praesentium quisquam illum numquam, accusamus porro ipsa itaque laboriosam officiis quibusdam laborum dolor nihil unde voluptatem eos iste ipsum.</p>
7
+
8
+ <h3>Header 3</h3>
9
+ <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quam quos nisi eum ea magni dolorem autem unde, cumque blanditiis dicta praesentium doloremque repellat qui repellendus, nam consequuntur, optio fugit! Deserunt!</p>
10
+ </div>
11
+ </section>
@@ -0,0 +1,12 @@
1
+ <section class="section-purple-dark">
2
+ <div class="wrapper">
3
+ <h2>Header 2</h2>
4
+ <p>Body paragraph. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Cumque eveniet reprehenderit error sit, est magni quis, harum, voluptates ipsa ducimus vitae similique nam illum totam magnam. Maxime eos voluptas autem!</p>
5
+
6
+ <p>Lorem ipsum dolor sit amet, <a href="#">consectetur adipisicing elit</a>. Tempora consequatur dignissimos praesentium quisquam illum numquam, accusamus porro ipsa itaque laboriosam officiis quibusdam laborum dolor nihil unde voluptatem eos iste ipsum.</p>
7
+
8
+ <h3>Header 3</h3>
9
+ <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quam quos nisi eum ea magni dolorem autem unde, cumque blanditiis dicta praesentium doloremque repellat qui repellendus, nam consequuntur, optio fugit! Deserunt!</p>
10
+ <blockquote><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Nisi libero, quas optio placeat aperiam aliquam magni reiciendis suscipit ad nulla esse fugiat temporibus, at sed fuga. Consectetur consequatur fuga odio!</p></blockquote>
11
+ </div>
12
+ </section>
@@ -0,0 +1,12 @@
1
+ <section class="section-gray-light">
2
+ <div class="wrapper">
3
+ <h2>Header 2</h2>
4
+ <p>Body paragraph. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Cumque eveniet reprehenderit error sit, est magni quis, harum, voluptates ipsa ducimus vitae similique nam illum totam magnam. Maxime eos voluptas autem!</p>
5
+
6
+ <p>Lorem ipsum dolor sit amet, <a href="#">consectetur adipisicing elit</a>. Tempora consequatur dignissimos praesentium quisquam illum numquam, accusamus porro ipsa itaque laboriosam officiis quibusdam laborum dolor nihil unde voluptatem eos iste ipsum.</p>
7
+
8
+ <h3>Header 3</h3>
9
+ <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quam quos nisi eum ea magni dolorem autem unde, cumque blanditiis dicta praesentium doloremque repellat qui repellendus, nam consequuntur, optio fugit! Deserunt!</p>
10
+ <blockquote><p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Nisi libero, quas optio placeat aperiam aliquam magni reiciendis suscipit ad nulla esse fugiat temporibus, at sed fuga. Consectetur consequatur fuga odio!</p></blockquote>
11
+ </div>
12
+ </section>
@@ -0,0 +1,13 @@
1
+ @font-face {
2
+ font-family: "hk-icon";
3
+ src:font-url('hk-icon/hk-icon.eot');
4
+ src:font-url('hk-icon/hk-icon.eot?#iefix') format('embedded-opentype'),
5
+ font-url('hk-icon/hk-icon.ttf') format('truetype'),
6
+ font-url('hk-icon/hk-icon.woff') format('woff'),
7
+ font-url('hk-icon/hk-icon.svg#hk-icon') format('svg');
8
+ font-weight: normal;
9
+ font-style: normal;
10
+ }
11
+ .hk-icon {
12
+ font-family: 'hk-icon';
13
+ }
@@ -0,0 +1,62 @@
1
+ // ==========================================================================
2
+ // Base
3
+ // ==========================================================================
4
+
5
+ *,
6
+ *:after,
7
+ *:before {
8
+ box-sizing: border-box;
9
+ }
10
+
11
+ html {
12
+ height: 100%;
13
+ }
14
+
15
+ body {
16
+ min-height: 100%;
17
+ font-family: $font-main;
18
+ font-size: $font-base;
19
+ font-weight: $font-normal;
20
+ line-height: $line-height-base;
21
+ background: $white;
22
+ color: $text-color;
23
+ -webkit-font-smoothing: antialiased;
24
+ }
25
+
26
+ p {
27
+ margin: 0;
28
+ margin-bottom: $space;
29
+ }
30
+
31
+ //-Links
32
+ a {
33
+ color: $purple;
34
+ text-decoration: none;
35
+ @include transition(color $transition);
36
+
37
+ &:hover {
38
+ color: darken($purple, 15%);
39
+ }
40
+
41
+ &:active {
42
+ color: $purple;
43
+ }
44
+
45
+ }
46
+
47
+ img,
48
+ iframe,
49
+ video {
50
+ max-width: 100%;
51
+ }
52
+
53
+ iframe {
54
+ margin: 0;
55
+ }
56
+
57
+ //- Selection
58
+
59
+ @include selection {
60
+ background-color: $purple-light;
61
+ color: white;
62
+ }
@@ -0,0 +1,12 @@
1
+ // ==========================================================================
2
+ // Fonts
3
+ // ==========================================================================
4
+
5
+ //- Primary font
6
+ @include font-face(BentonSans, '../fonts/bentonsans/bentonsans-book', 200, $file-formats: eot woff ttf svg);
7
+ @include font-face(BentonSans, '../fonts/bentonsans/bentonsans-regular', normal, $file-formats: eot woff ttf svg);
8
+ @include font-face(BentonSans, '../fonts/bentonsans/bentonsans-medium', bold, $file-formats: eot woff ttf svg);
9
+
10
+ //- Monospace font
11
+ @include font-face(Inconsolata, '../fonts/inconsolata/inconsolata-bold', bold, $file-formats: eot woff ttf svg);
12
+ @include font-face(Inconsolata, '../fonts/inconsolata/inconsolata-regular', normal, $file-formats: eot woff ttf svg);
@@ -0,0 +1,431 @@
1
+ /*! normalize.css v3.0.2 | MIT License | git.io/normalize */
2
+
3
+ /**
4
+ * 1. Set default font family to sans-serif.
5
+ * 2. Prevent iOS text size adjust after orientation change, without disabling
6
+ * user zoom.
7
+ */
8
+
9
+ html {
10
+ font-family: sans-serif; /* 1 */
11
+ -ms-text-size-adjust: 100%; /* 2 */
12
+ -webkit-text-size-adjust: 100%; /* 2 */
13
+ }
14
+
15
+ /**
16
+ * Remove default margin.
17
+ */
18
+
19
+ body {
20
+ margin: 0;
21
+ }
22
+
23
+ /* HTML5 display definitions
24
+ ========================================================================== */
25
+
26
+ /**
27
+ * Correct `block` display not defined for any HTML5 element in IE 8/9.
28
+ * Correct `block` display not defined for `details` or `summary` in IE 10/11
29
+ * and Firefox.
30
+ * Correct `block` display not defined for `main` in IE 11.
31
+ */
32
+
33
+ article,
34
+ aside,
35
+ details,
36
+ figcaption,
37
+ figure,
38
+ footer,
39
+ header,
40
+ hgroup,
41
+ main,
42
+ menu,
43
+ nav,
44
+ section,
45
+ summary {
46
+ display: block;
47
+ }
48
+
49
+ /**
50
+ * 1. Correct `inline-block` display not defined in IE 8/9.
51
+ * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
52
+ */
53
+
54
+ audio,
55
+ canvas,
56
+ progress,
57
+ video {
58
+ display: inline-block; /* 1 */
59
+ vertical-align: baseline; /* 2 */
60
+ }
61
+
62
+ /**
63
+ * Prevent modern browsers from displaying `audio` without controls.
64
+ * Remove excess height in iOS 5 devices.
65
+ */
66
+
67
+ audio:not([controls]) {
68
+ display: none;
69
+ height: 0;
70
+ }
71
+
72
+ /**
73
+ * Address `[hidden]` styling not present in IE 8/9/10.
74
+ * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
75
+ */
76
+
77
+ [hidden],
78
+ template {
79
+ display: none;
80
+ }
81
+
82
+ /* Links
83
+ ========================================================================== */
84
+
85
+ /**
86
+ * Remove the gray background color from active links in IE 10.
87
+ */
88
+
89
+ a {
90
+ background-color: transparent;
91
+ }
92
+
93
+ /**
94
+ * Improve readability when focused and also mouse hovered in all browsers.
95
+ */
96
+
97
+ a:active,
98
+ a:hover {
99
+ outline: 0;
100
+ }
101
+
102
+ /* Text-level semantics
103
+ ========================================================================== */
104
+
105
+ /**
106
+ * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
107
+ */
108
+
109
+ abbr[title] {
110
+ border-bottom: 1px dotted;
111
+ }
112
+
113
+ /**
114
+ * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
115
+ */
116
+
117
+ b,
118
+ strong {
119
+ font-weight: bold;
120
+ }
121
+
122
+ /**
123
+ * Address styling not present in Safari and Chrome.
124
+ */
125
+
126
+ dfn {
127
+ font-style: italic;
128
+ }
129
+
130
+ /**
131
+ * Address variable `h1` font-size and margin within `section` and `article`
132
+ * contexts in Firefox 4+, Safari, and Chrome.
133
+ */
134
+
135
+ h1 {
136
+ font-size: 2em;
137
+ margin: 0.67em 0;
138
+ }
139
+
140
+ /**
141
+ * Address styling not present in IE 8/9.
142
+ */
143
+
144
+ mark {
145
+ background: #ff0;
146
+ color: #000;
147
+ }
148
+
149
+ /**
150
+ * Address inconsistent and variable font size in all browsers.
151
+ */
152
+
153
+ small {
154
+ font-size: 80%;
155
+ }
156
+
157
+ .text-caps {
158
+ text-transform: uppercase;
159
+ }
160
+
161
+ /**
162
+ * Prevent `sub` and `sup` affecting `line-height` in all browsers.
163
+ */
164
+
165
+ sub,
166
+ sup {
167
+ font-size: 75%;
168
+ line-height: 0;
169
+ position: relative;
170
+ vertical-align: baseline;
171
+ }
172
+
173
+ sup {
174
+ top: -0.5em;
175
+ }
176
+
177
+ sub {
178
+ bottom: -0.25em;
179
+ }
180
+
181
+ /* Embedded content
182
+ ========================================================================== */
183
+
184
+ /**
185
+ * Remove border when inside `a` element in IE 8/9/10.
186
+ */
187
+
188
+ img {
189
+ border: 0;
190
+ }
191
+
192
+ /**
193
+ * Correct overflow not hidden in IE 9/10/11.
194
+ */
195
+
196
+ svg:not(:root) {
197
+ overflow: hidden;
198
+ }
199
+
200
+ /* Grouping content
201
+ ========================================================================== */
202
+
203
+ /**
204
+ * Address margin not present in IE 8/9 and Safari.
205
+ */
206
+
207
+ figure {
208
+ margin: 1em 40px;
209
+ }
210
+
211
+ /**
212
+ * Address differences between Firefox and other browsers.
213
+ */
214
+
215
+ hr {
216
+ -moz-box-sizing: content-box;
217
+ box-sizing: content-box;
218
+ height: 0;
219
+ }
220
+
221
+ /**
222
+ * Contain overflow in all browsers.
223
+ */
224
+
225
+ pre {
226
+ overflow: auto;
227
+ }
228
+
229
+ /**
230
+ * Address odd `em`-unit font size rendering in all browsers.
231
+ */
232
+
233
+ code,
234
+ kbd,
235
+ pre,
236
+ samp {
237
+ font-family: monospace, monospace;
238
+ font-size: 1em;
239
+ }
240
+
241
+ /* Forms
242
+ ========================================================================== */
243
+
244
+ /**
245
+ * Known limitation: by default, Chrome and Safari on OS X allow very limited
246
+ * styling of `select`, unless a `border` property is set.
247
+ */
248
+
249
+ /**
250
+ * 1. Correct color not being inherited.
251
+ * Known issue: affects color of disabled elements.
252
+ * 2. Correct font properties not being inherited.
253
+ * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
254
+ */
255
+
256
+ button,
257
+ input,
258
+ optgroup,
259
+ select,
260
+ textarea {
261
+ color: inherit; /* 1 */
262
+ font: inherit; /* 2 */
263
+ margin: 0; /* 3 */
264
+ }
265
+
266
+ /**
267
+ * Address `overflow` set to `hidden` in IE 8/9/10/11.
268
+ */
269
+
270
+ button {
271
+ overflow: visible;
272
+ }
273
+
274
+ /**
275
+ * Address inconsistent `text-transform` inheritance for `button` and `select`.
276
+ * All other form control elements do not inherit `text-transform` values.
277
+ * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
278
+ * Correct `select` style inheritance in Firefox.
279
+ */
280
+
281
+ button,
282
+ select {
283
+ text-transform: none;
284
+ }
285
+
286
+ /**
287
+ * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
288
+ * and `video` controls.
289
+ * 2. Correct inability to style clickable `input` types in iOS.
290
+ * 3. Improve usability and consistency of cursor style between image-type
291
+ * `input` and others.
292
+ */
293
+
294
+ button,
295
+ html input[type="button"], /* 1 */
296
+ input[type="reset"],
297
+ input[type="submit"] {
298
+ -webkit-appearance: button; /* 2 */
299
+ cursor: pointer; /* 3 */
300
+ }
301
+
302
+ /**
303
+ * Re-set default cursor for disabled elements.
304
+ */
305
+
306
+ button[disabled],
307
+ html input[disabled] {
308
+ cursor: default;
309
+ }
310
+
311
+ /**
312
+ * Remove inner padding and border in Firefox 4+.
313
+ */
314
+
315
+ button::-moz-focus-inner,
316
+ input::-moz-focus-inner {
317
+ border: 0;
318
+ padding: 0;
319
+ }
320
+
321
+ /**
322
+ * Address Firefox 4+ setting `line-height` on `input` using `!important` in
323
+ * the UA stylesheet.
324
+ */
325
+
326
+ input {
327
+ line-height: normal;
328
+ }
329
+
330
+ /**
331
+ * It's recommended that you don't attempt to style these elements.
332
+ * Firefox's implementation doesn't respect box-sizing, padding, or width.
333
+ *
334
+ * 1. Address box sizing set to `content-box` in IE 8/9/10.
335
+ * 2. Remove excess padding in IE 8/9/10.
336
+ */
337
+
338
+ input[type="checkbox"],
339
+ input[type="radio"] {
340
+ box-sizing: border-box; /* 1 */
341
+ padding: 0; /* 2 */
342
+ }
343
+
344
+ /**
345
+ * Fix the cursor style for Chrome's increment/decrement buttons. For certain
346
+ * `font-size` values of the `input`, it causes the cursor style of the
347
+ * decrement button to change from `default` to `text`.
348
+ */
349
+
350
+ input[type="number"]::-webkit-inner-spin-button,
351
+ input[type="number"]::-webkit-outer-spin-button {
352
+ height: auto;
353
+ }
354
+
355
+ /**
356
+ * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
357
+ * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
358
+ * (include `-moz` to future-proof).
359
+ */
360
+
361
+ input[type="search"] {
362
+ -webkit-appearance: textfield; /* 1 */
363
+ -moz-box-sizing: content-box;
364
+ -webkit-box-sizing: content-box; /* 2 */
365
+ box-sizing: content-box;
366
+ }
367
+
368
+ /**
369
+ * Remove inner padding and search cancel button in Safari and Chrome on OS X.
370
+ * Safari (but not Chrome) clips the cancel button when the search input has
371
+ * padding (and `textfield` appearance).
372
+ */
373
+
374
+ input[type="search"]::-webkit-search-cancel-button,
375
+ input[type="search"]::-webkit-search-decoration {
376
+ -webkit-appearance: none;
377
+ }
378
+
379
+ /**
380
+ * Define consistent border, margin, and padding.
381
+ */
382
+
383
+ fieldset {
384
+ border: 1px solid #c0c0c0;
385
+ margin: 0 2px;
386
+ padding: 0.35em 0.625em 0.75em;
387
+ }
388
+
389
+ /**
390
+ * 1. Correct `color` not being inherited in IE 8/9/10/11.
391
+ * 2. Remove padding so people aren't caught out if they zero out fieldsets.
392
+ */
393
+
394
+ legend {
395
+ border: 0; /* 1 */
396
+ padding: 0; /* 2 */
397
+ }
398
+
399
+ /**
400
+ * Remove default vertical scrollbar in IE 8/9/10/11.
401
+ */
402
+
403
+ textarea {
404
+ overflow: auto;
405
+ }
406
+
407
+ /**
408
+ * Don't inherit the `font-weight` (applied by a rule above).
409
+ * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
410
+ */
411
+
412
+ optgroup {
413
+ font-weight: bold;
414
+ }
415
+
416
+ /* Tables
417
+ ========================================================================== */
418
+
419
+ /**
420
+ * Remove most spacing between table cells.
421
+ */
422
+
423
+ table {
424
+ border-collapse: collapse;
425
+ border-spacing: 0;
426
+ }
427
+
428
+ td,
429
+ th {
430
+ padding: 0;
431
+ }