jekyll-theme-fos 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (170) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +66 -0
  4. data/_config.yml +47 -0
  5. data/_data/analytics.yml +6 -0
  6. data/_data/comments.yml +4 -0
  7. data/_data/navigation.yml +5 -0
  8. data/_data/posts.yml +1 -0
  9. data/_data/social-networks.yml +67 -0
  10. data/_data/theme.yml +17 -0
  11. data/_includes/body-end.html +12 -0
  12. data/_includes/body-start.html +1 -0
  13. data/_includes/comments.html +5 -0
  14. data/_includes/copyright.html +3 -0
  15. data/_includes/date.html +1 -0
  16. data/_includes/disqus.html +28 -0
  17. data/_includes/facebook-og.html +10 -0
  18. data/_includes/footer.html +8 -0
  19. data/_includes/google-tm-body.html +11 -0
  20. data/_includes/google-tm-gtag.html +12 -0
  21. data/_includes/google-tm-head.html +11 -0
  22. data/_includes/head.html +40 -0
  23. data/_includes/image.html +8 -0
  24. data/_includes/menu-icon.html +5 -0
  25. data/_includes/meta.html +5 -0
  26. data/_includes/navigation.html +15 -0
  27. data/_includes/page-title.html +5 -0
  28. data/_includes/post-title.html +14 -0
  29. data/_includes/share.html +10 -0
  30. data/_includes/social-icons.html +10 -0
  31. data/_includes/subscribe-form.html +7 -0
  32. data/_includes/tags.html +7 -0
  33. data/_includes/top-bar.html +10 -0
  34. data/_includes/twitter-summary.html +7 -0
  35. data/_layouts/base.html +30 -0
  36. data/_layouts/page.html +22 -0
  37. data/_layouts/post.html +21 -0
  38. data/_sass/.DS_Store +0 -0
  39. data/_sass/_highlight.scss +13 -0
  40. data/_sass/_typography.scss +271 -0
  41. data/_sass/bootstrap/_alert.scss +51 -0
  42. data/_sass/bootstrap/_badge.scss +53 -0
  43. data/_sass/bootstrap/_breadcrumb.scss +41 -0
  44. data/_sass/bootstrap/_button-group.scss +163 -0
  45. data/_sass/bootstrap/_buttons.scss +140 -0
  46. data/_sass/bootstrap/_card.scss +310 -0
  47. data/_sass/bootstrap/_carousel.scss +198 -0
  48. data/_sass/bootstrap/_close.scss +44 -0
  49. data/_sass/bootstrap/_code.scss +48 -0
  50. data/_sass/bootstrap/_custom-forms.scss +507 -0
  51. data/_sass/bootstrap/_dropdown.scss +191 -0
  52. data/_sass/bootstrap/_forms.scss +334 -0
  53. data/_sass/bootstrap/_functions.scss +86 -0
  54. data/_sass/bootstrap/_grid.scss +52 -0
  55. data/_sass/bootstrap/_images.scss +42 -0
  56. data/_sass/bootstrap/_input-group.scss +193 -0
  57. data/_sass/bootstrap/_jumbotron.scss +16 -0
  58. data/_sass/bootstrap/_list-group.scss +121 -0
  59. data/_sass/bootstrap/_media.scss +8 -0
  60. data/_sass/bootstrap/_mixins.scss +41 -0
  61. data/_sass/bootstrap/_modal.scss +186 -0
  62. data/_sass/bootstrap/_nav.scss +120 -0
  63. data/_sass/bootstrap/_navbar.scss +299 -0
  64. data/_sass/bootstrap/_pagination.scss +78 -0
  65. data/_sass/bootstrap/_popover.scss +183 -0
  66. data/_sass/bootstrap/_print.scss +141 -0
  67. data/_sass/bootstrap/_progress.scss +34 -0
  68. data/_sass/bootstrap/_reboot.scss +462 -0
  69. data/_sass/bootstrap/_root.scss +19 -0
  70. data/_sass/bootstrap/_spinners.scss +53 -0
  71. data/_sass/bootstrap/_tables.scss +187 -0
  72. data/_sass/bootstrap/_toasts.scss +43 -0
  73. data/_sass/bootstrap/_tooltip.scss +115 -0
  74. data/_sass/bootstrap/_transitions.scss +22 -0
  75. data/_sass/bootstrap/_type.scss +125 -0
  76. data/_sass/bootstrap/_utilities.scss +16 -0
  77. data/_sass/bootstrap/_variables.scss +1091 -0
  78. data/_sass/bootstrap/bootstrap-grid.scss +29 -0
  79. data/_sass/bootstrap/bootstrap-reboot.scss +12 -0
  80. data/_sass/bootstrap/bootstrap.scss +44 -0
  81. data/_sass/bootstrap/mixins/_alert.scss +13 -0
  82. data/_sass/bootstrap/mixins/_background-variant.scss +21 -0
  83. data/_sass/bootstrap/mixins/_badge.scss +11 -0
  84. data/_sass/bootstrap/mixins/_border-radius.scss +35 -0
  85. data/_sass/bootstrap/mixins/_box-shadow.scss +5 -0
  86. data/_sass/bootstrap/mixins/_breakpoints.scss +123 -0
  87. data/_sass/bootstrap/mixins/_buttons.scss +111 -0
  88. data/_sass/bootstrap/mixins/_caret.scss +62 -0
  89. data/_sass/bootstrap/mixins/_clearfix.scss +7 -0
  90. data/_sass/bootstrap/mixins/_float.scss +11 -0
  91. data/_sass/bootstrap/mixins/_forms.scss +198 -0
  92. data/_sass/bootstrap/mixins/_gradients.scss +45 -0
  93. data/_sass/bootstrap/mixins/_grid-framework.scss +66 -0
  94. data/_sass/bootstrap/mixins/_grid.scss +51 -0
  95. data/_sass/bootstrap/mixins/_hover.scss +37 -0
  96. data/_sass/bootstrap/mixins/_image.scss +36 -0
  97. data/_sass/bootstrap/mixins/_list-group.scss +21 -0
  98. data/_sass/bootstrap/mixins/_lists.scss +7 -0
  99. data/_sass/bootstrap/mixins/_nav-divider.scss +10 -0
  100. data/_sass/bootstrap/mixins/_pagination.scss +22 -0
  101. data/_sass/bootstrap/mixins/_reset-text.scss +17 -0
  102. data/_sass/bootstrap/mixins/_resize.scss +6 -0
  103. data/_sass/bootstrap/mixins/_screen-reader.scss +33 -0
  104. data/_sass/bootstrap/mixins/_size.scss +6 -0
  105. data/_sass/bootstrap/mixins/_table-row.scss +39 -0
  106. data/_sass/bootstrap/mixins/_text-emphasis.scss +14 -0
  107. data/_sass/bootstrap/mixins/_text-hide.scss +13 -0
  108. data/_sass/bootstrap/mixins/_text-truncate.scss +8 -0
  109. data/_sass/bootstrap/mixins/_transition.scss +16 -0
  110. data/_sass/bootstrap/mixins/_visibility.scss +7 -0
  111. data/_sass/bootstrap/utilities/_align.scss +8 -0
  112. data/_sass/bootstrap/utilities/_background.scss +19 -0
  113. data/_sass/bootstrap/utilities/_borders.scss +63 -0
  114. data/_sass/bootstrap/utilities/_clearfix.scss +3 -0
  115. data/_sass/bootstrap/utilities/_display.scss +38 -0
  116. data/_sass/bootstrap/utilities/_embed.scss +39 -0
  117. data/_sass/bootstrap/utilities/_flex.scss +51 -0
  118. data/_sass/bootstrap/utilities/_float.scss +9 -0
  119. data/_sass/bootstrap/utilities/_overflow.scss +5 -0
  120. data/_sass/bootstrap/utilities/_position.scss +32 -0
  121. data/_sass/bootstrap/utilities/_screenreaders.scss +11 -0
  122. data/_sass/bootstrap/utilities/_shadows.scss +6 -0
  123. data/_sass/bootstrap/utilities/_sizing.scss +20 -0
  124. data/_sass/bootstrap/utilities/_spacing.scss +73 -0
  125. data/_sass/bootstrap/utilities/_text.scss +67 -0
  126. data/_sass/bootstrap/utilities/_visibility.scss +11 -0
  127. data/assets/css/.DS_Store +0 -0
  128. data/assets/css/fontisto.min.css +5 -0
  129. data/assets/css/fonts.css +45 -0
  130. data/assets/css/style.scss +529 -0
  131. data/assets/fonts/.DS_Store +0 -0
  132. data/assets/fonts/et-book/.DS_Store +0 -0
  133. data/assets/fonts/et-book/et-book-bold-line-figures/et-book-bold-line-figures.eot +0 -0
  134. data/assets/fonts/et-book/et-book-bold-line-figures/et-book-bold-line-figures.svg +243 -0
  135. data/assets/fonts/et-book/et-book-bold-line-figures/et-book-bold-line-figures.ttf +0 -0
  136. data/assets/fonts/et-book/et-book-bold-line-figures/et-book-bold-line-figures.woff +0 -0
  137. data/assets/fonts/et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.eot +0 -0
  138. data/assets/fonts/et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.svg +244 -0
  139. data/assets/fonts/et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.ttf +0 -0
  140. data/assets/fonts/et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.woff +0 -0
  141. data/assets/fonts/et-book/et-book-roman-line-figures/et-book-roman-line-figures.eot +0 -0
  142. data/assets/fonts/et-book/et-book-roman-line-figures/et-book-roman-line-figures.svg +244 -0
  143. data/assets/fonts/et-book/et-book-roman-line-figures/et-book-roman-line-figures.ttf +0 -0
  144. data/assets/fonts/et-book/et-book-roman-line-figures/et-book-roman-line-figures.woff +0 -0
  145. data/assets/fonts/et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.eot +0 -0
  146. data/assets/fonts/et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.svg +244 -0
  147. data/assets/fonts/et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.ttf +0 -0
  148. data/assets/fonts/et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.woff +0 -0
  149. data/assets/fonts/et-book/et-book-semi-bold-old-style-figures/et-book-semi-bold-old-style-figures.eot +0 -0
  150. data/assets/fonts/et-book/et-book-semi-bold-old-style-figures/et-book-semi-bold-old-style-figures.svg +243 -0
  151. data/assets/fonts/et-book/et-book-semi-bold-old-style-figures/et-book-semi-bold-old-style-figures.ttf +0 -0
  152. data/assets/fonts/et-book/et-book-semi-bold-old-style-figures/et-book-semi-bold-old-style-figures.woff +0 -0
  153. data/assets/fonts/fontisto/fontisto.ttf +0 -0
  154. data/assets/fonts/icons/.DS_Store +0 -0
  155. data/assets/fonts/icons/ARROW.svg +9 -0
  156. data/assets/fonts/icons/HAMBURGER MENU.svg +9 -0
  157. data/assets/fonts/icons/d91782eeaa98bfeb4e950cd7dd135027.svg +3 -0
  158. data/assets/fonts/icons/ef3920d8d3ea164b058f52ab55f5ca11.html +4 -0
  159. data/assets/fonts/icons/facebook.svg +1 -0
  160. data/assets/fonts/icons/github (2).svg +1 -0
  161. data/assets/fonts/icons/menu.svg +3 -0
  162. data/assets/fonts/icons/method-draw-image.svg +0 -0
  163. data/assets/fonts/icons/so-icon.html +139 -0
  164. data/assets/fonts/icons/user.svg +0 -0
  165. data/assets/img/.DS_Store +0 -0
  166. data/assets/js/bootstrap.min.js +7 -0
  167. data/assets/js/jquery-3.3.1.min.js +2 -0
  168. data/assets/js/main.js +91 -0
  169. data/assets/js/popper.min.js +5 -0
  170. metadata +309 -0
