best 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (128) hide show
  1. data/README.md +19 -0
  2. data/framework/best/best.rb +32 -0
  3. data/framework/best/stylesheets/_best.scss +15 -0
  4. data/framework/best/stylesheets/best/_button.scss +49 -0
  5. data/framework/best/stylesheets/best/_effects.scss +5 -0
  6. data/framework/best/stylesheets/best/_form.scss +6 -0
  7. data/framework/best/stylesheets/best/_layout.scss +7 -0
  8. data/framework/best/stylesheets/best/_navigation.scss +8 -0
  9. data/framework/best/stylesheets/best/_reset.scss +4 -0
  10. data/framework/best/stylesheets/best/_utilities.scss +4 -0
  11. data/framework/best/stylesheets/best/effects/_iterative.scss +15 -0
  12. data/framework/best/stylesheets/best/effects/_keyframes.scss +121 -0
  13. data/framework/best/stylesheets/best/form/_form-layout.scss +120 -0
  14. data/framework/best/stylesheets/best/form/_form-style.scss +41 -0
  15. data/framework/best/stylesheets/best/form/_form-validation.scss +25 -0
  16. data/framework/best/stylesheets/best/layout/_dl-horizontal.scss +32 -0
  17. data/framework/best/stylesheets/best/layout/_equal-heights.scss +70 -0
  18. data/framework/best/stylesheets/best/layout/_layout-center.scss +20 -0
  19. data/framework/best/stylesheets/best/layout/_mediablock.scss +34 -0
  20. data/framework/best/stylesheets/best/navigation/_navigation-breadcrumb.scss +59 -0
  21. data/framework/best/stylesheets/best/navigation/_navigation-dropdown.scss +39 -0
  22. data/framework/best/stylesheets/best/navigation/_navigation-horizontal.scss +34 -0
  23. data/framework/best/stylesheets/best/navigation/_navigation.scss +28 -0
  24. data/framework/best/stylesheets/best/navigation/_tinynav.scss +18 -0
  25. data/framework/best/stylesheets/best/reset/_normalize.scss +376 -0
  26. data/framework/best/stylesheets/best/utilities/_em.scss +6 -0
  27. data/template/breakpoints.html +89 -0
  28. data/template/codekit-config.json +1142 -0
  29. data/template/colors.html +115 -0
  30. data/template/components/custom-select/arrow.gif +0 -0
  31. data/template/components/custom-select/custom-select.css +23 -0
  32. data/template/components/custom-select/custom-select.html +31 -0
  33. data/template/components/custom-select/custom-select.js +9 -0
  34. data/template/components/custom-select/customSelect.jquery.js +56 -0
  35. data/template/components/custom-select/customSelect.jquery.min.js +1 -0
  36. data/template/components/dropdown/dropdown.css +54 -0
  37. data/template/components/dropdown/dropdown.html +34 -0
  38. data/template/components/dropdown/dropdown.js +50 -0
  39. data/template/components/example component/component.css +5 -0
  40. data/template/components/example component/component.html +13 -0
  41. data/template/components/example component/component.js b/data/template/components/example → component/component.js +0 -0
  42. data/template/components/fancybox/CHANGELOG.md +115 -0
  43. data/template/components/fancybox/README.md +217 -0
  44. data/template/components/fancybox/component.json +8 -0
  45. data/template/components/fancybox/demo/1_b.jpg +0 -0
  46. data/template/components/fancybox/demo/1_s.jpg +0 -0
  47. data/template/components/fancybox/demo/2_b.jpg +0 -0
  48. data/template/components/fancybox/demo/2_s.jpg +0 -0
  49. data/template/components/fancybox/demo/3_b.jpg +0 -0
  50. data/template/components/fancybox/demo/3_s.jpg +0 -0
  51. data/template/components/fancybox/demo/4_b.jpg +0 -0
  52. data/template/components/fancybox/demo/4_s.jpg +0 -0
  53. data/template/components/fancybox/demo/5_b.jpg +0 -0
  54. data/template/components/fancybox/demo/5_s.jpg +0 -0
  55. data/template/components/fancybox/demo/ajax.txt +15 -0
  56. data/template/components/fancybox/demo/iframe.html +26 -0
  57. data/template/components/fancybox/demo/index.html +307 -0
  58. data/template/components/fancybox/lib/jquery-1.8.2.min.js +2 -0
  59. data/template/components/fancybox/lib/jquery.mousewheel-3.0.6.pack.js +13 -0
  60. data/template/components/fancybox/source/blank.gif +0 -0
  61. data/template/components/fancybox/source/fancybox_loading.gif +0 -0
  62. data/template/components/fancybox/source/fancybox_overlay.png +0 -0
  63. data/template/components/fancybox/source/fancybox_sprite.png +0 -0
  64. data/template/components/fancybox/source/helpers/fancybox_buttons.png +0 -0
  65. data/template/components/fancybox/source/helpers/jquery.fancybox-buttons.css +96 -0
  66. data/template/components/fancybox/source/helpers/jquery.fancybox-buttons.js +121 -0
  67. data/template/components/fancybox/source/helpers/jquery.fancybox-media.js +196 -0
  68. data/template/components/fancybox/source/helpers/jquery.fancybox-thumbs.css +54 -0
  69. data/template/components/fancybox/source/helpers/jquery.fancybox-thumbs.js +162 -0
  70. data/template/components/fancybox/source/jquery.fancybox.css +249 -0
  71. data/template/components/fancybox/source/jquery.fancybox.js +1985 -0
  72. data/template/components/fancybox/source/jquery.fancybox.pack.js +45 -0
  73. data/template/components/jquery/component.json +14 -0
  74. data/template/components/jquery/composer.json +23 -0
  75. data/template/components/jquery/jquery.js +9472 -0
  76. data/template/components/jquery/jquery.min.js +2 -0
  77. data/template/config.rb +25 -0
  78. data/template/css/style.css +1094 -0
  79. data/template/fancybox.html +118 -0
  80. data/template/forms.html +132 -0
  81. data/template/grid.html +122 -0
  82. data/template/index.html +116 -0
  83. data/template/jade/--- from cybex as inspiration/keyvisuals.jade +37 -0
  84. data/template/jade/--- from cybex as inspiration/m-carousel.jade +37 -0
  85. data/template/jade/--- from cybex as inspiration/m-faq.jade +23 -0
  86. data/template/jade/--- from cybex as inspiration/m-keyvisual.jade +55 -0
  87. data/template/jade/--- from cybex as inspiration/m-search.jade +3 -0
  88. data/template/jade/--- from cybex as inspiration/m-slideshow.jade +12 -0
  89. data/template/jade/--- from cybex as inspiration/m-social.jade +10 -0
  90. data/template/jade/breakpoints.jade +26 -0
  91. data/template/jade/colors.jade +32 -0
  92. data/template/jade/fancybox.jade +34 -0
  93. data/template/jade/forms.jade +39 -0
  94. data/template/jade/grid.jade +36 -0
  95. data/template/jade/includes/module-development.jade +1 -0
  96. data/template/jade/includes/nav-development.jade +27 -0
  97. data/template/jade/includes/nav-meta.jade +6 -0
  98. data/template/jade/includes/nav-primary.jade +5 -0
  99. data/template/jade/includes/nav-secondary.jade +18 -0
  100. data/template/jade/index.jade +33 -0
  101. data/template/jade/layouts/layout-footer.jade +5 -0
  102. data/template/jade/layouts/layout-header.jade +3 -0
  103. data/template/jade/layouts/layout-html5.jade +26 -0
  104. data/template/jade/layouts/layout-page.jade +40 -0
  105. data/template/jade/mixins/form-helpers.jade +10 -0
  106. data/template/jade/mixins/mixin-menu.jade +3 -0
  107. data/template/jade/typography.jade +38 -0
  108. data/template/js/footer.js +16 -0
  109. data/template/js/footer.min.js +3 -0
  110. data/template/js/header.js +1 -0
  111. data/template/js/header.min.js +3 -0
  112. data/template/js/main.js +18 -0
  113. data/template/js/main.min.js +1 -0
  114. data/template/js/vendor/jquery.flexslider.min.js +6 -0
  115. data/template/js/vendor/modernizr-custom.js +4 -0
  116. data/template/readme.md +6 -0
  117. data/template/sass/_base.scss +66 -0
  118. data/template/sass/_config.scss +58 -0
  119. data/template/sass/_labs.scss +4 -0
  120. data/template/sass/_layout.scss +26 -0
  121. data/template/sass/_m-breakpoints.scss +42 -0
  122. data/template/sass/_m-colors.scss +39 -0
  123. data/template/sass/_m-navigation.scss +43 -0
  124. data/template/sass/_m-offcanvas.scss +60 -0
  125. data/template/sass/_module.scss +63 -0
  126. data/template/sass/style.scss +38 -0
  127. data/template/typography.html +120 -0
  128. metadata +130 -3
