jekyll-theme-hydebetty 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (301) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.md +622 -0
  3. data/README.md +180 -0
  4. data/_includes/body/analytics.html +43 -0
  5. data/_includes/body/comments.html +6 -0
  6. data/_includes/body/footer.html +19 -0
  7. data/_includes/body/index.html +22 -0
  8. data/_includes/body/main.html +18 -0
  9. data/_includes/body/menu.html +24 -0
  10. data/_includes/body/nav.html +41 -0
  11. data/_includes/body/scripts.html +9 -0
  12. data/_includes/body/sidebar.html +47 -0
  13. data/_includes/components/about.html +8 -0
  14. data/_includes/components/author.html +24 -0
  15. data/_includes/components/avatar-tag.html +4 -0
  16. data/_includes/components/hy-img.html +40 -0
  17. data/_includes/components/link.html +12 -0
  18. data/_includes/components/message.html +14 -0
  19. data/_includes/components/pagination.html +15 -0
  20. data/_includes/components/post-list-item.html +7 -0
  21. data/_includes/components/post.html +49 -0
  22. data/_includes/components/related-posts.html +25 -0
  23. data/_includes/components/social-list-item.html +40 -0
  24. data/_includes/components/social.html +23 -0
  25. data/_includes/components/tag-list.html +26 -0
  26. data/_includes/head/feed-tag.html +1 -0
  27. data/_includes/head/index.html +9 -0
  28. data/_includes/head/links.html +33 -0
  29. data/_includes/head/meta.html +34 -0
  30. data/_includes/head/page-style.html +6 -0
  31. data/_includes/head/scripts.html +9 -0
  32. data/_includes/head/seo-fallback.html +13 -0
  33. data/_includes/head/seo-tag.html +4 -0
  34. data/_includes/head/styles.html +41 -0
  35. data/_includes/header.txt +13 -0
  36. data/_includes/icon-github.html +2 -0
  37. data/_includes/my-body.html +42 -0
  38. data/_includes/my-comments.html +24 -0
  39. data/_includes/my-head.html +13 -0
  40. data/_includes/my-scripts.html +55 -0
  41. data/_includes/scripts/cssrelpreload.min.js +1 -0
  42. data/_includes/scripts/load-js.js +60 -0
  43. data/_includes/scripts/load-js.min.js +0 -0
  44. data/_includes/scripts/loadCSS.min.js +1 -0
  45. data/_includes/scripts/nomodule.js +21 -0
  46. data/_includes/scripts/nomodule.min.js +0 -0
  47. data/_includes/scripts.html +33 -0
  48. data/_includes/smart-url.txt +1 -0
  49. data/_includes/styles/inline.scss +62 -0
  50. data/_includes/styles/page-style.scss +64 -0
  51. data/_includes/styles/style.scss +113 -0
  52. data/_includes/templates/animation.html +7 -0
  53. data/_includes/templates/back.html +6 -0
  54. data/_includes/templates/error.html +10 -0
  55. data/_includes/templates/forward.html +6 -0
  56. data/_includes/templates/index.html +12 -0
  57. data/_includes/templates/loading.html +6 -0
  58. data/_includes/templates/permalink.html +6 -0
  59. data/_layouts/about.html +43 -0
  60. data/_layouts/base.html +38 -0
  61. data/_layouts/blog.html +32 -0
  62. data/_layouts/compress.html +15 -0
  63. data/_layouts/default.html +56 -0
  64. data/_layouts/home.html +20 -0
  65. data/_layouts/list.html +46 -0
  66. data/_layouts/not-found.html +37 -0
  67. data/_layouts/page.html +27 -0
  68. data/_layouts/post.html +34 -0
  69. data/_layouts/redirect.html +23 -0
  70. data/_sass/_mixins.scss +63 -0
  71. data/_sass/_reboot-mod.scss +286 -0
  72. data/_sass/_spinner.scss +45 -0
  73. data/_sass/_syntax.scss +131 -0
  74. data/_sass/_variables.scss +63 -0
  75. data/_sass/hydejack/__inline__/_avatar.scss +48 -0
  76. data/_sass/hydejack/__inline__/_base.scss +73 -0
  77. data/_sass/hydejack/__inline__/_break-layout.scss +25 -0
  78. data/_sass/hydejack/__inline__/_content.scss +59 -0
  79. data/_sass/hydejack/__inline__/_footer.scss +25 -0
  80. data/_sass/hydejack/__inline__/_images.scss +38 -0
  81. data/_sass/hydejack/__inline__/_katex.scss +25 -0
  82. data/_sass/hydejack/__inline__/_links.scss +45 -0
  83. data/_sass/hydejack/__inline__/_mark-external.scss +25 -0
  84. data/_sass/hydejack/__inline__/_menu.scss +67 -0
  85. data/_sass/hydejack/__inline__/_sidebar.scss +144 -0
  86. data/_sass/hydejack/__inline__/_social.scss +58 -0
  87. data/_sass/hydejack/__inline__/_utilities.scss +45 -0
  88. data/_sass/hydejack/__link__/_avatar.scss +38 -0
  89. data/_sass/hydejack/__link__/_base.scss +42 -0
  90. data/_sass/hydejack/__link__/_break-layout.scss +64 -0
  91. data/_sass/hydejack/__link__/_content.scss +32 -0
  92. data/_sass/hydejack/__link__/_footer.scss +47 -0
  93. data/_sass/hydejack/__link__/_images.scss +90 -0
  94. data/_sass/hydejack/__link__/_katex.scss +57 -0
  95. data/_sass/hydejack/__link__/_links.scss +53 -0
  96. data/_sass/hydejack/__link__/_mark-external.scss +51 -0
  97. data/_sass/hydejack/__link__/_menu.scss +42 -0
  98. data/_sass/hydejack/__link__/_sidebar.scss +114 -0
  99. data/_sass/hydejack/__link__/_social.scss +33 -0
  100. data/_sass/hydejack/__link__/_utilities.scss +54 -0
  101. data/_sass/hydejack/_avatar.pre.scss +44 -0
  102. data/_sass/hydejack/_base.pre.scss +78 -0
  103. data/_sass/hydejack/_break-layout.pre.scss +55 -0
  104. data/_sass/hydejack/_content.pre.scss +56 -0
  105. data/_sass/hydejack/_footer.pre.scss +38 -0
  106. data/_sass/hydejack/_images.pre.scss +83 -0
  107. data/_sass/hydejack/_katex.pre.scss +48 -0
  108. data/_sass/hydejack/_links.pre.scss +47 -0
  109. data/_sass/hydejack/_mark-external.pre.scss +42 -0
  110. data/_sass/hydejack/_menu.pre.scss +74 -0
  111. data/_sass/hydejack/_sidebar.pre.scss +175 -0
  112. data/_sass/hydejack/_social.pre.scss +55 -0
  113. data/_sass/hydejack/_utilities.pre.scss +46 -0
  114. data/_sass/my-inline.scss +16 -0
  115. data/_sass/my-style.scss +9 -0
  116. data/_sass/my-variables.scss +1 -0
  117. data/_sass/pooleparty/__inline__/_base.scss +75 -0
  118. data/_sass/pooleparty/__inline__/_code.scss +25 -0
  119. data/_sass/pooleparty/__inline__/_footer.scss +25 -0
  120. data/_sass/pooleparty/__inline__/_footnotes.scss +25 -0
  121. data/_sass/pooleparty/__inline__/_message.scss +35 -0
  122. data/_sass/pooleparty/__inline__/_pagination.scss +25 -0
  123. data/_sass/pooleparty/__inline__/_posts.scss +49 -0
  124. data/_sass/pooleparty/__inline__/_read-more.scss +25 -0
  125. data/_sass/pooleparty/__inline__/_related.scss +38 -0
  126. data/_sass/pooleparty/__inline__/_table.scss +53 -0
  127. data/_sass/pooleparty/__inline__/_type.scss +88 -0
  128. data/_sass/pooleparty/__link__/_base.scss +40 -0
  129. data/_sass/pooleparty/__link__/_code.scss +75 -0
  130. data/_sass/pooleparty/__link__/_footer.scss +25 -0
  131. data/_sass/pooleparty/__link__/_footnotes.scss +80 -0
  132. data/_sass/pooleparty/__link__/_message.scss +25 -0
  133. data/_sass/pooleparty/__link__/_pagination.scss +90 -0
  134. data/_sass/pooleparty/__link__/_posts.scss +38 -0
  135. data/_sass/pooleparty/__link__/_read-more.scss +45 -0
  136. data/_sass/pooleparty/__link__/_related.scss +33 -0
  137. data/_sass/pooleparty/__link__/_table.scss +171 -0
  138. data/_sass/pooleparty/__link__/_type.scss +141 -0
  139. data/_sass/pooleparty/_base.pre.scss +74 -0
  140. data/_sass/pooleparty/_code.pre.scss +66 -0
  141. data/_sass/pooleparty/_footer.pre.scss +16 -0
  142. data/_sass/pooleparty/_footnotes.pre.scss +71 -0
  143. data/_sass/pooleparty/_message.pre.scss +26 -0
  144. data/_sass/pooleparty/_pagination.pre.scss +81 -0
  145. data/_sass/pooleparty/_posts.pre.scss +52 -0
  146. data/_sass/pooleparty/_read-more.pre.scss +36 -0
  147. data/_sass/pooleparty/_related.pre.scss +35 -0
  148. data/_sass/pooleparty/_table.pre.scss +180 -0
  149. data/_sass/pooleparty/_type.pre.scss +193 -0
  150. data/assets/Resume.pdf +0 -0
  151. data/assets/bower.json +11 -0
  152. data/assets/bower_components/html5shiv/.bower.json +26 -0
  153. data/assets/bower_components/html5shiv/Gruntfile.js +61 -0
  154. data/assets/bower_components/html5shiv/bower.json +15 -0
  155. data/assets/bower_components/html5shiv/dist/html5shiv-printshiv.js +524 -0
  156. data/assets/bower_components/html5shiv/dist/html5shiv-printshiv.min.js +4 -0
  157. data/assets/bower_components/html5shiv/dist/html5shiv.js +326 -0
  158. data/assets/bower_components/html5shiv/dist/html5shiv.min.js +4 -0
  159. data/assets/bower_components/html5shiv/package.json +16 -0
  160. data/assets/bower_components/katex/.bower.json +47 -0
  161. data/assets/bower_components/katex/LICENSE +21 -0
  162. data/assets/bower_components/katex/bower.json +36 -0
  163. data/assets/bower_components/katex/dist/contrib/auto-render.js +339 -0
  164. data/assets/bower_components/katex/dist/contrib/auto-render.min.js +1 -0
  165. data/assets/bower_components/katex/dist/contrib/auto-render.mjs +215 -0
  166. data/assets/bower_components/katex/dist/contrib/copy-tex.css +14 -0
  167. data/assets/bower_components/katex/dist/contrib/copy-tex.js +213 -0
  168. data/assets/bower_components/katex/dist/contrib/copy-tex.min.css +1 -0
  169. data/assets/bower_components/katex/dist/contrib/copy-tex.min.js +1 -0
  170. data/assets/bower_components/katex/dist/contrib/copy-tex.mjs +85 -0
  171. data/assets/bower_components/katex/dist/contrib/mathtex-script-type.js +137 -0
  172. data/assets/bower_components/katex/dist/contrib/mathtex-script-type.min.js +1 -0
  173. data/assets/bower_components/katex/dist/contrib/mathtex-script-type.mjs +24 -0
  174. data/assets/bower_components/katex/dist/contrib/mhchem.js +3241 -0
  175. data/assets/bower_components/katex/dist/contrib/mhchem.min.js +1 -0
  176. data/assets/bower_components/katex/dist/contrib/mhchem.mjs +3109 -0
  177. data/assets/bower_components/katex/dist/fonts/KaTeX_AMS-Regular.ttf +0 -0
  178. data/assets/bower_components/katex/dist/fonts/KaTeX_AMS-Regular.woff +0 -0
  179. data/assets/bower_components/katex/dist/fonts/KaTeX_AMS-Regular.woff2 +0 -0
  180. data/assets/bower_components/katex/dist/fonts/KaTeX_Caligraphic-Bold.ttf +0 -0
  181. data/assets/bower_components/katex/dist/fonts/KaTeX_Caligraphic-Bold.woff +0 -0
  182. data/assets/bower_components/katex/dist/fonts/KaTeX_Caligraphic-Bold.woff2 +0 -0
  183. data/assets/bower_components/katex/dist/fonts/KaTeX_Caligraphic-Regular.ttf +0 -0
  184. data/assets/bower_components/katex/dist/fonts/KaTeX_Caligraphic-Regular.woff +0 -0
  185. data/assets/bower_components/katex/dist/fonts/KaTeX_Caligraphic-Regular.woff2 +0 -0
  186. data/assets/bower_components/katex/dist/fonts/KaTeX_Fraktur-Bold.ttf +0 -0
  187. data/assets/bower_components/katex/dist/fonts/KaTeX_Fraktur-Bold.woff +0 -0
  188. data/assets/bower_components/katex/dist/fonts/KaTeX_Fraktur-Bold.woff2 +0 -0
  189. data/assets/bower_components/katex/dist/fonts/KaTeX_Fraktur-Regular.ttf +0 -0
  190. data/assets/bower_components/katex/dist/fonts/KaTeX_Fraktur-Regular.woff +0 -0
  191. data/assets/bower_components/katex/dist/fonts/KaTeX_Fraktur-Regular.woff2 +0 -0
  192. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-Bold.ttf +0 -0
  193. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-Bold.woff +0 -0
  194. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-Bold.woff2 +0 -0
  195. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-BoldItalic.ttf +0 -0
  196. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-BoldItalic.woff +0 -0
  197. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-BoldItalic.woff2 +0 -0
  198. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-Italic.ttf +0 -0
  199. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-Italic.woff +0 -0
  200. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-Italic.woff2 +0 -0
  201. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-Regular.ttf +0 -0
  202. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-Regular.woff +0 -0
  203. data/assets/bower_components/katex/dist/fonts/KaTeX_Main-Regular.woff2 +0 -0
  204. data/assets/bower_components/katex/dist/fonts/KaTeX_Math-BoldItalic.ttf +0 -0
  205. data/assets/bower_components/katex/dist/fonts/KaTeX_Math-BoldItalic.woff +0 -0
  206. data/assets/bower_components/katex/dist/fonts/KaTeX_Math-BoldItalic.woff2 +0 -0
  207. data/assets/bower_components/katex/dist/fonts/KaTeX_Math-Italic.ttf +0 -0
  208. data/assets/bower_components/katex/dist/fonts/KaTeX_Math-Italic.woff +0 -0
  209. data/assets/bower_components/katex/dist/fonts/KaTeX_Math-Italic.woff2 +0 -0
  210. data/assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Bold.ttf +0 -0
  211. data/assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Bold.woff +0 -0
  212. data/assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Bold.woff2 +0 -0
  213. data/assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Italic.ttf +0 -0
  214. data/assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Italic.woff +0 -0
  215. data/assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Italic.woff2 +0 -0
  216. data/assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Regular.ttf +0 -0
  217. data/assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Regular.woff +0 -0
  218. data/assets/bower_components/katex/dist/fonts/KaTeX_SansSerif-Regular.woff2 +0 -0
  219. data/assets/bower_components/katex/dist/fonts/KaTeX_Script-Regular.ttf +0 -0
  220. data/assets/bower_components/katex/dist/fonts/KaTeX_Script-Regular.woff +0 -0
  221. data/assets/bower_components/katex/dist/fonts/KaTeX_Script-Regular.woff2 +0 -0
  222. data/assets/bower_components/katex/dist/fonts/KaTeX_Size1-Regular.ttf +0 -0
  223. data/assets/bower_components/katex/dist/fonts/KaTeX_Size1-Regular.woff +0 -0
  224. data/assets/bower_components/katex/dist/fonts/KaTeX_Size1-Regular.woff2 +0 -0
  225. data/assets/bower_components/katex/dist/fonts/KaTeX_Size2-Regular.ttf +0 -0
  226. data/assets/bower_components/katex/dist/fonts/KaTeX_Size2-Regular.woff +0 -0
  227. data/assets/bower_components/katex/dist/fonts/KaTeX_Size2-Regular.woff2 +0 -0
  228. data/assets/bower_components/katex/dist/fonts/KaTeX_Size3-Regular.ttf +0 -0
  229. data/assets/bower_components/katex/dist/fonts/KaTeX_Size3-Regular.woff +0 -0
  230. data/assets/bower_components/katex/dist/fonts/KaTeX_Size3-Regular.woff2 +0 -0
  231. data/assets/bower_components/katex/dist/fonts/KaTeX_Size4-Regular.ttf +0 -0
  232. data/assets/bower_components/katex/dist/fonts/KaTeX_Size4-Regular.woff +0 -0
  233. data/assets/bower_components/katex/dist/fonts/KaTeX_Size4-Regular.woff2 +0 -0
  234. data/assets/bower_components/katex/dist/fonts/KaTeX_Typewriter-Regular.ttf +0 -0
  235. data/assets/bower_components/katex/dist/fonts/KaTeX_Typewriter-Regular.woff +0 -0
  236. data/assets/bower_components/katex/dist/fonts/KaTeX_Typewriter-Regular.woff2 +0 -0
  237. data/assets/bower_components/katex/dist/katex.css +1021 -0
  238. data/assets/bower_components/katex/dist/katex.js +16809 -0
  239. data/assets/bower_components/katex/dist/katex.min.css +1 -0
  240. data/assets/bower_components/katex/dist/katex.min.js +1 -0
  241. data/assets/bower_components/katex/dist/katex.mjs +16342 -0
  242. data/assets/bower_components/katex/yarn.lock +8952 -0
  243. data/assets/css/hydejack-7.5.2.css +3 -0
  244. data/assets/css/hydejack-8.5.2.css +3 -0
  245. data/assets/icomoon/fonts/icomoon.eot +0 -0
  246. data/assets/icomoon/fonts/icomoon.svg +96 -0
  247. data/assets/icomoon/fonts/icomoon.ttf +0 -0
  248. data/assets/icomoon/fonts/icomoon.woff +0 -0
  249. data/assets/icomoon/selection.json +1 -0
  250. data/assets/icomoon/style.css +284 -0
  251. data/assets/icons/favicon.ico +0 -0
  252. data/assets/icons/icon.png +0 -0
  253. data/assets/icons/icon@0,25x.png +0 -0
  254. data/assets/icons/icon@0,5x.png +0 -0
  255. data/assets/icons/icon@0,75x.png +0 -0
  256. data/assets/icons/icon@2x.png +0 -0
  257. data/assets/icons/icon@3x.png +0 -0
  258. data/assets/icons/tile-large.png +0 -0
  259. data/assets/icons/tile-medium.png +0 -0
  260. data/assets/icons/tile-small.png +0 -0
  261. data/assets/icons/tile-wide.png +0 -0
  262. data/assets/ieconfig.xml +15 -0
  263. data/assets/img/blog/COLOURlovers.com-Hydejack.png +0 -0
  264. data/assets/img/blog/blog-layout.jpg +0 -0
  265. data/assets/img/blog/caleb-george-old.jpg +0 -0
  266. data/assets/img/blog/caleb-george.jpg +0 -0
  267. data/assets/img/blog/cover-page.jpg +0 -0
  268. data/assets/img/blog/dark-mode-ii.jpg +0 -0
  269. data/assets/img/blog/dark-mode.jpg +0 -0
  270. data/assets/img/blog/example-content-ii.jpg +0 -0
  271. data/assets/img/blog/example-content-iii.jpg +0 -0
  272. data/assets/img/blog/hydejack-8.png +0 -0
  273. data/assets/img/blog/hydejack-8@0,25x.png +0 -0
  274. data/assets/img/blog/hydejack-8@0,5x.png +0 -0
  275. data/assets/img/blog/lazy-images.jpg +0 -0
  276. data/assets/img/blog/louis-hansel.jpg +0 -0
  277. data/assets/img/blog/resume.png +0 -0
  278. data/assets/img/blog/steve-harvey.jpg +0 -0
  279. data/assets/img/blog/w3m.png +0 -0
  280. data/assets/img/blog/wade-lambert.jpg +0 -0
  281. data/assets/img/docs/google-fonts.png +0 -0
  282. data/assets/img/projects/hy-drawer.svg +12 -0
  283. data/assets/img/projects/hy-img.svg +17 -0
  284. data/assets/img/projects/hy-push-state.svg +13 -0
  285. data/assets/img/sidebar-bg.jpg +0 -0
  286. data/assets/img/swipe.svg +22 -0
  287. data/assets/js/hydejack-8.5.2.js +161 -0
  288. data/assets/js/hydejack-legacy-8.5.2.js +190 -0
  289. data/assets/manifest.json +46 -0
  290. data/assets/version.json +3 -0
  291. data/assets/video/blog-layout.mp4 +0 -0
  292. data/assets/video/cover-page.mp4 +0 -0
  293. data/assets/video/dark-mode.mp4 +0 -0
  294. data/assets/video/lazy-images.mp4 +0 -0
  295. data/licenses/Apache-2.0.md +208 -0
  296. data/licenses/GPL-3.0.md +620 -0
  297. data/licenses/MIT.md +21 -0
  298. data/licenses/PRO.md +136 -0
  299. data/licenses/README.md +10 -0
  300. data/licenses/W3C.md +31 -0
  301. metadata +385 -0