@@ -0,0 +1,9 @@
1
+ @each $breakpoint in map-keys($grid-breakpoints) {
2
+ @include media-breakpoint-up($breakpoint) {
3
+ $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
4
+
5
+ .float#{$infix}-left { @include float-left; }
6
+ .float#{$infix}-right { @include float-right; }
7
+ .float#{$infix}-none { @include float-none; }
8
+ }
9
+ }
@@ -0,0 +1,5 @@
1
+ // stylelint-disable declaration-no-important
2
+
3
+ @each $value in $overflows {
4
+ .overflow-#{$value} { overflow: $value !important; }
5
+ }
@@ -0,0 +1,32 @@
1
+ // stylelint-disable declaration-no-important
2
+
3
+ // Common values
4
+ @each $position in $positions {
5
+ .position-#{$position} { position: $position !important; }
6
+ }
7
+
8
+ // Shorthand
9
+
10
+ .fixed-top {
11
+ position: fixed;
12
+ top: 0;
13
+ right: 0;
14
+ left: 0;
15
+ z-index: $zindex-fixed;
16
+ }
17
+
18
+ .fixed-bottom {
19
+ position: fixed;
20
+ right: 0;
21
+ bottom: 0;
22
+ left: 0;
23
+ z-index: $zindex-fixed;
24
+ }
25
+
26
+ .sticky-top {
27
+ @supports (position: sticky) {
28
+ position: sticky;
29
+ top: 0;
30
+ z-index: $zindex-sticky;
31
+ }
32
+ }
@@ -0,0 +1,11 @@
1
+ //
2
+ // Screenreaders
3
+ //
4
+
5
+ .sr-only {
6
+ @include sr-only();
7
+ }
8
+
9
+ .sr-only-focusable {
10
+ @include sr-only-focusable();
11
+ }
@@ -0,0 +1,6 @@
1
+ // stylelint-disable declaration-no-important
2
+
3
+ .shadow-sm { box-shadow: $box-shadow-sm !important; }
4
+ .shadow { box-shadow: $box-shadow !important; }
5
+ .shadow-lg { box-shadow: $box-shadow-lg !important; }
6
+ .shadow-none { box-shadow: none !important; }
@@ -0,0 +1,20 @@
1
+ // stylelint-disable declaration-no-important
2
+
3
+ // Width and height
4
+
5
+ @each $prop, $abbrev in (width: w, height: h) {
6
+ @each $size, $length in $sizes {
7
+ .#{$abbrev}-#{$size} { #{$prop}: $length !important; }
8
+ }
9
+ }
10
+
11
+ .mw-100 { max-width: 100% !important; }
12
+ .mh-100 { max-height: 100% !important; }
13
+
14
+ // Viewport additional helpers
15
+
16
+ .min-vw-100 { min-width: 100vw !important; }
17
+ .min-vh-100 { min-height: 100vh !important; }
18
+
19
+ .vw-100 { width: 100vw !important; }
20
+ .vh-100 { height: 100vh !important; }
@@ -0,0 +1,73 @@
1
+ // stylelint-disable declaration-no-important
2
+
3
+ // Margin and Padding
4
+
5
+ @each $breakpoint in map-keys($grid-breakpoints) {
6
+ @include media-breakpoint-up($breakpoint) {
7
+ $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
8
+
9
+ @each $prop, $abbrev in (margin: m, padding: p) {
10
+ @each $size, $length in $spacers {
11
+ .#{$abbrev}#{$infix}-#{$size} { #{$prop}: $length !important; }
12
+ .#{$abbrev}t#{$infix}-#{$size},
13
+ .#{$abbrev}y#{$infix}-#{$size} {
14
+ #{$prop}-top: $length !important;
15
+ }
16
+ .#{$abbrev}r#{$infix}-#{$size},
17
+ .#{$abbrev}x#{$infix}-#{$size} {
18
+ #{$prop}-right: $length !important;
19
+ }
20
+ .#{$abbrev}b#{$infix}-#{$size},
21
+ .#{$abbrev}y#{$infix}-#{$size} {
22
+ #{$prop}-bottom: $length !important;
23
+ }
24
+ .#{$abbrev}l#{$infix}-#{$size},
25
+ .#{$abbrev}x#{$infix}-#{$size} {
26
+ #{$prop}-left: $length !important;
27
+ }
28
+ }
29
+ }
30
+
31
+ // Negative margins (e.g., where `.mb-n1` is negative version of `.mb-1`)
32
+ @each $size, $length in $spacers {
33
+ @if $size != 0 {
34
+ .m#{$infix}-n#{$size} { margin: -$length !important; }
35
+ .mt#{$infix}-n#{$size},
36
+ .my#{$infix}-n#{$size} {
37
+ margin-top: -$length !important;
38
+ }
39
+ .mr#{$infix}-n#{$size},
40
+ .mx#{$infix}-n#{$size} {
41
+ margin-right: -$length !important;
42
+ }
43
+ .mb#{$infix}-n#{$size},
44
+ .my#{$infix}-n#{$size} {
45
+ margin-bottom: -$length !important;
46
+ }
47
+ .ml#{$infix}-n#{$size},
48
+ .mx#{$infix}-n#{$size} {
49
+ margin-left: -$length !important;
50
+ }
51
+ }
52
+ }
53
+
54
+ // Some special margin utils
55
+ .m#{$infix}-auto { margin: auto !important; }
56
+ .mt#{$infix}-auto,
57
+ .my#{$infix}-auto {
58
+ margin-top: auto !important;
59
+ }
60
+ .mr#{$infix}-auto,
61
+ .mx#{$infix}-auto {
62
+ margin-right: auto !important;
63
+ }
64
+ .mb#{$infix}-auto,
65
+ .my#{$infix}-auto {
66
+ margin-bottom: auto !important;
67
+ }
68
+ .ml#{$infix}-auto,
69
+ .mx#{$infix}-auto {
70
+ margin-left: auto !important;
71
+ }
72
+ }
73
+ }
@@ -0,0 +1,67 @@
1
+ // stylelint-disable declaration-no-important
2
+
3
+ //
4
+ // Text
5
+ //
6
+
7
+ .text-monospace { font-family: $font-family-monospace; }
8
+
9
+ // Alignment
10
+
11
+ .text-justify { text-align: justify !important; }
12
+ .text-wrap { white-space: normal !important; }
13
+ .text-nowrap { white-space: nowrap !important; }
14
+ .text-truncate { @include text-truncate; }
15
+
16
+ // Responsive alignment
17
+
18
+ @each $breakpoint in map-keys($grid-breakpoints) {
19
+ @include media-breakpoint-up($breakpoint) {
20
+ $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
21
+
22
+ .text#{$infix}-left { text-align: left !important; }
23
+ .text#{$infix}-right { text-align: right !important; }
24
+ .text#{$infix}-center { text-align: center !important; }
25
+ }
26
+ }
27
+
28
+ // Transformation
29
+
30
+ .text-lowercase { text-transform: lowercase !important; }
31
+ .text-uppercase { text-transform: uppercase !important; }
32
+ .text-capitalize { text-transform: capitalize !important; }
33
+
34
+ // Weight and italics
35
+
36
+ .font-weight-light { font-weight: $font-weight-light !important; }
37
+ .font-weight-lighter { font-weight: $font-weight-lighter !important; }
38
+ .font-weight-normal { font-weight: $font-weight-normal !important; }
39
+ .font-weight-bold { font-weight: $font-weight-bold !important; }
40
+ .font-weight-bolder { font-weight: $font-weight-bolder !important; }
41
+ .font-italic { font-style: italic !important; }
42
+
43
+ // Contextual colors
44
+
45
+ .text-white { color: $white !important; }
46
+
47
+ @each $color, $value in $theme-colors {
48
+ @include text-emphasis-variant(".text-#{$color}", $value);
49
+ }
50
+
51
+ .text-body { color: $body-color !important; }
52
+ .text-muted { color: $text-muted !important; }
53
+
54
+ .text-black-50 { color: rgba($black, .5) !important; }
55
+ .text-white-50 { color: rgba($white, .5) !important; }
56
+
57
+ // Misc
58
+
59
+ .text-hide {
60
+ @include text-hide($ignore-warning: true);
61
+ }
62
+
63
+ .text-decoration-none { text-decoration: none !important; }
64
+
65
+ // Reset
66
+
67
+ .text-reset { color: inherit !important; }
@@ -0,0 +1,11 @@
1
+ //
2
+ // Visibility utilities
3
+ //
4
+
5
+ .visible {
6
+ @include invisible(visible);
7
+ }
8
+
9
+ .invisible {
10
+ @include invisible(hidden);
11
+ }
Binary file
@@ -0,0 +1,5 @@
1
+ /*!
2
+ * Fontisto 3.0.4 by @kenangundogan - http://fontisto.com - @fontisto
3
+ * License - http://fontisto.com/license (CSS: MIT License)
4
+ */@font-face{font-family:"fontisto";src:url("../../assets/fonts/fontisto/fontisto.eot?v=304");src:url("../../assets/fonts/fontisto/fontisto.eot?#iefix&v=304") format("embedded-opentype"), url("../../assets/fonts/fontisto/fontisto.ttf?v=304") format("truetype"), url("../../assets/fonts/fontisto/fontisto.woff?v=304") format("woff"), url("../../assets/fonts/fontisto/fontisto.svg?v=304#fontisto") format("svg")}.fi{display:inline-block;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;text-rendering:auto;line-height:1;font-family:"fontisto";font-size:14px;font-size:inherit;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fi-acrobat-reader:before{content:"\eabf"}.fi-applemusic:before{content:"\eac0"}.fi-atlassian:before{content:"\eac1"}.fi-aws:before{content:"\eac2"}.fi-baidu:before{content:"\eac3"}.fi-bing:before{content:"\eac4"}.fi-bower:before{content:"\eac5"}.fi-dailymotion:before{content:"\eac6"}.fi-delicious:before{content:"\eac7"}.fi-deviantart:before{content:"\eac8"}.fi-disqus:before{content:"\eac9"}.fi-flipboard:before{content:"\eaca"}.fi-graphql:before{content:"\eacb"}.fi-hexo:before{content:"\eacc"}.fi-hipchat:before{content:"\eacd"}.fi-icq:before{content:"\eace"}.fi-invision:before{content:"\eacf"}.fi-jekyll:before{content:"\ead0"}.fi-jira:before{content:"\ead1"}.fi-json:before{content:"\ead2"}.fi-livestream:before{content:"\ead3"}.fi-messenger:before{content:"\ead4"}.fi-meteor:before{content:"\ead5"}.fi-onenote:before{content:"\ead6"}.fi-mongodb:before{content:"\ead7"}.fi-netflix:before{content:"\ead8"}.fi-nginx:before{content:"\ead9"}.fi-odnoklassniki:before{content:"\eada"}.fi-onedrive:before{content:"\eadb"}.fi-origin:before{content:"\eadc"}.fi-pingdom:before{content:"\eadd"}.fi-rails:before{content:"\eade"}.fi-raspberry-pi:before{content:"\eadf"}.fi-redis:before{content:"\eae0"}.fi-redux:before{content:"\eae1"}.fi-saucelabs:before{content:"\eae2"}.fi-scorp:before{content:"\eae3"}.fi-sentry:before{content:"\eae4"}.fi-shazam:before{content:"\eae5"}.fi-shopify:before{content:"\eae6"}.fi-sinaweibo:before{content:"\eae7"}.fi-slides:before{content:"\eae8"}.fi-sublimetext:before{content:"\eae9"}.fi-swift:before{content:"\eaea"}.fi-ted:before{content:"\eaeb"}.fi-telegram:before{content:"\eaec"}.fi-tesla:before{content:"\eaed"}.fi-tinder:before{content:"\eaee"}.fi-treehouse:before{content:"\eaef"}.fi-twoo:before{content:"\eaf0"}.fi-udacity:before{content:"\eaf1"}.fi-webstorm:before{content:"\eaf2"}.fi-wix:before{content:"\eaf3"}.fi-yandex-international:before{content:"\eaf4"}.fi-yandex:before{content:"\eaf5"}.fi-ember:before{content:"\eab7"}.fi-cpanel:before{content:"\eab8"}.fi-viber:before{content:"\eab9"}.fi-deskpro:before{content:"\eaba"}.fi-discord:before{content:"\eabb"}.fi-discourse:before{content:"\eabc"}.fi-adobe:before{content:"\ea9b"}.fi-algolia:before{content:"\ea9c"}.fi-atom:before{content:"\ea9d"}.fi-babel:before{content:"\ea9e"}.fi-coffeescript:before{content:"\ea9f"}.fi-electronjs:before{content:"\eaa0"}.fi-mysql:before{content:"\eaa1"}.fi-oracle:before{content:"\eaa2"}.fi-php:before{content:"\eaa3"}.fi-sourcetree:before{content:"\eaa4"}.fi-ubuntu:before{content:"\eaa5"}.fi-unity:before{content:"\eaa6"}.fi-unreal-engine:before{content:"\eaa7"}.fi-webpack:before{content:"\eaa8"}.fi-angelist:before{content:"\ea7a"}.fi-app-store:before{content:"\ea7b"}.fi-digg:before{content:"\ea7e"}.fi-dockers:before{content:"\ea7f"}.fi-envato:before{content:"\ea80"}.fi-gitlab:before{content:"\ea81"}.fi-google-drive:before{content:"\ea82"}.fi-google-play:before{content:"\ea83"}.fi-grunt:before{content:"\ea84"}.fi-gulp:before{content:"\ea85"}.fi-hacker-news:before{content:"\ea86"}.fi-imdb:before{content:"\ea87"}.fi-jenkins:before{content:"\ea88"}.fi-joomla:before{content:"\ea89"}.fi-kickstarter:before{content:"\ea8a"}.fi-laravel:before{content:"\ea8b"}.fi-less:before{content:"\ea8c"}.fi-line:before{content:"\ea8d"}.fi-npm:before{content:"\ea8e"}.fi-periscope:before{content:"\ea8f"}.fi-product-hunt:before{content:"\ea90"}.fi-quora:before{content:"\ea91"}.fi-skyatlas:before{content:"\ea92"}.fi-stylus:before{content:"\ea93"}.fi-travis:before{content:"\ea94"}.fi-trello:before{content:"\ea95"}.fi-uber:before{content:"\ea96"}.fi-vine:before{content:"\ea97"}.fi-visual-studio:before{content:"\ea98"}.fi-vk:before{content:"\ea99"}.fi-vuejs:before{content:"\ea9a"}.fi-microsoft:before{content:"\ea79"}.fi-blogger:before{content:"\ea7c"}.fi-500px:before{content:"\e90a"}.fi-amazon:before{content:"\e90b"}.fi-ampproject:before{content:"\e90c"}.fi-android:before{content:"\e90d"}.fi-angularjs:before{content:"\e90e"}.fi-apple:before{content:"\e90f"}.fi-behance:before{content:"\e910"}.fi-bitbucket:before{content:"\e911"}.fi-bluetooth-b:before{content:"\e912"}.fi-cloudflare:before{content:"\e913"}.fi-codepen:before{content:"\e914"}.fi-css3:before{content:"\e915"}.fi-dribbble:before{content:"\e916"}.fi-dropbox:before{content:"\e917"}.fi-facebook:before{content:"\e918"}.fi-flickr:before{content:"\e919"}.fi-foursquare:before{content:"\e91a"}.fi-git:before{content:"\e91b"}.fi-github:before{content:"\e91c"}.fi-google-plus:before{content:"\e91d"}.fi-google:before{content:"\e91e"}.fi-hangout:before{content:"\e91f"}.fi-houzz:before{content:"\e920"}.fi-html5:before{content:"\e921"}.fi-instagram:before{content:"\e922"}.fi-java:before{content:"\e923"}.fi-jquery:before{content:"\e924"}.fi-jsfiddle:before{content:"\e925"}.fi-linkedin:before{content:"\e926"}.fi-linux:before{content:"\e927"}.fi-magento:before{content:"\e928"}.fi-maxcdn:before{content:"\e929"}.fi-medium:before{content:"\e92a"}.fi-meetup:before{content:"\e92b"}.fi-nodejs:before{content:"\e92c"}.fi-opencart:before{content:"\e92d"}.fi-pinterest:before{content:"\e92e"}.fi-playstation:before{content:"\e92f"}.fi-python:before{content:"\e930"}.fi-react:before{content:"\e931"}.fi-reddit:before{content:"\e932"}.fi-ruby:before{content:"\e933"}.fi-sass:before{content:"\e934"}.fi-skype:before{content:"\e935"}.fi-slack:before{content:"\e936"}.fi-snapchat:before{content:"\e937"}.fi-soundcloud:before{content:"\e938"}.fi-spotify:before{content:"\e939"}.fi-stack-overflow:before{content:"\e93a"}.fi-steam:before{content:"\e93b"}.fi-stumbleupon:before{content:"\e93c"}.fi-svn:before{content:"\e93d"}.fi-swarm:before{content:"\e93e"}.fi-tripadvisor:before{content:"\e93f"}.fi-tumblr:before{content:"\e940"}.fi-twitch:before{content:"\e941"}.fi-twitter:before{content:"\e942"}.fi-vimeo:before{content:"\e943"}.fi-wetransfer:before{content:"\e944"}.fi-whatsapp:before{content:"\e945"}.fi-wifi-logo:before{content:"\e946"}.fi-wikipedia:before{content:"\e947"}.fi-windows:before{content:"\e948"}.fi-wordpress:before{content:"\e949"}.fi-xbox:before{content:"\e94a"}.fi-yahoo:before{content:"\e94b"}.fi-yelp:before{content:"\e94c"}.fi-youtube-play:before{content:"\e94d"}.fi-cocoapods:before{content:"\eb28"}.fi-composer:before{content:"\eb29"}.fi-yarn:before{content:"\eb2a"}.fi-language:before{content:"\ea27"}.fi-toggle-off:before{content:"\ea2c"}.fi-toggle-on:before{content:"\ea7d"}.fi-anchor:before{content:"\eabe"}.fi-archive:before{content:"\eaf6"}.fi-at:before{content:"\eaf7"}.fi-ban:before{content:"\eaf8"}.fi-battery-half:before{content:"\eaf9"}.fi-battery-full:before{content:"\eafa"}.fi-battery-empty:before{content:"\eafb"}.fi-battery-quarter:before{content:"\eafc"}.fi-battery-three-quarters:before{content:"\eafd"}.fi-bell-alt:before{content:"\eafe"}.fi-bell:before{content:"\eaff"}.fi-bookmark-alt:before{content:"\eb00"}.fi-bookmark:before{content:"\eb01"}.fi-bug:before{content:"\eb02"}.fi-calculator:before{content:"\eb03"}.fi-calendar:before{content:"\eb04"}.fi-crosshairs:before{content:"\eb05"}.fi-desktop:before{content:"\eb06"}.fi-download:before{content:"\eb07"}.fi-film:before{content:"\eb08"}.fi-history:before{content:"\eb09"}.fi-hourglass-end:before{content:"\eb0a"}.fi-hourglass-half:before{content:"\eb0b"}.fi-hourglass-start:before{content:"\eb0c"}.fi-hourglass:before{content:"\eb0d"}.fi-info:before{content:"\eb0e"}.fi-key:before{content:"\eb0f"}.fi-keyboard:before{content:"\eb10"}.fi-laptop:before{content:"\eb11"}.fi-lightbulb:before{content:"\eb12"}.fi-magnet:before{content:"\eb13"}.fi-map-marker-alt:before{content:"\eb14"}.fi-map-marker:before{content:"\eb15"}.fi-map:before{content:"\eb16"}.fi-mobile-alt:before{content:"\eb17"}.fi-mobile:before{content:"\eb18"}.fi-paw:before{content:"\eb19"}.fi-phone:before{content:"\eb1a"}.fi-power:before{content:"\eb1b"}.fi-qrcode:before{content:"\eb1c"}.fi-question:before{content:"\eb1d"}.fi-search:before{content:"\eb1e"}.fi-sitemap:before{content:"\eb1f"}.fi-star-half:before{content:"\eb20"}.fi-stopwatch:before{content:"\eb21"}.fi-tablet-alt:before{content:"\eb22"}.fi-tablet:before{content:"\eb23"}.fi-ticket:before{content:"\eb24"}.fi-tv:before{content:"\eb25"}.fi-upload:before{content:"\eb26"}.fi-user-secret:before{content:"\eb27"}.fi-camera:before{content:"\e996"}.fi-clock:before{content:"\e997"}.fi-close-a:before{content:"\e998"}.fi-code:before{content:"\e999"}.fi-comment:before{content:"\e99a"}.fi-commenting:before{content:"\e99b"}.fi-comments:before{content:"\e99c"}.fi-crop:before{content:"\e99d"}.fi-cursor:before{content:"\e99e"}.fi-database:before{content:"\e99f"}.fi-date:before{content:"\e9a0"}.fi-earth:before{content:"\e9a1"}.fi-email:before{content:"\e9a2"}.fi-eye:before{content:"\e9a3"}.fi-female:before{content:"\e9a4"}.fi-favorite:before{content:"\e9a5"}.fi-filter:before{content:"\e9a6"}.fi-fire:before{content:"\e9a7"}.fi-flag:before{content:"\e9a8"}.fi-flash:before{content:"\e9a9"}.fi-home:before{content:"\e9aa"}.fi-link:before{content:"\e9ab"}.fi-locked:before{content:"\e9ac"}.fi-male:before{content:"\e9ad"}.fi-minus-a:before{content:"\e9ae"}.fi-more-v-a:before{content:"\e9af"}.fi-more-v:before{content:"\e9b0"}.fi-move-h-a:before{content:"\e9b1"}.fi-move-h:before{content:"\e9b2"}.fi-nav-icon-a:before{content:"\e9b3"}.fi-nav-icon-grid-a:before{content:"\e9b4"}.fi-nav-icon-grid:before{content:"\e9b5"}.fi-nav-icon-list-a:before{content:"\e9b6"}.fi-nav-icon-list:before{content:"\e9b7"}.fi-nav-icon:before{content:"\e9b8"}.fi-navigate:before{content:"\e9b9"}.fi-paper-plane:before{content:"\e9ba"}.fi-person:before{content:"\e9bb"}.fi-persons:before{content:"\e9bc"}.fi-picture:before{content:"\e9bd"}.fi-plus-a:before{content:"\e9be"}.fi-print:before{content:"\e9bf"}.fi-quote-a-left:before{content:"\e9c0"}.fi-quote-a-right:before{content:"\e9c1"}.fi-quote-left:before{content:"\e9c2"}.fi-quote-right:before{content:"\e9c3"}.fi-reply:before{content:"\e9c4"}.fi-rss:before{content:"\e9c5"}.fi-scissors:before{content:"\e9c6"}.fi-share-a:before{content:"\e9c7"}.fi-share:before{content:"\e9c8"}.fi-trash:before{content:"\e9c9"}.fi-unlocked:before{content:"\e9ca"}.fi-usb:before{content:"\e9cb"}.fi-wifi:before{content:"\e9cc"}.fi-world-o:before{content:"\e9cd"}.fi-world:before{content:"\e9ce"}.fi-zoom:before{content:"\e9cf"}.fi-adjust:before{content:"\ea6f"}.fi-recycle:before{content:"\ea70"}.fi-pinboard:before{content:"\eabd"}.fi-zoom-minus:before{content:"\eab2"}.fi-zoom-plus:before{content:"\eab3"}.fi-check:before{content:"\eab4"}.fi-asterisk:before{content:"\eab5"}.fi-hashtag:before{content:"\eab6"}.fi-checkbox-active:before{content:"\e982"}.fi-checkbox-passive:before{content:"\e983"}.fi-radio-btn-active:before{content:"\e984"}.fi-radio-btn-passive:before{content:"\e985"}.fi-shopping-bag-1:before{content:"\ea6b"}.fi-shopping-bag:before{content:"\ea6c"}.fi-shopping-barcode:before{content:"\ea71"}.fi-shopping-basket-add:before{content:"\ea72"}.fi-shopping-basket-remove:before{content:"\ea73"}.fi-shopping-basket:before{content:"\ea74"}.fi-shopping-package:before{content:"\ea75"}.fi-shopping-pos-machine:before{content:"\ea76"}.fi-shopping-sale:before{content:"\ea77"}.fi-shopping-store:before{content:"\ea78"}.fi-angle-dobule-down:before{content:"\e964"}.fi-angle-dobule-left:before{content:"\e965"}.fi-angle-dobule-right:before{content:"\e966"}.fi-angle-dobule-up:before{content:"\e967"}.fi-angle-down:before{content:"\e968"}.fi-angle-left:before{content:"\e969"}.fi-angle-right:before{content:"\e96a"}.fi-angle-up:before{content:"\e96b"}.fi-arrow-down-l:before{content:"\e96c"}.fi-arrow-down:before{content:"\e96d"}.fi-arrow-expand:before{content:"\e96e"}.fi-arrow-h:before{content:"\e96f"}.fi-arrow-left-l:before{content:"\e970"}.fi-arrow-left:before{content:"\e971"}.fi-arrow-move:before{content:"\e972"}.fi-arrow-resize:before{content:"\e973"}.fi-arrow-return-left:before{content:"\e974"}.fi-arrow-return-right:before{content:"\e975"}.fi-arrow-right-l:before{content:"\e976"}.fi-arrow-right:before{content:"\e977"}.fi-arrow-swap:before{content:"\e978"}.fi-arrow-up-l:before{content:"\e979"}.fi-arrow-up:before{content:"\e97a"}.fi-arrow-v:before{content:"\e97b"}.fi-caret-down:before{content:"\e97c"}.fi-caret-left:before{content:"\e97d"}.fi-caret-right:before{content:"\e97e"}.fi-caret-up:before{content:"\e97f"}.fi-fi:before{content:"\e980"}.fi-fontisto:before{content:"\e981"}.fi-backward:before{content:"\e9da"}.fi-eject:before{content:"\e9db"}.fi-equalizer:before{content:"\e9dc"}.fi-forward:before{content:"\e9dd"}.fi-headphone:before{content:"\e9de"}.fi-heart:before{content:"\e9df"}.fi-mic:before{content:"\e9e0"}.fi-music-note:before{content:"\e9e1"}.fi-pause:before{content:"\e9e2"}.fi-play-list:before{content:"\e9e3"}.fi-play:before{content:"\e9e4"}.fi-player-settings:before{content:"\e9e5"}.fi-podcast:before{content:"\e9e6"}.fi-random:before{content:"\e9e7"}.fi-record:before{content:"\e9e8"}.fi-star:before{content:"\e9e9"}.fi-step-backwrad:before{content:"\e9ea"}.fi-step-forward:before{content:"\e9eb"}.fi-stop:before{content:"\e9ec"}.fi-volume-down:before{content:"\e9ed"}.fi-volume-mute:before{content:"\e9ee"}.fi-volume-off:before{content:"\e9ef"}.fi-volume-up:before{content:"\e9f0"}.fi-airplay:before{content:"\ea68"}.fi-bold:before{content:"\ea0e"}.fi-broken-link:before{content:"\ea0f"}.fi-center-align:before{content:"\ea10"}.fi-close:before{content:"\ea11"}.fi-columns:before{content:"\ea12"}.fi-copy:before{content:"\ea13"}.fi-eraser:before{content:"\ea14"}.fi-export:before{content:"\ea15"}.fi-file-1:before{content:"\ea16"}.fi-file-2:before{content:"\ea17"}.fi-folder:before{content:"\ea18"}.fi-font:before{content:"\ea19"}.fi-import:before{content:"\ea1a"}.fi-indent:before{content:"\ea1b"}.fi-italic:before{content:"\ea1c"}.fi-justify:before{content:"\ea1d"}.fi-left-align:before{content:"\ea1e"}.fi-link2:before{content:"\ea1f"}.fi-list-1:before{content:"\ea20"}.fi-list-2:before{content:"\ea21"}.fi-outdent:before{content:"\ea22"}.fi-paperclip:before{content:"\ea23"}.fi-paragraph:before{content:"\ea24"}.fi-paste:before{content:"\ea25"}.fi-preview:before{content:"\ea26"}.fi-print2:before{content:"\ea27"}.fi-redo:before{content:"\ea28"}.fi-right-align:before{content:"\ea29"}.fi-save-1:before{content:"\ea2a"}.fi-save:before{content:"\ea2b"}.fi-scissors2:before{content:"\ea2c"}.fi-strikethrough:before{content:"\ea2d"}.fi-subscript:before{content:"\ea2e"}.fi-superscript:before{content:"\ea2f"}.fi-table-1:before{content:"\ea30"}.fi-table-2:before{content:"\ea31"}.fi-text-height:before{content:"\ea32"}.fi-text-width:before{content:"\ea33"}.fi-underline:before{content:"\ea34"}.fi-undo:before{content:"\ea35"}.fi-cloud-down:before{content:"\ea36"}.fi-cloud-refresh:before{content:"\ea37"}.fi-cloud-up:before{content:"\ea38"}.fi-cloudy-gusts:before{content:"\ea39"}.fi-cloudy:before{content:"\ea3a"}.fi-compass:before{content:"\ea3b"}.fi-day-cloudy:before{content:"\ea3c"}.fi-day-haze:before{content:"\ea3d"}.fi-day-lightning:before{content:"\ea3e"}.fi-day-rain:before{content:"\ea3f"}.fi-day-snow:before{content:"\ea40"}.fi-day-sunny:before{content:"\ea41"}.fi-fog:before{content:"\ea42"}.fi-horizon-alt:before{content:"\ea43"}.fi-horizon:before{content:"\ea44"}.fi-lightning:before{content:"\ea45"}.fi-lightnings:before{content:"\ea46"}.fi-night-alt-cloudy:before{content:"\ea47"}.fi-night-alt-lightning:before{content:"\ea48"}.fi-night-alt-rain:before{content:"\ea49"}.fi-night-alt-snow:before{content:"\ea4a"}.fi-night-clear:before{content:"\ea4b"}.fi-rain:before{content:"\ea4c"}.fi-rainbow:before{content:"\ea4d"}.fi-rains:before{content:"\ea4e"}.fi-snow:before{content:"\ea4f"}.fi-snows:before{content:"\ea50"}.fi-thermometer:before{content:"\ea51"}.fi-umbrella:before{content:"\ea52"}.fi-wind:before{content:"\ea53"}.fi-confused:before{content:"\ea54"}.fi-dizzy:before{content:"\ea55"}.fi-expressionless:before{content:"\ea56"}.fi-frowning:before{content:"\ea57"}.fi-heart-eyes:before{content:"\ea58"}.fi-laughing:before{content:"\ea59"}.fi-mad:before{content:"\ea5a"}.fi-nervous:before{content:"\ea5b"}.fi-neutral:before{content:"\ea5c"}.fi-open-mouth:before{content:"\ea5d"}.fi-rage:before{content:"\ea5e"}.fi-slightly-smile:before{content:"\ea5f"}.fi-smiley:before{content:"\ea60"}.fi-smiling:before{content:"\ea61"}.fi-stuck-out-tongue:before{content:"\ea62"}.fi-sunglasses:before{content:"\ea63"}.fi-surprised:before{content:"\ea64"}.fi-tongue:before{content:"\ea65"}.fi-wink:before{content:"\ea66"}.fi-zipper-mouth:before{content:"\ea67"}.fi-aids:before{content:"\eb49"}.fi-ambulance:before{content:"\eb4a"}.fi-bandage:before{content:"\eb4b"}.fi-bed-patient:before{content:"\eb4c"}.fi-blood-drop:before{content:"\eb4d"}.fi-blood-test:before{content:"\eb4e"}.fi-blood:before{content:"\eb4f"}.fi-dna:before{content:"\eb50"}.fi-doctor:before{content:"\eb51"}.fi-drug-pack:before{content:"\eb52"}.fi-first-aid-alt:before{content:"\eb53"}.fi-heart-alt:before{content:"\eb54"}.fi-heartbeat-alt:before{content:"\eb55"}.fi-heartbeat:before{content:"\eb56"}.fi-helicopter-ambulance:before{content:"\eb57"}.fi-hospital:before{content:"\eb58"}.fi-injection-syringe:before{content:"\eb59"}.fi-laboratory:before{content:"\eb5a"}.fi-nurse:before{content:"\eb5b"}.fi-nursing-home:before{content:"\eb5c"}.fi-paralysis-disability:before{content:"\eb5d"}.fi-pills:before{content:"\eb5e"}.fi-prescription:before{content:"\eb5f"}.fi-pulse-alt:before{content:"\eb60"}.fi-stethoscope:before{content:"\eb61"}.fi-surgical-knife:before{content:"\eb62"}.fi-tablets:before{content:"\eb63"}.fi-test-bottle:before{content:"\eb64"}.fi-test-tube-alt:before{content:"\eb65"}.fi-test-tube:before{content:"\eb66"}.fi-thermometer-alt:before{content:"\eb67"}.fi-american-express:before{content:"\e9d0"}.fi-credit-card:before{content:"\e9d1"}.fi-google-wallet:before{content:"\e9d2"}.fi-iyzigo:before{content:"\e9d3"}.fi-mastercard:before{content:"\e9d4"}.fi-paypal-p:before{content:"\e9d5"}.fi-paypal:before{content:"\e9d6"}.fi-payu:before{content:"\e9d7"}.fi-troy:before{content:"\e9d8"}.fi-visa:before{content:"\e9d9"}.fi-dinners-club:before{content:"\ea6a"}.fi-apple-pay:before{content:"\ea69"}.fi-discover:before{content:"\ea6d"}.fi-jcb:before{content:"\ea6e"}.fi-dislike:before{content:"\e994"}.fi-like:before{content:"\e995"}.fi-audio-description:before{content:"\e900"}.fi-blind:before{content:"\e901"}.fi-braille:before{content:"\e902"}.fi-deaf:before{content:"\e903"}.fi-fa-american-sign-language-interpreting:before{content:"\e904"}.fi-low-vision:before{content:"\e906"}.fi-tty:before{content:"\e907"}.fi-universal-acces:before{content:"\e908"}.fi-wheelchair:before{content:"\e909"}.fi-area-chart:before{content:"\e954"}.fi-bar-chart:before{content:"\e955"}.fi-line-chart:before{content:"\e956"}.fi-pie-chart-1:before{content:"\e957"}.fi-pie-chart-2:before{content:"\e958"}.fi-chrome:before{content:"\e94e"}.fi-edge:before{content:"\e94f"}.fi-firefox:before{content:"\e950"}.fi-internet-explorer:before{content:"\e951"}.fi-opera:before{content:"\e952"}.fi-safari:before{content:"\e953"}.fi-bitcoin:before{content:"\e959"}.fi-dollar:before{content:"\e95a"}.fi-euro:before{content:"\e95b"}.fi-gbp:before{content:"\e95c"}.fi-gg:before{content:"\e95d"}.fi-ils:before{content:"\e95e"}.fi-inr:before{content:"\e95f"}.fi-krw:before{content:"\e960"}.fi-rouble:before{content:"\e961"}.fi-tl:before{content:"\e962"}.fi-yen:before{content:"\e963"}.fi-genderless:before{content:"\e986"}.fi-intersex:before{content:"\e987"}.fi-mars-double:before{content:"\e988"}.fi-mars-stroke-h:before{content:"\e989"}.fi-mars-stroke-v:before{content:"\e98a"}.fi-mars-stroke:before{content:"\e98b"}.fi-mars:before{content:"\e98c"}.fi-mercury:before{content:"\e98d"}.fi-neuter:before{content:"\e98e"}.fi-transgender-alt:before{content:"\e98f"}.fi-transgender:before{content:"\e990"}.fi-venus-double:before{content:"\e991"}.fi-venus-mars:before{content:"\e992"}.fi-venus:before{content:"\e993"}.fi-automobile:before{content:"\e9fb"}.fi-bicycle:before{content:"\e9fc"}.fi-bus:before{content:"\e9fd"}.fi-car:before{content:"\e9fe"}.fi-helicopter:before{content:"\e9ff"}.fi-metro:before{content:"\ea00"}.fi-motorcycle:before{content:"\ea01"}.fi-plane:before{content:"\ea02"}.fi-rocket:before{content:"\ea03"}.fi-ship:before{content:"\ea04"}.fi-subway:before{content:"\ea05"}.fi-taxi:before{content:"\ea06"}.fi-train:before{content:"\ea07"}.fi-truck:before{content:"\ea08"}.fi-yacht:before{content:"\ea09"}.fi-beach-slipper:before{content:"\eb2b"}.fi-bus-ticket:before{content:"\eb2c"}.fi-cocktail:before{content:"\eb2d"}.fi-compass-alt:before{content:"\eb2e"}.fi-direction-sign:before{content:"\eb2f"}.fi-do-not-disturb:before{content:"\eb30"}.fi-flotation-ring:before{content:"\eb31"}.fi-holiday-village:before{content:"\eb32"}.fi-hot-air-balloon:before{content:"\eb33"}.fi-hotel-alt:before{content:"\eb34"}.fi-hotel:before{content:"\eb35"}.fi-island:before{content:"\eb36"}.fi-money-symbol:before{content:"\eb37"}.fi-parasol:before{content:"\eb38"}.fi-passport-alt:before{content:"\eb39"}.fi-passport:before{content:"\eb3a"}.fi-photograph:before{content:"\eb3b"}.fi-plane-ticket:before{content:"\eb3c"}.fi-room:before{content:"\eb3d"}.fi-sait-boat:before{content:"\eb3e"}.fi-snorkel:before{content:"\eb3f"}.fi-suitcase-alt:before{content:"\eb40"}.fi-suitcase:before{content:"\eb41"}.fi-sun:before{content:"\eb42"}.fi-sunglasses-alt:before{content:"\eb43"}.fi-swimsuit:before{content:"\eb44"}.fi-tent:before{content:"\eb45"}.fi-ticket-alt:before{content:"\eb46"}.fi-train-ticket:before{content:"\eb47"}.fi-wallet:before{content:"\eb48"}.fi-circle-o-notch:before{content:"\e9f1"}.fi-propeller-1:before{content:"\e9f2"}.fi-propeller-2:before{content:"\e9f3"}.fi-propeller-3:before{content:"\e9f4"}.fi-propeller-4:before{content:"\e9f5"}.fi-spinner-cog:before{content:"\e9f6"}.fi-spinner-fidget:before{content:"\e9f7"}.fi-spinner-refresh:before{content:"\e9f8"}.fi-spinner-rotate-forward:before{content:"\e9f9"}.fi-spinner:before{content:"\e9fa"}.fi-snowflake:before{content:"\eab1"}.fi-snowflake-1:before{content:"\eaa9"}.fi-snowflake-2:before{content:"\eaaa"}.fi-snowflake-3:before{content:"\eaab"}.fi-snowflake-4:before{content:"\eaac"}.fi-snowflake-5:before{content:"\eaad"}.fi-snowflake-6:before{content:"\eaae"}.fi-snowflake-7:before{content:"\eaaf"}.fi-snowflake-8:before{content:"\eab0"}.fi-curve:before{content:"\ea0b"}.fi-ellipse:before{content:"\ea0c"}.fi-rectangle:before{content:"\ea0d"}.fi-shield:before{content:"\ea0a"}.fi-inverse{color:#fff}.fi-spin{-webkit-animation:fi-spin 2s infinite linear;animation:fi-spin 2s infinite linear}.fi-pulse{-webkit-animation:fi-spin 1s infinite steps(8);animation:fi-spin 1s infinite steps(8)}@-webkit-keyframes fi-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fi-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fi-border{position:relative;z-index:1;width:2.2em;height:2.2em;line-height:2em;vertical-align:middle;border:solid 2px #000}.fi-border.ellipse{border-radius:2.2em}.fi-border.curve{border-radius:0.4em}.fi-border.rectangle{border-radius:0em}.fi-border:before{position:absolute;left:0;width:100%;text-align:center;line-height:inherit}.fi-stack{position:relative;z-index:1;display:inline-block;width:2.2em;height:2.2em;line-height:2.2em;vertical-align:middle}.fi-stack.ellipse:after{content:"\ea0c"}.fi-stack.curve:after{content:"\ea0b"}.fi-stack.rectangle:after{content:"\ea0d"}.fi-stack:after{position:absolute;z-index:-1;left:0;width:100%;text-align:center;font-size:2.2em}.fi-stack:before{position:absolute;left:0;width:100%;text-align:center;line-height:inherit;color:#fff}.fi-r-45{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.fi-r-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fi-r-135{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(135deg);-ms-transform:rotate(135deg);transform:rotate(135deg)}.fi-r-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fi-r-225{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(225deg);-ms-transform:rotate(225deg);transform:rotate(225deg)}.fi-r-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fi-r-315{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(315deg);-ms-transform:rotate(315deg);transform:rotate(315deg)}.fi-f-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fi-f-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}.fi-list{padding-left:0;margin-left:2.14286em;list-style-type:none}.fi-list>li{position:relative}.fi-list>li .fi{position:absolute;top:0.14286em;left:-2.14286em;width:2.14286em;text-align:center}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.fi-fw{width:1.28571em;text-align:center}
5
+ /*# sourceMappingURL=fontisto.min.css.map */
@@ -0,0 +1,45 @@
1
+ @charset "UTF-8";
2
+
3
+ @font-face {
4
+ font-family: "et-book";
5
+ src: url("/assets/fonts/et-book/et-book-roman-line-figures/et-book-roman-line-figures.eot");
6
+ src: url("/assets/fonts/et-book/et-book-roman-line-figures/et-book-roman-line-figures.eot?#iefix") format("embedded-opentype"),
7
+ url("/assets/fonts/et-book/et-book-roman-line-figures/et-book-roman-line-figures.woff") format("woff"),
8
+ url("/assets/fonts/et-book/et-book-roman-line-figures/et-book-roman-line-figures.ttf") format("truetype"),
9
+ url("/assets/fonts/et-book/et-book-roman-line-figures/et-book-roman-line-figures.svg#etbookromanosf") format("svg");
10
+ font-weight: normal;
11
+ font-style: normal;
12
+ }
13
+
14
+ @font-face {
15
+ font-family: "et-book";
16
+ src: url("/assets/fonts/et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.eot");
17
+ src: url("/assets/fonts/et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.eot?#iefix") format("embedded-opentype"),
18
+ url("/assets/fonts/et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.woff") format("woff"),
19
+ url("/assets/fonts/et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.ttf") format("truetype"),
20
+ url("/assets/fonts/et-book/et-book-display-italic-old-style-figures/et-book-display-italic-old-style-figures.svg#etbookromanosf") format("svg");
21
+ font-weight: normal;
22
+ font-style: italic;
23
+ }
24
+
25
+ @font-face {
26
+ font-family: "et-book";
27
+ src: url("/assets/fonts/et-book/et-book-bold-line-figures/et-book-bold-line-figures.eot");
28
+ src: url("/assets/fonts/et-book/et-book-bold-line-figures/et-book-bold-line-figures.eot?#iefix") format("embedded-opentype"),
29
+ url("/assets/fonts/et-book/et-book-bold-line-figures/et-book-bold-line-figures.woff") format("woff"),
30
+ url("/assets/fonts/et-book/et-book-bold-line-figures/et-book-bold-line-figures.ttf") format("truetype"),
31
+ url("/assets/fonts/et-book/et-book-bold-line-figures/et-book-bold-line-figures.svg#etbookromanosf") format("svg");
32
+ font-weight: bold;
33
+ font-style: normal;
34
+ }
35
+
36
+ @font-face {
37
+ font-family: "et-book-roman-old-style";
38
+ src: url("/assets/fonts/et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.eot");
39
+ src: url("/assets/fonts/et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.eot?#iefix") format("embedded-opentype"),
40
+ url("/assets/fonts/et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.woff") format("woff"),
41
+ url("/assets/fonts/et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.ttf") format("truetype"),
42
+ url("/assets/fonts/et-book/et-book-roman-old-style-figures/et-book-roman-old-style-figures.svg#etbookromanosf") format("svg");
43
+ font-weight: normal;
44
+ font-style: normal;
45
+ }
@@ -0,0 +1,529 @@
1
+ ---
2
+ ---
3
+
4
+ @charset "UTF-8";
5
+
6
+ // colors
7
+ $white: {{- site.data.theme.color.white -}};
8
+ $black: {{- site.data.theme.color.black -}};
9
+ $grey: {{- site.data.theme.color.grey -}};
10
+ $primary: {{- site.data.theme.color.primary -}};
11
+ $secondary: {{- site.data.theme.color.secondary -}};
12
+
13
+ $body-color: $black;
14
+ $body-bg: $secondary;
15
+ $selection-color: lighten($primary, 45%);
16
+
17
+ // links
18
+ $link-color: $black;
19
+ $link-decoration: none;
20
+ $link-hover-color: $black;
21
+ $link-hover-decoration: none;
22
+
23
+ // grid containers
24
+ $container-max-widths: (
25
+ sm: 540px,
26
+ md: 660px,
27
+ lg: 720px,
28
+ xl: 780px
29
+ );
30
+
31
+ // fonts
32
+ $font-family-brand: {{- site.data.theme.font.brand -}};
33
+ $font-family-header: {{- site.data.theme.font.header -}};
34
+ $font-family-base: {{- site.data.theme.font.body -}};
35
+ $font-family-monospace: {{- site.data.theme.font.code -}};
36
+ $font-family-numeral: {{- site.data.theme.font.numeral -}};
37
+
38
+ $h1-font-size: 2.7rem;
39
+ $subtitle-font-size: 1.7rem;
40
+ $h2-font-size: 2.1rem;
41
+ $h3-font-size: 1.6rem;
42
+ $p-font-size : 1.3rem;
43
+
44
+ $headings-font-weight: 500;
45
+ $font-weight-normal: 400;
46
+
47
+ // navigation
48
+ $navigation-width: 15rem;
49
+
50
+ // forms
51
+ $input-border-radius: 0.2rem;
52
+ $input-border-color: $grey;
53
+ $input-bg: $secondary;
54
+ $input-focus-color: $black;
55
+ $input-focus-bg: $secondary;
56
+ $input-focus-border-color: $primary;
57
+
58
+ @import "bootstrap/bootstrap";
59
+ @import "highlight";
60
+ @import "typography";
61
+
62
+ .fos-container {
63
+ background-color: $secondary;
64
+ }
65
+
66
+ .fos-topbar {
67
+ margin-top: 3rem;
68
+ margin-bottom: 5rem;
69
+ }
70
+
71
+ @include media-breakpoint-down(sm) {
72
+ .fos-topbar {
73
+ margin-top: 1rem;
74
+ margin-bottom: 3rem;
75
+ }
76
+ }
77
+
78
+ .fos-post {
79
+ .fos-title {
80
+ margin-top: 10.4rem;
81
+
82
+ .fos-menu-icon {
83
+ display: block;
84
+ }
85
+ }
86
+
87
+ .fos-topbar {
88
+ display: none;
89
+ }
90
+ }
91
+
92
+ @include media-breakpoint-down(sm) {
93
+ .fos-post {
94
+ .fos-title {
95
+ margin-top: 0rem;
96
+
97
+ .fos-menu-icon {
98
+ display: none;
99
+ }
100
+ }
101
+
102
+ .fos-topbar {
103
+ display: flex;
104
+ }
105
+ }
106
+ }
107
+
108
+
109
+
110
+ .fos-title {
111
+ h1, h2 {
112
+ margin-top: 0rem;
113
+ }
114
+
115
+ // .fos-fixed-col {
116
+ // margin-top: 7.4rem;
117
+ // }
118
+ }
119
+
120
+ .fos-topbar {
121
+ background-color: $secondary;
122
+
123
+ .fos-topbar__brand {
124
+ a {
125
+ font-family: $font-family-brand;
126
+ font-size: 1rem;
127
+ color: lighten($black, 10%);
128
+ font-weight: 900;
129
+ text-decoration: none;
130
+
131
+ &:visited {
132
+ color: lighten($black, 10%);
133
+ }
134
+
135
+ &:hover {
136
+ text-decoration: none;
137
+ }
138
+ }
139
+
140
+ p {
141
+ font-family: $font-family-brand;
142
+ font-size: 1rem;
143
+ color: $grey;
144
+ font-weight: 200;
145
+ margin-bottom: 0rem;
146
+
147
+ &:hover {
148
+ color: darken($grey, 20%);
149
+ }
150
+ }
151
+ }
152
+ }
153
+
154
+ // @include media-breakpoint-up(md) {
155
+
156
+ // }
157
+
158
+ .fos-fixed-col {
159
+ min-width: 2rem;
160
+ margin-left: -2rem;
161
+ }
162
+
163
+ @include media-breakpoint-down(sm) {
164
+ .fos-topbar {
165
+ flex-direction: row-reverse !important;
166
+
167
+ .fos-fixed-col {
168
+ margin-left: 0px;
169
+ margin-right: 15px;
170
+ }
171
+ }
172
+ }
173
+
174
+ .fos-footer {
175
+ padding-top: 5rem;
176
+
177
+ li:last-child {
178
+ i {
179
+ margin-right: 0rem;
180
+ }
181
+ }
182
+ }
183
+
184
+ .fos-post-preview {
185
+ margin-bottom: 3rem;
186
+
187
+ .fos-post-preview__title {
188
+ margin-top: 0rem;
189
+
190
+ a {
191
+ color: $black;
192
+
193
+ &:hover {
194
+ color: $primary;
195
+ text-decoration: none;
196
+ }
197
+ }
198
+ }
199
+
200
+ .fos-post-preview__description {
201
+ margin-bottom: 0.1rem;
202
+ }
203
+
204
+ .fos-post-preview__readmore {
205
+ a {
206
+ @include reset-underline();
207
+ color: $grey;
208
+ font-size: 1.1rem;
209
+ font-style: italic;
210
+
211
+ &:hover {
212
+ color: $primary;
213
+ text-decoration: none;
214
+ }
215
+ }
216
+ }
217
+ }
218
+
219
+ .fos-posted-date {
220
+ color: $grey;
221
+ font-weight: 200;
222
+ margin-bottom: 0rem;
223
+ font-size: 1.1rem;
224
+ font-style: italic;
225
+ }
226
+
227
+ .fos-pagination {
228
+ h5 {
229
+ margin: 0rem;
230
+ }
231
+
232
+ svg {
233
+ color: $grey;
234
+ height: 2rem;
235
+ width: 2rem;
236
+ fill: $grey;
237
+
238
+ &:hover {
239
+ fill: $primary;
240
+ }
241
+ }
242
+ }
243
+
244
+ .fos-post-meta {
245
+ margin-top: 3rem;
246
+
247
+ .fos-posted-date {
248
+ margin-bottom: 0.5rem;
249
+ }
250
+ }
251
+
252
+ .fos-tags {
253
+ a {
254
+ font-size: 1rem;
255
+ font-weight: 200;
256
+ color: $grey;
257
+ text-align: center;
258
+ vertical-align: middle;
259
+ border: 1px solid $grey;
260
+ border-radius: 0.2rem;
261
+ padding: 0.2rem 0.5rem;
262
+ margin-right: 0.5rem;
263
+
264
+ &:hover {
265
+ color: $white;
266
+ background-color: $primary;
267
+ border-color: $primary;
268
+ text-decoration: none;
269
+ }
270
+ }
271
+ }
272
+
273
+ .fos-social-icons {
274
+ list-style: none;
275
+ margin-top: 1rem;
276
+
277
+ li {
278
+ margin-top: 0rem !important;
279
+ }
280
+
281
+ a {
282
+ i {
283
+ font-size: 1rem;
284
+ color: $grey;
285
+ border: 1px solid $grey;
286
+ border-radius: 50%;
287
+ display: inline-block;
288
+ height: 2.5rem;
289
+ width: 2.5rem;
290
+ line-height: 2.4rem;
291
+ text-align: center;
292
+ vertical-align: middle;
293
+ margin-right: 0.5rem;
294
+
295
+ &:hover {
296
+ color: $white;
297
+ background-color: $primary;
298
+ border-color: $primary;
299
+ text-decoration: none;
300
+ }
301
+ }
302
+ }
303
+ }
304
+
305
+ .fos-copyright {
306
+ color: $grey;
307
+ font-size: 1rem;
308
+ }
309
+
310
+ .fos-comments {
311
+ margin-top: 4rem;
312
+ }
313
+
314
+ .fos-navigation {
315
+ position: fixed;
316
+ width: 100%;
317
+ height: 100%;
318
+ top: 0;
319
+ left: 0;
320
+ overflow-x: hidden;
321
+ border-top: 1px solid $primary;
322
+ opacity: 0;
323
+ transform: translateX(-100%);
324
+ transition: opacity 0.4s 0.2s;
325
+ background-color: lighten($grey, 40%);
326
+
327
+ nav {
328
+ perspective: 1500px;
329
+
330
+ a {
331
+ font-family: $font-family-header, serif;
332
+ font-weight: $headings-font-weight;
333
+ line-height: 1.2;
334
+ font-size: $h2-font-size;
335
+ margin-bottom: 3rem;
336
+ color: $grey;
337
+ text-decoration: none;
338
+ opacity: 0;
339
+ transform-style: preserve-3d;
340
+ transform: translateZ(-1000px);
341
+ transition: transform 0.4s, opacity 0.4s;
342
+
343
+ &:hover {
344
+ color: $primary;
345
+ }
346
+
347
+ @include media-breakpoint-down(sm) {
348
+ font-size: $h3-font-size;
349
+ margin-right: 1rem;
350
+ }
351
+ }
352
+ }
353
+
354
+ p {
355
+ color: $grey;
356
+ }
357
+
358
+ .submit {
359
+ width: 8rem;
360
+ }
361
+
362
+ &.fos-menu-open {
363
+ opacity: 1;
364
+ transform: translateX(0);
365
+
366
+ a {
367
+ opacity: 1;
368
+ transform: translateZ(0);
369
+ }
370
+ }
371
+ }
372
+
373
+
374
+
375
+ .fos-menu-icon {
376
+ // width: 2rem;
377
+ // height: 1.6rem;
378
+ width: 2rem;
379
+ height: 21px;
380
+ position: relative;
381
+ // margin: auto;
382
+ -webkit-transform: rotate(0deg);
383
+ -moz-transform: rotate(0deg);
384
+ -o-transform: rotate(0deg);
385
+ transform: rotate(0deg);
386
+ -webkit-transition: .5s ease-in-out;
387
+ -moz-transition: .5s ease-in-out;
388
+ -o-transition: .5s ease-in-out;
389
+ transition: .5s ease-in-out;
390
+ cursor: pointer;
391
+
392
+
393
+ span {
394
+ display: block;
395
+ position: absolute;
396
+ height: 1px;
397
+ width: 100%;
398
+ background-color: $grey;
399
+ border-radius: 1px;
400
+ opacity: 1;
401
+ left: 0;
402
+ -webkit-transform: rotate(0deg);
403
+ -moz-transform: rotate(0deg);
404
+ -o-transform: rotate(0deg);
405
+ transform: rotate(0deg);
406
+ -webkit-transition: .25s ease-in-out;
407
+ -moz-transition: .25s ease-in-out;
408
+ -o-transition: .25s ease-in-out;
409
+ transition: .25s ease-in-out;
410
+
411
+
412
+
413
+ &:nth-child(1) {
414
+ top: 0rem;
415
+ -webkit-transform-origin: left center;
416
+ -moz-transform-origin: left center;
417
+ -o-transform-origin: left center;
418
+ transform-origin: left center;
419
+ }
420
+
421
+ &:nth-child(2) {
422
+ top: 10px;
423
+ -webkit-transform-origin: left center;
424
+ -moz-transform-origin: left center;
425
+ -o-transform-origin: left center;
426
+ transform-origin: left center;
427
+ }
428
+
429
+ &:nth-child(3) {
430
+ top: 20px;
431
+ -webkit-transform-origin: left center;
432
+ -moz-transform-origin: left center;
433
+ -o-transform-origin: left center;
434
+ transform-origin: left center;
435
+ }
436
+ }
437
+
438
+ &.fos-menu-open {
439
+ height: 25px;
440
+
441
+ span {
442
+ &:nth-child(1) {
443
+ -webkit-transform: rotate(45deg);
444
+ -moz-transform: rotate(45deg);
445
+ -o-transform: rotate(45deg);
446
+ transform: rotate(45deg);
447
+ top: 0px;
448
+ left: 4.33px;
449
+ }
450
+
451
+ &:nth-child(2) {
452
+ width: 0%;
453
+ opacity: 0;
454
+ }
455
+
456
+ &:nth-child(3) {
457
+ -webkit-transform: rotate(-45deg);
458
+ -moz-transform: rotate(-45deg);
459
+ -o-transform: rotate(-45deg);
460
+ transform: rotate(-45deg);
461
+ top: 23.33px;
462
+ left: 4.33px;
463
+ }
464
+ }
465
+ }
466
+
467
+ &:hover {
468
+ span {
469
+ background-color: $primary;
470
+ }
471
+ }
472
+ }
473
+
474
+ .fos-topbar {
475
+ .fos-menu-icon {
476
+ margin-top: 6.4px;
477
+ }
478
+ }
479
+
480
+ .fos-title {
481
+ .fos-menu-icon {
482
+ margin-top: 10px;
483
+ }
484
+ }
485
+
486
+ .fos-navigation {
487
+ .fos-menu-icon {
488
+ position: absolute;
489
+ z-index: 10;
490
+ }
491
+ }
492
+
493
+
494
+ .form-control {
495
+ border-radius: $input-border-radius;
496
+ border-color: $input-border-color;
497
+ background-color: $input-bg;
498
+
499
+ &:focus {
500
+ color: $input-focus-color;
501
+ background-color: $input-focus-bg;
502
+ border-color: $input-focus-border-color;
503
+ box-shadow: none;
504
+ }
505
+ }
506
+
507
+ .btn-primary {
508
+ color: $secondary;
509
+ background-color: $primary;
510
+ border-color: $primary;
511
+
512
+ &:hover {
513
+ background-color: $primary;
514
+ border-color: $primary;
515
+ }
516
+
517
+ &:focus {
518
+ box-shadow: none;
519
+ }
520
+
521
+ &:active {
522
+ &:focus {
523
+ color: $secondary !important;
524
+ background-color: $primary !important;
525
+ border-color: $primary !important;
526
+ box-shadow: none !important;
527
+ }
528
+ }
529
+ }