code_sync 0.6.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (213) hide show
  1. data/.rvmrc +1 -0
  2. data/CNAME +1 -0
  3. data/Gemfile +24 -0
  4. data/Gemfile.lock +117 -0
  5. data/LICENSE.md +22 -0
  6. data/ROADMAP.md +20 -0
  7. data/TODO.md +14 -0
  8. data/bin/codesync +11 -0
  9. data/code_sync.gemspec +30 -0
  10. data/config/routes.rb +26 -0
  11. data/lib/assets/javascripts/canvas.coffee +12 -0
  12. data/lib/assets/javascripts/canvas/editors.coffee +48 -0
  13. data/lib/assets/javascripts/canvas/index.coffee +15 -0
  14. data/lib/assets/javascripts/canvas/layer_controller.coffee +47 -0
  15. data/lib/assets/javascripts/code_sync.coffee +3 -0
  16. data/lib/assets/javascripts/code_sync/backends/gist.coffee +78 -0
  17. data/lib/assets/javascripts/code_sync/client/index.coffee +104 -0
  18. data/lib/assets/javascripts/code_sync/client/util.coffee +61 -0
  19. data/lib/assets/javascripts/code_sync/codemirror.coffee +12 -0
  20. data/lib/assets/javascripts/code_sync/config.js.coffee.erb +38 -0
  21. data/lib/assets/javascripts/code_sync/console/index.coffee +54 -0
  22. data/lib/assets/javascripts/code_sync/console/templates/console.jst.skim +10 -0
  23. data/lib/assets/javascripts/code_sync/dependencies.coffee +6 -0
  24. data/lib/assets/javascripts/code_sync/editor/advanced.coffee +0 -0
  25. data/lib/assets/javascripts/code_sync/editor/datasources/document.coffee +212 -0
  26. data/lib/assets/javascripts/code_sync/editor/datasources/gist_loader.coffee +7 -0
  27. data/lib/assets/javascripts/code_sync/editor/datasources/modes.coffee +117 -0
  28. data/lib/assets/javascripts/code_sync/editor/datasources/project_assets.coffee +14 -0
  29. data/lib/assets/javascripts/code_sync/editor/index.coffee +415 -0
  30. data/lib/assets/javascripts/code_sync/editor/plugins/asset_selector.coffee +106 -0
  31. data/lib/assets/javascripts/code_sync/editor/plugins/color_picker.coffee +83 -0
  32. data/lib/assets/javascripts/code_sync/editor/plugins/document_manager.coffee +55 -0
  33. data/lib/assets/javascripts/code_sync/editor/plugins/document_tabs.coffee +178 -0
  34. data/lib/assets/javascripts/code_sync/editor/plugins/element_sync.coffee +111 -0
  35. data/lib/assets/javascripts/code_sync/editor/plugins/keymap_selector.coffee +44 -0
  36. data/lib/assets/javascripts/code_sync/editor/plugins/mode_selector.coffee +53 -0
  37. data/lib/assets/javascripts/code_sync/editor/plugins/name_input.coffee +44 -0
  38. data/lib/assets/javascripts/code_sync/editor/plugins/preferences.coffee +71 -0
  39. data/lib/assets/javascripts/code_sync/editor/templates/asset_editor.jst.skim +2 -0
  40. data/lib/assets/javascripts/code_sync/editor/templates/asset_selector.jst.skim +5 -0
  41. data/lib/assets/javascripts/code_sync/editor/templates/document_manager_tab.jst.skim +15 -0
  42. data/lib/assets/javascripts/code_sync/editor/templates/element_sync.jst.skim +19 -0
  43. data/lib/assets/javascripts/code_sync/editor/templates/preferences_panel.jst.skim +38 -0
  44. data/lib/assets/javascripts/code_sync/editor/views/asset_selector.coffee +106 -0
  45. data/lib/assets/javascripts/code_sync/editor/views/color_picker.coffee +76 -0
  46. data/lib/assets/javascripts/code_sync/editor/views/document_manager.coffee +176 -0
  47. data/lib/assets/javascripts/code_sync/editor/views/keymap_selector.coffee +37 -0
  48. data/lib/assets/javascripts/code_sync/editor/views/mode_selector.coffee +47 -0
  49. data/lib/assets/javascripts/code_sync/editor/views/name_input.coffee +44 -0
  50. data/lib/assets/javascripts/code_sync/editor/views/preferences.coffee +71 -0
  51. data/lib/assets/javascripts/code_sync/index.coffee +4 -0
  52. data/lib/assets/javascripts/code_sync/reloader.coffee +2 -0
  53. data/lib/assets/javascripts/code_sync_basic.coffee +1 -0
  54. data/lib/assets/javascripts/demos.coffee +48 -0
  55. data/lib/assets/javascripts/demos/default-content.coffee +72 -0
  56. data/lib/assets/javascripts/demos/layout_selector.coffee +19 -0
  57. data/lib/assets/javascripts/demos/tour.coffee +70 -0
  58. data/lib/assets/javascripts/demos/tour.jst.skim +29 -0
  59. data/lib/assets/javascripts/marketing.coffee +0 -0
  60. data/lib/assets/javascripts/vendor/.DS_Store +0 -0
  61. data/lib/assets/javascripts/vendor/backbone-events.js +160 -0
  62. data/lib/assets/javascripts/vendor/backbone-min.js +4 -0
  63. data/lib/assets/javascripts/vendor/codemirror-coffeescript.js +346 -0
  64. data/lib/assets/javascripts/vendor/codemirror-css.js +570 -0
  65. data/lib/assets/javascripts/vendor/codemirror-haml.js +153 -0
  66. data/lib/assets/javascripts/vendor/codemirror-htmlmixed.js +104 -0
  67. data/lib/assets/javascripts/vendor/codemirror-javascript.js +468 -0
  68. data/lib/assets/javascripts/vendor/codemirror-markdown.js +526 -0
  69. data/lib/assets/javascripts/vendor/codemirror-ruby.js +194 -0
  70. data/lib/assets/javascripts/vendor/codemirror-sass.js +330 -0
  71. data/lib/assets/javascripts/vendor/codemirror-skim.js +330 -0
  72. data/lib/assets/javascripts/vendor/codemirror-vim.js +3159 -0
  73. data/lib/assets/javascripts/vendor/codemirror-xml.js +328 -0
  74. data/lib/assets/javascripts/vendor/console.js +339 -0
  75. data/lib/assets/javascripts/vendor/gisted.js +27 -0
  76. data/lib/assets/javascripts/vendor/jquery-ui-resize-drag.min.js +6 -0
  77. data/lib/assets/javascripts/vendor/jquery.js +5 -0
  78. data/lib/assets/javascripts/vendor/keylauncher.js +4 -0
  79. data/lib/assets/javascripts/vendor/keymaster.min.js +4 -0
  80. data/lib/assets/javascripts/vendor/spectrum.js +1868 -0
  81. data/lib/assets/javascripts/vendor/underscore-min.js +1 -0
  82. data/lib/assets/javascripts/vendor/underscore.string.min.js +1 -0
  83. data/lib/assets/javascripts/vendor/vendored_codemirror.js +5558 -0
  84. data/lib/assets/javascripts/vendor/zepto.js +2 -0
  85. data/lib/assets/stylesheets/canvas.css.scss +101 -0
  86. data/lib/assets/stylesheets/code_sync.css.scss +4 -0
  87. data/lib/assets/stylesheets/code_sync/codemirror.css +7 -0
  88. data/lib/assets/stylesheets/code_sync/console.css +86 -0
  89. data/lib/assets/stylesheets/code_sync/editor/asset-name-input.css.scss +12 -0
  90. data/lib/assets/stylesheets/code_sync/editor/asset-selector.css.scss +58 -0
  91. data/lib/assets/stylesheets/code_sync/editor/codesync-color-picker.css.sass +5 -0
  92. data/lib/assets/stylesheets/code_sync/editor/document-tabs.css.scss +61 -0
  93. data/lib/assets/stylesheets/code_sync/editor/element-sync.css.scss +72 -0
  94. data/lib/assets/stylesheets/code_sync/editor/mode-selector.css.scss +0 -0
  95. data/lib/assets/stylesheets/code_sync/editor/preferences-panel.css.scss +26 -0
  96. data/lib/assets/stylesheets/code_sync/index.css.scss +141 -0
  97. data/lib/assets/stylesheets/demos.css.scss +96 -0
  98. data/lib/assets/stylesheets/marketing.css.sass +46 -0
  99. data/lib/assets/stylesheets/marketing/syntax.css.scss +1 -0
  100. data/lib/assets/stylesheets/vendor/animate.css +1 -0
  101. data/lib/assets/stylesheets/vendor/codemirror-ambiance.css +75 -0
  102. data/lib/assets/stylesheets/vendor/codemirror-lesserdark.css +44 -0
  103. data/lib/assets/stylesheets/vendor/codemirror-monokai.css +28 -0
  104. data/lib/assets/stylesheets/vendor/codemirror-xq-light.css +43 -0
  105. data/lib/assets/stylesheets/vendor/grid-layout.css +1406 -0
  106. data/lib/assets/stylesheets/vendor/spectrum.css +481 -0
  107. data/lib/assets/stylesheets/vendor/vendored_codemirror.css +246 -0
  108. data/lib/code_sync.rb +41 -0
  109. data/lib/code_sync/cli.rb +73 -0
  110. data/lib/code_sync/manager.rb +238 -0
  111. data/lib/code_sync/processors.rb +18 -0
  112. data/lib/code_sync/processors/basic.rb +9 -0
  113. data/lib/code_sync/processors/jst_processor.rb +17 -0
  114. data/lib/code_sync/pry_console.rb +132 -0
  115. data/lib/code_sync/rails.rb +7 -0
  116. data/lib/code_sync/rails/engine.rb +12 -0
  117. data/lib/code_sync/server.rb +225 -0
  118. data/lib/code_sync/sprockets_adapter.rb +145 -0
  119. data/lib/code_sync/temp_asset.rb +20 -0
  120. data/lib/code_sync/version.rb +3 -0
  121. data/lib/middleman_extension.rb +43 -0
  122. data/readme.md +26 -0
  123. data/site/.gitignore +14 -0
  124. data/site/Gemfile +13 -0
  125. data/site/Gemfile.lock +183 -0
  126. data/site/config.rb +26 -0
  127. data/site/source/canvas.html.slim +21 -0
  128. data/site/source/codepen-style-demo.html.slim +21 -0
  129. data/site/source/demo.html.slim +30 -0
  130. data/site/source/index.html.slim +128 -0
  131. data/site/source/layouts/layout.slim +18 -0
  132. data/site/source/samples/_client.html.md +13 -0
  133. data/site/source/samples/_editor.html.md +19 -0
  134. data/site/source/samples/_hooks.html.md +8 -0
  135. data/site/source/samples/_middleman.html.md +7 -0
  136. data/site/source/samples/_rails.html.md +8 -0
  137. data/site/source/samples/_standalone.html.md +36 -0
  138. data/spec/lib/code_sync/sprockets_adapter_spec.rb +44 -0
  139. data/spec/spec_helper.rb +21 -0
  140. data/spec/support/.DS_Store +0 -0
  141. data/spec/support/dummy_middleman/.gitignore +14 -0
  142. data/spec/support/dummy_middleman/Gemfile +5 -0
  143. data/spec/support/dummy_middleman/Gemfile.lock +100 -0
  144. data/spec/support/dummy_middleman/config.rb +77 -0
  145. data/spec/support/dummy_middleman/source/images/background.png +0 -0
  146. data/spec/support/dummy_middleman/source/images/middleman.png +0 -0
  147. data/spec/support/dummy_middleman/source/index.html.erb +10 -0
  148. data/spec/support/dummy_middleman/source/javascripts/all.js +1 -0
  149. data/spec/support/dummy_middleman/source/layouts/layout.erb +19 -0
  150. data/spec/support/dummy_middleman/source/stylesheets/all.css +55 -0
  151. data/spec/support/dummy_middleman/source/stylesheets/normalize.css +375 -0
  152. data/spec/support/dummy_rails/.gitignore +15 -0
  153. data/spec/support/dummy_rails/Gemfile +38 -0
  154. data/spec/support/dummy_rails/Gemfile.lock +112 -0
  155. data/spec/support/dummy_rails/README.rdoc +261 -0
  156. data/spec/support/dummy_rails/Rakefile +7 -0
  157. data/spec/support/dummy_rails/app/assets/images/rails.png +0 -0
  158. data/spec/support/dummy_rails/app/assets/javascripts/application.js +15 -0
  159. data/spec/support/dummy_rails/app/assets/stylesheets/application.css +13 -0
  160. data/spec/support/dummy_rails/app/controllers/application_controller.rb +3 -0
  161. data/spec/support/dummy_rails/app/helpers/application_helper.rb +2 -0
  162. data/spec/support/dummy_rails/app/mailers/.gitkeep +0 -0
  163. data/spec/support/dummy_rails/app/models/.gitkeep +0 -0
  164. data/spec/support/dummy_rails/app/views/layouts/application.html.erb +14 -0
  165. data/spec/support/dummy_rails/config.ru +4 -0
  166. data/spec/support/dummy_rails/config/application.rb +62 -0
  167. data/spec/support/dummy_rails/config/boot.rb +6 -0
  168. data/spec/support/dummy_rails/config/database.yml +25 -0
  169. data/spec/support/dummy_rails/config/environment.rb +5 -0
  170. data/spec/support/dummy_rails/config/environments/development.rb +37 -0
  171. data/spec/support/dummy_rails/config/environments/production.rb +67 -0
  172. data/spec/support/dummy_rails/config/environments/test.rb +37 -0
  173. data/spec/support/dummy_rails/config/initializers/backtrace_silencers.rb +7 -0
  174. data/spec/support/dummy_rails/config/initializers/inflections.rb +15 -0
  175. data/spec/support/dummy_rails/config/initializers/mime_types.rb +5 -0
  176. data/spec/support/dummy_rails/config/initializers/secret_token.rb +7 -0
  177. data/spec/support/dummy_rails/config/initializers/session_store.rb +8 -0
  178. data/spec/support/dummy_rails/config/initializers/wrap_parameters.rb +14 -0
  179. data/spec/support/dummy_rails/config/locales/en.yml +5 -0
  180. data/spec/support/dummy_rails/config/routes.rb +58 -0
  181. data/spec/support/dummy_rails/db/seeds.rb +7 -0
  182. data/spec/support/dummy_rails/doc/README_FOR_APP +2 -0
  183. data/spec/support/dummy_rails/lib/assets/.gitkeep +0 -0
  184. data/spec/support/dummy_rails/lib/tasks/.gitkeep +0 -0
  185. data/spec/support/dummy_rails/log/.gitkeep +0 -0
  186. data/spec/support/dummy_rails/public/404.html +26 -0
  187. data/spec/support/dummy_rails/public/422.html +26 -0
  188. data/spec/support/dummy_rails/public/500.html +25 -0
  189. data/spec/support/dummy_rails/public/favicon.ico +0 -0
  190. data/spec/support/dummy_rails/public/index.html +241 -0
  191. data/spec/support/dummy_rails/public/robots.txt +5 -0
  192. data/spec/support/dummy_rails/script/rails +6 -0
  193. data/spec/support/dummy_rails/test/fixtures/.gitkeep +0 -0
  194. data/spec/support/dummy_rails/test/functional/.gitkeep +0 -0
  195. data/spec/support/dummy_rails/test/integration/.gitkeep +0 -0
  196. data/spec/support/dummy_rails/test/performance/browsing_test.rb +12 -0
  197. data/spec/support/dummy_rails/test/test_helper.rb +13 -0
  198. data/spec/support/dummy_rails/test/unit/.gitkeep +0 -0
  199. data/spec/support/dummy_rails/vendor/assets/javascripts/.gitkeep +0 -0
  200. data/spec/support/dummy_rails/vendor/assets/stylesheets/.gitkeep +0 -0
  201. data/spec/support/dummy_rails/vendor/plugins/.gitkeep +0 -0
  202. data/spec/support/dummy_static/.DS_Store +0 -0
  203. data/spec/support/dummy_static/app/.DS_Store +0 -0
  204. data/spec/support/dummy_static/app/assets/.DS_Store +0 -0
  205. data/spec/support/dummy_static/app/assets/javascripts/manifest.coffee +4 -0
  206. data/spec/support/dummy_static/app/assets/javascripts/spec_application_javascript.coffee +4 -0
  207. data/spec/support/dummy_static/app/assets/stylesheets/spec_application_stylesheet.css.scss +5 -0
  208. data/spec/support/dummy_static/lib/assets/javascripts/spec_library_javascript.coffee +3 -0
  209. data/spec/support/dummy_static/lib/assets/stylesheets/spec_library_stylesheet.css.scss +5 -0
  210. data/spec/support/dummy_static/vendor/assets/javascripts/spec_vendor_javascript.js +5 -0
  211. data/spec/support/dummy_static/vendor/assets/stylesheets/spec_vendor_stylesheets.css +3 -0
  212. data/vendor/assets/stylesheets/code_sync.css +1 -0
  213. metadata +492 -0