@@ -0,0 +1,193 @@
1
+ // Copyright (c) 2017 Florian Klampfer <https://qwtel.com/>
2
+ //
3
+ // This program is free software: you can redistribute it and/or modify
4
+ // it under the terms of the GNU General Public License as published by
5
+ // the Free Software Foundation, either version 3 of the License, or
6
+ // (at your option) any later version.
7
+ //
8
+ // This program is distributed in the hope that it will be useful,
9
+ // but WITHOUT ANY WARRANTY; without even the implied warranty of
10
+ // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11
+ // GNU General Public License for more details.
12
+ //
13
+ // You should have received a copy of the GNU General Public License
14
+ // along with this program. If not, see <http://www.gnu.org/licenses/>.
15
+
16
+ // <<<<< INLINE
17
+ h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
18
+ font-weight: var(--font-weight-heading);
19
+ margin: 5rem 0 1rem;
20
+ }
21
+
22
+ h1, .h1 {
23
+ font-size: 2rem;
24
+ line-height: 1.3;
25
+ }
26
+
27
+ h2, .h2 {
28
+ font-size: 1.5rem;
29
+ line-height: 1.4;
30
+ }
31
+
32
+ h3, .h3 {
33
+ font-size: 1.17em;
34
+ line-height: 1.5;
35
+ }
36
+
37
+ h4, h5, h6, .h4, .h5, .h6 {
38
+ font-size: 1rem;
39
+ margin-bottom: 0.5rem;
40
+ }
41
+
42
+ p {
43
+ margin-top: 0;
44
+ margin-bottom: 1rem;
45
+
46
+ &.lead {
47
+ font-size: 1.2em;
48
+ margin-top: 1.5rem;
49
+ margin-bottom: 1.5rem;
50
+ padding: 0 1rem;
51
+ }
52
+ }
53
+
54
+ ul, ol, dl {
55
+ margin-top: 0;
56
+ margin-bottom: 1rem;
57
+ }
58
+
59
+ ul, ol {
60
+ padding-left: 1.25rem;
61
+ }
62
+
63
+ hr {
64
+ @extend .color-transition;
65
+ position: relative;
66
+ margin: 3rem 0;
67
+ border: 0;
68
+ border-top: 1px solid var(--border-color);
69
+ }
70
+
71
+ .hr {
72
+ @extend .color-transition;
73
+ border-bottom: 1px solid var(--border-color);
74
+ padding-bottom: 1rem;
75
+ margin-bottom: 2rem;
76
+ }
77
+ // >>>>>
78
+
79
+ // <<<<< LINK
80
+ h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, .heading {
81
+ text-rendering: optimizeLegibility;
82
+ }
83
+
84
+ h1 + h2, .h1 + .h2, h1 + .h2, .h1 + h2,
85
+ h2 + h3, .h2 + .h3, h2 + .h3, .h2 + h3,
86
+ h3 + h4, .h3 + .h4, h3 + .h4, .h3 + h4,
87
+ h4 + h5, .h4 + .h5, h4 + .h5, .h4 + h5,
88
+ h5 + h6, .h5 + .h6, h5 + .h6, .h5 + h6 {
89
+ margin-top: 0;
90
+ }
91
+
92
+ dt, strong {
93
+ font-weight: var(--font-weight-bold);
94
+ }
95
+
96
+ dd {
97
+ margin-bottom: .5rem;
98
+ }
99
+
100
+ abbr {
101
+ font-size: 85%;
102
+ font-weight: var(--font-weight-bold);
103
+ text-transform: uppercase;
104
+
105
+ &[title] {
106
+ cursor: help;
107
+ border-bottom: 1px dotted var(--border-color);
108
+ }
109
+ }
110
+
111
+ blockquote {
112
+ @extend .color-transition;
113
+ padding: .5rem 1rem;
114
+ margin: .8rem 0;
115
+ color: var(--text-muted);
116
+ border-left: .25rem solid var(--border-color);
117
+
118
+ &.lead {
119
+ font-size: 1.2em;
120
+ margin-top: 1.5rem;
121
+ margin-bottom: 1.5rem;
122
+ border-left-width: 0.4rem;
123
+ }
124
+
125
+ > p:last-child {
126
+ margin-bottom: 0;
127
+ }
128
+ }
129
+
130
+ .heading {
131
+ font-weight: var(--font-weight-heading);
132
+ }
133
+
134
+ .fine {
135
+ font-size: .83em;
136
+ }
137
+
138
+ .faded {
139
+ @extend .color-transition;
140
+ color: var(--text-muted);
141
+ }
142
+
143
+ .centered {
144
+ text-align: center;
145
+ }
146
+
147
+
148
+ h1[id], h2[id], h3[id], h4[id], h5[id], h6[id] {
149
+ position: relative;
150
+
151
+ > .permalink {
152
+ @media screen {
153
+ border-bottom: none;
154
+ opacity: 0;
155
+ width: 1.5rem;
156
+ text-align: center;
157
+ float: right;
158
+ transition: opacity 400ms;
159
+ will-change: opacity;
160
+ }
161
+
162
+ @media screen and (min-width: $break-point-1 + 2em) {
163
+ float: none;
164
+ position: absolute;
165
+ top: 0;
166
+ left: -1.75rem;
167
+ }
168
+
169
+ @media print {
170
+ display: none;
171
+ }
172
+ }
173
+
174
+ &:hover > .permalink {
175
+ opacity: 0.5;
176
+ }
177
+
178
+ & > .permalink:hover,
179
+ & > .permalink:focus {
180
+ opacity: 1;
181
+ transition: opacity 200ms;
182
+ }
183
+ }
184
+
185
+ @media print {
186
+ h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, dt {
187
+ page-break-inside: avoid;
188
+ break-inside: avoid-page;
189
+ page-break-after: avoid;
190
+ break-after: avoid-page;
191
+ }
192
+ }
193
+ // >>>>> LINK
data/assets/Resume.pdf ADDED
Binary file
data/assets/bower.json ADDED
@@ -0,0 +1,11 @@
1
+ {
2
+ "name": "hydejack-assets",
3
+ "homepage": "https://hydejack.com/",
4
+ "author": "Florian Klampfer <mail@qwtel.com> (https://qwtel.com/)",
5
+ "license": "MIT",
6
+ "private": true,
7
+ "dependencies": {
8
+ "html5shiv": "^3.7.3",
9
+ "katex": "^0.10.2"
10
+ }
11
+ }
@@ -0,0 +1,26 @@
1
+ {
2
+ "name": "html5shiv",
3
+ "version": "3.7.3",
4
+ "main": [
5
+ "dist/html5shiv.js"
6
+ ],
7
+ "ignore": [
8
+ "**/.*",
9
+ "composer.json",
10
+ "test",
11
+ "build",
12
+ "src",
13
+ "build.xml"
14
+ ],
15
+ "homepage": "https://github.com/aFarkas/html5shiv",
16
+ "_release": "3.7.3",
17
+ "_resolution": {
18
+ "type": "version",
19
+ "tag": "3.7.3",
20
+ "commit": "ed28c56c071bddfe7d635ad88995674957a016be"
21
+ },
22
+ "_source": "https://github.com/aFarkas/html5shiv.git",
23
+ "_target": "^3.7.3",
24
+ "_originalSource": "html5shiv",
25
+ "_direct": true
26
+ }
@@ -0,0 +1,61 @@
1
+ /*global module:false*/
2
+ module.exports = function(grunt){
3
+
4
+
5
+ // Project configuration.
6
+ grunt.initConfig({
7
+ pkg: grunt.file.readJSON('package.json'),
8
+ bower: grunt.file.readJSON('bower.json'),
9
+ copy: {
10
+ demo: {
11
+ files: [
12
+ {expand: true, src: ['src/*'], dest: 'dist/', filter: 'isFile', flatten: true}
13
+ ]
14
+ }
15
+ },
16
+
17
+ uglify: {
18
+ options: {
19
+ beautify: {
20
+ ascii_only : true
21
+ },
22
+ preserveComments: 'some'
23
+ },
24
+ html5shiv: {
25
+ files: [{
26
+ expand: true, // Enable dynamic expansion.
27
+ cwd: 'src/', // Src matches are relative to this path.
28
+ src: ['**/*.js'], // Actual pattern(s) to match.
29
+ dest: 'dist/', // Destination path prefix.
30
+ ext: '.min.js'
31
+ }]
32
+ }
33
+ },
34
+ watch: {
35
+ js: {
36
+ files: ['src/**/*.js'],
37
+ tasks: ['copy', 'uglify', 'bytesize']
38
+ }
39
+ },
40
+ bytesize: {
41
+ all: {
42
+ src: [
43
+ 'dist/**.min.js'
44
+ ]
45
+ }
46
+ }
47
+ });
48
+
49
+
50
+ // Default task.
51
+
52
+
53
+
54
+ grunt.loadNpmTasks('grunt-contrib-copy');
55
+ grunt.loadNpmTasks('grunt-contrib-uglify');
56
+ grunt.loadNpmTasks('grunt-contrib-watch');
57
+ grunt.loadNpmTasks('grunt-bytesize');
58
+
59
+ grunt.registerTask('default', ['copy', 'uglify', 'bytesize', 'watch']);
60
+
61
+ };
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "html5shiv",
3
+ "version": "3.7.3",
4
+ "main": [
5
+ "dist/html5shiv.js"
6
+ ],
7
+ "ignore": [
8
+ "**/.*",
9
+ "composer.json",
10
+ "test",
11
+ "build",
12
+ "src",
13
+ "build.xml"
14
+ ]
15
+ }
@@ -0,0 +1,524 @@
1
+ /**
2
+ * @preserve HTML5 Shiv 3.7.3 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed
3
+ */
4
+ ;(function(window, document) {
5
+ /*jshint evil:true */
6
+ /** version */
7
+ var version = '3.7.3';
8
+
9
+ /** Preset options */
10
+ var options = window.html5 || {};
11
+
12
+ /** Used to skip problem elements */
13
+ var reSkip = /^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i;
14
+
15
+ /** Not all elements can be cloned in IE **/
16
+ var saveClones = /^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i;
17
+
18
+ /** Detect whether the browser supports default html5 styles */
19
+ var supportsHtml5Styles;
20
+
21
+ /** Name of the expando, to work with multiple documents or to re-shiv one document */
22
+ var expando = '_html5shiv';
23
+
24
+ /** The id for the the documents expando */
25
+ var expanID = 0;
26
+
27
+ /** Cached data for each document */
28
+ var expandoData = {};
29
+
30
+ /** Detect whether the browser supports unknown elements */
31
+ var supportsUnknownElements;
32
+
33
+ (function() {
34
+ try {
35
+ var a = document.createElement('a');
36
+ a.innerHTML = '<xyz></xyz>';
37
+ //if the hidden property is implemented we can assume, that the browser supports basic HTML5 Styles
38
+ supportsHtml5Styles = ('hidden' in a);
39
+
40
+ supportsUnknownElements = a.childNodes.length == 1 || (function() {
41
+ // assign a false positive if unable to shiv
42
+ (document.createElement)('a');
43
+ var frag = document.createDocumentFragment();
44
+ return (
45
+ typeof frag.cloneNode == 'undefined' ||
46
+ typeof frag.createDocumentFragment == 'undefined' ||
47
+ typeof frag.createElement == 'undefined'
48
+ );
49
+ }());
50
+ } catch(e) {
51
+ // assign a false positive if detection fails => unable to shiv
52
+ supportsHtml5Styles = true;
53
+ supportsUnknownElements = true;
54
+ }
55
+
56
+ }());
57
+
58
+ /*--------------------------------------------------------------------------*/
59
+
60
+ /**
61
+ * Creates a style sheet with the given CSS text and adds it to the document.
62
+ * @private
63
+ * @param {Document} ownerDocument The document.
64
+ * @param {String} cssText The CSS text.
65
+ * @returns {StyleSheet} The style element.
66
+ */
67
+ function addStyleSheet(ownerDocument, cssText) {
68
+ var p = ownerDocument.createElement('p'),
69
+ parent = ownerDocument.getElementsByTagName('head')[0] || ownerDocument.documentElement;
70
+
71
+ p.innerHTML = 'x<style>' + cssText + '</style>';
72
+ return parent.insertBefore(p.lastChild, parent.firstChild);
73
+ }
74
+
75
+ /**
76
+ * Returns the value of `html5.elements` as an array.
77
+ * @private
78
+ * @returns {Array} An array of shived element node names.
79
+ */
80
+ function getElements() {
81
+ var elements = html5.elements;
82
+ return typeof elements == 'string' ? elements.split(' ') : elements;
83
+ }
84
+
85
+ /**
86
+ * Extends the built-in list of html5 elements
87
+ * @memberOf html5
88
+ * @param {String|Array} newElements whitespace separated list or array of new element names to shiv
89
+ * @param {Document} ownerDocument The context document.
90
+ */
91
+ function addElements(newElements, ownerDocument) {
92
+ var elements = html5.elements;
93
+ if(typeof elements != 'string'){
94
+ elements = elements.join(' ');
95
+ }
96
+ if(typeof newElements != 'string'){
97
+ newElements = newElements.join(' ');
98
+ }
99
+ html5.elements = elements +' '+ newElements;
100
+ shivDocument(ownerDocument);
101
+ }
102
+
103
+ /**
104
+ * Returns the data associated to the given document
105
+ * @private
106
+ * @param {Document} ownerDocument The document.
107
+ * @returns {Object} An object of data.
108
+ */
109
+ function getExpandoData(ownerDocument) {
110
+ var data = expandoData[ownerDocument[expando]];
111
+ if (!data) {
112
+ data = {};
113
+ expanID++;
114
+ ownerDocument[expando] = expanID;
115
+ expandoData[expanID] = data;
116
+ }
117
+ return data;
118
+ }
119
+
120
+ /**
121
+ * returns a shived element for the given nodeName and document
122
+ * @memberOf html5
123
+ * @param {String} nodeName name of the element
124
+ * @param {Document} ownerDocument The context document.
125
+ * @returns {Object} The shived element.
126
+ */
127
+ function createElement(nodeName, ownerDocument, data){
128
+ if (!ownerDocument) {
129
+ ownerDocument = document;
130
+ }
131
+ if(supportsUnknownElements){
132
+ return ownerDocument.createElement(nodeName);
133
+ }
134
+ if (!data) {
135
+ data = getExpandoData(ownerDocument);
136
+ }
137
+ var node;
138
+
139
+ if (data.cache[nodeName]) {
140
+ node = data.cache[nodeName].cloneNode();
141
+ } else if (saveClones.test(nodeName)) {
142
+ node = (data.cache[nodeName] = data.createElem(nodeName)).cloneNode();
143
+ } else {
144
+ node = data.createElem(nodeName);
145
+ }
146
+
147
+ // Avoid adding some elements to fragments in IE < 9 because
148
+ // * Attributes like `name` or `type` cannot be set/changed once an element
149
+ // is inserted into a document/fragment
150
+ // * Link elements with `src` attributes that are inaccessible, as with
151
+ // a 403 response, will cause the tab/window to crash
152
+ // * Script elements appended to fragments will execute when their `src`
153
+ // or `text` property is set
154
+ return node.canHaveChildren && !reSkip.test(nodeName) && !node.tagUrn ? data.frag.appendChild(node) : node;
155
+ }
156
+
157
+ /**
158
+ * returns a shived DocumentFragment for the given document
159
+ * @memberOf html5
160
+ * @param {Document} ownerDocument The context document.
161
+ * @returns {Object} The shived DocumentFragment.
162
+ */
163
+ function createDocumentFragment(ownerDocument, data){
164
+ if (!ownerDocument) {
165
+ ownerDocument = document;
166
+ }
167
+ if(supportsUnknownElements){
168
+ return ownerDocument.createDocumentFragment();
169
+ }
170
+ data = data || getExpandoData(ownerDocument);
171
+ var clone = data.frag.cloneNode(),
172
+ i = 0,
173
+ elems = getElements(),
174
+ l = elems.length;
175
+ for(;i<l;i++){
176
+ clone.createElement(elems[i]);
177
+ }
178
+ return clone;
179
+ }
180
+
181
+ /**
182
+ * Shivs the `createElement` and `createDocumentFragment` methods of the document.
183
+ * @private
184
+ * @param {Document|DocumentFragment} ownerDocument The document.
185
+ * @param {Object} data of the document.
186
+ */
187
+ function shivMethods(ownerDocument, data) {
188
+ if (!data.cache) {
189
+ data.cache = {};
190
+ data.createElem = ownerDocument.createElement;
191
+ data.createFrag = ownerDocument.createDocumentFragment;
192
+ data.frag = data.createFrag();
193
+ }
194
+
195
+
196
+ ownerDocument.createElement = function(nodeName) {
197
+ //abort shiv
198
+ if (!html5.shivMethods) {
199
+ return data.createElem(nodeName);
200
+ }
201
+ return createElement(nodeName, ownerDocument, data);
202
+ };
203
+
204
+ ownerDocument.createDocumentFragment = Function('h,f', 'return function(){' +
205
+ 'var n=f.cloneNode(),c=n.createElement;' +
206
+ 'h.shivMethods&&(' +
207
+ // unroll the `createElement` calls
208
+ getElements().join().replace(/[\w\-:]+/g, function(nodeName) {
209
+ data.createElem(nodeName);
210
+ data.frag.createElement(nodeName);
211
+ return 'c("' + nodeName + '")';
212
+ }) +
213
+ ');return n}'
214
+ )(html5, data.frag);
215
+ }
216
+
217
+ /*--------------------------------------------------------------------------*/
218
+
219
+ /**
220
+ * Shivs the given document.
221
+ * @memberOf html5
222
+ * @param {Document} ownerDocument The document to shiv.
223
+ * @returns {Document} The shived document.
224
+ */
225
+ function shivDocument(ownerDocument) {
226
+ if (!ownerDocument) {
227
+ ownerDocument = document;
228
+ }
229
+ var data = getExpandoData(ownerDocument);
230
+
231
+ if (html5.shivCSS && !supportsHtml5Styles && !data.hasCSS) {
232
+ data.hasCSS = !!addStyleSheet(ownerDocument,
233
+ // corrects block display not defined in IE6/7/8/9
234
+ 'article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}' +
235
+ // adds styling not present in IE6/7/8/9
236
+ 'mark{background:#FF0;color:#000}' +
237
+ // hides non-rendered elements
238
+ 'template{display:none}'
239
+ );
240
+ }
241
+ if (!supportsUnknownElements) {
242
+ shivMethods(ownerDocument, data);
243
+ }
244
+ return ownerDocument;
245
+ }
246
+
247
+ /*--------------------------------------------------------------------------*/
248
+
249
+ /**
250
+ * The `html5` object is exposed so that more elements can be shived and
251
+ * existing shiving can be detected on iframes.
252
+ * @type Object
253
+ * @example
254
+ *
255
+ * // options can be changed before the script is included
256
+ * html5 = { 'elements': 'mark section', 'shivCSS': false, 'shivMethods': false };
257
+ */
258
+ var html5 = {
259
+
260
+ /**
261
+ * An array or space separated string of node names of the elements to shiv.
262
+ * @memberOf html5
263
+ * @type Array|String
264
+ */
265
+ 'elements': options.elements || 'abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output picture progress section summary template time video',
266
+
267
+ /**
268
+ * current version of html5shiv
269
+ */
270
+ 'version': version,
271
+
272
+ /**
273
+ * A flag to indicate that the HTML5 style sheet should be inserted.
274
+ * @memberOf html5
275
+ * @type Boolean
276
+ */
277
+ 'shivCSS': (options.shivCSS !== false),
278
+
279
+ /**
280
+ * Is equal to true if a browser supports creating unknown/HTML5 elements
281
+ * @memberOf html5
282
+ * @type boolean
283
+ */
284
+ 'supportsUnknownElements': supportsUnknownElements,
285
+
286
+ /**
287
+ * A flag to indicate that the document's `createElement` and `createDocumentFragment`
288
+ * methods should be overwritten.
289
+ * @memberOf html5
290
+ * @type Boolean
291
+ */
292
+ 'shivMethods': (options.shivMethods !== false),
293
+
294
+ /**
295
+ * A string to describe the type of `html5` object ("default" or "default print").
296
+ * @memberOf html5
297
+ * @type String
298
+ */
299
+ 'type': 'default',
300
+
301
+ // shivs the document according to the specified `html5` object options
302
+ 'shivDocument': shivDocument,
303
+
304
+ //creates a shived element
305
+ createElement: createElement,
306
+
307
+ //creates a shived documentFragment
308
+ createDocumentFragment: createDocumentFragment,
309
+
310
+ //extends list of elements
311
+ addElements: addElements
312
+ };
313
+
314
+ /*--------------------------------------------------------------------------*/
315
+
316
+ // expose html5
317
+ window.html5 = html5;
318
+
319
+ // shiv the document
320
+ shivDocument(document);
321
+
322
+ /*------------------------------- Print Shiv -------------------------------*/
323
+
324
+ /** Used to filter media types */
325
+ var reMedia = /^$|\b(?:all|print)\b/;
326
+
327
+ /** Used to namespace printable elements */
328
+ var shivNamespace = 'html5shiv';
329
+
330
+ /** Detect whether the browser supports shivable style sheets */
331
+ var supportsShivableSheets = !supportsUnknownElements && (function() {
332
+ // assign a false negative if unable to shiv
333
+ var docEl = document.documentElement;
334
+ return !(
335
+ typeof document.namespaces == 'undefined' ||
336
+ typeof document.parentWindow == 'undefined' ||
337
+ typeof docEl.applyElement == 'undefined' ||
338
+ typeof docEl.removeNode == 'undefined' ||
339
+ typeof window.attachEvent == 'undefined'
340
+ );
341
+ }());
342
+
343
+ /*--------------------------------------------------------------------------*/
344
+
345
+ /**
346
+ * Wraps all HTML5 elements in the given document with printable elements.
347
+ * (eg. the "header" element is wrapped with the "html5shiv:header" element)
348
+ * @private
349
+ * @param {Document} ownerDocument The document.
350
+ * @returns {Array} An array wrappers added.
351
+ */
352
+ function addWrappers(ownerDocument) {
353
+ var node,
354
+ nodes = ownerDocument.getElementsByTagName('*'),
355
+ index = nodes.length,
356
+ reElements = RegExp('^(?:' + getElements().join('|') + ')$', 'i'),
357
+ result = [];
358
+
359
+ while (index--) {
360
+ node = nodes[index];
361
+ if (reElements.test(node.nodeName)) {
362
+ result.push(node.applyElement(createWrapper(node)));
363
+ }
364
+ }
365
+ return result;
366
+ }
367
+
368
+ /**
369
+ * Creates a printable wrapper for the given element.
370
+ * @private
371
+ * @param {Element} element The element.
372
+ * @returns {Element} The wrapper.
373
+ */
374
+ function createWrapper(element) {
375
+ var node,
376
+ nodes = element.attributes,
377
+ index = nodes.length,
378
+ wrapper = element.ownerDocument.createElement(shivNamespace + ':' + element.nodeName);
379
+
380
+ // copy element attributes to the wrapper
381
+ while (index--) {
382
+ node = nodes[index];
383
+ node.specified && wrapper.setAttribute(node.nodeName, node.nodeValue);
384
+ }
385
+ // copy element styles to the wrapper
386
+ wrapper.style.cssText = element.style.cssText;
387
+ return wrapper;
388
+ }
389
+
390
+ /**
391
+ * Shivs the given CSS text.
392
+ * (eg. header{} becomes html5shiv\:header{})
393
+ * @private
394
+ * @param {String} cssText The CSS text to shiv.
395
+ * @returns {String} The shived CSS text.
396
+ */
397
+ function shivCssText(cssText) {
398
+ var pair,
399
+ parts = cssText.split('{'),
400
+ index = parts.length,
401
+ reElements = RegExp('(^|[\\s,>+~])(' + getElements().join('|') + ')(?=[[\\s,>+~#.:]|$)', 'gi'),
402
+ replacement = '$1' + shivNamespace + '\\:$2';
403
+
404
+ while (index--) {
405
+ pair = parts[index] = parts[index].split('}');
406
+ pair[pair.length - 1] = pair[pair.length - 1].replace(reElements, replacement);
407
+ parts[index] = pair.join('}');
408
+ }
409
+ return parts.join('{');
410
+ }
411
+
412
+ /**
413
+ * Removes the given wrappers, leaving the original elements.
414
+ * @private
415
+ * @params {Array} wrappers An array of printable wrappers.
416
+ */
417
+ function removeWrappers(wrappers) {
418
+ var index = wrappers.length;
419
+ while (index--) {
420
+ wrappers[index].removeNode();
421
+ }
422
+ }
423
+
424
+ /*--------------------------------------------------------------------------*/
425
+
426
+ /**
427
+ * Shivs the given document for print.
428
+ * @memberOf html5
429
+ * @param {Document} ownerDocument The document to shiv.
430
+ * @returns {Document} The shived document.
431
+ */
432
+ function shivPrint(ownerDocument) {
433
+ var shivedSheet,
434
+ wrappers,
435
+ data = getExpandoData(ownerDocument),
436
+ namespaces = ownerDocument.namespaces,
437
+ ownerWindow = ownerDocument.parentWindow;
438
+
439
+ if (!supportsShivableSheets || ownerDocument.printShived) {
440
+ return ownerDocument;
441
+ }
442
+ if (typeof namespaces[shivNamespace] == 'undefined') {
443
+ namespaces.add(shivNamespace);
444
+ }
445
+
446
+ function removeSheet() {
447
+ clearTimeout(data._removeSheetTimer);
448
+ if (shivedSheet) {
449
+ shivedSheet.removeNode(true);
450
+ }
451
+ shivedSheet= null;
452
+ }
453
+
454
+ ownerWindow.attachEvent('onbeforeprint', function() {
455
+
456
+ removeSheet();
457
+
458
+ var imports,
459
+ length,
460
+ sheet,
461
+ collection = ownerDocument.styleSheets,
462
+ cssText = [],
463
+ index = collection.length,
464
+ sheets = Array(index);
465
+
466
+ // convert styleSheets collection to an array
467
+ while (index--) {
468
+ sheets[index] = collection[index];
469
+ }
470
+ // concat all style sheet CSS text
471
+ while ((sheet = sheets.pop())) {
472
+ // IE does not enforce a same origin policy for external style sheets...
473
+ // but has trouble with some dynamically created stylesheets
474
+ if (!sheet.disabled && reMedia.test(sheet.media)) {
475
+
476
+ try {
477
+ imports = sheet.imports;
478
+ length = imports.length;
479
+ } catch(er){
480
+ length = 0;
481
+ }
482
+
483
+ for (index = 0; index < length; index++) {
484
+ sheets.push(imports[index]);
485
+ }
486
+
487
+ try {
488
+ cssText.push(sheet.cssText);
489
+ } catch(er){}
490
+ }
491
+ }
492
+
493
+ // wrap all HTML5 elements with printable elements and add the shived style sheet
494
+ cssText = shivCssText(cssText.reverse().join(''));
495
+ wrappers = addWrappers(ownerDocument);
496
+ shivedSheet = addStyleSheet(ownerDocument, cssText);
497
+
498
+ });
499
+
500
+ ownerWindow.attachEvent('onafterprint', function() {
501
+ // remove wrappers, leaving the original elements, and remove the shived style sheet
502
+ removeWrappers(wrappers);
503
+ clearTimeout(data._removeSheetTimer);
504
+ data._removeSheetTimer = setTimeout(removeSheet, 500);
505
+ });
506
+
507
+ ownerDocument.printShived = true;
508
+ return ownerDocument;
509
+ }
510
+
511
+ /*--------------------------------------------------------------------------*/
512
+
513
+ // expose API
514
+ html5.type += ' print';
515
+ html5.shivPrint = shivPrint;
516
+
517
+ // shiv for print
518
+ shivPrint(document);
519
+
520
+ if(typeof module == 'object' && module.exports){
521
+ module.exports = html5;
522
+ }
523
+
524
+ }(typeof window !== "undefined" ? window : this, document));