fuzzy-theme 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (47) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +21 -0
  3. data/README.md +1 -0
  4. data/_includes/bootstrap.html +41 -0
  5. data/_includes/footer.html +20 -0
  6. data/_includes/header.html +35 -0
  7. data/_layouts/default.html +12 -0
  8. data/_layouts/home.html +34 -0
  9. data/_layouts/page.html +25 -0
  10. data/_sass/_syntax-highlighting.scss +71 -0
  11. data/assets/css/fa-brands.min.css +5 -0
  12. data/assets/css/fa-regular.min.css +5 -0
  13. data/assets/css/fa-solid.min.css +5 -0
  14. data/assets/css/fontawesome-all.min.css +5 -0
  15. data/assets/css/fontawesome.min.css +5 -0
  16. data/assets/css/ihover.min.css +1 -0
  17. data/assets/css/main.min.css +1 -0
  18. data/assets/css/material-icons.min.css +1 -0
  19. data/assets/css/materialize.min.css +13 -0
  20. data/assets/js/jquery-3.3.1.min.js +2 -0
  21. data/assets/js/materialize.min.js +6 -0
  22. data/assets/less/fa-brands.less +21 -0
  23. data/assets/less/fa-regular.less +22 -0
  24. data/assets/less/fa-solid.less +23 -0
  25. data/assets/less/fontawesome.less +16 -0
  26. data/assets/main.scss +12 -0
  27. data/assets/scss/fa-brands.scss +21 -0
  28. data/assets/scss/fa-regular.scss +22 -0
  29. data/assets/scss/fa-solid.scss +23 -0
  30. data/assets/scss/fontawesome.scss +16 -0
  31. data/assets/webfonts/fa-brands-400.eot +0 -0
  32. data/assets/webfonts/fa-brands-400.svg +1104 -0
  33. data/assets/webfonts/fa-brands-400.ttf +0 -0
  34. data/assets/webfonts/fa-brands-400.woff +0 -0
  35. data/assets/webfonts/fa-brands-400.woff2 +0 -0
  36. data/assets/webfonts/fa-regular-400.eot +0 -0
  37. data/assets/webfonts/fa-regular-400.svg +372 -0
  38. data/assets/webfonts/fa-regular-400.ttf +0 -0
  39. data/assets/webfonts/fa-regular-400.woff +0 -0
  40. data/assets/webfonts/fa-regular-400.woff2 +0 -0
  41. data/assets/webfonts/fa-solid-900.eot +0 -0
  42. data/assets/webfonts/fa-solid-900.svg +1896 -0
  43. data/assets/webfonts/fa-solid-900.ttf +0 -0
  44. data/assets/webfonts/fa-solid-900.woff +0 -0
  45. data/assets/webfonts/fa-solid-900.woff2 +0 -0
  46. data/assets/webfonts/material-icons.woff2 +0 -0
  47. metadata +146 -0
@@ -0,0 +1,21 @@
1
+ /*!
2
+ * Font Awesome Free 5.0.13 by @fontawesome - https://fontawesome.com
3
+ * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4
+ */
5
+ @import 'variables';
6
+
7
+ @font-face {
8
+ font-family: 'Font Awesome 5 Brands';
9
+ font-style: normal;
10
+ font-weight: normal;
11
+ src: url('#{$fa-font-path}/fa-brands-400.eot');
12
+ src: url('#{$fa-font-path}/fa-brands-400.eot?#iefix') format('embedded-opentype'),
13
+ url('#{$fa-font-path}/fa-brands-400.woff2') format('woff2'),
14
+ url('#{$fa-font-path}/fa-brands-400.woff') format('woff'),
15
+ url('#{$fa-font-path}/fa-brands-400.ttf') format('truetype'),
16
+ url('#{$fa-font-path}/fa-brands-400.svg#fontawesome') format('svg');
17
+ }
18
+
19
+ .fab {
20
+ font-family: 'Font Awesome 5 Brands';
21
+ }
@@ -0,0 +1,22 @@
1
+ /*!
2
+ * Font Awesome Free 5.0.13 by @fontawesome - https://fontawesome.com
3
+ * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4
+ */
5
+ @import 'variables';
6
+
7
+ @font-face {
8
+ font-family: 'Font Awesome 5 Free';
9
+ font-style: normal;
10
+ font-weight: 400;
11
+ src: url('#{$fa-font-path}/fa-regular-400.eot');
12
+ src: url('#{$fa-font-path}/fa-regular-400.eot?#iefix') format('embedded-opentype'),
13
+ url('#{$fa-font-path}/fa-regular-400.woff2') format('woff2'),
14
+ url('#{$fa-font-path}/fa-regular-400.woff') format('woff'),
15
+ url('#{$fa-font-path}/fa-regular-400.ttf') format('truetype'),
16
+ url('#{$fa-font-path}/fa-regular-400.svg#fontawesome') format('svg');
17
+ }
18
+
19
+ .far {
20
+ font-family: 'Font Awesome 5 Free';
21
+ font-weight: 400;
22
+ }
@@ -0,0 +1,23 @@
1
+ /*!
2
+ * Font Awesome Free 5.0.13 by @fontawesome - https://fontawesome.com
3
+ * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4
+ */
5
+ @import 'variables';
6
+
7
+ @font-face {
8
+ font-family: 'Font Awesome 5 Free';
9
+ font-style: normal;
10
+ font-weight: 900;
11
+ src: url('#{$fa-font-path}/fa-solid-900.eot');
12
+ src: url('#{$fa-font-path}/fa-solid-900.eot?#iefix') format('embedded-opentype'),
13
+ url('#{$fa-font-path}/fa-solid-900.woff2') format('woff2'),
14
+ url('#{$fa-font-path}/fa-solid-900.woff') format('woff'),
15
+ url('#{$fa-font-path}/fa-solid-900.ttf') format('truetype'),
16
+ url('#{$fa-font-path}/fa-solid-900.svg#fontawesome') format('svg');
17
+ }
18
+
19
+ .fa,
20
+ .fas {
21
+ font-family: 'Font Awesome 5 Free';
22
+ font-weight: 900;
23
+ }
@@ -0,0 +1,16 @@
1
+ /*!
2
+ * Font Awesome Free 5.0.13 by @fontawesome - https://fontawesome.com
3
+ * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4
+ */
5
+ @import 'variables';
6
+ @import 'mixins';
7
+ @import 'core';
8
+ @import 'larger';
9
+ @import 'fixed-width';
10
+ @import 'list';
11
+ @import 'bordered-pulled';
12
+ @import 'animated';
13
+ @import 'rotated-flipped';
14
+ @import 'stacked';
15
+ @import 'icons';
16
+ @import 'screen-reader';
Binary file