@@ -0,0 +1,1406 @@
1
+ /*!
2
+ * Bootstrap v2.3.1
3
+ *
4
+ * Copyright 2012 Twitter, Inc
5
+ * Licensed under the Apache License v2.0
6
+ * http://www.apache.org/licenses/LICENSE-2.0
7
+ *
8
+ * Designed and built with all the love in the world @twitter by @mdo and @fat.
9
+ */
10
+ .clearfix {
11
+ *zoom: 1;
12
+ }
13
+ .clearfix:before,
14
+ .clearfix:after {
15
+ display: table;
16
+ content: "";
17
+ line-height: 0;
18
+ }
19
+ .clearfix:after {
20
+ clear: both;
21
+ }
22
+ .hide-text {
23
+ font: 0/0 a;
24
+ color: transparent;
25
+ text-shadow: none;
26
+ background-color: transparent;
27
+ border: 0;
28
+ }
29
+ .input-block-level {
30
+ display: block;
31
+ width: 100%;
32
+ min-height: 30px;
33
+ -webkit-box-sizing: border-box;
34
+ -moz-box-sizing: border-box;
35
+ box-sizing: border-box;
36
+ }
37
+ article,
38
+ aside,
39
+ details,
40
+ figcaption,
41
+ figure,
42
+ footer,
43
+ header,
44
+ hgroup,
45
+ nav,
46
+ section {
47
+ display: block;
48
+ }
49
+ audio,
50
+ canvas,
51
+ video {
52
+ display: inline-block;
53
+ *display: inline;
54
+ *zoom: 1;
55
+ }
56
+ audio:not([controls]) {
57
+ display: none;
58
+ }
59
+ html {
60
+ font-size: 100%;
61
+ -webkit-text-size-adjust: 100%;
62
+ -ms-text-size-adjust: 100%;
63
+ }
64
+ a:focus {
65
+ outline: thin dotted #333;
66
+ outline: 5px auto -webkit-focus-ring-color;
67
+ outline-offset: -2px;
68
+ }
69
+ a:hover,
70
+ a:active {
71
+ outline: 0;
72
+ }
73
+ sub,
74
+ sup {
75
+ position: relative;
76
+ font-size: 75%;
77
+ line-height: 0;
78
+ vertical-align: baseline;
79
+ }
80
+ sup {
81
+ top: -0.5em;
82
+ }
83
+ sub {
84
+ bottom: -0.25em;
85
+ }
86
+ img {
87
+ /* Responsive images (ensure images don't scale beyond their parents) */
88
+
89
+ max-width: 100%;
90
+ /* Part 1: Set a maxium relative to the parent */
91
+
92
+ width: auto\9;
93
+ /* IE7-8 need help adjusting responsive images */
94
+
95
+ height: auto;
96
+ /* Part 2: Scale the height according to the width, otherwise you get stretching */
97
+
98
+ vertical-align: middle;
99
+ border: 0;
100
+ -ms-interpolation-mode: bicubic;
101
+ }
102
+ #map_canvas img,
103
+ .google-maps img {
104
+ max-width: none;
105
+ }
106
+ button,
107
+ input,
108
+ select,
109
+ textarea {
110
+ margin: 0;
111
+ font-size: 100%;
112
+ vertical-align: middle;
113
+ }
114
+ button,
115
+ input {
116
+ *overflow: visible;
117
+ line-height: normal;
118
+ }
119
+ button::-moz-focus-inner,
120
+ input::-moz-focus-inner {
121
+ padding: 0;
122
+ border: 0;
123
+ }
124
+ button,
125
+ html input[type="button"],
126
+ input[type="reset"],
127
+ input[type="submit"] {
128
+ -webkit-appearance: button;
129
+ cursor: pointer;
130
+ }
131
+ label,
132
+ select,
133
+ button,
134
+ input[type="button"],
135
+ input[type="reset"],
136
+ input[type="submit"],
137
+ input[type="radio"],
138
+ input[type="checkbox"] {
139
+ cursor: pointer;
140
+ }
141
+ input[type="search"] {
142
+ -webkit-box-sizing: content-box;
143
+ -moz-box-sizing: content-box;
144
+ box-sizing: content-box;
145
+ -webkit-appearance: textfield;
146
+ }
147
+ input[type="search"]::-webkit-search-decoration,
148
+ input[type="search"]::-webkit-search-cancel-button {
149
+ -webkit-appearance: none;
150
+ }
151
+ textarea {
152
+ overflow: auto;
153
+ vertical-align: top;
154
+ }
155
+ @media print {
156
+ * {
157
+ text-shadow: none !important;
158
+ color: #000 !important;
159
+ background: transparent !important;
160
+ box-shadow: none !important;
161
+ }
162
+ a,
163
+ a:visited {
164
+ text-decoration: underline;
165
+ }
166
+ a[href]:after {
167
+ content: " (" attr(href) ")";
168
+ }
169
+ abbr[title]:after {
170
+ content: " (" attr(title) ")";
171
+ }
172
+ .ir a:after,
173
+ a[href^="javascript:"]:after,
174
+ a[href^="#"]:after {
175
+ content: "";
176
+ }
177
+ pre,
178
+ blockquote {
179
+ border: 1px solid #999;
180
+ page-break-inside: avoid;
181
+ }
182
+ thead {
183
+ display: table-header-group;
184
+ }
185
+ tr,
186
+ img {
187
+ page-break-inside: avoid;
188
+ }
189
+ img {
190
+ max-width: 100% !important;
191
+ }
192
+ @page {
193
+ margin: 0.5cm;
194
+ }
195
+ p,
196
+ h2,
197
+ h3 {
198
+ orphans: 3;
199
+ widows: 3;
200
+ }
201
+ h2,
202
+ h3 {
203
+ page-break-after: avoid;
204
+ }
205
+ }
206
+ .row {
207
+ margin-left: -20px;
208
+ *zoom: 1;
209
+ }
210
+ .row:before,
211
+ .row:after {
212
+ display: table;
213
+ content: "";
214
+ line-height: 0;
215
+ }
216
+ .row:after {
217
+ clear: both;
218
+ }
219
+ [class*="span"] {
220
+ float: left;
221
+ min-height: 1px;
222
+ margin-left: 20px;
223
+ }
224
+ .container,
225
+ .navbar-static-top .container,
226
+ .navbar-fixed-top .container,
227
+ .navbar-fixed-bottom .container {
228
+ width: 940px;
229
+ }
230
+ .span12 {
231
+ width: 940px;
232
+ }
233
+ .span11 {
234
+ width: 860px;
235
+ }
236
+ .span10 {
237
+ width: 780px;
238
+ }
239
+ .span9 {
240
+ width: 700px;
241
+ }
242
+ .span8 {
243
+ width: 620px;
244
+ }
245
+ .span7 {
246
+ width: 540px;
247
+ }
248
+ .span6 {
249
+ width: 460px;
250
+ }
251
+ .span5 {
252
+ width: 380px;
253
+ }
254
+ .span4 {
255
+ width: 300px;
256
+ }
257
+ .span3 {
258
+ width: 220px;
259
+ }
260
+ .span2 {
261
+ width: 140px;
262
+ }
263
+ .span1 {
264
+ width: 60px;
265
+ }
266
+ .offset12 {
267
+ margin-left: 980px;
268
+ }
269
+ .offset11 {
270
+ margin-left: 900px;
271
+ }
272
+ .offset10 {
273
+ margin-left: 820px;
274
+ }
275
+ .offset9 {
276
+ margin-left: 740px;
277
+ }
278
+ .offset8 {
279
+ margin-left: 660px;
280
+ }
281
+ .offset7 {
282
+ margin-left: 580px;
283
+ }
284
+ .offset6 {
285
+ margin-left: 500px;
286
+ }
287
+ .offset5 {
288
+ margin-left: 420px;
289
+ }
290
+ .offset4 {
291
+ margin-left: 340px;
292
+ }
293
+ .offset3 {
294
+ margin-left: 260px;
295
+ }
296
+ .offset2 {
297
+ margin-left: 180px;
298
+ }
299
+ .offset1 {
300
+ margin-left: 100px;
301
+ }
302
+ .row-fluid {
303
+ width: 100%;
304
+ *zoom: 1;
305
+ }
306
+ .row-fluid:before,
307
+ .row-fluid:after {
308
+ display: table;
309
+ content: "";
310
+ line-height: 0;
311
+ }
312
+ .row-fluid:after {
313
+ clear: both;
314
+ }
315
+ .row-fluid [class*="span"] {
316
+ display: block;
317
+ width: 100%;
318
+ min-height: 30px;
319
+ -webkit-box-sizing: border-box;
320
+ -moz-box-sizing: border-box;
321
+ box-sizing: border-box;
322
+ float: left;
323
+ margin-left: 2.127659574468085%;
324
+ *margin-left: 2.074468085106383%;
325
+ }
326
+ .row-fluid [class*="span"]:first-child {
327
+ margin-left: 0;
328
+ }
329
+ .row-fluid .controls-row [class*="span"] + [class*="span"] {
330
+ margin-left: 2.127659574468085%;
331
+ }
332
+ .row-fluid .span12 {
333
+ width: 100%;
334
+ *width: 99.94680851063829%;
335
+ }
336
+ .row-fluid .span11 {
337
+ width: 91.48936170212765%;
338
+ *width: 91.43617021276594%;
339
+ }
340
+ .row-fluid .span10 {
341
+ width: 82.97872340425532%;
342
+ *width: 82.92553191489361%;
343
+ }
344
+ .row-fluid .span9 {
345
+ width: 74.46808510638297%;
346
+ *width: 74.41489361702126%;
347
+ }
348
+ .row-fluid .span8 {
349
+ width: 65.95744680851064%;
350
+ *width: 65.90425531914893%;
351
+ }
352
+ .row-fluid .span7 {
353
+ width: 57.44680851063829%;
354
+ *width: 57.39361702127659%;
355
+ }
356
+ .row-fluid .span6 {
357
+ width: 48.93617021276595%;
358
+ *width: 48.88297872340425%;
359
+ }
360
+ .row-fluid .span5 {
361
+ width: 40.42553191489362%;
362
+ *width: 40.37234042553192%;
363
+ }
364
+ .row-fluid .span4 {
365
+ width: 31.914893617021278%;
366
+ *width: 31.861702127659576%;
367
+ }
368
+ .row-fluid .span3 {
369
+ width: 23.404255319148934%;
370
+ *width: 23.351063829787233%;
371
+ }
372
+ .row-fluid .span2 {
373
+ width: 14.893617021276595%;
374
+ *width: 14.840425531914894%;
375
+ }
376
+ .row-fluid .span1 {
377
+ width: 6.382978723404255%;
378
+ *width: 6.329787234042553%;
379
+ }
380
+ .row-fluid .offset12 {
381
+ margin-left: 104.25531914893617%;
382
+ *margin-left: 104.14893617021275%;
383
+ }
384
+ .row-fluid .offset12:first-child {
385
+ margin-left: 102.12765957446808%;
386
+ *margin-left: 102.02127659574467%;
387
+ }
388
+ .row-fluid .offset11 {
389
+ margin-left: 95.74468085106382%;
390
+ *margin-left: 95.6382978723404%;
391
+ }
392
+ .row-fluid .offset11:first-child {
393
+ margin-left: 93.61702127659574%;
394
+ *margin-left: 93.51063829787232%;
395
+ }
396
+ .row-fluid .offset10 {
397
+ margin-left: 87.23404255319149%;
398
+ *margin-left: 87.12765957446807%;
399
+ }
400
+ .row-fluid .offset10:first-child {
401
+ margin-left: 85.1063829787234%;
402
+ *margin-left: 84.99999999999999%;
403
+ }
404
+ .row-fluid .offset9 {
405
+ margin-left: 78.72340425531914%;
406
+ *margin-left: 78.61702127659572%;
407
+ }
408
+ .row-fluid .offset9:first-child {
409
+ margin-left: 76.59574468085106%;
410
+ *margin-left: 76.48936170212764%;
411
+ }
412
+ .row-fluid .offset8 {
413
+ margin-left: 70.2127659574468%;
414
+ *margin-left: 70.10638297872339%;
415
+ }
416
+ .row-fluid .offset8:first-child {
417
+ margin-left: 68.08510638297872%;
418
+ *margin-left: 67.9787234042553%;
419
+ }
420
+ .row-fluid .offset7 {
421
+ margin-left: 61.70212765957446%;
422
+ *margin-left: 61.59574468085106%;
423
+ }
424
+ .row-fluid .offset7:first-child {
425
+ margin-left: 59.574468085106375%;
426
+ *margin-left: 59.46808510638297%;
427
+ }
428
+ .row-fluid .offset6 {
429
+ margin-left: 53.191489361702125%;
430
+ *margin-left: 53.085106382978715%;
431
+ }
432
+ .row-fluid .offset6:first-child {
433
+ margin-left: 51.063829787234035%;
434
+ *margin-left: 50.95744680851063%;
435
+ }
436
+ .row-fluid .offset5 {
437
+ margin-left: 44.68085106382979%;
438
+ *margin-left: 44.57446808510638%;
439
+ }
440
+ .row-fluid .offset5:first-child {
441
+ margin-left: 42.5531914893617%;
442
+ *margin-left: 42.4468085106383%;
443
+ }
444
+ .row-fluid .offset4 {
445
+ margin-left: 36.170212765957444%;
446
+ *margin-left: 36.06382978723405%;
447
+ }
448
+ .row-fluid .offset4:first-child {
449
+ margin-left: 34.04255319148936%;
450
+ *margin-left: 33.93617021276596%;
451
+ }
452
+ .row-fluid .offset3 {
453
+ margin-left: 27.659574468085104%;
454
+ *margin-left: 27.5531914893617%;
455
+ }
456
+ .row-fluid .offset3:first-child {
457
+ margin-left: 25.53191489361702%;
458
+ *margin-left: 25.425531914893618%;
459
+ }
460
+ .row-fluid .offset2 {
461
+ margin-left: 19.148936170212764%;
462
+ *margin-left: 19.04255319148936%;
463
+ }
464
+ .row-fluid .offset2:first-child {
465
+ margin-left: 17.02127659574468%;
466
+ *margin-left: 16.914893617021278%;
467
+ }
468
+ .row-fluid .offset1 {
469
+ margin-left: 10.638297872340425%;
470
+ *margin-left: 10.53191489361702%;
471
+ }
472
+ .row-fluid .offset1:first-child {
473
+ margin-left: 8.51063829787234%;
474
+ *margin-left: 8.404255319148938%;
475
+ }
476
+ [class*="span"].hide,
477
+ .row-fluid [class*="span"].hide {
478
+ display: none;
479
+ }
480
+ [class*="span"].pull-right,
481
+ .row-fluid [class*="span"].pull-right {
482
+ float: right;
483
+ }
484
+ .container {
485
+ margin-right: auto;
486
+ margin-left: auto;
487
+ *zoom: 1;
488
+ }
489
+ .container:before,
490
+ .container:after {
491
+ display: table;
492
+ content: "";
493
+ line-height: 0;
494
+ }
495
+ .container:after {
496
+ clear: both;
497
+ }
498
+ .container-fluid {
499
+ padding-right: 20px;
500
+ padding-left: 20px;
501
+ *zoom: 1;
502
+ }
503
+ .container-fluid:before,
504
+ .container-fluid:after {
505
+ display: table;
506
+ content: "";
507
+ line-height: 0;
508
+ }
509
+ .container-fluid:after {
510
+ clear: both;
511
+ }
512
+ @-ms-viewport {
513
+ width: device-width;
514
+ }
515
+ .hidden {
516
+ display: none;
517
+ visibility: hidden;
518
+ }
519
+ .visible-phone {
520
+ display: none !important;
521
+ }
522
+ .visible-tablet {
523
+ display: none !important;
524
+ }
525
+ .hidden-desktop {
526
+ display: none !important;
527
+ }
528
+ .visible-desktop {
529
+ display: inherit !important;
530
+ }
531
+ @media (min-width: 768px) and (max-width: 979px) {
532
+ .hidden-desktop {
533
+ display: inherit !important;
534
+ }
535
+ .visible-desktop {
536
+ display: none !important ;
537
+ }
538
+ .visible-tablet {
539
+ display: inherit !important;
540
+ }
541
+ .hidden-tablet {
542
+ display: none !important;
543
+ }
544
+ }
545
+ @media (max-width: 767px) {
546
+ .hidden-desktop {
547
+ display: inherit !important;
548
+ }
549
+ .visible-desktop {
550
+ display: none !important;
551
+ }
552
+ .visible-phone {
553
+ display: inherit !important;
554
+ }
555
+ .hidden-phone {
556
+ display: none !important;
557
+ }
558
+ }
559
+ .visible-print {
560
+ display: none !important;
561
+ }
562
+ @media print {
563
+ .visible-print {
564
+ display: inherit !important;
565
+ }
566
+ .hidden-print {
567
+ display: none !important;
568
+ }
569
+ }
570
+ @media (max-width: 767px) {
571
+ body {
572
+ padding-left: 20px;
573
+ padding-right: 20px;
574
+ }
575
+ .navbar-fixed-top,
576
+ .navbar-fixed-bottom,
577
+ .navbar-static-top {
578
+ margin-left: -20px;
579
+ margin-right: -20px;
580
+ }
581
+ .container-fluid {
582
+ padding: 0;
583
+ }
584
+ .dl-horizontal dt {
585
+ float: none;
586
+ clear: none;
587
+ width: auto;
588
+ text-align: left;
589
+ }
590
+ .dl-horizontal dd {
591
+ margin-left: 0;
592
+ }
593
+ .container {
594
+ width: auto;
595
+ }
596
+ .row-fluid {
597
+ width: 100%;
598
+ }
599
+ .row,
600
+ .thumbnails {
601
+ margin-left: 0;
602
+ }
603
+ .thumbnails > li {
604
+ float: none;
605
+ margin-left: 0;
606
+ }
607
+ [class*="span"],
608
+ .uneditable-input[class*="span"],
609
+ .row-fluid [class*="span"] {
610
+ float: none;
611
+ display: block;
612
+ width: 100%;
613
+ margin-left: 0;
614
+ -webkit-box-sizing: border-box;
615
+ -moz-box-sizing: border-box;
616
+ box-sizing: border-box;
617
+ }
618
+ .span12,
619
+ .row-fluid .span12 {
620
+ width: 100%;
621
+ -webkit-box-sizing: border-box;
622
+ -moz-box-sizing: border-box;
623
+ box-sizing: border-box;
624
+ }
625
+ .row-fluid [class*="offset"]:first-child {
626
+ margin-left: 0;
627
+ }
628
+ .input-large,
629
+ .input-xlarge,
630
+ .input-xxlarge,
631
+ input[class*="span"],
632
+ select[class*="span"],
633
+ textarea[class*="span"],
634
+ .uneditable-input {
635
+ display: block;
636
+ width: 100%;
637
+ min-height: 30px;
638
+ -webkit-box-sizing: border-box;
639
+ -moz-box-sizing: border-box;
640
+ box-sizing: border-box;
641
+ }
642
+ .input-prepend input,
643
+ .input-append input,
644
+ .input-prepend input[class*="span"],
645
+ .input-append input[class*="span"] {
646
+ display: inline-block;
647
+ width: auto;
648
+ }
649
+ .controls-row [class*="span"] + [class*="span"] {
650
+ margin-left: 0;
651
+ }
652
+ .modal {
653
+ position: fixed;
654
+ top: 20px;
655
+ left: 20px;
656
+ right: 20px;
657
+ width: auto;
658
+ margin: 0;
659
+ }
660
+ .modal.fade {
661
+ top: -100px;
662
+ }
663
+ .modal.fade.in {
664
+ top: 20px;
665
+ }
666
+ }
667
+ @media (max-width: 480px) {
668
+ .nav-collapse {
669
+ -webkit-transform: translate3d(0, 0, 0);
670
+ }
671
+ .page-header h1 small {
672
+ display: block;
673
+ line-height: 20px;
674
+ }
675
+ input[type="checkbox"],
676
+ input[type="radio"] {
677
+ border: 1px solid #ccc;
678
+ }
679
+ .form-horizontal .control-label {
680
+ float: none;
681
+ width: auto;
682
+ padding-top: 0;
683
+ text-align: left;
684
+ }
685
+ .form-horizontal .controls {
686
+ margin-left: 0;
687
+ }
688
+ .form-horizontal .control-list {
689
+ padding-top: 0;
690
+ }
691
+ .form-horizontal .form-actions {
692
+ padding-left: 10px;
693
+ padding-right: 10px;
694
+ }
695
+ .media .pull-left,
696
+ .media .pull-right {
697
+ float: none;
698
+ display: block;
699
+ margin-bottom: 10px;
700
+ }
701
+ .media-object {
702
+ margin-right: 0;
703
+ margin-left: 0;
704
+ }
705
+ .modal {
706
+ top: 10px;
707
+ left: 10px;
708
+ right: 10px;
709
+ }
710
+ .modal-header .close {
711
+ padding: 10px;
712
+ margin: -10px;
713
+ }
714
+ .carousel-caption {
715
+ position: static;
716
+ }
717
+ }
718
+ @media (min-width: 768px) and (max-width: 979px) {
719
+ .row {
720
+ margin-left: -20px;
721
+ *zoom: 1;
722
+ }
723
+ .row:before,
724
+ .row:after {
725
+ display: table;
726
+ content: "";
727
+ line-height: 0;
728
+ }
729
+ .row:after {
730
+ clear: both;
731
+ }
732
+ [class*="span"] {
733
+ float: left;
734
+ min-height: 1px;
735
+ margin-left: 20px;
736
+ }
737
+ .container,
738
+ .navbar-static-top .container,
739
+ .navbar-fixed-top .container,
740
+ .navbar-fixed-bottom .container {
741
+ width: 724px;
742
+ }
743
+ .span12 {
744
+ width: 724px;
745
+ }
746
+ .span11 {
747
+ width: 662px;
748
+ }
749
+ .span10 {
750
+ width: 600px;
751
+ }
752
+ .span9 {
753
+ width: 538px;
754
+ }
755
+ .span8 {
756
+ width: 476px;
757
+ }
758
+ .span7 {
759
+ width: 414px;
760
+ }
761
+ .span6 {
762
+ width: 352px;
763
+ }
764
+ .span5 {
765
+ width: 290px;
766
+ }
767
+ .span4 {
768
+ width: 228px;
769
+ }
770
+ .span3 {
771
+ width: 166px;
772
+ }
773
+ .span2 {
774
+ width: 104px;
775
+ }
776
+ .span1 {
777
+ width: 42px;
778
+ }
779
+ .offset12 {
780
+ margin-left: 764px;
781
+ }
782
+ .offset11 {
783
+ margin-left: 702px;
784
+ }
785
+ .offset10 {
786
+ margin-left: 640px;
787
+ }
788
+ .offset9 {
789
+ margin-left: 578px;
790
+ }
791
+ .offset8 {
792
+ margin-left: 516px;
793
+ }
794
+ .offset7 {
795
+ margin-left: 454px;
796
+ }
797
+ .offset6 {
798
+ margin-left: 392px;
799
+ }
800
+ .offset5 {
801
+ margin-left: 330px;
802
+ }
803
+ .offset4 {
804
+ margin-left: 268px;
805
+ }
806
+ .offset3 {
807
+ margin-left: 206px;
808
+ }
809
+ .offset2 {
810
+ margin-left: 144px;
811
+ }
812
+ .offset1 {
813
+ margin-left: 82px;
814
+ }
815
+ .row-fluid {
816
+ width: 100%;
817
+ *zoom: 1;
818
+ }
819
+ .row-fluid:before,
820
+ .row-fluid:after {
821
+ display: table;
822
+ content: "";
823
+ line-height: 0;
824
+ }
825
+ .row-fluid:after {
826
+ clear: both;
827
+ }
828
+ .row-fluid [class*="span"] {
829
+ display: block;
830
+ width: 100%;
831
+ min-height: 30px;
832
+ -webkit-box-sizing: border-box;
833
+ -moz-box-sizing: border-box;
834
+ box-sizing: border-box;
835
+ float: left;
836
+ margin-left: 2.7624309392265194%;
837
+ *margin-left: 2.709239449864817%;
838
+ }
839
+ .row-fluid [class*="span"]:first-child {
840
+ margin-left: 0;
841
+ }
842
+ .row-fluid .controls-row [class*="span"] + [class*="span"] {
843
+ margin-left: 2.7624309392265194%;
844
+ }
845
+ .row-fluid .span12 {
846
+ width: 100%;
847
+ *width: 99.94680851063829%;
848
+ }
849
+ .row-fluid .span11 {
850
+ width: 91.43646408839778%;
851
+ *width: 91.38327259903608%;
852
+ }
853
+ .row-fluid .span10 {
854
+ width: 82.87292817679558%;
855
+ *width: 82.81973668743387%;
856
+ }
857
+ .row-fluid .span9 {
858
+ width: 74.30939226519337%;
859
+ *width: 74.25620077583166%;
860
+ }
861
+ .row-fluid .span8 {
862
+ width: 65.74585635359117%;
863
+ *width: 65.69266486422946%;
864
+ }
865
+ .row-fluid .span7 {
866
+ width: 57.18232044198895%;
867
+ *width: 57.12912895262725%;
868
+ }
869
+ .row-fluid .span6 {
870
+ width: 48.61878453038674%;
871
+ *width: 48.56559304102504%;
872
+ }
873
+ .row-fluid .span5 {
874
+ width: 40.05524861878453%;
875
+ *width: 40.00205712942283%;
876
+ }
877
+ .row-fluid .span4 {
878
+ width: 31.491712707182323%;
879
+ *width: 31.43852121782062%;
880
+ }
881
+ .row-fluid .span3 {
882
+ width: 22.92817679558011%;
883
+ *width: 22.87498530621841%;
884
+ }
885
+ .row-fluid .span2 {
886
+ width: 14.3646408839779%;
887
+ *width: 14.311449394616199%;
888
+ }
889
+ .row-fluid .span1 {
890
+ width: 5.801104972375691%;
891
+ *width: 5.747913483013988%;
892
+ }
893
+ .row-fluid .offset12 {
894
+ margin-left: 105.52486187845304%;
895
+ *margin-left: 105.41847889972962%;
896
+ }
897
+ .row-fluid .offset12:first-child {
898
+ margin-left: 102.76243093922652%;
899
+ *margin-left: 102.6560479605031%;
900
+ }
901
+ .row-fluid .offset11 {
902
+ margin-left: 96.96132596685082%;
903
+ *margin-left: 96.8549429881274%;
904
+ }
905
+ .row-fluid .offset11:first-child {
906
+ margin-left: 94.1988950276243%;
907
+ *margin-left: 94.09251204890089%;
908
+ }
909
+ .row-fluid .offset10 {
910
+ margin-left: 88.39779005524862%;
911
+ *margin-left: 88.2914070765252%;
912
+ }
913
+ .row-fluid .offset10:first-child {
914
+ margin-left: 85.6353591160221%;
915
+ *margin-left: 85.52897613729868%;
916
+ }
917
+ .row-fluid .offset9 {
918
+ margin-left: 79.8342541436464%;
919
+ *margin-left: 79.72787116492299%;
920
+ }
921
+ .row-fluid .offset9:first-child {
922
+ margin-left: 77.07182320441989%;
923
+ *margin-left: 76.96544022569647%;
924
+ }
925
+ .row-fluid .offset8 {
926
+ margin-left: 71.2707182320442%;
927
+ *margin-left: 71.16433525332079%;
928
+ }
929
+ .row-fluid .offset8:first-child {
930
+ margin-left: 68.50828729281768%;
931
+ *margin-left: 68.40190431409427%;
932
+ }
933
+ .row-fluid .offset7 {
934
+ margin-left: 62.70718232044199%;
935
+ *margin-left: 62.600799341718584%;
936
+ }
937
+ .row-fluid .offset7:first-child {
938
+ margin-left: 59.94475138121547%;
939
+ *margin-left: 59.838368402492065%;
940
+ }
941
+ .row-fluid .offset6 {
942
+ margin-left: 54.14364640883978%;
943
+ *margin-left: 54.037263430116376%;
944
+ }
945
+ .row-fluid .offset6:first-child {
946
+ margin-left: 51.38121546961326%;
947
+ *margin-left: 51.27483249088986%;
948
+ }
949
+ .row-fluid .offset5 {
950
+ margin-left: 45.58011049723757%;
951
+ *margin-left: 45.47372751851417%;
952
+ }
953
+ .row-fluid .offset5:first-child {
954
+ margin-left: 42.81767955801105%;
955
+ *margin-left: 42.71129657928765%;
956
+ }
957
+ .row-fluid .offset4 {
958
+ margin-left: 37.01657458563536%;
959
+ *margin-left: 36.91019160691196%;
960
+ }
961
+ .row-fluid .offset4:first-child {
962
+ margin-left: 34.25414364640884%;
963
+ *margin-left: 34.14776066768544%;
964
+ }
965
+ .row-fluid .offset3 {
966
+ margin-left: 28.45303867403315%;
967
+ *margin-left: 28.346655695309746%;
968
+ }
969
+ .row-fluid .offset3:first-child {
970
+ margin-left: 25.69060773480663%;
971
+ *margin-left: 25.584224756083227%;
972
+ }
973
+ .row-fluid .offset2 {
974
+ margin-left: 19.88950276243094%;
975
+ *margin-left: 19.783119783707537%;
976
+ }
977
+ .row-fluid .offset2:first-child {
978
+ margin-left: 17.12707182320442%;
979
+ *margin-left: 17.02068884448102%;
980
+ }
981
+ .row-fluid .offset1 {
982
+ margin-left: 11.32596685082873%;
983
+ *margin-left: 11.219583872105325%;
984
+ }
985
+ .row-fluid .offset1:first-child {
986
+ margin-left: 8.56353591160221%;
987
+ *margin-left: 8.457152932878806%;
988
+ }
989
+ input,
990
+ textarea,
991
+ .uneditable-input {
992
+ margin-left: 0;
993
+ }
994
+ .controls-row [class*="span"] + [class*="span"] {
995
+ margin-left: 20px;
996
+ }
997
+ input.span12,
998
+ textarea.span12,
999
+ .uneditable-input.span12 {
1000
+ width: 710px;
1001
+ }
1002
+ input.span11,
1003
+ textarea.span11,
1004
+ .uneditable-input.span11 {
1005
+ width: 648px;
1006
+ }
1007
+ input.span10,
1008
+ textarea.span10,
1009
+ .uneditable-input.span10 {
1010
+ width: 586px;
1011
+ }
1012
+ input.span9,
1013
+ textarea.span9,
1014
+ .uneditable-input.span9 {
1015
+ width: 524px;
1016
+ }
1017
+ input.span8,
1018
+ textarea.span8,
1019
+ .uneditable-input.span8 {
1020
+ width: 462px;
1021
+ }
1022
+ input.span7,
1023
+ textarea.span7,
1024
+ .uneditable-input.span7 {
1025
+ width: 400px;
1026
+ }
1027
+ input.span6,
1028
+ textarea.span6,
1029
+ .uneditable-input.span6 {
1030
+ width: 338px;
1031
+ }
1032
+ input.span5,
1033
+ textarea.span5,
1034
+ .uneditable-input.span5 {
1035
+ width: 276px;
1036
+ }
1037
+ input.span4,
1038
+ textarea.span4,
1039
+ .uneditable-input.span4 {
1040
+ width: 214px;
1041
+ }
1042
+ input.span3,
1043
+ textarea.span3,
1044
+ .uneditable-input.span3 {
1045
+ width: 152px;
1046
+ }
1047
+ input.span2,
1048
+ textarea.span2,
1049
+ .uneditable-input.span2 {
1050
+ width: 90px;
1051
+ }
1052
+ input.span1,
1053
+ textarea.span1,
1054
+ .uneditable-input.span1 {
1055
+ width: 28px;
1056
+ }
1057
+ }
1058
+ @media (min-width: 1200px) {
1059
+ .row {
1060
+ margin-left: -30px;
1061
+ *zoom: 1;
1062
+ }
1063
+ .row:before,
1064
+ .row:after {
1065
+ display: table;
1066
+ content: "";
1067
+ line-height: 0;
1068
+ }
1069
+ .row:after {
1070
+ clear: both;
1071
+ }
1072
+ [class*="span"] {
1073
+ float: left;
1074
+ min-height: 1px;
1075
+ margin-left: 30px;
1076
+ }
1077
+ .container,
1078
+ .navbar-static-top .container,
1079
+ .navbar-fixed-top .container,
1080
+ .navbar-fixed-bottom .container {
1081
+ width: 1170px;
1082
+ }
1083
+ .span12 {
1084
+ width: 1170px;
1085
+ }
1086
+ .span11 {
1087
+ width: 1070px;
1088
+ }
1089
+ .span10 {
1090
+ width: 970px;
1091
+ }
1092
+ .span9 {
1093
+ width: 870px;
1094
+ }
1095
+ .span8 {
1096
+ width: 770px;
1097
+ }
1098
+ .span7 {
1099
+ width: 670px;
1100
+ }
1101
+ .span6 {
1102
+ width: 570px;
1103
+ }
1104
+ .span5 {
1105
+ width: 470px;
1106
+ }
1107
+ .span4 {
1108
+ width: 370px;
1109
+ }
1110
+ .span3 {
1111
+ width: 270px;
1112
+ }
1113
+ .span2 {
1114
+ width: 170px;
1115
+ }
1116
+ .span1 {
1117
+ width: 70px;
1118
+ }
1119
+ .offset12 {
1120
+ margin-left: 1230px;
1121
+ }
1122
+ .offset11 {
1123
+ margin-left: 1130px;
1124
+ }
1125
+ .offset10 {
1126
+ margin-left: 1030px;
1127
+ }
1128
+ .offset9 {
1129
+ margin-left: 930px;
1130
+ }
1131
+ .offset8 {
1132
+ margin-left: 830px;
1133
+ }
1134
+ .offset7 {
1135
+ margin-left: 730px;
1136
+ }
1137
+ .offset6 {
1138
+ margin-left: 630px;
1139
+ }
1140
+ .offset5 {
1141
+ margin-left: 530px;
1142
+ }
1143
+ .offset4 {
1144
+ margin-left: 430px;
1145
+ }
1146
+ .offset3 {
1147
+ margin-left: 330px;
1148
+ }
1149
+ .offset2 {
1150
+ margin-left: 230px;
1151
+ }
1152
+ .offset1 {
1153
+ margin-left: 130px;
1154
+ }
1155
+ .row-fluid {
1156
+ width: 100%;
1157
+ *zoom: 1;
1158
+ }
1159
+ .row-fluid:before,
1160
+ .row-fluid:after {
1161
+ display: table;
1162
+ content: "";
1163
+ line-height: 0;
1164
+ }
1165
+ .row-fluid:after {
1166
+ clear: both;
1167
+ }
1168
+ .row-fluid [class*="span"] {
1169
+ display: block;
1170
+ width: 100%;
1171
+ min-height: 30px;
1172
+ -webkit-box-sizing: border-box;
1173
+ -moz-box-sizing: border-box;
1174
+ box-sizing: border-box;
1175
+ float: left;
1176
+ margin-left: 2.564102564102564%;
1177
+ *margin-left: 2.5109110747408616%;
1178
+ }
1179
+ .row-fluid [class*="span"]:first-child {
1180
+ margin-left: 0;
1181
+ }
1182
+ .row-fluid .controls-row [class*="span"] + [class*="span"] {
1183
+ margin-left: 2.564102564102564%;
1184
+ }
1185
+ .row-fluid .span12 {
1186
+ width: 100%;
1187
+ *width: 99.94680851063829%;
1188
+ }
1189
+ .row-fluid .span11 {
1190
+ width: 91.45299145299145%;
1191
+ *width: 91.39979996362975%;
1192
+ }
1193
+ .row-fluid .span10 {
1194
+ width: 82.90598290598291%;
1195
+ *width: 82.8527914166212%;
1196
+ }
1197
+ .row-fluid .span9 {
1198
+ width: 74.35897435897436%;
1199
+ *width: 74.30578286961266%;
1200
+ }
1201
+ .row-fluid .span8 {
1202
+ width: 65.81196581196582%;
1203
+ *width: 65.75877432260411%;
1204
+ }
1205
+ .row-fluid .span7 {
1206
+ width: 57.26495726495726%;
1207
+ *width: 57.21176577559556%;
1208
+ }
1209
+ .row-fluid .span6 {
1210
+ width: 48.717948717948715%;
1211
+ *width: 48.664757228587014%;
1212
+ }
1213
+ .row-fluid .span5 {
1214
+ width: 40.17094017094017%;
1215
+ *width: 40.11774868157847%;
1216
+ }
1217
+ .row-fluid .span4 {
1218
+ width: 31.623931623931625%;
1219
+ *width: 31.570740134569924%;
1220
+ }
1221
+ .row-fluid .span3 {
1222
+ width: 23.076923076923077%;
1223
+ *width: 23.023731587561375%;
1224
+ }
1225
+ .row-fluid .span2 {
1226
+ width: 14.52991452991453%;
1227
+ *width: 14.476723040552828%;
1228
+ }
1229
+ .row-fluid .span1 {
1230
+ width: 5.982905982905983%;
1231
+ *width: 5.929714493544281%;
1232
+ }
1233
+ .row-fluid .offset12 {
1234
+ margin-left: 105.12820512820512%;
1235
+ *margin-left: 105.02182214948171%;
1236
+ }
1237
+ .row-fluid .offset12:first-child {
1238
+ margin-left: 102.56410256410257%;
1239
+ *margin-left: 102.45771958537915%;
1240
+ }
1241
+ .row-fluid .offset11 {
1242
+ margin-left: 96.58119658119658%;
1243
+ *margin-left: 96.47481360247316%;
1244
+ }
1245
+ .row-fluid .offset11:first-child {
1246
+ margin-left: 94.01709401709402%;
1247
+ *margin-left: 93.91071103837061%;
1248
+ }
1249
+ .row-fluid .offset10 {
1250
+ margin-left: 88.03418803418803%;
1251
+ *margin-left: 87.92780505546462%;
1252
+ }
1253
+ .row-fluid .offset10:first-child {
1254
+ margin-left: 85.47008547008548%;
1255
+ *margin-left: 85.36370249136206%;
1256
+ }
1257
+ .row-fluid .offset9 {
1258
+ margin-left: 79.48717948717949%;
1259
+ *margin-left: 79.38079650845607%;
1260
+ }
1261
+ .row-fluid .offset9:first-child {
1262
+ margin-left: 76.92307692307693%;
1263
+ *margin-left: 76.81669394435352%;
1264
+ }
1265
+ .row-fluid .offset8 {
1266
+ margin-left: 70.94017094017094%;
1267
+ *margin-left: 70.83378796144753%;
1268
+ }
1269
+ .row-fluid .offset8:first-child {
1270
+ margin-left: 68.37606837606839%;
1271
+ *margin-left: 68.26968539734497%;
1272
+ }
1273
+ .row-fluid .offset7 {
1274
+ margin-left: 62.393162393162385%;
1275
+ *margin-left: 62.28677941443899%;
1276
+ }
1277
+ .row-fluid .offset7:first-child {
1278
+ margin-left: 59.82905982905982%;
1279
+ *margin-left: 59.72267685033642%;
1280
+ }
1281
+ .row-fluid .offset6 {
1282
+ margin-left: 53.84615384615384%;
1283
+ *margin-left: 53.739770867430444%;
1284
+ }
1285
+ .row-fluid .offset6:first-child {
1286
+ margin-left: 51.28205128205128%;
1287
+ *margin-left: 51.175668303327875%;
1288
+ }
1289
+ .row-fluid .offset5 {
1290
+ margin-left: 45.299145299145295%;
1291
+ *margin-left: 45.1927623204219%;
1292
+ }
1293
+ .row-fluid .offset5:first-child {
1294
+ margin-left: 42.73504273504273%;
1295
+ *margin-left: 42.62865975631933%;
1296
+ }
1297
+ .row-fluid .offset4 {
1298
+ margin-left: 36.75213675213675%;
1299
+ *margin-left: 36.645753773413354%;
1300
+ }
1301
+ .row-fluid .offset4:first-child {
1302
+ margin-left: 34.18803418803419%;
1303
+ *margin-left: 34.081651209310785%;
1304
+ }
1305
+ .row-fluid .offset3 {
1306
+ margin-left: 28.205128205128204%;
1307
+ *margin-left: 28.0987452264048%;
1308
+ }
1309
+ .row-fluid .offset3:first-child {
1310
+ margin-left: 25.641025641025642%;
1311
+ *margin-left: 25.53464266230224%;
1312
+ }
1313
+ .row-fluid .offset2 {
1314
+ margin-left: 19.65811965811966%;
1315
+ *margin-left: 19.551736679396257%;
1316
+ }
1317
+ .row-fluid .offset2:first-child {
1318
+ margin-left: 17.094017094017094%;
1319
+ *margin-left: 16.98763411529369%;
1320
+ }
1321
+ .row-fluid .offset1 {
1322
+ margin-left: 11.11111111111111%;
1323
+ *margin-left: 11.004728132387708%;
1324
+ }
1325
+ .row-fluid .offset1:first-child {
1326
+ margin-left: 8.547008547008547%;
1327
+ *margin-left: 8.440625568285142%;
1328
+ }
1329
+ input,
1330
+ textarea,
1331
+ .uneditable-input {
1332
+ margin-left: 0;
1333
+ }
1334
+ .controls-row [class*="span"] + [class*="span"] {
1335
+ margin-left: 30px;
1336
+ }
1337
+ input.span12,
1338
+ textarea.span12,
1339
+ .uneditable-input.span12 {
1340
+ width: 1156px;
1341
+ }
1342
+ input.span11,
1343
+ textarea.span11,
1344
+ .uneditable-input.span11 {
1345
+ width: 1056px;
1346
+ }
1347
+ input.span10,
1348
+ textarea.span10,
1349
+ .uneditable-input.span10 {
1350
+ width: 956px;
1351
+ }
1352
+ input.span9,
1353
+ textarea.span9,
1354
+ .uneditable-input.span9 {
1355
+ width: 856px;
1356
+ }
1357
+ input.span8,
1358
+ textarea.span8,
1359
+ .uneditable-input.span8 {
1360
+ width: 756px;
1361
+ }
1362
+ input.span7,
1363
+ textarea.span7,
1364
+ .uneditable-input.span7 {
1365
+ width: 656px;
1366
+ }
1367
+ input.span6,
1368
+ textarea.span6,
1369
+ .uneditable-input.span6 {
1370
+ width: 556px;
1371
+ }
1372
+ input.span5,
1373
+ textarea.span5,
1374
+ .uneditable-input.span5 {
1375
+ width: 456px;
1376
+ }
1377
+ input.span4,
1378
+ textarea.span4,
1379
+ .uneditable-input.span4 {
1380
+ width: 356px;
1381
+ }
1382
+ input.span3,
1383
+ textarea.span3,
1384
+ .uneditable-input.span3 {
1385
+ width: 256px;
1386
+ }
1387
+ input.span2,
1388
+ textarea.span2,
1389
+ .uneditable-input.span2 {
1390
+ width: 156px;
1391
+ }
1392
+ input.span1,
1393
+ textarea.span1,
1394
+ .uneditable-input.span1 {
1395
+ width: 56px;
1396
+ }
1397
+ .thumbnails {
1398
+ margin-left: -30px;
1399
+ }
1400
+ .thumbnails > li {
1401
+ margin-left: 30px;
1402
+ }
1403
+ .row-fluid .thumbnails {
1404
+ margin-left: 0;
1405
+ }
1406
+ }