@@ -0,0 +1,6 @@
1
+
2
+ // EM function
3
+ // ============================================================================
4
+ @function em($target, $context: $base-font-size-unitless) {
5
+ @return ($target / $context) * 1em;
6
+ }
@@ -0,0 +1,89 @@
1
+
2
+ <!--include mixins/m-keyvisual--><!DOCTYPE html><!--[if lt IE 7]><html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"><![endif]--><!--[if IE 7]><html class="no-js lt-ie9 lt-ie8" lang="en"><![endif]--><!--[if IE 8]><html class="no-js lt-ie9" lang="en"><![endif]--><!--[if gt IE 8]><!-->
3
+ <html lang="en" dir="ltr" class="no-js"><!--<![endif]-->
4
+ <head>
5
+ <meta charset="utf-8">
6
+ <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
7
+ <meta name="viewport" content="width=device-width, initial-scale=1">
8
+ <link rel="stylesheet" href="css/style.css">
9
+ <script src="js/header.min.js" type="text/javascript"></script>
10
+ <!--script(type="text/javascript", src="http://use.typekit.net/uwa6eml.js")-->
11
+ <!--| <script type="text/javascript">try{Typekit.load();}catch(e){}</script>-->
12
+ <title>Breakpoints</title>
13
+ </head>
14
+ <body class="page-breakpoints">
15
+ <div class="l-site">
16
+ <header class="l-header">
17
+ <div class="inner">
18
+ <nav class="m-nav-primary">
19
+ <ul>
20
+ <li><a href="index.html" id="bestLink">Best</a></li>
21
+ <!--li: mixin menu-item('Best', 'index.html')-->
22
+ <li class="sidebarToggleContainer"><a href="#" id="sidebarToggle">Toggle sidebar</a></li>
23
+ </ul>
24
+ </nav>
25
+ </div>
26
+ </header>
27
+ <div role="main" class="l-main">
28
+ <div class="inner">
29
+ <div class="l-primary">
30
+ <article class="article">
31
+ <h1>Breakpoints</h1>
32
+ <p>Which breakpoints are we using and why?</p>
33
+ <div class="m-breakpoints">
34
+ <div class="breakpoint--small">I'm the small breakpoint</div>
35
+ <div class="breakpoint--medium">I'm the medium breakpoint</div>
36
+ <div class="breakpoint--large">I'm the large breakpoint</div>
37
+ </div>
38
+ </article>
39
+ </div>
40
+ </div>
41
+ </div>
42
+ <div class="l-development">
43
+ <nav class="m-nav-development">
44
+ <ul>
45
+ <li class="category">Base
46
+ <ul>
47
+ <li><a href="colors.html" class="">Colors</a>
48
+ </li>
49
+ <li><a href="typography.html" class="">Typography</a>
50
+ </li>
51
+ <li><a href="forms.html" class="">Forms</a>
52
+ </li>
53
+ </ul>
54
+ </li>
55
+ <li class="category">Layout
56
+ <ul>
57
+ <li><a href="grid.html" class="">Grid</a>
58
+ </li>
59
+ <li><a href="breakpoints.html" class="selected">Breakpoints</a>
60
+ </li>
61
+ </ul>
62
+ </li>
63
+ <li class="category">Components
64
+ <ul>
65
+ <li><a href="fancybox.html" class="">Fancybox</a>
66
+ </li>
67
+ <li><a href="components/dropdown/dropdown.html" class="">Dropdown</a>
68
+ </li>
69
+ </ul>
70
+ </li><!--li.expanded<a href="#">Seite Level 1</a>
71
+ <ul>
72
+ <li><a href="#">Seite Level 2</a></li><a href="#" class="">Seite Level 2</a><a href="#" class="">Seite Level 2</a><a href="#" class="">Seite Level 2</a><a href="#" class="">Seite Level 2</a><a href="#" class="">Seite Level 2</a>
73
+ </ul>-->
74
+ </ul>
75
+ </nav>
76
+ </div>
77
+ <!--.l-sticky-footer-->
78
+ </div>
79
+ <footer class="l-footer">
80
+ <div class="inner">
81
+ <!--include ../includes/module-search.jade-->
82
+ <!--include ../includes/nav-meta.jade-->
83
+ <!--include ../includes/module-social.jade-->
84
+ </div>
85
+ </footer>
86
+ <script src="js/footer.min.js"></script>
87
+ <script src="js/main.js"></script>
88
+ </body>
89
+ </html>
@@ -0,0 +1,1142 @@
1
+ {
2
+ "CodeKitInfo" : "This is a CodeKit project configuration file. It is designed to sync project settings across multiple machines. Modifying the contents of this file can be a poor life decision if you don't know what you're doing. This file is not useful unless accompanied by the project that created it in CodeKit. For more information, see: http:\/\/incident57.com\/codekit",
3
+ "creatorBuild" : "8239",
4
+ "files" : {
5
+ "\/jade\/colors.jade" : {
6
+ "ignoreWasSetByUser" : 0,
7
+ "ignore" : 0,
8
+ "hidden" : 0,
9
+ "outputPathIsSetByUser" : 0,
10
+ "inputAbbreviatedPath" : "\/jade\/colors.jade",
11
+ "outputStyle" : 0,
12
+ "compileDebug" : 1,
13
+ "outputAbbreviatedPath" : "\/colors.html",
14
+ "fileType" : 512
15
+ },
16
+ "\/sass\/_layout.scss" : {
17
+ "ignoreWasSetByUser" : 0,
18
+ "ignore" : 1,
19
+ "hidden" : 0,
20
+ "outputPathIsSetByUser" : 0,
21
+ "inputAbbreviatedPath" : "\/sass\/_layout.scss",
22
+ "outputStyle" : 0,
23
+ "shouldRunBless" : 0,
24
+ "outputAbbreviatedPath" : "\/css\/_layout.css",
25
+ "fileType" : 4,
26
+ "debugStyle" : 0
27
+ },
28
+ "\/components\/custom-select\/customSelect.jquery.min.js" : {
29
+ "ignoreWasSetByUser" : 0,
30
+ "ignore" : 1,
31
+ "hidden" : 0,
32
+ "outputPathIsSetByUser" : 0,
33
+ "inputAbbreviatedPath" : "\/components\/custom-select\/customSelect.jquery.min.js",
34
+ "outputStyle" : 1,
35
+ "syntaxCheckerStyle" : 1,
36
+ "outputAbbreviatedPath" : "\/components\/custom-select\/customSelect.jquery.min.min.js",
37
+ "fileType" : 64
38
+ },
39
+ "\/jade\/--- from cybex as inspiration\/m-search.jade" : {
40
+ "ignoreWasSetByUser" : 0,
41
+ "ignore" : 1,
42
+ "hidden" : 0,
43
+ "outputPathIsSetByUser" : 0,
44
+ "inputAbbreviatedPath" : "\/jade\/--- from cybex as inspiration\/m-search.jade",
45
+ "outputStyle" : 0,
46
+ "compileDebug" : 1,
47
+ "outputAbbreviatedPath" : "\/m-search.html",
48
+ "fileType" : 512
49
+ },
50
+ "\/components\/example component\/component.js" : {
51
+ "ignoreWasSetByUser" : 0,
52
+ "ignore" : 0,
53
+ "hidden" : 0,
54
+ "outputPathIsSetByUser" : 0,
55
+ "inputAbbreviatedPath" : "\/components\/example component\/component.js",
56
+ "outputStyle" : 1,
57
+ "syntaxCheckerStyle" : 1,
58
+ "outputAbbreviatedPath" : "\/components\/example component\/component.min.js",
59
+ "fileType" : 64
60
+ },
61
+ "\/jade\/index.jade" : {
62
+ "ignoreWasSetByUser" : 0,
63
+ "ignore" : 0,
64
+ "hidden" : 0,
65
+ "outputPathIsSetByUser" : 0,
66
+ "inputAbbreviatedPath" : "\/jade\/index.jade",
67
+ "outputStyle" : 0,
68
+ "compileDebug" : 1,
69
+ "outputAbbreviatedPath" : "\/index.html",
70
+ "fileType" : 512
71
+ },
72
+ "\/jade\/--- from cybex as inspiration\/m-faq.jade" : {
73
+ "ignoreWasSetByUser" : 0,
74
+ "ignore" : 0,
75
+ "hidden" : 0,
76
+ "outputPathIsSetByUser" : 0,
77
+ "inputAbbreviatedPath" : "\/jade\/--- from cybex as inspiration\/m-faq.jade",
78
+ "outputStyle" : 0,
79
+ "compileDebug" : 1,
80
+ "outputAbbreviatedPath" : "\/m-faq.html",
81
+ "fileType" : 512
82
+ },
83
+ "\/components\/fancybox\/demo\/1_b.jpg" : {
84
+ "ignoreWasSetByUser" : 0,
85
+ "ignore" : 0,
86
+ "hidden" : 0,
87
+ "outputPathIsSetByUser" : 0,
88
+ "inputAbbreviatedPath" : "\/components\/fancybox\/demo\/1_b.jpg",
89
+ "processed" : 0,
90
+ "outputAbbreviatedPath" : "\/components\/fancybox\/demo\/1_b.jpg",
91
+ "initialSize" : 82080,
92
+ "fileType" : 4096
93
+ },
94
+ "\/components\/fancybox\/source\/fancybox_sprite.png" : {
95
+ "ignoreWasSetByUser" : 0,
96
+ "ignore" : 0,
97
+ "hidden" : 0,
98
+ "outputPathIsSetByUser" : 0,
99
+ "inputAbbreviatedPath" : "\/components\/fancybox\/source\/fancybox_sprite.png",
100
+ "processed" : 0,
101
+ "outputAbbreviatedPath" : "\/components\/fancybox\/source\/fancybox_sprite.png",
102
+ "initialSize" : 1362,
103
+ "fileType" : 8192
104
+ },
105
+ "\/jade\/--- from cybex as inspiration\/m-slideshow.jade" : {
106
+ "ignoreWasSetByUser" : 0,
107
+ "ignore" : 0,
108
+ "hidden" : 0,
109
+ "outputPathIsSetByUser" : 0,
110
+ "inputAbbreviatedPath" : "\/jade\/--- from cybex as inspiration\/m-slideshow.jade",
111
+ "outputStyle" : 0,
112
+ "compileDebug" : 1,
113
+ "outputAbbreviatedPath" : "\/m-slideshow.html",
114
+ "fileType" : 512
115
+ },
116
+ "\/jade\/breakpoints.jade" : {
117
+ "ignoreWasSetByUser" : 0,
118
+ "ignore" : 0,
119
+ "hidden" : 0,
120
+ "outputPathIsSetByUser" : 0,
121
+ "inputAbbreviatedPath" : "\/jade\/breakpoints.jade",
122
+ "outputStyle" : 0,
123
+ "compileDebug" : 1,
124
+ "outputAbbreviatedPath" : "\/breakpoints.html",
125
+ "fileType" : 512
126
+ },
127
+ "\/components\/fancybox\/demo\/4_s.jpg" : {
128
+ "ignoreWasSetByUser" : 0,
129
+ "ignore" : 0,
130
+ "hidden" : 0,
131
+ "outputPathIsSetByUser" : 0,
132
+ "inputAbbreviatedPath" : "\/components\/fancybox\/demo\/4_s.jpg",
133
+ "processed" : 0,
134
+ "outputAbbreviatedPath" : "\/components\/fancybox\/demo\/4_s.jpg",
135
+ "initialSize" : 5203,
136
+ "fileType" : 4096
137
+ },
138
+ "\/js\/footer.min.js" : {
139
+ "ignoreWasSetByUser" : 0,
140
+ "ignore" : 1,
141
+ "hidden" : 0,
142
+ "outputPathIsSetByUser" : 0,
143
+ "inputAbbreviatedPath" : "\/js\/footer.min.js",
144
+ "outputStyle" : 1,
145
+ "syntaxCheckerStyle" : 1,
146
+ "outputAbbreviatedPath" : "\/js\/footer.min.min.js",
147
+ "fileType" : 64
148
+ },
149
+ "\/components\/custom-select\/custom-select.html" : {
150
+ "ignoreWasSetByUser" : 0,
151
+ "ignore" : 0,
152
+ "hidden" : 0,
153
+ "outputPathIsSetByUser" : 0,
154
+ "inputAbbreviatedPath" : "\/components\/custom-select\/custom-select.html",
155
+ "outputAbbreviatedPath" : "No Output Path",
156
+ "fileType" : 2048
157
+ },
158
+ "\/components\/fancybox\/lib\/jquery-1.8.2.min.js" : {
159
+ "ignoreWasSetByUser" : 0,
160
+ "ignore" : 0,
161
+ "hidden" : 0,
162
+ "outputPathIsSetByUser" : 0,
163
+ "inputAbbreviatedPath" : "\/components\/fancybox\/lib\/jquery-1.8.2.min.js",
164
+ "outputStyle" : 1,
165
+ "syntaxCheckerStyle" : 1,
166
+ "outputAbbreviatedPath" : "\/components\/fancybox\/lib\/jquery-1.8.2.min.min.js",
167
+ "fileType" : 64
168
+ },
169
+ "\/js\/main.min.js" : {
170
+ "ignoreWasSetByUser" : 0,
171
+ "ignore" : 1,
172
+ "hidden" : 0,
173
+ "outputPathIsSetByUser" : 0,
174
+ "inputAbbreviatedPath" : "\/js\/main.min.js",
175
+ "outputStyle" : 1,
176
+ "syntaxCheckerStyle" : 1,
177
+ "outputAbbreviatedPath" : "\/js\/main.min.min.js",
178
+ "fileType" : 64
179
+ },
180
+ "\/jade\/--- from cybex as inspiration\/keyvisuals.jade" : {
181
+ "ignoreWasSetByUser" : 0,
182
+ "ignore" : 0,
183
+ "hidden" : 0,
184
+ "outputPathIsSetByUser" : 0,
185
+ "inputAbbreviatedPath" : "\/jade\/--- from cybex as inspiration\/keyvisuals.jade",
186
+ "outputStyle" : 0,
187
+ "compileDebug" : 1,
188
+ "outputAbbreviatedPath" : "\/keyvisuals.html",
189
+ "fileType" : 512
190
+ },
191
+ "\/sass\/_m-offcanvas.scss" : {
192
+ "ignoreWasSetByUser" : 0,
193
+ "ignore" : 1,
194
+ "hidden" : 0,
195
+ "outputPathIsSetByUser" : 0,
196
+ "inputAbbreviatedPath" : "\/sass\/_m-offcanvas.scss",
197
+ "outputStyle" : 0,
198
+ "shouldRunBless" : 0,
199
+ "outputAbbreviatedPath" : "\/css\/_m-offcanvas.css",
200
+ "fileType" : 4,
201
+ "debugStyle" : 0
202
+ },
203
+ "\/sass\/_base.scss" : {
204
+ "ignoreWasSetByUser" : 0,
205
+ "ignore" : 1,
206
+ "hidden" : 0,
207
+ "outputPathIsSetByUser" : 0,
208
+ "inputAbbreviatedPath" : "\/sass\/_base.scss",
209
+ "outputStyle" : 0,
210
+ "shouldRunBless" : 0,
211
+ "outputAbbreviatedPath" : "\/css\/_base.css",
212
+ "fileType" : 4,
213
+ "debugStyle" : 0
214
+ },
215
+ "\/jade\/mixins\/form-helpers.jade" : {
216
+ "ignoreWasSetByUser" : 0,
217
+ "ignore" : 1,
218
+ "hidden" : 0,
219
+ "outputPathIsSetByUser" : 0,
220
+ "inputAbbreviatedPath" : "\/jade\/mixins\/form-helpers.jade",
221
+ "outputStyle" : 0,
222
+ "compileDebug" : 1,
223
+ "outputAbbreviatedPath" : "\/form-helpers.html",
224
+ "fileType" : 512
225
+ },
226
+ "\/jade\/includes\/nav-primary.jade" : {
227
+ "ignoreWasSetByUser" : 0,
228
+ "ignore" : 1,
229
+ "hidden" : 0,
230
+ "outputPathIsSetByUser" : 0,
231
+ "inputAbbreviatedPath" : "\/jade\/includes\/nav-primary.jade",
232
+ "outputStyle" : 0,
233
+ "compileDebug" : 1,
234
+ "outputAbbreviatedPath" : "\/nav-primary.html",
235
+ "fileType" : 512
236
+ },
237
+ "\/js\/vendor\/jquery.flexslider.min.js" : {
238
+ "ignoreWasSetByUser" : 0,
239
+ "ignore" : 0,
240
+ "hidden" : 0,
241
+ "outputPathIsSetByUser" : 0,
242
+ "inputAbbreviatedPath" : "\/js\/vendor\/jquery.flexslider.min.js",
243
+ "outputStyle" : 1,
244
+ "syntaxCheckerStyle" : 1,
245
+ "outputAbbreviatedPath" : "\/js\/vendor\/jquery.flexslider.min.min.js",
246
+ "fileType" : 64
247
+ },
248
+ "\/components\/dropdown\/dropdown.js" : {
249
+ "ignoreWasSetByUser" : 0,
250
+ "ignore" : 0,
251
+ "hidden" : 0,
252
+ "outputPathIsSetByUser" : 0,
253
+ "inputAbbreviatedPath" : "\/components\/dropdown\/dropdown.js",
254
+ "outputStyle" : 1,
255
+ "syntaxCheckerStyle" : 1,
256
+ "outputAbbreviatedPath" : "\/components\/dropdown\/dropdown.min.js",
257
+ "fileType" : 64
258
+ },
259
+ "\/jade\/--- from cybex as inspiration\/m-carousel.jade" : {
260
+ "ignoreWasSetByUser" : 0,
261
+ "ignore" : 0,
262
+ "hidden" : 0,
263
+ "outputPathIsSetByUser" : 0,
264
+ "inputAbbreviatedPath" : "\/jade\/--- from cybex as inspiration\/m-carousel.jade",
265
+ "outputStyle" : 0,
266
+ "compileDebug" : 1,
267
+ "outputAbbreviatedPath" : "\/m-carousel.html",
268
+ "fileType" : 512
269
+ },
270
+ "\/jade\/includes\/nav-secondary.jade" : {
271
+ "ignoreWasSetByUser" : 0,
272
+ "ignore" : 1,
273
+ "hidden" : 0,
274
+ "outputPathIsSetByUser" : 0,
275
+ "inputAbbreviatedPath" : "\/jade\/includes\/nav-secondary.jade",
276
+ "outputStyle" : 0,
277
+ "compileDebug" : 1,
278
+ "outputAbbreviatedPath" : "\/nav-secondary.html",
279
+ "fileType" : 512
280
+ },
281
+ "\/components\/fancybox\/source\/helpers\/jquery.fancybox-thumbs.css" : {
282
+ "ignoreWasSetByUser" : 0,
283
+ "ignore" : 0,
284
+ "hidden" : 0,
285
+ "outputPathIsSetByUser" : 0,
286
+ "inputAbbreviatedPath" : "\/components\/fancybox\/source\/helpers\/jquery.fancybox-thumbs.css",
287
+ "outputAbbreviatedPath" : "No Output Path",
288
+ "fileType" : 16
289
+ },
290
+ "\/jade\/grid.jade" : {
291
+ "ignoreWasSetByUser" : 0,
292
+ "ignore" : 0,
293
+ "hidden" : 0,
294
+ "outputPathIsSetByUser" : 0,
295
+ "inputAbbreviatedPath" : "\/jade\/grid.jade",
296
+ "outputStyle" : 0,
297
+ "compileDebug" : 1,
298
+ "outputAbbreviatedPath" : "\/grid.html",
299
+ "fileType" : 512
300
+ },
301
+ "\/jade\/layouts\/layout-page.jade" : {
302
+ "ignoreWasSetByUser" : 0,
303
+ "ignore" : 1,
304
+ "hidden" : 0,
305
+ "outputPathIsSetByUser" : 0,
306
+ "inputAbbreviatedPath" : "\/jade\/layouts\/layout-page.jade",
307
+ "outputStyle" : 0,
308
+ "compileDebug" : 1,
309
+ "outputAbbreviatedPath" : "\/layout-page.html",
310
+ "fileType" : 512
311
+ },
312
+ "\/js\/footer.js" : {
313
+ "ignoreWasSetByUser" : 0,
314
+ "ignore" : 0,
315
+ "hidden" : 0,
316
+ "outputPathIsSetByUser" : 0,
317
+ "inputAbbreviatedPath" : "\/js\/footer.js",
318
+ "outputStyle" : 1,
319
+ "syntaxCheckerStyle" : 0,
320
+ "outputAbbreviatedPath" : "\/js\/footer.min.js",
321
+ "fileType" : 64
322
+ },
323
+ "\/components\/custom-select\/custom-select.css" : {
324
+ "ignoreWasSetByUser" : 0,
325
+ "ignore" : 0,
326
+ "hidden" : 0,
327
+ "outputPathIsSetByUser" : 0,
328
+ "inputAbbreviatedPath" : "\/components\/custom-select\/custom-select.css",
329
+ "outputAbbreviatedPath" : "No Output Path",
330
+ "fileType" : 16
331
+ },
332
+ "\/components\/fancybox\/source\/fancybox_overlay.png" : {
333
+ "ignoreWasSetByUser" : 0,
334
+ "ignore" : 0,
335
+ "hidden" : 0,
336
+ "outputPathIsSetByUser" : 0,
337
+ "inputAbbreviatedPath" : "\/components\/fancybox\/source\/fancybox_overlay.png",
338
+ "processed" : 0,
339
+ "outputAbbreviatedPath" : "\/components\/fancybox\/source\/fancybox_overlay.png",
340
+ "initialSize" : 1003,
341
+ "fileType" : 8192
342
+ },
343
+ "\/components\/fancybox\/demo\/3_s.jpg" : {
344
+ "ignoreWasSetByUser" : 0,
345
+ "ignore" : 0,
346
+ "hidden" : 0,
347
+ "outputPathIsSetByUser" : 0,
348
+ "inputAbbreviatedPath" : "\/components\/fancybox\/demo\/3_s.jpg",
349
+ "processed" : 0,
350
+ "outputAbbreviatedPath" : "\/components\/fancybox\/demo\/3_s.jpg",
351
+ "initialSize" : 2543,
352
+ "fileType" : 4096
353
+ },
354
+ "\/components\/custom-select\/customSelect.jquery.js" : {
355
+ "ignoreWasSetByUser" : 0,
356
+ "ignore" : 0,
357
+ "hidden" : 0,
358
+ "outputPathIsSetByUser" : 0,
359
+ "inputAbbreviatedPath" : "\/components\/custom-select\/customSelect.jquery.js",
360
+ "outputStyle" : 1,
361
+ "syntaxCheckerStyle" : 1,
362
+ "outputAbbreviatedPath" : "\/components\/custom-select\/customSelect.jquery.min.js",
363
+ "fileType" : 64
364
+ },
365
+ "\/sass\/style.scss" : {
366
+ "ignoreWasSetByUser" : 1,
367
+ "ignore" : 0,
368
+ "hidden" : 0,
369
+ "outputPathIsSetByUser" : 0,
370
+ "inputAbbreviatedPath" : "\/sass\/style.scss",
371
+ "outputStyle" : 0,
372
+ "shouldRunBless" : 0,
373
+ "outputAbbreviatedPath" : "\/css\/style.css",
374
+ "fileType" : 4,
375
+ "debugStyle" : 0
376
+ },
377
+ "\/components\/custom-select\/custom-select.js" : {
378
+ "ignoreWasSetByUser" : 0,
379
+ "ignore" : 0,
380
+ "hidden" : 0,
381
+ "outputPathIsSetByUser" : 0,
382
+ "inputAbbreviatedPath" : "\/components\/custom-select\/custom-select.js",
383
+ "outputStyle" : 1,
384
+ "syntaxCheckerStyle" : 1,
385
+ "outputAbbreviatedPath" : "\/components\/custom-select\/custom-select.min.js",
386
+ "fileType" : 64
387
+ },
388
+ "\/jade\/--- from cybex as inspiration\/m-social.jade" : {
389
+ "ignoreWasSetByUser" : 0,
390
+ "ignore" : 1,
391
+ "hidden" : 0,
392
+ "outputPathIsSetByUser" : 0,
393
+ "inputAbbreviatedPath" : "\/jade\/--- from cybex as inspiration\/m-social.jade",
394
+ "outputStyle" : 0,
395
+ "compileDebug" : 1,
396
+ "outputAbbreviatedPath" : "\/m-social.html",
397
+ "fileType" : 512
398
+ },
399
+ "\/jade\/includes\/nav-meta.jade" : {
400
+ "ignoreWasSetByUser" : 0,
401
+ "ignore" : 1,
402
+ "hidden" : 0,
403
+ "outputPathIsSetByUser" : 0,
404
+ "inputAbbreviatedPath" : "\/jade\/includes\/nav-meta.jade",
405
+ "outputStyle" : 0,
406
+ "compileDebug" : 1,
407
+ "outputAbbreviatedPath" : "\/nav-meta.html",
408
+ "fileType" : 512
409
+ },
410
+ "\/components\/jquery\/jquery.js" : {
411
+ "ignoreWasSetByUser" : 0,
412
+ "ignore" : 0,
413
+ "hidden" : 0,
414
+ "outputPathIsSetByUser" : 0,
415
+ "inputAbbreviatedPath" : "\/components\/jquery\/jquery.js",
416
+ "outputStyle" : 1,
417
+ "syntaxCheckerStyle" : 1,
418
+ "outputAbbreviatedPath" : "\/components\/jquery\/jquery.min.js",
419
+ "fileType" : 64
420
+ },
421
+ "\/components\/fancybox\/source\/helpers\/jquery.fancybox-thumbs.js" : {
422
+ "ignoreWasSetByUser" : 0,
423
+ "ignore" : 0,
424
+ "hidden" : 0,
425
+ "outputPathIsSetByUser" : 0,
426
+ "inputAbbreviatedPath" : "\/components\/fancybox\/source\/helpers\/jquery.fancybox-thumbs.js",
427
+ "outputStyle" : 1,
428
+ "syntaxCheckerStyle" : 1,
429
+ "outputAbbreviatedPath" : "\/components\/fancybox\/source\/helpers\/jquery.fancybox-thumbs.min.js",
430
+ "fileType" : 64
431
+ },
432
+ "\/js\/header.js" : {
433
+ "ignoreWasSetByUser" : 0,
434
+ "ignore" : 0,
435
+ "hidden" : 0,
436
+ "outputPathIsSetByUser" : 0,
437
+ "inputAbbreviatedPath" : "\/js\/header.js",
438
+ "outputStyle" : 1,
439
+ "syntaxCheckerStyle" : 0,
440
+ "outputAbbreviatedPath" : "\/js\/header.min.js",
441
+ "fileType" : 64
442
+ },
443
+ "\/grid.html" : {
444
+ "ignoreWasSetByUser" : 0,
445
+ "ignore" : 1,
446
+ "hidden" : 0,
447
+ "outputPathIsSetByUser" : 0,
448
+ "inputAbbreviatedPath" : "\/grid.html",
449
+ "outputAbbreviatedPath" : "\/No Output Path",
450
+ "fileType" : 2048
451
+ },
452
+ "\/components\/fancybox\/demo\/5_b.jpg" : {
453
+ "ignoreWasSetByUser" : 0,
454
+ "ignore" : 0,
455
+ "hidden" : 0,
456
+ "outputPathIsSetByUser" : 0,
457
+ "inputAbbreviatedPath" : "\/components\/fancybox\/demo\/5_b.jpg",
458
+ "processed" : 0,
459
+ "outputAbbreviatedPath" : "\/components\/fancybox\/demo\/5_b.jpg",
460
+ "initialSize" : 76217,
461
+ "fileType" : 4096
462
+ },
463
+ "\/components\/fancybox\/source\/jquery.fancybox.pack.js" : {
464
+ "ignoreWasSetByUser" : 0,
465
+ "ignore" : 0,
466
+ "hidden" : 0,
467
+ "outputPathIsSetByUser" : 0,
468
+ "inputAbbreviatedPath" : "\/components\/fancybox\/source\/jquery.fancybox.pack.js",
469
+ "outputStyle" : 1,
470
+ "syntaxCheckerStyle" : 1,
471
+ "outputAbbreviatedPath" : "\/components\/fancybox\/source\/jquery.fancybox.pack.min.js",
472
+ "fileType" : 64
473
+ },
474
+ "\/forms.html" : {
475
+ "ignoreWasSetByUser" : 0,
476
+ "ignore" : 1,
477
+ "hidden" : 0,
478
+ "outputPathIsSetByUser" : 0,
479
+ "inputAbbreviatedPath" : "\/forms.html",
480
+ "outputAbbreviatedPath" : "\/No Output Path",
481
+ "fileType" : 2048
482
+ },
483
+ "\/components\/fancybox\/source\/jquery.fancybox.js" : {
484
+ "ignoreWasSetByUser" : 0,
485
+ "ignore" : 0,
486
+ "hidden" : 0,
487
+ "outputPathIsSetByUser" : 0,
488
+ "inputAbbreviatedPath" : "\/components\/fancybox\/source\/jquery.fancybox.js",
489
+ "outputStyle" : 1,
490
+ "syntaxCheckerStyle" : 1,
491
+ "outputAbbreviatedPath" : "\/components\/fancybox\/source\/jquery.fancybox.min.js",
492
+ "fileType" : 64
493
+ },
494
+ "\/components\/fancybox\/demo\/2_s.jpg" : {
495
+ "ignoreWasSetByUser" : 0,
496
+ "ignore" : 0,
497
+ "hidden" : 0,
498
+ "outputPathIsSetByUser" : 0,
499
+ "inputAbbreviatedPath" : "\/components\/fancybox\/demo\/2_s.jpg",
500
+ "processed" : 0,
501
+ "outputAbbreviatedPath" : "\/components\/fancybox\/demo\/2_s.jpg",
502
+ "initialSize" : 1455,
503
+ "fileType" : 4096
504
+ },
505
+ "\/breakpoints.html" : {
506
+ "ignoreWasSetByUser" : 0,
507
+ "ignore" : 1,
508
+ "hidden" : 0,
509
+ "outputPathIsSetByUser" : 0,
510
+ "inputAbbreviatedPath" : "\/breakpoints.html",
511
+ "outputAbbreviatedPath" : "\/No Output Path",
512
+ "fileType" : 2048
513
+ },
514
+ "\/jade\/fancybox.jade" : {
515
+ "ignoreWasSetByUser" : 0,
516
+ "ignore" : 0,
517
+ "hidden" : 0,
518
+ "outputPathIsSetByUser" : 0,
519
+ "inputAbbreviatedPath" : "\/jade\/fancybox.jade",
520
+ "outputStyle" : 0,
521
+ "compileDebug" : 1,
522
+ "outputAbbreviatedPath" : "\/fancybox.html",
523
+ "fileType" : 512
524
+ },
525
+ "\/components\/example component\/component.html" : {
526
+ "ignoreWasSetByUser" : 0,
527
+ "ignore" : 0,
528
+ "hidden" : 0,
529
+ "outputPathIsSetByUser" : 0,
530
+ "inputAbbreviatedPath" : "\/components\/example component\/component.html",
531
+ "outputAbbreviatedPath" : "No Output Path",
532
+ "fileType" : 2048
533
+ },
534
+ "\/index.html" : {
535
+ "ignoreWasSetByUser" : 0,
536
+ "ignore" : 1,
537
+ "hidden" : 0,
538
+ "outputPathIsSetByUser" : 0,
539
+ "inputAbbreviatedPath" : "\/index.html",
540
+ "outputAbbreviatedPath" : "\/No Output Path",
541
+ "fileType" : 2048
542
+ },
543
+ "\/components\/fancybox\/demo\/index.html" : {
544
+ "ignoreWasSetByUser" : 0,
545
+ "ignore" : 0,
546
+ "hidden" : 0,
547
+ "outputPathIsSetByUser" : 0,
548
+ "inputAbbreviatedPath" : "\/components\/fancybox\/demo\/index.html",
549
+ "outputAbbreviatedPath" : "No Output Path",
550
+ "fileType" : 2048
551
+ },
552
+ "\/components\/fancybox\/lib\/jquery.mousewheel-3.0.6.pack.js" : {
553
+ "ignoreWasSetByUser" : 0,
554
+ "ignore" : 0,
555
+ "hidden" : 0,
556
+ "outputPathIsSetByUser" : 0,
557
+ "inputAbbreviatedPath" : "\/components\/fancybox\/lib\/jquery.mousewheel-3.0.6.pack.js",
558
+ "outputStyle" : 1,
559
+ "syntaxCheckerStyle" : 1,
560
+ "outputAbbreviatedPath" : "\/components\/fancybox\/lib\/jquery.mousewheel-3.0.6.pack.min.js",
561
+ "fileType" : 64
562
+ },
563
+ "\/jade\/layouts\/layout-html5.jade" : {
564
+ "ignoreWasSetByUser" : 0,
565
+ "ignore" : 1,
566
+ "hidden" : 0,
567
+ "outputPathIsSetByUser" : 0,
568
+ "inputAbbreviatedPath" : "\/jade\/layouts\/layout-html5.jade",
569
+ "outputStyle" : 0,
570
+ "compileDebug" : 1,
571
+ "outputAbbreviatedPath" : "\/layout-html5.html",
572
+ "fileType" : 512
573
+ },
574
+ "\/components\/fancybox\/demo\/4_b.jpg" : {
575
+ "ignoreWasSetByUser" : 0,
576
+ "ignore" : 0,
577
+ "hidden" : 0,
578
+ "outputPathIsSetByUser" : 0,
579
+ "inputAbbreviatedPath" : "\/components\/fancybox\/demo\/4_b.jpg",
580
+ "processed" : 0,
581
+ "outputAbbreviatedPath" : "\/components\/fancybox\/demo\/4_b.jpg",
582
+ "initialSize" : 84150,
583
+ "fileType" : 4096
584
+ },
585
+ "\/components\/fancybox\/source\/helpers\/jquery.fancybox-buttons.js" : {
586
+ "ignoreWasSetByUser" : 0,
587
+ "ignore" : 0,
588
+ "hidden" : 0,
589
+ "outputPathIsSetByUser" : 0,
590
+ "inputAbbreviatedPath" : "\/components\/fancybox\/source\/helpers\/jquery.fancybox-buttons.js",
591
+ "outputStyle" : 1,
592
+ "syntaxCheckerStyle" : 1,
593
+ "outputAbbreviatedPath" : "\/components\/fancybox\/source\/helpers\/jquery.fancybox-buttons.min.js",
594
+ "fileType" : 64
595
+ },
596
+ "\/colors.html" : {
597
+ "ignoreWasSetByUser" : 0,
598
+ "ignore" : 1,
599
+ "hidden" : 0,
600
+ "outputPathIsSetByUser" : 0,
601
+ "inputAbbreviatedPath" : "\/colors.html",
602
+ "outputAbbreviatedPath" : "\/No Output Path",
603
+ "fileType" : 2048
604
+ },
605
+ "\/sass\/_m-navigation.scss" : {
606
+ "ignoreWasSetByUser" : 0,
607
+ "ignore" : 1,
608
+ "hidden" : 0,
609
+ "outputPathIsSetByUser" : 0,
610
+ "inputAbbreviatedPath" : "\/sass\/_m-navigation.scss",
611
+ "outputStyle" : 0,
612
+ "shouldRunBless" : 0,
613
+ "outputAbbreviatedPath" : "\/css\/_m-navigation.css",
614
+ "fileType" : 4,
615
+ "debugStyle" : 0
616
+ },
617
+ "\/components\/dropdown\/dropdown.html" : {
618
+ "ignoreWasSetByUser" : 0,
619
+ "ignore" : 0,
620
+ "hidden" : 0,
621
+ "outputPathIsSetByUser" : 0,
622
+ "inputAbbreviatedPath" : "\/components\/dropdown\/dropdown.html",
623
+ "outputAbbreviatedPath" : "No Output Path",
624
+ "fileType" : 2048
625
+ },
626
+ "\/components\/fancybox\/source\/helpers\/jquery.fancybox-buttons.css" : {
627
+ "ignoreWasSetByUser" : 0,
628
+ "ignore" : 0,
629
+ "hidden" : 0,
630
+ "outputPathIsSetByUser" : 0,
631
+ "inputAbbreviatedPath" : "\/components\/fancybox\/source\/helpers\/jquery.fancybox-buttons.css",
632
+ "outputAbbreviatedPath" : "No Output Path",
633
+ "fileType" : 16
634
+ },
635
+ "\/components\/example component\/component.css" : {
636
+ "ignoreWasSetByUser" : 0,
637
+ "ignore" : 0,
638
+ "hidden" : 0,
639
+ "outputPathIsSetByUser" : 0,
640
+ "inputAbbreviatedPath" : "\/components\/example component\/component.css",
641
+ "outputAbbreviatedPath" : "No Output Path",
642
+ "fileType" : 16
643
+ },
644
+ "\/components\/jquery\/jquery.min.js" : {
645
+ "ignoreWasSetByUser" : 0,
646
+ "ignore" : 1,
647
+ "hidden" : 0,
648
+ "outputPathIsSetByUser" : 0,
649
+ "inputAbbreviatedPath" : "\/components\/jquery\/jquery.min.js",
650
+ "outputStyle" : 1,
651
+ "syntaxCheckerStyle" : 1,
652
+ "outputAbbreviatedPath" : "\/components\/jquery\/jquery.min.min.js",
653
+ "fileType" : 64
654
+ },
655
+ "\/typography.html" : {
656
+ "ignoreWasSetByUser" : 0,
657
+ "ignore" : 1,
658
+ "hidden" : 0,
659
+ "outputPathIsSetByUser" : 0,
660
+ "inputAbbreviatedPath" : "\/typography.html",
661
+ "outputAbbreviatedPath" : "\/No Output Path",
662
+ "fileType" : 2048
663
+ },
664
+ "\/components\/fancybox\/demo\/1_s.jpg" : {
665
+ "ignoreWasSetByUser" : 0,
666
+ "ignore" : 0,
667
+ "hidden" : 0,
668
+ "outputPathIsSetByUser" : 0,
669
+ "inputAbbreviatedPath" : "\/components\/fancybox\/demo\/1_s.jpg",
670
+ "processed" : 0,
671
+ "outputAbbreviatedPath" : "\/components\/fancybox\/demo\/1_s.jpg",
672
+ "initialSize" : 8097,
673
+ "fileType" : 4096
674
+ },
675
+ "\/css\/style.css" : {
676
+ "ignoreWasSetByUser" : 0,
677
+ "ignore" : 1,
678
+ "hidden" : 0,
679
+ "outputPathIsSetByUser" : 0,
680
+ "inputAbbreviatedPath" : "\/css\/style.css",
681
+ "outputAbbreviatedPath" : "No Output Path",
682
+ "fileType" : 16
683
+ },
684
+ "\/jade\/--- from cybex as inspiration\/m-keyvisual.jade" : {
685
+ "ignoreWasSetByUser" : 0,
686
+ "ignore" : 0,
687
+ "hidden" : 0,
688
+ "outputPathIsSetByUser" : 0,
689
+ "inputAbbreviatedPath" : "\/jade\/--- from cybex as inspiration\/m-keyvisual.jade",
690
+ "outputStyle" : 0,
691
+ "compileDebug" : 1,
692
+ "outputAbbreviatedPath" : "\/m-keyvisual.html",
693
+ "fileType" : 512
694
+ },
695
+ "\/sass\/_config.scss" : {
696
+ "ignoreWasSetByUser" : 0,
697
+ "ignore" : 1,
698
+ "hidden" : 0,
699
+ "outputPathIsSetByUser" : 0,
700
+ "inputAbbreviatedPath" : "\/sass\/_config.scss",
701
+ "outputStyle" : 0,
702
+ "shouldRunBless" : 0,
703
+ "outputAbbreviatedPath" : "\/css\/_config.css",
704
+ "fileType" : 4,
705
+ "debugStyle" : 0
706
+ },
707
+ "\/jade\/includes\/module-development.jade" : {
708
+ "ignoreWasSetByUser" : 0,
709
+ "ignore" : 0,
710
+ "hidden" : 0,
711
+ "outputPathIsSetByUser" : 0,
712
+ "inputAbbreviatedPath" : "\/jade\/includes\/module-development.jade",
713
+ "outputStyle" : 0,
714
+ "compileDebug" : 1,
715
+ "outputAbbreviatedPath" : "\/module-development.html",
716
+ "fileType" : 512
717
+ },
718
+ "\/components\/fancybox\/demo\/iframe.html" : {
719
+ "ignoreWasSetByUser" : 0,
720
+ "ignore" : 0,
721
+ "hidden" : 0,
722
+ "outputPathIsSetByUser" : 0,
723
+ "inputAbbreviatedPath" : "\/components\/fancybox\/demo\/iframe.html",
724
+ "outputAbbreviatedPath" : "No Output Path",
725
+ "fileType" : 2048
726
+ },
727
+ "\/sass\/_m-colors.scss" : {
728
+ "ignoreWasSetByUser" : 0,
729
+ "ignore" : 1,
730
+ "hidden" : 0,
731
+ "outputPathIsSetByUser" : 0,
732
+ "inputAbbreviatedPath" : "\/sass\/_m-colors.scss",
733
+ "outputStyle" : 0,
734
+ "shouldRunBless" : 0,
735
+ "outputAbbreviatedPath" : "\/css\/_m-colors.css",
736
+ "fileType" : 4,
737
+ "debugStyle" : 0
738
+ },
739
+ "\/sass\/_module.scss" : {
740
+ "ignoreWasSetByUser" : 0,
741
+ "ignore" : 1,
742
+ "hidden" : 0,
743
+ "outputPathIsSetByUser" : 0,
744
+ "inputAbbreviatedPath" : "\/sass\/_module.scss",
745
+ "outputStyle" : 0,
746
+ "shouldRunBless" : 0,
747
+ "outputAbbreviatedPath" : "\/css\/_module.css",
748
+ "fileType" : 4,
749
+ "debugStyle" : 0
750
+ },
751
+ "\/components\/dropdown\/dropdown.css" : {
752
+ "ignoreWasSetByUser" : 0,
753
+ "ignore" : 0,
754
+ "hidden" : 0,
755
+ "outputPathIsSetByUser" : 0,
756
+ "inputAbbreviatedPath" : "\/components\/dropdown\/dropdown.css",
757
+ "outputAbbreviatedPath" : "No Output Path",
758
+ "fileType" : 16
759
+ },
760
+ "\/components\/fancybox\/demo\/3_b.jpg" : {
761
+ "ignoreWasSetByUser" : 0,
762
+ "ignore" : 0,
763
+ "hidden" : 0,
764
+ "outputPathIsSetByUser" : 0,
765
+ "inputAbbreviatedPath" : "\/components\/fancybox\/demo\/3_b.jpg",
766
+ "processed" : 0,
767
+ "outputAbbreviatedPath" : "\/components\/fancybox\/demo\/3_b.jpg",
768
+ "initialSize" : 55777,
769
+ "fileType" : 4096
770
+ },
771
+ "\/jade\/layouts\/layout-header.jade" : {
772
+ "ignoreWasSetByUser" : 0,
773
+ "ignore" : 1,
774
+ "hidden" : 0,
775
+ "outputPathIsSetByUser" : 0,
776
+ "inputAbbreviatedPath" : "\/jade\/layouts\/layout-header.jade",
777
+ "outputStyle" : 0,
778
+ "compileDebug" : 1,
779
+ "outputAbbreviatedPath" : "\/layout-header.html",
780
+ "fileType" : 512
781
+ },
782
+ "\/config.rb" : {
783
+ "ignoreWasSetByUser" : 0,
784
+ "ignore" : 0,
785
+ "hidden" : 0,
786
+ "outputPathIsSetByUser" : 0,
787
+ "inputAbbreviatedPath" : "\/config.rb",
788
+ "outputAbbreviatedPath" : "No Output Path",
789
+ "fileType" : 32768
790
+ },
791
+ "\/jade\/mixins\/mixin-menu.jade" : {
792
+ "ignoreWasSetByUser" : 0,
793
+ "ignore" : 1,
794
+ "hidden" : 0,
795
+ "outputPathIsSetByUser" : 0,
796
+ "inputAbbreviatedPath" : "\/jade\/mixins\/mixin-menu.jade",
797
+ "outputStyle" : 0,
798
+ "compileDebug" : 1,
799
+ "outputAbbreviatedPath" : "\/mixin-menu.html",
800
+ "fileType" : 512
801
+ },
802
+ "\/components\/fancybox\/source\/helpers\/fancybox_buttons.png" : {
803
+ "ignoreWasSetByUser" : 0,
804
+ "ignore" : 0,
805
+ "hidden" : 0,
806
+ "outputPathIsSetByUser" : 0,
807
+ "inputAbbreviatedPath" : "\/components\/fancybox\/source\/helpers\/fancybox_buttons.png",
808
+ "processed" : 0,
809
+ "outputAbbreviatedPath" : "\/components\/fancybox\/source\/helpers\/fancybox_buttons.png",
810
+ "initialSize" : 1080,
811
+ "fileType" : 8192
812
+ },
813
+ "\/sass\/_labs.scss" : {
814
+ "ignoreWasSetByUser" : 0,
815
+ "ignore" : 1,
816
+ "hidden" : 0,
817
+ "outputPathIsSetByUser" : 0,
818
+ "inputAbbreviatedPath" : "\/sass\/_labs.scss",
819
+ "outputStyle" : 0,
820
+ "shouldRunBless" : 0,
821
+ "outputAbbreviatedPath" : "\/css\/_labs.css",
822
+ "fileType" : 4,
823
+ "debugStyle" : 0
824
+ },
825
+ "\/jade\/layouts\/layout-footer.jade" : {
826
+ "ignoreWasSetByUser" : 0,
827
+ "ignore" : 1,
828
+ "hidden" : 0,
829
+ "outputPathIsSetByUser" : 0,
830
+ "inputAbbreviatedPath" : "\/jade\/layouts\/layout-footer.jade",
831
+ "outputStyle" : 0,
832
+ "compileDebug" : 1,
833
+ "outputAbbreviatedPath" : "\/layout-footer.html",
834
+ "fileType" : 512
835
+ },
836
+ "\/js\/main.js" : {
837
+ "ignoreWasSetByUser" : 0,
838
+ "ignore" : 0,
839
+ "hidden" : 0,
840
+ "outputPathIsSetByUser" : 0,
841
+ "inputAbbreviatedPath" : "\/js\/main.js",
842
+ "outputStyle" : 1,
843
+ "syntaxCheckerStyle" : 1,
844
+ "outputAbbreviatedPath" : "\/js\/main.min.js",
845
+ "fileType" : 64
846
+ },
847
+ "\/js\/header.min.js" : {
848
+ "ignoreWasSetByUser" : 0,
849
+ "ignore" : 1,
850
+ "hidden" : 0,
851
+ "outputPathIsSetByUser" : 0,
852
+ "inputAbbreviatedPath" : "\/js\/header.min.js",
853
+ "outputStyle" : 1,
854
+ "syntaxCheckerStyle" : 1,
855
+ "outputAbbreviatedPath" : "\/js\/header.min.min.js",
856
+ "fileType" : 64
857
+ },
858
+ "\/components\/fancybox\/source\/helpers\/jquery.fancybox-media.js" : {
859
+ "ignoreWasSetByUser" : 0,
860
+ "ignore" : 0,
861
+ "hidden" : 0,
862
+ "outputPathIsSetByUser" : 0,
863
+ "inputAbbreviatedPath" : "\/components\/fancybox\/source\/helpers\/jquery.fancybox-media.js",
864
+ "outputStyle" : 1,
865
+ "syntaxCheckerStyle" : 1,
866
+ "outputAbbreviatedPath" : "\/components\/fancybox\/source\/helpers\/jquery.fancybox-media.min.js",
867
+ "fileType" : 64
868
+ },
869
+ "\/sass\/_m-breakpoints.scss" : {
870
+ "ignoreWasSetByUser" : 0,
871
+ "ignore" : 1,
872
+ "hidden" : 0,
873
+ "outputPathIsSetByUser" : 0,
874
+ "inputAbbreviatedPath" : "\/sass\/_m-breakpoints.scss",
875
+ "outputStyle" : 0,
876
+ "shouldRunBless" : 0,
877
+ "outputAbbreviatedPath" : "\/css\/_m-breakpoints.css",
878
+ "fileType" : 4,
879
+ "debugStyle" : 0
880
+ },
881
+ "\/components\/fancybox\/demo\/2_b.jpg" : {
882
+ "ignoreWasSetByUser" : 0,
883
+ "ignore" : 0,
884
+ "hidden" : 0,
885
+ "outputPathIsSetByUser" : 0,
886
+ "inputAbbreviatedPath" : "\/components\/fancybox\/demo\/2_b.jpg",
887
+ "processed" : 0,
888
+ "outputAbbreviatedPath" : "\/components\/fancybox\/demo\/2_b.jpg",
889
+ "initialSize" : 51674,
890
+ "fileType" : 4096
891
+ },
892
+ "\/jade\/forms.jade" : {
893
+ "ignoreWasSetByUser" : 0,
894
+ "ignore" : 0,
895
+ "hidden" : 0,
896
+ "outputPathIsSetByUser" : 0,
897
+ "inputAbbreviatedPath" : "\/jade\/forms.jade",
898
+ "outputStyle" : 0,
899
+ "compileDebug" : 1,
900
+ "outputAbbreviatedPath" : "\/forms.html",
901
+ "fileType" : 512
902
+ },
903
+ "\/jade\/typography.jade" : {
904
+ "ignoreWasSetByUser" : 0,
905
+ "ignore" : 0,
906
+ "hidden" : 0,
907
+ "outputPathIsSetByUser" : 0,
908
+ "inputAbbreviatedPath" : "\/jade\/typography.jade",
909
+ "outputStyle" : 0,
910
+ "compileDebug" : 1,
911
+ "outputAbbreviatedPath" : "\/typography.html",
912
+ "fileType" : 512
913
+ },
914
+ "\/jade\/includes\/nav-development.jade" : {
915
+ "ignoreWasSetByUser" : 0,
916
+ "ignore" : 1,
917
+ "hidden" : 0,
918
+ "outputPathIsSetByUser" : 0,
919
+ "inputAbbreviatedPath" : "\/jade\/includes\/nav-development.jade",
920
+ "outputStyle" : 0,
921
+ "compileDebug" : 1,
922
+ "outputAbbreviatedPath" : "\/nav-development.html",
923
+ "fileType" : 512
924
+ },
925
+ "\/components\/fancybox\/source\/jquery.fancybox.css" : {
926
+ "ignoreWasSetByUser" : 0,
927
+ "ignore" : 0,
928
+ "hidden" : 0,
929
+ "outputPathIsSetByUser" : 0,
930
+ "inputAbbreviatedPath" : "\/components\/fancybox\/source\/jquery.fancybox.css",
931
+ "outputAbbreviatedPath" : "No Output Path",
932
+ "fileType" : 16
933
+ },
934
+ "\/components\/fancybox\/demo\/5_s.jpg" : {
935
+ "ignoreWasSetByUser" : 0,
936
+ "ignore" : 0,
937
+ "hidden" : 0,
938
+ "outputPathIsSetByUser" : 0,
939
+ "inputAbbreviatedPath" : "\/components\/fancybox\/demo\/5_s.jpg",
940
+ "processed" : 0,
941
+ "outputAbbreviatedPath" : "\/components\/fancybox\/demo\/5_s.jpg",
942
+ "initialSize" : 4412,
943
+ "fileType" : 4096
944
+ },
945
+ "\/js\/vendor\/modernizr-custom.js" : {
946
+ "ignoreWasSetByUser" : 0,
947
+ "ignore" : 1,
948
+ "hidden" : 0,
949
+ "outputPathIsSetByUser" : 0,
950
+ "inputAbbreviatedPath" : "\/js\/vendor\/modernizr-custom.js",
951
+ "outputStyle" : 1,
952
+ "syntaxCheckerStyle" : 1,
953
+ "outputAbbreviatedPath" : "\/js\/vendor\/modernizr-custom.min.js",
954
+ "fileType" : 64
955
+ }
956
+ },
957
+ "manualImportLinks" : [
958
+
959
+ ],
960
+ "projectSettings" : {
961
+ "hamlNoEscapeInAttributes" : 0,
962
+ "kitAutoOutputPathStyle" : 0,
963
+ "lessOutputStyle" : 0,
964
+ "hamlAutoOutputPathReplace2" : "",
965
+ "draggedImportConcatenationStyle" : 1,
966
+ "jadeAutoOutputPathStyle" : 1,
967
+ "hamlEscapeHTMLCharacters" : 0,
968
+ "javascriptAutoOutputPathStyle" : 0,
969
+ "hamlOutputFormat" : 2,
970
+ "stylusAutoOutputPathReplace1" : "stylus",
971
+ "lessStrictImports" : 0,
972
+ "sassAutoOutputPathStyle" : 2,
973
+ "stylusAutoOutputPathReplace2" : "css",
974
+ "lessAutoOutputPathStyle" : 2,
975
+ "genericWebpageFileExtensionsString" : "html, xhtml, htm, shtml, shtm, php, jsp, asp, aspx, erb, ctp",
976
+ "coffeeMinifyOutput" : 1,
977
+ "javascriptOutputSuffix" : ".min",
978
+ "jadeOutputStyle" : 0,
979
+ "coffeeAutoOutputPathStyle" : 0,
980
+ "autoSyncProjectSettingsFile" : 1,
981
+ "lessAutoOutputPathReplace1" : "less",
982
+ "jadeAutoOutputPathReplace1" : "",
983
+ "lessAutoOutputPathRelativePath" : "..\/css",
984
+ "hamlAutoOutputPathRelativePath" : ".",
985
+ "jsCheckerReservedNamesString" : "",
986
+ "javascriptOutputStyle" : 1,
987
+ "stylusDebugStyle" : 0,
988
+ "hamlUseCDATA" : 0,
989
+ "hamlAutoOutputPathStyle" : 1,
990
+ "sassDebugStyle" : 0,
991
+ "hamlOutputStyle" : 0,
992
+ "stylusAutoOutputPathRelativePath" : "..\/css",
993
+ "jsCheckerIndent" : 4,
994
+ "kitAutoOutputPathRelativePath" : "",
995
+ "lessAutoOutputPathReplace2" : "css",
996
+ "jadeAutoOutputPathReplace2" : "",
997
+ "shouldRunBless" : 0,
998
+ "stylusAutoOutputPathStyle" : 2,
999
+ "coffeeCheckOutputStyle" : 0,
1000
+ "slimOutputStyle" : 1,
1001
+ "javascriptSyntaxCheckerStyle" : 1,
1002
+ "sassAutoOutputPathReplace1" : "sass",
1003
+ "slimAutoOutputPathReplace1" : "",
1004
+ "sassOutputStyle" : 0,
1005
+ "coffeeAutoOutputPathRelativePath" : "",
1006
+ "slimCompileOnly" : 0,
1007
+ "slimLogicless" : 0,
1008
+ "uglifyIndent" : 4,
1009
+ "jadeAutoOutputPathRelativePath" : "",
1010
+ "hamlUseUnixNewlines" : 0,
1011
+ "hamlAutoOutputPathReplace1" : "",
1012
+ "javascriptAutoOutputPathReplace1" : "",
1013
+ "stylusOutputStyle" : 0,
1014
+ "javascriptAutoOutputPathReplace2" : "",
1015
+ "sassAutoOutputPathRelativePath" : "..\/css",
1016
+ "coffeeAutoOutputPathReplace1" : "",
1017
+ "hamlUseDoubleQuotes" : 0,
1018
+ "coffeeAutoOutputPathReplace2" : "",
1019
+ "kitAutoOutputPathReplace1" : "",
1020
+ "uglifyReservedNamesString" : "",
1021
+ "coffeeOutputStyle" : 0,
1022
+ "slimAutoOutputPathRelativePath" : "",
1023
+ "jsHintFlags" : {
1024
+ "latedef" : 1,
1025
+ "newcap" : 1,
1026
+ "curly" : 1,
1027
+ "trailing" : 1,
1028
+ "nonew" : 1,
1029
+ "withstmt" : 0,
1030
+ "yui" : 0,
1031
+ "mootools" : 0,
1032
+ "proto" : 0,
1033
+ "boss" : 0,
1034
+ "funcscope" : 0,
1035
+ "regexdash" : 0,
1036
+ "jquery" : 1,
1037
+ "esnext" : 0,
1038
+ "camelcase" : 0,
1039
+ "es5" : 0,
1040
+ "dojo" : 0,
1041
+ "strict" : 0,
1042
+ "devel" : 0,
1043
+ "onecase" : 0,
1044
+ "wsh" : 0,
1045
+ "nonstandard" : 0,
1046
+ "asi" : 0,
1047
+ "smarttabs" : 0,
1048
+ "rhino" : 0,
1049
+ "noempty" : 0,
1050
+ "lastsemic" : 0,
1051
+ "eqnull" : 0,
1052
+ "eqeqeq" : 1,
1053
+ "couch" : 0,
1054
+ "evil" : 0,
1055
+ "expr" : 0,
1056
+ "immed" : 0,
1057
+ "globalstrict" : 0,
1058
+ "undef" : 1,
1059
+ "iterator" : 0,
1060
+ "prototypejs" : 0,
1061
+ "noarg" : 1,
1062
+ "supernew" : 0,
1063
+ "node" : 0,
1064
+ "unused" : 1,
1065
+ "debug" : 0,
1066
+ "bitwise" : 1,
1067
+ "white" : 0,
1068
+ "browser" : 1,
1069
+ "worker" : 0,
1070
+ "laxcomma" : 0,
1071
+ "multistr" : 0,
1072
+ "shadow" : 0,
1073
+ "sub" : 0,
1074
+ "regexp" : 1,
1075
+ "scripturl" : 0,
1076
+ "forin" : 0,
1077
+ "loopfunc" : 0,
1078
+ "laxbreak" : 0,
1079
+ "plusplus" : 0
1080
+ },
1081
+ "jsLintFlags" : {
1082
+ "white" : 0,
1083
+ "bitwise" : 0,
1084
+ "regexp" : 0,
1085
+ "vars" : 0,
1086
+ "anon" : 0,
1087
+ "sub" : 0,
1088
+ "stupid" : 0,
1089
+ "nomen" : 0,
1090
+ "unparam" : 0,
1091
+ "newcap" : 0,
1092
+ "'continue'" : 0,
1093
+ "sloppy" : 0,
1094
+ "fragment" : 0,
1095
+ "undef" : 0,
1096
+ "es5" : 0,
1097
+ "browser" : 1,
1098
+ "properties" : 0,
1099
+ "forin" : 0,
1100
+ "plusplus" : 0,
1101
+ "debug" : 0,
1102
+ "eqeq" : 0,
1103
+ "confusion" : 0,
1104
+ "evil" : 0,
1105
+ "on" : 0,
1106
+ "windows" : 0,
1107
+ "devel" : 0,
1108
+ "rhino" : 0,
1109
+ "node" : 0,
1110
+ "css" : 0
1111
+ },
1112
+ "uglifyFlags" : {
1113
+ "no-mangle-functions" : 0,
1114
+ "no-mangle" : 0,
1115
+ "no-copyright" : 0,
1116
+ "no-dead-code" : 0,
1117
+ "inline-script" : 0,
1118
+ "ascii" : 0,
1119
+ "unsafe" : 0,
1120
+ "mangle-toplevel" : 0,
1121
+ "no-seqs" : 1,
1122
+ "beautify" : 0,
1123
+ "lift-vars" : 0,
1124
+ "consolidate-primitive-values" : 0,
1125
+ "no-squeeze" : 0
1126
+ },
1127
+ "sassAutoOutputPathReplace2" : "css",
1128
+ "slimAutoOutputPathReplace2" : "",
1129
+ "jadeCompileDebug" : 1,
1130
+ "slimRailsCompatible" : 0,
1131
+ "kitAutoOutputPathReplace2" : "",
1132
+ "lessDebugStyle" : 0,
1133
+ "javascriptAutoOutputPathRelativePath" : "",
1134
+ "slimAutoOutputPathStyle" : 0
1135
+ },
1136
+ "projectAttributes" : {
1137
+ "bourbonEnabled" : 0,
1138
+ "displayValue" : "Best",
1139
+ "displayValueWasSetByUser" : 1,
1140
+ "compassEnabled" : 1
1141
+ }
1142
+ }