jekyll-theme-hydebetty 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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,63 @@
1
+ // Copyright (c) 2019 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
+ body {
17
+ --code-font-family: #{$code-font-family};
18
+
19
+ --font-weight: #{$font-weight};
20
+ --font-weight-bold: #{$font-weight-bold};
21
+ --font-weight-heading: #{$font-weight-heading};
22
+
23
+ --text-muted: #{$gray};
24
+ --gray-bg: #{$gray-bg};
25
+ --gray-text: #{$gray-text};
26
+ --menu-text: #{$menu-text};
27
+ --body-color: #{$body-color};
28
+ --body-bg: #{$body-bg};
29
+ --border-color: #{$border-color};
30
+ }
31
+
32
+ @mixin aspect-ratio($width, $height) {
33
+ position: relative;
34
+
35
+ &::before {
36
+ display: block;
37
+ content: "";
38
+ width: 100%;
39
+ padding-top: ($height / $width) * 100%;
40
+ }
41
+
42
+ > * {
43
+ position: absolute;
44
+ top: 0;
45
+ left: 0;
46
+ right: 0;
47
+ bottom: 0;
48
+ }
49
+ }
50
+
51
+ .clearfix {
52
+ content: "";
53
+ display: table;
54
+ clear: both;
55
+ }
56
+
57
+ .color-transition {
58
+ transition: background-color 1s ease, border-color 1s ease;
59
+ }
60
+
61
+ .no-color-transition {
62
+ transition: none!important;
63
+ }
@@ -0,0 +1,286 @@
1
+ // Reboot
2
+ //
3
+ // Normalization of HTML elements, manually forked from Normalize.css to remove
4
+ // styles targeting irrelevant browsers while applying new styles.
5
+ //
6
+ // Normalize is licensed MIT. https://github.com/necolas/normalize.css
7
+
8
+
9
+ // Document
10
+ //
11
+ // 1. Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.
12
+ // 2. Change the default font family in all browsers.
13
+ // 3. Correct the line height in all browsers.
14
+ // 4. Prevent adjustments of font size after orientation changes in IE on Windows Phone and in iOS.
15
+ // 5. Setting @viewport causes scrollbars to overlap content in IE11 and Edge, so
16
+ // we force a non-overlapping, non-auto-hiding scrollbar to counteract.
17
+ // 6. Change the default tap highlight to be completely transparent in iOS.
18
+
19
+ *,
20
+ *::before,
21
+ *::after {
22
+ box-sizing: border-box; // 1
23
+ }
24
+
25
+ html {
26
+ -webkit-text-size-adjust: 100%; // 4
27
+ -ms-text-size-adjust: 100%; // 4
28
+ -ms-overflow-style: scrollbar; // 5
29
+ -webkit-tap-highlight-color: rgba(0,0,0,0); // 6
30
+ }
31
+
32
+ // IE10+ doesn't honor `<meta name="viewport">` in some cases.
33
+ @at-root {
34
+ @-ms-viewport { width: device-width; }
35
+ }
36
+
37
+ // Shim for "new" HTML5 structural elements to display correctly (IE10, older browsers)
38
+ article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
39
+ display: block;
40
+ }
41
+
42
+ // Suppress the focus outline on elements that cannot be accessed via keyboard.
43
+ // This prevents an unwanted focus outline from appearing around elements that
44
+ // might still respond to pointer events.
45
+ //
46
+ // Credit: https://github.com/suitcss/base
47
+ [tabindex="-1"]:focus {
48
+ outline: none !important;
49
+ }
50
+
51
+ // Abbreviations
52
+ //
53
+ // 1. Remove the bottom border in Firefox 39-.
54
+ // 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
55
+ // 3. Add explicit cursor to indicate changed behavior.
56
+ // 4. Duplicate behavior to the data-* attribute for our tooltip plugin
57
+
58
+ abbr[title],
59
+ abbr[data-original-title] { // 4
60
+ text-decoration: underline; // 2
61
+ text-decoration: underline dotted; // 2
62
+ cursor: help; // 3
63
+ border-bottom: 0; // 1
64
+ }
65
+
66
+ address {
67
+ margin-bottom: 1rem;
68
+ font-style: normal;
69
+ line-height: inherit;
70
+ }
71
+
72
+ //
73
+ // Images and content
74
+ //
75
+
76
+ img {
77
+ vertical-align: middle;
78
+ border-style: none; // Remove the border on images inside links in IE 10-.
79
+ }
80
+
81
+ svg:not(:root) {
82
+ overflow: hidden; // Hide the overflow in IE
83
+ }
84
+
85
+
86
+ // Avoid 300ms click delay on touch devices that support the `touch-action` CSS property.
87
+ //
88
+ // In particular, unlike most other browsers, IE11+Edge on Windows 10 on touch devices and IE Mobile 10-11
89
+ // DON'T remove the click delay when `<meta name="viewport" content="width=device-width">` is present.
90
+ // However, they DO support removing the click delay via `touch-action: manipulation`.
91
+ // See:
92
+ // * https://getbootstrap.com/docs/4.0/content/reboot/#click-delay-optimization-for-touch
93
+ // * http://caniuse.com/#feat=css-touch-action
94
+ // * https://patrickhlauke.github.io/touch/tests/results/#suppressing-300ms-delay
95
+
96
+ a,
97
+ area,
98
+ button,
99
+ [role="button"],
100
+ input:not([type=range]),
101
+ label,
102
+ select,
103
+ summary,
104
+ textarea {
105
+ touch-action: manipulation;
106
+ }
107
+
108
+ //
109
+ // Figures
110
+ //
111
+
112
+ figure {
113
+ // Apply a consistent margin strategy (matches our type styles).
114
+ margin: 0 0 1rem;
115
+ }
116
+
117
+ //
118
+ // Forms
119
+ //
120
+
121
+ label {
122
+ // Allow labels to use `margin` for spacing.
123
+ display: inline-block;
124
+ margin-bottom: .25rem;
125
+ }
126
+
127
+ // Work around a Firefox/IE bug where the transparent `button` background
128
+ // results in a loss of the default `button` focus styles.
129
+ //
130
+ // Credit: https://github.com/suitcss/base/
131
+ button:focus {
132
+ outline: 1px dotted;
133
+ outline: 5px auto -webkit-focus-ring-color;
134
+ }
135
+
136
+ input,
137
+ button,
138
+ select,
139
+ optgroup,
140
+ textarea {
141
+ margin: 0; // Remove the margin in Firefox and Safari
142
+ font-family: inherit;
143
+ font-size: inherit;
144
+ line-height: inherit;
145
+ }
146
+
147
+ button,
148
+ input {
149
+ overflow: visible; // Show the overflow in Edge
150
+ }
151
+
152
+ button,
153
+ select {
154
+ text-transform: none; // Remove the inheritance of text transform in Firefox
155
+ }
156
+
157
+ // 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
158
+ // controls in Android 4.
159
+ // 2. Correct the inability to style clickable types in iOS and Safari.
160
+ button,
161
+ html [type="button"], // 1
162
+ [type="reset"],
163
+ [type="submit"] {
164
+ -webkit-appearance: button; // 2
165
+ }
166
+
167
+ // Remove inner border and padding from Firefox, but don't restore the outline like Normalize.
168
+ button::-moz-focus-inner,
169
+ [type="button"]::-moz-focus-inner,
170
+ [type="reset"]::-moz-focus-inner,
171
+ [type="submit"]::-moz-focus-inner {
172
+ padding: 0;
173
+ border-style: none;
174
+ }
175
+
176
+ input[type="radio"],
177
+ input[type="checkbox"] {
178
+ box-sizing: border-box; // 1. Add the correct box sizing in IE 10-
179
+ padding: 0; // 2. Remove the padding in IE 10-
180
+ }
181
+
182
+
183
+ input[type="date"],
184
+ input[type="time"],
185
+ input[type="datetime-local"],
186
+ input[type="month"] {
187
+ // Remove the default appearance of temporal inputs to avoid a Mobile Safari
188
+ // bug where setting a custom line-height prevents text from being vertically
189
+ // centered within the input.
190
+ // See https://bugs.webkit.org/show_bug.cgi?id=139848
191
+ // and https://github.com/twbs/bootstrap/issues/11266
192
+ -webkit-appearance: listbox;
193
+ }
194
+
195
+ textarea {
196
+ overflow: auto; // Remove the default vertical scrollbar in IE.
197
+ // Textareas should really only resize vertically so they don't break their (horizontal) containers.
198
+ resize: vertical;
199
+ }
200
+
201
+ fieldset {
202
+ // Browsers set a default `min-width: min-content;` on fieldsets,
203
+ // unlike e.g. `<div>`s, which have `min-width: 0;` by default.
204
+ // So we reset that to ensure fieldsets behave more like a standard block element.
205
+ // See https://github.com/twbs/bootstrap/issues/12359
206
+ // and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements
207
+ min-width: 0;
208
+ // Reset the default outline behavior of fieldsets so they don't affect page layout.
209
+ padding: 0;
210
+ margin: 0;
211
+ border: 0;
212
+ }
213
+
214
+ // 1. Correct the text wrapping in Edge and IE.
215
+ // 2. Correct the color inheritance from `fieldset` elements in IE.
216
+ legend {
217
+ display: block;
218
+ width: 100%;
219
+ max-width: 100%; // 1
220
+ padding: 0;
221
+ margin-bottom: .5rem;
222
+ font-size: 1.5rem;
223
+ line-height: inherit;
224
+ color: inherit; // 2
225
+ white-space: normal; // 1
226
+ }
227
+
228
+ progress {
229
+ vertical-align: baseline; // Add the correct vertical alignment in Chrome, Firefox, and Opera.
230
+ }
231
+
232
+ // Correct the cursor style of increment and decrement buttons in Chrome.
233
+ [type="number"]::-webkit-inner-spin-button,
234
+ [type="number"]::-webkit-outer-spin-button {
235
+ height: auto;
236
+ }
237
+
238
+ [type="search"] {
239
+ // This overrides the extra rounded corners on search inputs in iOS so that our
240
+ // `.form-control` class can properly style them. Note that this cannot simply
241
+ // be added to `.form-control` as it's not specific enough. For details, see
242
+ // https://github.com/twbs/bootstrap/issues/11586.
243
+ outline-offset: -2px; // 2. Correct the outline style in Safari.
244
+ -webkit-appearance: none;
245
+ }
246
+
247
+ //
248
+ // Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
249
+ //
250
+
251
+ [type="search"]::-webkit-search-cancel-button,
252
+ [type="search"]::-webkit-search-decoration {
253
+ -webkit-appearance: none;
254
+ }
255
+
256
+ //
257
+ // 1. Correct the inability to style clickable types in iOS and Safari.
258
+ // 2. Change font properties to `inherit` in Safari.
259
+ //
260
+
261
+ ::-webkit-file-upload-button {
262
+ font: inherit; // 2
263
+ -webkit-appearance: button; // 1
264
+ }
265
+
266
+ //
267
+ // Correct element displays
268
+ //
269
+
270
+ output {
271
+ display: inline-block;
272
+ }
273
+
274
+ summary {
275
+ display: list-item; // Add the correct display in all browsers
276
+ }
277
+
278
+ template {
279
+ display: none; // Add the correct display in IE
280
+ }
281
+
282
+ // Always hide an element with the `hidden` HTML attribute (from PureCSS).
283
+ // Needed for proper display in IE 10-.
284
+ [hidden] {
285
+ display: none !important;
286
+ }
@@ -0,0 +1,45 @@
1
+ // Copyright (c) 2019 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
+ .loading > [class*="icon-"] {
17
+ display: inline-block;
18
+ -webkit-animation: rotate 2s infinite linear both;
19
+ animation: rotate 2s infinite linear both;
20
+ -webkit-transform-origin: 50% 50%;
21
+ -ms-transform-origin: 50% 50%;
22
+ transform-origin: 50% 50%;
23
+ }
24
+
25
+ @-webkit-keyframes rotate {
26
+ 0% {
27
+ -webkit-transform: rotateZ(0);
28
+ transform: rotateZ(0);
29
+ }
30
+ 100% {
31
+ -webkit-transform: rotateZ(360deg);
32
+ transform: rotateZ(360deg);
33
+ }
34
+ }
35
+
36
+ @keyframes rotate {
37
+ 0% {
38
+ -webkit-transform: rotateZ(0);
39
+ transform: rotateZ(0);
40
+ }
41
+ 100% {
42
+ -webkit-transform: rotateZ(360deg);
43
+ transform: rotateZ(360deg);
44
+ }
45
+ }
@@ -0,0 +1,131 @@
1
+ .highlight,
2
+ pre.highlight {
3
+ // background: #fafafa;
4
+ color: #383a42;
5
+ }
6
+ .highlight pre {
7
+ // background: #fafafa;
8
+ }
9
+ .highlight .ge {
10
+ font-style: italic;
11
+ }
12
+ .highlight .gs {
13
+ font-weight: 700;
14
+ }
15
+ .highlight .ow {
16
+ font-weight: 700;
17
+ }
18
+ .highlight .n,
19
+ .highlight .nf,
20
+ .highlight .nn,
21
+ .highlight .o,
22
+ .highlight .p {
23
+ color: #383a42;
24
+ }
25
+ .highlight .c,
26
+ .highlight .c1,
27
+ .highlight .cm,
28
+ .highlight .cp,
29
+ .highlight .cs {
30
+ color: #a0a1a7;
31
+ font-style: italic;
32
+ }
33
+ .highlight .sr,
34
+ .highlight .ss {
35
+ color: #0184bc;
36
+ }
37
+ .highlight .k,
38
+ .highlight .kc,
39
+ .highlight .kd,
40
+ .highlight .kn,
41
+ .highlight .kp,
42
+ .highlight .kr,
43
+ .highlight .kt {
44
+ color: #a626a4;
45
+ }
46
+ .highlight .l,
47
+ .highlight .ld,
48
+ .highlight .s,
49
+ .highlight .s1,
50
+ .highlight .s2,
51
+ .highlight .sb,
52
+ .highlight .sc,
53
+ .highlight .sd,
54
+ .highlight .se,
55
+ .highlight .sh,
56
+ .highlight .si,
57
+ .highlight .sx {
58
+ color: #50a14f;
59
+ }
60
+ .highlight .nt,
61
+ .highlight .nx,
62
+ .highlight .vi {
63
+ color: #e45649;
64
+ }
65
+ .highlight .il,
66
+ .highlight .m,
67
+ .highlight .mf,
68
+ .highlight .mh,
69
+ .highlight .mi,
70
+ .highlight .mo,
71
+ .highlight .na {
72
+ color: #986801;
73
+ }
74
+ .highlight .bp,
75
+ .highlight .nb,
76
+ .highlight .nc,
77
+ .highlight .nd,
78
+ .highlight .ne,
79
+ .highlight .ni,
80
+ .highlight .nl,
81
+ .highlight .no,
82
+ .highlight .nv,
83
+ .highlight .py,
84
+ .highlight .vc,
85
+ .highlight .vg {
86
+ color: #c18401;
87
+ }
88
+ // .highlight .err {
89
+ // color: #fff;
90
+ // background-color: #ff1414;
91
+ // }
92
+ .highlight .gd {
93
+ color: #ff1414;
94
+ }
95
+ .highlight .gi {
96
+ color: #2db448;
97
+ }
98
+ .highlight .w {
99
+ color: #f8f8f2;
100
+ }
101
+ .highlight .cpf {
102
+ color: navy;
103
+ }
104
+ .highlight .gu {
105
+ color: #75715e;
106
+ }
107
+ .highlight .lineno {
108
+ color: #9d9d9f;
109
+ user-select: none;
110
+ }
111
+ .highlight .ln {
112
+ color: #9d9d9f;
113
+ user-select: none;
114
+ }
115
+ .highlight .ln:after {
116
+ content: " ";
117
+ }
118
+ .highlight .hll {
119
+ color: #383a42;
120
+ background-color: #e5e5e6;
121
+ }
122
+ .highlight .hl {
123
+ color: #383a42;
124
+ background-color: #e5e5e6;
125
+ }
126
+ .highlight .language-json .w + .s2 {
127
+ color: #e45649;
128
+ }
129
+ .highlight .language-json .kc {
130
+ color: #0184bc;
131
+ }