update version 2.0.0
Showing
75 changed files
with
7093 additions
and
2 deletions
Gruntfile.js
0 → 100644
1 | module.exports = function(grunt) { | ||
2 | |||
3 | grunt.initConfig({ | ||
4 | jshint: { | ||
5 | files: ['Gruntfile.js', 'js/**/*.js'], | ||
6 | options: { | ||
7 | jshintrc: '.jshintrc' | ||
8 | } | ||
9 | }, | ||
10 | uglify: { | ||
11 | dist: { | ||
12 | files: { | ||
13 | 'js/site.min.js': [ | ||
14 | 'js/jquery-1.10.1.min.js', | ||
15 | 'js/bootstrap.min.js', | ||
16 | 'js/holder.js', | ||
17 | 'bootflat/js/icheck.min.js', | ||
18 | 'bootflat/js/jquery.collapse.js', | ||
19 | 'js/application.js' | ||
20 | ] | ||
21 | } | ||
22 | } | ||
23 | }, | ||
24 | cssmin: { | ||
25 | dist: { | ||
26 | files: { | ||
27 | 'css/site.min.css': [ | ||
28 | 'css/bootstrap.min.css', | ||
29 | 'bootflat/css/bootflat.css', | ||
30 | 'css/site.css' | ||
31 | ], | ||
32 | 'bootflat/css/bootflat.min.css': 'bootflat/css/bootflat.css' | ||
33 | } | ||
34 | } | ||
35 | }, | ||
36 | sass: { | ||
37 | dist: { | ||
38 | files: { | ||
39 | 'bootflat/css/bootflat.css': 'bootflat/scss/bootflat.scss' | ||
40 | }, | ||
41 | options: { | ||
42 | style: 'expanded', | ||
43 | sourcemap: 'true' | ||
44 | } | ||
45 | } | ||
46 | }, | ||
47 | pkg: grunt.file.readJSON('package.json') | ||
48 | }); | ||
49 | |||
50 | require('load-grunt-tasks')(grunt); | ||
51 | |||
52 | grunt.registerTask('default', [ | ||
53 | 'jshint', | ||
54 | 'sass', | ||
55 | 'cssmin', | ||
56 | 'uglify' | ||
57 | ]); | ||
58 | }; | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
1 | bootflat.github.io | 1 | # What is Bootflat? |
2 | ================== | 2 | |
3 | BOOTFLAT is an open source Flat UI KIT based on Twitter Bootstrap 3.1.0 css framework. It provides a faster, easier and less repetitive way for web developers to create elegant web app. | ||
4 | |||
5 | Note: Compatible Browsers: IE8, IE9, IE10, Firefox, Safari, Opera, Chrome. | ||
6 | |||
7 | Thanks for supporting our website and enjoy! | ||
8 | |||
9 | ## Feature: | ||
10 | |||
11 | ### 1. Bootstrap 3.1.0 | ||
12 | Bootsflat is based on Bootstrap 3.1.0 the sleek, intuitive, and powerful mobile-first front-end framework for faster and easier web development. | ||
13 | |||
14 | ### 2. HTML5 & CSS3 | ||
15 | First use HTML5 and CSS3 to build the components. the pages use header, nav, section to build the layout. this project have a good color scheme, can easy to change. | ||
16 | |||
17 | ### 3. Lightweight | ||
18 | We only choose the lightweight plugins, but with rich functions. we use tiny components, css and js size is first consideration. | ||
19 | |||
20 | ### 4. Mobile first | ||
21 | Bootflat is fully responsive, but it's mobile first. it provide the off screen nav, and almost all the widgets are copatible to all the screen sizes. | ||
22 | |||
23 | ## Manual Start | ||
24 | Install with [bower](http://bower.io/)? | ||
25 | |||
26 | `bower install angulargap` | ||
27 | |||
28 | The source files are in the `bootflat/` folder. You can just grab the `bootflat/css/`, `bootflat/scss/`,`bootflat/js/` and `bootflat/img/` folders and you'll be good to go. | ||
29 | |||
30 | ## Changelog: | ||
31 | |||
32 | 2014/3/6 version 2.0.0 | ||
33 | |||
34 | ## Links: | ||
35 | |||
36 | + [AngularGap Home page](http://bootflat.github.io/) | ||
37 | + [AngularGap Documentation page](http://bootflat.github.io/documentation.html) | ||
38 | |||
39 | ## Community | ||
40 | |||
41 | + Follow [@flathemes on Twitter](https://twitter.com/flathemes). | ||
42 | + Have a feature request or find a bug? [Submit an issue](https://github.com/angulargap/angulargap.github.io/issues). | ||
43 | |||
44 | ## LICENSE | ||
45 | |||
46 | Bootflat is licensed under the MIT Open Source license. For more information, see the LICENSE file in this repository. | ||
47 | ... | ... |
angularicons/angularicons.eot
0 → 100644
No preview for this file type
angularicons/angularicons.svg
0 → 100644
This diff could not be displayed because it is too large.
angularicons/angularicons.ttf
0 → 100644
No preview for this file type
angularicons/angularicons.woff
0 → 100644
No preview for this file type
bootflat/css/bootflat.css
0 → 100644
1 | /* | ||
2 | * Copyright 2013 FLATHEMES. | ||
3 | * | ||
4 | * Bootflat, v2.0.0 | ||
5 | * A open source Flat UI KIT based on Twitter Bootstrap 3.1.0 css framework. | ||
6 | * http://http://bootflat.github.io/ | ||
7 | * | ||
8 | * By @flathemes | ||
9 | * | ||
10 | * Licensed under the MIT license. Please see LICENSE for more information. | ||
11 | * | ||
12 | */ | ||
13 | /** | ||
14 | * typography | ||
15 | * -------------------------------------------------- | ||
16 | */ | ||
17 | body { | ||
18 | font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif; | ||
19 | color: #434a54; | ||
20 | background-color: white; | ||
21 | } | ||
22 | |||
23 | a { | ||
24 | color: #3bafda; | ||
25 | text-decoration: none; | ||
26 | } | ||
27 | a:hover, a:focus { | ||
28 | color: #4fc1e9; | ||
29 | text-decoration: none; | ||
30 | } | ||
31 | a:focus { | ||
32 | outline: none; | ||
33 | } | ||
34 | |||
35 | h1, | ||
36 | h2, | ||
37 | h3, | ||
38 | h4, | ||
39 | h5, | ||
40 | h6, | ||
41 | .h1, | ||
42 | .h2, | ||
43 | .h3, | ||
44 | .h4, | ||
45 | .h5, | ||
46 | .h6 { | ||
47 | font-family: inherit; | ||
48 | font-weight: 700; | ||
49 | line-height: 1.1; | ||
50 | color: inherit; | ||
51 | } | ||
52 | |||
53 | h1 small, | ||
54 | h2 small, | ||
55 | h3 small, | ||
56 | h4 small, | ||
57 | h5 small, | ||
58 | h6 small, | ||
59 | .h1 small, | ||
60 | .h2 small, | ||
61 | .h3 small, | ||
62 | .h4 small, | ||
63 | .h5 small, | ||
64 | .h6 small { | ||
65 | color: #e7e9ec; | ||
66 | } | ||
67 | |||
68 | h1, | ||
69 | h2, | ||
70 | h3 { | ||
71 | margin-top: 30px; | ||
72 | margin-bottom: 15px; | ||
73 | } | ||
74 | |||
75 | h4, | ||
76 | h5, | ||
77 | h6 { | ||
78 | margin-top: 15px; | ||
79 | margin-bottom: 15px; | ||
80 | } | ||
81 | |||
82 | h6 { | ||
83 | font-weight: normal; | ||
84 | } | ||
85 | |||
86 | h1, | ||
87 | .h1 { | ||
88 | font-size: 51px; | ||
89 | } | ||
90 | |||
91 | h2, | ||
92 | .h2 { | ||
93 | font-size: 43px; | ||
94 | } | ||
95 | |||
96 | h3, | ||
97 | .h3 { | ||
98 | font-size: 30px; | ||
99 | } | ||
100 | |||
101 | h4, | ||
102 | .h4 { | ||
103 | font-size: 19px; | ||
104 | } | ||
105 | |||
106 | h5, | ||
107 | .h5 { | ||
108 | font-size: 18px; | ||
109 | } | ||
110 | |||
111 | h6, | ||
112 | .h6 { | ||
113 | font-size: 14px; | ||
114 | } | ||
115 | |||
116 | blockquote { | ||
117 | border-left: 3px solid #ccd1d9; | ||
118 | } | ||
119 | |||
120 | .img-rounded { | ||
121 | -webkit-border-radius: 4px; | ||
122 | -moz-border-radius: 4px; | ||
123 | border-radius: 4px; | ||
124 | } | ||
125 | |||
126 | .img-comment { | ||
127 | font-size: 15px; | ||
128 | line-height: 1.2; | ||
129 | font-style: italic; | ||
130 | margin: 24px 0; | ||
131 | } | ||
132 | |||
133 | /** | ||
134 | * button | ||
135 | * -------------------------------------------------- | ||
136 | */ | ||
137 | .btn { | ||
138 | color: white; | ||
139 | } | ||
140 | .btn, .btn.disabled, .btn[disabled] { | ||
141 | border-color: #aab2bd; | ||
142 | background-color: #aab2bd; | ||
143 | } | ||
144 | .btn:hover, .btn:focus, .btn:active, .btn.active { | ||
145 | color: white; | ||
146 | border-color: #ccd1d9; | ||
147 | background-color: #ccd1d9; | ||
148 | outline: none !important; | ||
149 | } | ||
150 | .btn:active, .btn.active { | ||
151 | -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.125); | ||
152 | -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.125); | ||
153 | box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.125); | ||
154 | } | ||
155 | .btn.disabled, .btn[disabled] { | ||
156 | opacity: 0.45; | ||
157 | filter: alpha(opacity=45); | ||
158 | } | ||
159 | .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active, .btn-link.active, .btn-link.disabled, .btn-link[disabled] { | ||
160 | border-color: transparent; | ||
161 | background-color: transparent; | ||
162 | color: #3bafda; | ||
163 | -webkit-box-shadow: none; | ||
164 | -moz-box-shadow: none; | ||
165 | box-shadow: none; | ||
166 | } | ||
167 | .btn-link:hover, .btn-link:focus { | ||
168 | text-decoration: underline; | ||
169 | } | ||
170 | .btn-default { | ||
171 | color: #434a54; | ||
172 | border-color: #aab2bd !important; | ||
173 | } | ||
174 | .btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active { | ||
175 | border-color: #ccd1d9; | ||
176 | background-color: #ccd1d9; | ||
177 | } | ||
178 | .btn-default, .btn-default.disabled, .btn-default[disabled] { | ||
179 | background-color: white; | ||
180 | } | ||
181 | .open .dropdown-toggle.btn-default { | ||
182 | border-color: #ccd1d9; | ||
183 | background-color: #ccd1d9; | ||
184 | } | ||
185 | .btn-primary, .btn-primary:active, .btn-primary.active, .btn-primary.disabled, .btn-primary[disabled] { | ||
186 | border-color: #3bafda; | ||
187 | background-color: #3bafda; | ||
188 | } | ||
189 | .btn-primary:hover, .btn-primary:focus { | ||
190 | border-color: #4fc1e9; | ||
191 | background-color: #4fc1e9; | ||
192 | } | ||
193 | .open .dropdown-toggle.btn-primary { | ||
194 | border-color: #4fc1e9; | ||
195 | background-color: #4fc1e9; | ||
196 | } | ||
197 | .btn-info, .btn-info:active, .btn-info.active, .btn-info.disabled, .btn-info[disabled] { | ||
198 | border-color: #37bc9b; | ||
199 | background-color: #37bc9b; | ||
200 | } | ||
201 | .btn-info:hover, .btn-info:focus { | ||
202 | border-color: #48cfad; | ||
203 | background-color: #48cfad; | ||
204 | } | ||
205 | .open .dropdown-toggle.btn-info { | ||
206 | border-color: #48cfad; | ||
207 | background-color: #48cfad; | ||
208 | } | ||
209 | .btn-success, .btn-success:active, .btn-success.active, .btn-success.disabled, .btn-success[disabled] { | ||
210 | border-color: #8cc152; | ||
211 | background-color: #8cc152; | ||
212 | } | ||
213 | .btn-success:hover, .btn-success:focus { | ||
214 | border-color: #a0d468; | ||
215 | background-color: #a0d468; | ||
216 | } | ||
217 | .open .dropdown-toggle.btn-success { | ||
218 | border-color: #a0d468; | ||
219 | background-color: #a0d468; | ||
220 | } | ||
221 | .btn-warning, .btn-warning:active, .btn-warning.active, .btn-warning.disabled, .btn-warning[disabled] { | ||
222 | border-color: #f6bb42; | ||
223 | background-color: #f6bb42; | ||
224 | } | ||
225 | .btn-warning:hover, .btn-warning:focus { | ||
226 | border-color: #ffce54; | ||
227 | background-color: #ffce54; | ||
228 | } | ||
229 | .open .dropdown-toggle.btn-warning { | ||
230 | border-color: #ffce54; | ||
231 | background-color: #ffce54; | ||
232 | } | ||
233 | .btn-danger, .btn-danger:active, .btn-danger.active, .btn-danger.disabled, .btn-danger[disabled], | ||
234 | .btn-danger .open .dropdown-toggle.btn-danger { | ||
235 | border-color: #da4453; | ||
236 | background-color: #da4453; | ||
237 | } | ||
238 | .btn-danger:hover, .btn-danger:focus { | ||
239 | border-color: #ed5565; | ||
240 | background-color: #ed5565; | ||
241 | } | ||
242 | .open .dropdown-toggle.btn-danger { | ||
243 | border-color: #ed5565; | ||
244 | background-color: #ed5565; | ||
245 | } | ||
246 | |||
247 | /** | ||
248 | * button-group | ||
249 | * -------------------------------------------------- | ||
250 | */ | ||
251 | .btn-group.open .dropdown-toggle { | ||
252 | -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.125); | ||
253 | -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.125); | ||
254 | box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.125); | ||
255 | } | ||
256 | .btn-group .btn { | ||
257 | border-left-color: #96a0ad; | ||
258 | } | ||
259 | .btn-group.open .btn-default.dropdown-toggle, .btn-group .btn-default:focus, .btn-group .btn-default:active, .btn-group .btn-default.active { | ||
260 | color: white; | ||
261 | } | ||
262 | .btn-group .btn-primary, .btn-group .btn-primary:focus, .btn-group .btn-primary:active, .btn-group .btn-primary.active { | ||
263 | border-left-color: #269ecb; | ||
264 | } | ||
265 | .btn-group .btn-success, .btn-group .btn-success:focus, .btn-group .btn-success:active, .btn-group .btn-success.active { | ||
266 | border-left-color: #7ab03f; | ||
267 | } | ||
268 | .btn-group .btn-warning, .btn-group .btn-warning:focus, .btn-group .btn-warning:active, .btn-group .btn-warning.active { | ||
269 | border-left-color: #efa50b; | ||
270 | } | ||
271 | .btn-group .btn-danger, .btn-group .btn-danger:focus, .btn-group .btn-danger:active, .btn-group .btn-danger.active { | ||
272 | border-left-color: #d1293a; | ||
273 | } | ||
274 | .btn-group .btn-info, .btn-group .btn-info:focus, .btn-group .btn-info:active, .btn-group .btn-info.active { | ||
275 | border-left-color: #2fa084; | ||
276 | } | ||
277 | .btn-group .btn:first-child, .btn-group .btn-primary:first-child, .btn-group .btn-success:first-child, .btn-group .btn-warning:first-child, .btn-group .btn-danger:first-child, .btn-group .btn-info:first-child { | ||
278 | border-left-color: transparent; | ||
279 | } | ||
280 | |||
281 | .btn-group-vertical .btn, .btn-group-vertical .btn-group .btn-primary { | ||
282 | border-top-color: #96a0ad !important; | ||
283 | } | ||
284 | .btn-group-vertical .btn-primary, .btn-group-vertical .btn-primary:focus, .btn-group-vertical .btn-primary:active, .btn-group-vertical .btn-primary.active, .btn-group-vertical .btn-group .btn-primary { | ||
285 | border-top-color: #269ecb !important; | ||
286 | } | ||
287 | .btn-group-vertical .btn-success, .btn-group-vertical .btn-success:focus, .btn-group-vertical .btn-success:active, .btn-group-vertical .btn-success.active, .btn-group-vertical .btn-group .btn-success { | ||
288 | border-top-color: #7ab03f !important; | ||
289 | } | ||
290 | .btn-group-vertical .btn-warning, .btn-group-vertical .btn-warning:focus, .btn-group-vertical .btn-warning:active, .btn-group-vertical .btn-warning.active, .btn-group-vertical .btn-group .btn-warning { | ||
291 | border-top-color: #efa50b !important; | ||
292 | } | ||
293 | .btn-group-vertical .btn-danger, .btn-group-vertical .btn-danger:focus, .btn-group-vertical .btn-danger:active, .btn-group-vertical .btn-danger.active, .btn-group-vertical .btn-group .btn-danger { | ||
294 | border-top-color: #d1293a !important; | ||
295 | } | ||
296 | .btn-group-vertical .btn-info, .btn-group-vertical .btn-info:focus, .btn-group-vertical .btn-info:active, .btn-group-vertical .btn-info.active, .btn-group-vertical .btn-group .btn-info { | ||
297 | border-top-color: #2fa084 !important; | ||
298 | } | ||
299 | .btn-group-vertical .btn:not(.btn-default):first-child, .btn-group-vertical .btn-primary:first-child, .btn-group-vertical .btn-success:first-child, .btn-group-vertical .btn-warning:first-child, .btn-group-vertical .btn-danger:first-child, .btn-group-vertical .btn-info:first-child { | ||
300 | border-top: none; | ||
301 | } | ||
302 | |||
303 | /** | ||
304 | * labels and badges | ||
305 | * -------------------------------------------------- | ||
306 | */ | ||
307 | .label, | ||
308 | .badge { | ||
309 | background-color: #aab2bd; | ||
310 | } | ||
311 | |||
312 | .label-default, | ||
313 | .badge-default { | ||
314 | border: 1px solid #aab2bd; | ||
315 | background-color: white; | ||
316 | color: #434a54; | ||
317 | } | ||
318 | |||
319 | .label-primary, | ||
320 | .badge-primary { | ||
321 | border-color: #3bafda; | ||
322 | background-color: #3bafda; | ||
323 | } | ||
324 | |||
325 | .label-success, | ||
326 | .badge-success { | ||
327 | border-color: #8cc152; | ||
328 | background-color: #8cc152; | ||
329 | } | ||
330 | |||
331 | .label-danger, | ||
332 | .badge-danger { | ||
333 | border-color: #da4453; | ||
334 | background-color: #da4453; | ||
335 | } | ||
336 | |||
337 | .label-warning, | ||
338 | .badge-warning { | ||
339 | border-color: #f6bb42; | ||
340 | background-color: #f6bb42; | ||
341 | } | ||
342 | |||
343 | .label-info, | ||
344 | .badge-info { | ||
345 | border-color: #37bc9b; | ||
346 | background-color: #37bc9b; | ||
347 | } | ||
348 | |||
349 | /** | ||
350 | * tooltip | ||
351 | * -------------------------------------------------- | ||
352 | */ | ||
353 | .tooltip-inner { | ||
354 | color: white; | ||
355 | background-color: #434a54; | ||
356 | } | ||
357 | .tooltip.top .tooltip-arrow, .tooltip.top-left .tooltip-arrow, .tooltip.top-right .tooltip-arrow { | ||
358 | border-top-color: #434a54; | ||
359 | } | ||
360 | .tooltip.right .tooltip-arrow { | ||
361 | border-right-color: #434a54; | ||
362 | } | ||
363 | .tooltip.left .tooltip-arrow { | ||
364 | border-left-color: #434a54; | ||
365 | } | ||
366 | .tooltip.bottom .tooltip-arrow, .tooltip.bottom-left .tooltip-arrow, .tooltip.bottom-right .tooltip-arrow { | ||
367 | border-bottom-color: #434a54; | ||
368 | } | ||
369 | |||
370 | /** | ||
371 | * popover | ||
372 | * -------------------------------------------------- | ||
373 | */ | ||
374 | .popover { | ||
375 | background-color: #434a54; | ||
376 | color: white; | ||
377 | border-color: #434a54; | ||
378 | } | ||
379 | .popover-title { | ||
380 | padding-bottom: 0; | ||
381 | font-weight: bold; | ||
382 | color: #aab2bd; | ||
383 | background-color: transparent; | ||
384 | border-bottom: none; | ||
385 | } | ||
386 | .popover.top .arrow, .popover.top .arrow:after { | ||
387 | border-top-color: #434a54; | ||
388 | } | ||
389 | .popover.right .arrow, .popover.right .arrow:after { | ||
390 | border-right-color: #434a54; | ||
391 | } | ||
392 | .popover.bottom .arrow, .popover.bottom .arrow:after { | ||
393 | border-bottom-color: #434a54; | ||
394 | } | ||
395 | .popover.left .arrow, .popover.left .arrow:after { | ||
396 | border-left-color: #434a54; | ||
397 | } | ||
398 | |||
399 | /** | ||
400 | * progress | ||
401 | * -------------------------------------------------- | ||
402 | */ | ||
403 | .progress { | ||
404 | background-color: #e6e9ed; | ||
405 | -webkit-box-shadow: none; | ||
406 | -moz-box-shadow: none; | ||
407 | box-shadow: none; | ||
408 | } | ||
409 | .progress .progress-bar { | ||
410 | background-color: #3bafda; | ||
411 | -webkit-box-shadow: none; | ||
412 | -moz-box-shadow: none; | ||
413 | box-shadow: none; | ||
414 | } | ||
415 | .progress .progress-bar-success { | ||
416 | background-color: #8cc152; | ||
417 | } | ||
418 | .progress .progress-bar-info { | ||
419 | background-color: #37bc9b; | ||
420 | } | ||
421 | .progress .progress-bar-warning { | ||
422 | background-color: #f6bb42; | ||
423 | } | ||
424 | .progress .progress-bar-danger { | ||
425 | background-color: #da4453; | ||
426 | } | ||
427 | |||
428 | /** | ||
429 | * breadcrumb | ||
430 | * -------------------------------------------------- | ||
431 | */ | ||
432 | .breadcrumb { | ||
433 | color: #434a54; | ||
434 | background-color: #e6e9ed; | ||
435 | } | ||
436 | .breadcrumb > .active { | ||
437 | color: #434a54; | ||
438 | } | ||
439 | .breadcrumb a { | ||
440 | color: #3bafda; | ||
441 | } | ||
442 | |||
443 | .breadcrumb-arrow { | ||
444 | padding: 0; | ||
445 | list-style: none; | ||
446 | background-color: #e6e9ed; | ||
447 | height: 36px; | ||
448 | line-height: 36px; | ||
449 | } | ||
450 | .breadcrumb-arrow li:first-child a { | ||
451 | -webkit-border-radius: 4px 0 0 4px; | ||
452 | -moz-border-radius: 4px 0 0 4px; | ||
453 | border-radius: 4px 0 0 4px; | ||
454 | } | ||
455 | .breadcrumb-arrow li, .breadcrumb-arrow li a, .breadcrumb-arrow li span { | ||
456 | display: inline-block; | ||
457 | vertical-align: top; | ||
458 | } | ||
459 | .breadcrumb-arrow li:not(:first-child) { | ||
460 | margin-left: -5px; | ||
461 | } | ||
462 | .breadcrumb-arrow li + li:before { | ||
463 | padding: 0; | ||
464 | content: ""; | ||
465 | } | ||
466 | .breadcrumb-arrow li span { | ||
467 | padding: 0 10px; | ||
468 | } | ||
469 | .breadcrumb-arrow li a, .breadcrumb-arrow li:not(:first-child) span { | ||
470 | padding: 0 10px 0 25px; | ||
471 | height: 35px; | ||
472 | line-height: 35px; | ||
473 | } | ||
474 | .breadcrumb-arrow li:first-child a { | ||
475 | padding: 0 10px; | ||
476 | } | ||
477 | .breadcrumb-arrow li a { | ||
478 | position: relative; | ||
479 | border: 1px solid #3bafda; | ||
480 | color: white; | ||
481 | background-color: #3bafda; | ||
482 | text-decoration: none; | ||
483 | } | ||
484 | .breadcrumb-arrow li:first-child a { | ||
485 | padding-left: 10px; | ||
486 | } | ||
487 | .breadcrumb-arrow li a:before, .breadcrumb-arrow li a:after { | ||
488 | position: absolute; | ||
489 | top: 0; | ||
490 | content: ''; | ||
491 | width: 0; | ||
492 | height: 0; | ||
493 | border-top: 17px solid transparent; | ||
494 | border-bottom: 17px solid transparent; | ||
495 | } | ||
496 | .breadcrumb-arrow li a:before { | ||
497 | right: -10px; | ||
498 | border-left-width: 10px; | ||
499 | border-left-style: solid; | ||
500 | border-left-color: #3bafda; | ||
501 | z-index: 3; | ||
502 | } | ||
503 | .breadcrumb-arrow li a:after { | ||
504 | right: -11px; | ||
505 | border-left: 10px solid #2494be; | ||
506 | z-index: 2; | ||
507 | } | ||
508 | .breadcrumb-arrow li a:hover, .breadcrumb-arrow li a:focus { | ||
509 | background-color: #4fc1e9; | ||
510 | border: 1px solid #4fc1e9; | ||
511 | } | ||
512 | .breadcrumb-arrow li a:hover:before, .breadcrumb-arrow li a:focus:before { | ||
513 | border-left-color: #4fc1e9; | ||
514 | } | ||
515 | .breadcrumb-arrow li a:active { | ||
516 | background-color: #2494be; | ||
517 | border: 1px solid #2494be; | ||
518 | } | ||
519 | .breadcrumb-arrow li a:active:before, .breadcrumb-arrow li a:active:after { | ||
520 | border-left-color: #2494be; | ||
521 | } | ||
522 | .breadcrumb-arrow li span { | ||
523 | color: #434a54; | ||
524 | } | ||
525 | |||
526 | /** | ||
527 | * pagination | ||
528 | * -------------------------------------------------- | ||
529 | */ | ||
530 | .pagination > li > a, .pagination > li > span { | ||
531 | color: #434a54; | ||
532 | background-color: white; | ||
533 | border-color: #ccd1d9; | ||
534 | } | ||
535 | .pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus { | ||
536 | color: white; | ||
537 | background-color: #ccd1d9; | ||
538 | border-color: #ccd1d9; | ||
539 | } | ||
540 | .pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus { | ||
541 | color: white; | ||
542 | background-color: #8cc152; | ||
543 | border-color: #8cc152; | ||
544 | } | ||
545 | .pagination > .disabled > span, .pagination > .disabled > span:hover, .pagination > .disabled > span:focus, .pagination > .disabled > a, .pagination > .disabled > a:hover, .pagination > .disabled > a:focus { | ||
546 | color: #e6e9ed; | ||
547 | background-color: white; | ||
548 | border-color: #ccd1d9; | ||
549 | } | ||
550 | |||
551 | /** | ||
552 | * pager | ||
553 | * -------------------------------------------------- | ||
554 | */ | ||
555 | .pager li > a, .pager li > span { | ||
556 | color: white; | ||
557 | background-color: #8cc152; | ||
558 | border-color: #8cc152; | ||
559 | } | ||
560 | .pager li > a:hover, .pager li > a:focus { | ||
561 | background-color: #a0d468; | ||
562 | border-color: #a0d468; | ||
563 | } | ||
564 | .pager .disabled > a, .pager .disabled > a:hover, .pager .disabled > a:focus, .pager .disabled > span { | ||
565 | color: #e6e9ed; | ||
566 | background-color: white; | ||
567 | border-color: #e6e9ed; | ||
568 | } | ||
569 | |||
570 | /** | ||
571 | * form | ||
572 | * -------------------------------------------------- | ||
573 | */ | ||
574 | .form-control { | ||
575 | color: #434a54; | ||
576 | border-color: #aab2bd; | ||
577 | } | ||
578 | .form-control, .form-control:focus { | ||
579 | -webkit-box-shadow: none; | ||
580 | -moz-box-shadow: none; | ||
581 | box-shadow: none; | ||
582 | } | ||
583 | .form-control:focus { | ||
584 | border-color: #3bafda; | ||
585 | } | ||
586 | .form-control::-moz-placeholder, .form-control:-ms-input-placeholder, .form-control::-webkit-input-placeholder { | ||
587 | color: #e6e9ed; | ||
588 | } | ||
589 | .form-control.disabled, .form-control[disabled] { | ||
590 | border-color: #e6e9ed; | ||
591 | background-color: #e6e9ed; | ||
592 | } | ||
593 | |||
594 | .input-group-btn .btn + .btn { | ||
595 | border-width: 1px; | ||
596 | border-style: solid; | ||
597 | border-color: #96a0ad; | ||
598 | } | ||
599 | .input-group-btn .btn + .btn.btn-default { | ||
600 | border-color: #ededed; | ||
601 | } | ||
602 | .input-group-btn .btn + .btn.btn-primary { | ||
603 | border-color: #269ecb; | ||
604 | } | ||
605 | .input-group-btn .btn + .btn.btn-info { | ||
606 | border-color: #2fa084; | ||
607 | } | ||
608 | .input-group-btn .btn + .btn.btn-success { | ||
609 | border-color: #7ab03f; | ||
610 | } | ||
611 | .input-group-btn .btn + .btn.btn-warning { | ||
612 | border-color: #f4af20; | ||
613 | } | ||
614 | .input-group-btn .btn + .btn.btn-danger { | ||
615 | border-color: #d1293a; | ||
616 | } | ||
617 | |||
618 | .input-group-addon { | ||
619 | background-color: #aab2bd; | ||
620 | border-color: #96a0ad; | ||
621 | color: white; | ||
622 | } | ||
623 | .input-group-addon .radio, .input-group-addon .checkbox { | ||
624 | margin: -3px 0 -4px !important; | ||
625 | } | ||
626 | |||
627 | .form-search .search-query, .form-search .search-query:first-child, .form-search .search-query:last-child { | ||
628 | padding: 0 17px; | ||
629 | -webkit-border-radius: 17px; | ||
630 | -moz-border-radius: 17px; | ||
631 | border-radius: 17px; | ||
632 | } | ||
633 | .input-group .form-control:last-child { | ||
634 | -webkit-border-top-left-radius: 0; | ||
635 | -moz-border-radius-topleft: 0; | ||
636 | border-top-left-radius: 0; | ||
637 | -webkit-border-bottom-left-radius: 0; | ||
638 | -moz-border-radius-bottomleft: 0; | ||
639 | border-bottom-left-radius: 0; | ||
640 | } | ||
641 | .input-group .form-control:first-child { | ||
642 | -webkit-border-top-right-radius: 0; | ||
643 | -moz-border-radius-topright: 0; | ||
644 | border-top-right-radius: 0; | ||
645 | -webkit-border-bottom-right-radius: 0; | ||
646 | -moz-border-radius-bottomright: 0; | ||
647 | border-bottom-right-radius: 0; | ||
648 | } | ||
649 | .form-search .btn { | ||
650 | -webkit-border-radius: 17px; | ||
651 | -moz-border-radius: 17px; | ||
652 | border-radius: 17px; | ||
653 | } | ||
654 | |||
655 | .search-only { | ||
656 | position: relative; | ||
657 | } | ||
658 | .search-only .search-icon { | ||
659 | position: absolute; | ||
660 | top: 2px; | ||
661 | left: 8.5px; | ||
662 | width: 30px; | ||
663 | line-height: 30px; | ||
664 | text-align: center; | ||
665 | font-size: 17px; | ||
666 | color: #e6e9ed; | ||
667 | z-index: 20; | ||
668 | } | ||
669 | .search-only .form-control:last-child { | ||
670 | padding-left: 40px; | ||
671 | } | ||
672 | |||
673 | .has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox-inline { | ||
674 | color: #8cc152; | ||
675 | } | ||
676 | .has-success .form-control { | ||
677 | border-color: #8cc152; | ||
678 | -webkit-box-shadow: none; | ||
679 | -moz-box-shadow: none; | ||
680 | box-shadow: none; | ||
681 | } | ||
682 | .has-success .form-control:focus { | ||
683 | border-color: #8cc152; | ||
684 | -webkit-box-shadow: none; | ||
685 | -moz-box-shadow: none; | ||
686 | box-shadow: none; | ||
687 | } | ||
688 | .has-success .input-group-addon { | ||
689 | background-color: #8cc152; | ||
690 | border-color: #8cc152; | ||
691 | } | ||
692 | .has-success .form-control-feedback { | ||
693 | color: #8cc152; | ||
694 | } | ||
695 | |||
696 | .has-warning .help-block, .has-warning .control-label, .has-warning .radio, .has-warning .checkbox, .has-warning .radio-inline, .has-warning .checkbox-inline { | ||
697 | color: #f6bb42; | ||
698 | } | ||
699 | .has-warning .form-control { | ||
700 | border-color: #f6bb42; | ||
701 | -webkit-box-shadow: none; | ||
702 | -moz-box-shadow: none; | ||
703 | box-shadow: none; | ||
704 | } | ||
705 | .has-warning .form-control:focus { | ||
706 | border-color: #f6bb42; | ||
707 | -webkit-box-shadow: none; | ||
708 | -moz-box-shadow: none; | ||
709 | box-shadow: none; | ||
710 | } | ||
711 | .has-warning .input-group-addon { | ||
712 | background-color: #f6bb42; | ||
713 | border-color: #f6bb42; | ||
714 | } | ||
715 | .has-warning .form-control-feedback { | ||
716 | color: #f6bb42; | ||
717 | } | ||
718 | |||
719 | .has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline { | ||
720 | color: #da4453; | ||
721 | } | ||
722 | .has-error .form-control { | ||
723 | border-color: #da4453; | ||
724 | -webkit-box-shadow: none; | ||
725 | -moz-box-shadow: none; | ||
726 | box-shadow: none; | ||
727 | } | ||
728 | .has-error .form-control:focus { | ||
729 | border-color: #da4453; | ||
730 | -webkit-box-shadow: none; | ||
731 | -moz-box-shadow: none; | ||
732 | box-shadow: none; | ||
733 | } | ||
734 | .has-error .input-group-addon { | ||
735 | background-color: #da4453; | ||
736 | border-color: #da4453; | ||
737 | } | ||
738 | .has-error .form-control-feedback { | ||
739 | color: #da4453; | ||
740 | } | ||
741 | |||
742 | /** | ||
743 | * checkbox and radio | ||
744 | * -------------------------------------------------- | ||
745 | */ | ||
746 | .checkbox, .radio { | ||
747 | margin-top: 0; | ||
748 | padding-left: 0; | ||
749 | } | ||
750 | |||
751 | .icheckbox_flat, | ||
752 | .iradio_flat { | ||
753 | display: inline-block; | ||
754 | *display: inline; | ||
755 | vertical-align: middle; | ||
756 | margin: 0; | ||
757 | padding: 0 !important; | ||
758 | width: 20px; | ||
759 | height: 20px; | ||
760 | background: url("../bootflat/img/check_flat/default.png") no-repeat; | ||
761 | border: none; | ||
762 | cursor: pointer; | ||
763 | } | ||
764 | |||
765 | .icheckbox_flat { | ||
766 | background-position: 0 0; | ||
767 | } | ||
768 | .icheckbox_flat.checked { | ||
769 | background-position: -22px 0; | ||
770 | } | ||
771 | .icheckbox_flat.disabled { | ||
772 | background-position: -44px 0; | ||
773 | cursor: default; | ||
774 | } | ||
775 | .icheckbox_flat.checked.disabled { | ||
776 | background-position: -66px 0; | ||
777 | } | ||
778 | |||
779 | .iradio_flat { | ||
780 | background-position: -88px 0; | ||
781 | } | ||
782 | .iradio_flat.checked { | ||
783 | background-position: -110px 0; | ||
784 | } | ||
785 | .iradio_flat.disabled { | ||
786 | background-position: -132px 0; | ||
787 | cursor: default; | ||
788 | } | ||
789 | .iradio_flat.checked.disabled { | ||
790 | background-position: -154px 0; | ||
791 | } | ||
792 | |||
793 | /** | ||
794 | * alert | ||
795 | * -------------------------------------------------- | ||
796 | */ | ||
797 | .alert h4 { | ||
798 | margin-bottom: 10px; | ||
799 | font-weight: bold; | ||
800 | } | ||
801 | .alert .alert-dismissable .close { | ||
802 | color: black; | ||
803 | opacity: 0.7; | ||
804 | filter: alpha(opacity=70); | ||
805 | } | ||
806 | .alert-info { | ||
807 | background-color: #7cd1ef; | ||
808 | border: #4fc1e9; | ||
809 | } | ||
810 | .alert-warning { | ||
811 | background-color: #ffdd87; | ||
812 | border: #ffce54; | ||
813 | } | ||
814 | .alert-danger { | ||
815 | background-color: #f2838f; | ||
816 | border: #ed5565; | ||
817 | } | ||
818 | .alert-success { | ||
819 | background-color: #b9df90; | ||
820 | border: #a0d468; | ||
821 | } | ||
822 | .alert .alert-link { | ||
823 | cursor: pointer; | ||
824 | text-decoration: underline; | ||
825 | opacity: 0.65; | ||
826 | filter: alpha(opacity=65); | ||
827 | } | ||
828 | .alert .alert-link:hover, .alert .alert-link:focus { | ||
829 | opacity: 0.45; | ||
830 | filter: alpha(opacity=45); | ||
831 | } | ||
832 | .alert .btn-link, .alert .btn-link:hover, .alert .btn-link:focus { | ||
833 | color: black; | ||
834 | opacity: 0.65; | ||
835 | filter: alpha(opacity=65); | ||
836 | } | ||
837 | .alert .btn-link:focus, .alert .btn-link:hover { | ||
838 | text-decoration: none; | ||
839 | opacity: 0.4; | ||
840 | filter: alpha(opacity=40); | ||
841 | } | ||
842 | |||
843 | /** | ||
844 | * tab | ||
845 | * -------------------------------------------------- | ||
846 | */ | ||
847 | .nav-tabs { | ||
848 | border-bottom: none; | ||
849 | background-color: #e6e9ed; | ||
850 | -webkit-border-radius: 4px 4px 0 0; | ||
851 | -moz-border-radius: 4px 4px 0 0; | ||
852 | border-radius: 4px 4px 0 0; | ||
853 | } | ||
854 | .nav-tabs > li { | ||
855 | margin-bottom: 0; | ||
856 | border-left: 1px solid #ccd1d9; | ||
857 | } | ||
858 | .nav-tabs > li:first-child { | ||
859 | border-left: none; | ||
860 | } | ||
861 | .nav-tabs > li > a { | ||
862 | margin-right: 0; | ||
863 | border: none; | ||
864 | -webkit-border-radius: 0; | ||
865 | -moz-border-radius: 0; | ||
866 | border-radius: 0; | ||
867 | color: #434a54; | ||
868 | } | ||
869 | .nav-tabs > li:first-child > a { | ||
870 | -webkit-border-radius: 4px 0 0 0; | ||
871 | -moz-border-radius: 4px 0 0 0; | ||
872 | border-radius: 4px 0 0 0; | ||
873 | } | ||
874 | .nav-tabs > li > a:focus, .nav-tabs > li > a:hover { | ||
875 | border: none; | ||
876 | background-color: #f5f7fa; | ||
877 | } | ||
878 | .nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover { | ||
879 | border: none; | ||
880 | background-color: white !important; | ||
881 | } | ||
882 | .nav-tabs .dropdown-toggle, .nav-tabs .dropdown-toggle:hover, .nav-tabs .dropdown-toggle:focus { | ||
883 | color: #434a54; | ||
884 | } | ||
885 | .nav-tabs li.dropdown.open .dropdown-toggle { | ||
886 | color: #434a54; | ||
887 | background-color: #f5f7fa; | ||
888 | } | ||
889 | .nav-tabs li.dropdown.active.open .dropdown-toggle { | ||
890 | color: #434a54; | ||
891 | } | ||
892 | .nav-tabs li.dropdown.active.open .dropdown-toggle .caret, .nav-tabs li.dropdown.active .dropdown-toggle .caret { | ||
893 | border-top-color: #434a54; | ||
894 | border-bottom-color: #434a54; | ||
895 | } | ||
896 | .nav-tabs li.dropdown.open .caret, .nav-tabs li.dropdown.open.active .caret, .nav-tabs li.dropdown.open a:hover .caret, .nav-tabs li.dropdown.open a:focus .caret, .nav-tabs .dropdown-toggle .caret, .nav-tabs .dropdown-toggle:hover .caret, .nav-tabs .dropdown-toggle:focus .caret { | ||
897 | border-top-color: #434a54; | ||
898 | border-bottom-color: #434a54; | ||
899 | } | ||
900 | .nav-tabs.nav-justified > li > a { | ||
901 | margin-bottom: 0; | ||
902 | text-align: center; | ||
903 | } | ||
904 | .nav-tabs.nav-justified > .dropdown .dropdown-menu { | ||
905 | top: auto; | ||
906 | left: auto; | ||
907 | } | ||
908 | .nav-tabs.nav-justified > li > a { | ||
909 | -webkit-border-radius: 0; | ||
910 | -moz-border-radius: 0; | ||
911 | border-radius: 0; | ||
912 | } | ||
913 | .nav-tabs.nav-justified > li:first-child > a { | ||
914 | -webkit-border-radius: 4px 0 0 0; | ||
915 | -moz-border-radius: 4px 0 0 0; | ||
916 | border-radius: 4px 0 0 0; | ||
917 | } | ||
918 | .nav-tabs.nav-justified > li:last-child > a { | ||
919 | -webkit-border-radius: 0 4px 0 0; | ||
920 | -moz-border-radius: 0 4px 0 0; | ||
921 | border-radius: 0 4px 0 0; | ||
922 | } | ||
923 | .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus { | ||
924 | border: none; | ||
925 | } | ||
926 | @media (min-width: 768px) { | ||
927 | .nav-tabs.nav-justified > li > a { | ||
928 | border-bottom: none; | ||
929 | -webkit-border-radius: 0; | ||
930 | -moz-border-radius: 0; | ||
931 | border-radius: 0; | ||
932 | } | ||
933 | .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus { | ||
934 | border-bottom: none; | ||
935 | } | ||
936 | } | ||
937 | .tab-content { | ||
938 | padding: 10px; | ||
939 | } | ||
940 | |||
941 | .tabs-below .nav-tabs { | ||
942 | -webkit-border-radius: 0 0 4px 4px; | ||
943 | -moz-border-radius: 0 0 4px 4px; | ||
944 | border-radius: 0 0 4px 4px; | ||
945 | } | ||
946 | .tabs-below .nav-tabs > li:first-child > a { | ||
947 | -webkit-border-radius: 0 0 0 4px; | ||
948 | -moz-border-radius: 0 0 0 4px; | ||
949 | border-radius: 0 0 0 4px; | ||
950 | } | ||
951 | .tabs-below .nav-tabs.nav-justified > li:last-child > a { | ||
952 | -webkit-border-radius: 0 0 4px 0; | ||
953 | -moz-border-radius: 0 0 4px 0; | ||
954 | border-radius: 0 0 4px 0; | ||
955 | } | ||
956 | |||
957 | .tabs-left .nav-tabs > li, | ||
958 | .tabs-right .nav-tabs > li { | ||
959 | float: none; | ||
960 | border-left: none; | ||
961 | border-top: 1px solid #ccd1d9; | ||
962 | } | ||
963 | |||
964 | .tabs-left .nav-tabs > li:first-child, | ||
965 | .tabs-right .nav-tabs > li:first-child { | ||
966 | border-top: none; | ||
967 | } | ||
968 | |||
969 | .tabs-left .nav-tabs > li > a, | ||
970 | .tabs-right .nav-tabs > li > a { | ||
971 | min-width: 74px; | ||
972 | margin-right: 0; | ||
973 | } | ||
974 | |||
975 | .tabs-left .nav-tabs { | ||
976 | float: left; | ||
977 | margin-right: 19px; | ||
978 | -webkit-border-radius: 4px 0 0 4px; | ||
979 | -moz-border-radius: 4px 0 0 4px; | ||
980 | border-radius: 4px 0 0 4px; | ||
981 | } | ||
982 | .tabs-left .nav-tabs > li:first-child > a { | ||
983 | -webkit-border-radius: 4px 0 0 0; | ||
984 | -moz-border-radius: 4px 0 0 0; | ||
985 | border-radius: 4px 0 0 0; | ||
986 | } | ||
987 | .tabs-left .nav-tabs > li:last-child > a { | ||
988 | -webkit-border-radius: 0 0 0 4px; | ||
989 | -moz-border-radius: 0 0 0 4px; | ||
990 | border-radius: 0 0 0 4px; | ||
991 | } | ||
992 | |||
993 | .tabs-right .nav-tabs { | ||
994 | float: right; | ||
995 | margin-left: 19px; | ||
996 | -webkit-border-radius: 0 4px 4px 0; | ||
997 | -moz-border-radius: 0 4px 4px 0; | ||
998 | border-radius: 0 4px 4px 0; | ||
999 | } | ||
1000 | .tabs-right .nav-tabs > li:first-child > a { | ||
1001 | -webkit-border-radius: 0 4px 0 0; | ||
1002 | -moz-border-radius: 0 4px 0 0; | ||
1003 | border-radius: 0 4px 0 0; | ||
1004 | } | ||
1005 | .tabs-right .nav-tabs > li:last-child > a { | ||
1006 | -webkit-border-radius: 0 0 4px 0; | ||
1007 | -moz-border-radius: 0 0 4px 0; | ||
1008 | border-radius: 0 0 4px 0; | ||
1009 | } | ||
1010 | |||
1011 | /** | ||
1012 | * pill | ||
1013 | * -------------------------------------------------- | ||
1014 | */ | ||
1015 | .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus { | ||
1016 | color: white; | ||
1017 | background-color: #3bafda; | ||
1018 | } | ||
1019 | .nav-pills > li > a { | ||
1020 | color: #3bafda; | ||
1021 | } | ||
1022 | .nav-pills > li > a:hover { | ||
1023 | color: #434a54; | ||
1024 | background-color: #e6e9ed; | ||
1025 | } | ||
1026 | .nav-pills > .active > a > .badge { | ||
1027 | color: #3bafda; | ||
1028 | } | ||
1029 | .nav-pills .open > a, .nav-pills .open > a:focus, .nav-pills .open > a:hover { | ||
1030 | color: #434a54; | ||
1031 | background-color: #e6e9ed; | ||
1032 | } | ||
1033 | |||
1034 | /** | ||
1035 | * navbar | ||
1036 | * -------------------------------------------------- | ||
1037 | */ | ||
1038 | .navbar-default { | ||
1039 | background-color: #37bc9b; | ||
1040 | border-color: #37bc9b; | ||
1041 | } | ||
1042 | .navbar-default .navbar-brand, .navbar-default .navbar-link, .navbar-default .btn-link { | ||
1043 | color: #26816a; | ||
1044 | } | ||
1045 | .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus, .navbar-default .navbar-link:hover, .navbar-default .btn-link:hover, .navbar-default .btn-link:focus { | ||
1046 | color: white; | ||
1047 | background-color: transparent; | ||
1048 | } | ||
1049 | .navbar-default .navbar-text, .navbar-default .navbar-nav > li > a { | ||
1050 | color: #26816a; | ||
1051 | } | ||
1052 | .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { | ||
1053 | color: white; | ||
1054 | } | ||
1055 | .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus { | ||
1056 | color: white; | ||
1057 | background-color: #48cfad; | ||
1058 | } | ||
1059 | .navbar-default .btn-link[disabled]:hover, fieldset[disabled] .navbar-default .btn-link:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:focus, .navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus { | ||
1060 | color: #2e9c81; | ||
1061 | background-color: transparent; | ||
1062 | } | ||
1063 | .navbar-default .navbar-toggle { | ||
1064 | border-color: #26816a; | ||
1065 | background-color: #26816a; | ||
1066 | } | ||
1067 | .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { | ||
1068 | border-color: #2b957a; | ||
1069 | background-color: #2b957a; | ||
1070 | } | ||
1071 | .navbar-default .navbar-toggle .icon-bar { | ||
1072 | background-color: #37bc9b; | ||
1073 | } | ||
1074 | .navbar-default .navbar-collapse, .navbar-default .navbar-form { | ||
1075 | border-color: #37bc9b; | ||
1076 | } | ||
1077 | .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus { | ||
1078 | color: white; | ||
1079 | background-color: #37bc9b; | ||
1080 | } | ||
1081 | @media (max-width: 767px) { | ||
1082 | .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { | ||
1083 | background-color: #48cfad; | ||
1084 | } | ||
1085 | .navbar-default .navbar-nav .open .dropdown-menu > .divider { | ||
1086 | background-color: #48cfad; | ||
1087 | } | ||
1088 | .navbar-default .navbar-nav .open .dropdown-menu > li > a { | ||
1089 | color: #26816a; | ||
1090 | } | ||
1091 | .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus, .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { | ||
1092 | color: white; | ||
1093 | background-color: #48cfad; | ||
1094 | } | ||
1095 | .navbar-default .navbar-nav .open .dropdown-menu > .dropdown-header { | ||
1096 | color: #26816a; | ||
1097 | } | ||
1098 | .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { | ||
1099 | color: #2b957a; | ||
1100 | } | ||
1101 | } | ||
1102 | |||
1103 | .navbar-inverse { | ||
1104 | background-color: #333333; | ||
1105 | border-color: #333333; | ||
1106 | } | ||
1107 | .navbar-inverse .navbar-brand, .navbar-inverse .navbar-link, .navbar-inverse .btn-link { | ||
1108 | color: #8c8c8c; | ||
1109 | } | ||
1110 | .navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus, .navbar-inverse .navbar-link:hover, .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus { | ||
1111 | color: white; | ||
1112 | background-color: transparent; | ||
1113 | } | ||
1114 | .navbar-inverse .navbar-text, .navbar-inverse .navbar-nav > li > a { | ||
1115 | color: #8c8c8c; | ||
1116 | } | ||
1117 | .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus { | ||
1118 | color: white; | ||
1119 | } | ||
1120 | .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus { | ||
1121 | color: white; | ||
1122 | background-color: black; | ||
1123 | } | ||
1124 | .navbar-inverse .btn-link[disabled]:hover, fieldset[disabled] .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:focus, .navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus { | ||
1125 | color: #666666; | ||
1126 | background-color: transparent; | ||
1127 | } | ||
1128 | .navbar-inverse .navbar-toggle { | ||
1129 | border-color: black; | ||
1130 | background-color: black; | ||
1131 | } | ||
1132 | .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus { | ||
1133 | border-color: #1a1a1a; | ||
1134 | background-color: #1a1a1a; | ||
1135 | } | ||
1136 | .navbar-inverse .navbar-toggle .icon-bar { | ||
1137 | background-color: #8c8c8c; | ||
1138 | } | ||
1139 | .navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form { | ||
1140 | border-color: black; | ||
1141 | } | ||
1142 | .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus { | ||
1143 | color: white; | ||
1144 | background-color: black; | ||
1145 | } | ||
1146 | @media (max-width: 767px) { | ||
1147 | .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus { | ||
1148 | background-color: black; | ||
1149 | } | ||
1150 | .navbar-inverse .navbar-nav .open .dropdown-menu > .divider { | ||
1151 | background-color: black; | ||
1152 | } | ||
1153 | .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { | ||
1154 | color: #8c8c8c; | ||
1155 | } | ||
1156 | .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { | ||
1157 | color: white; | ||
1158 | background-color: black; | ||
1159 | } | ||
1160 | .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { | ||
1161 | color: #bfbfbf; | ||
1162 | } | ||
1163 | .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { | ||
1164 | color: #666666; | ||
1165 | } | ||
1166 | } | ||
1167 | |||
1168 | /** | ||
1169 | * list | ||
1170 | * -------------------------------------------------- | ||
1171 | */ | ||
1172 | .list-group { | ||
1173 | -webkit-border-radius: 4px; | ||
1174 | -moz-border-radius: 4px; | ||
1175 | border-radius: 4px; | ||
1176 | -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); | ||
1177 | -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); | ||
1178 | box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); | ||
1179 | } | ||
1180 | .list-group-item { | ||
1181 | border-top-color: #e6e9ed; | ||
1182 | } | ||
1183 | .list-group-item:first-child { | ||
1184 | border-top: none; | ||
1185 | } | ||
1186 | .list-group-item-heading { | ||
1187 | color: #434a54; | ||
1188 | } | ||
1189 | |||
1190 | a.list-group-item { | ||
1191 | color: #434a54; | ||
1192 | } | ||
1193 | a.list-group-item .list-group-item-heading { | ||
1194 | font-size: 16px; | ||
1195 | color: #434a54; | ||
1196 | } | ||
1197 | a.list-group-item:hover, a.list-group-item:focus { | ||
1198 | background-color: #e6e9ed; | ||
1199 | } | ||
1200 | a.list-group-item.active, a.list-group-item.active:hover, a.list-group-item.active:focus { | ||
1201 | background-color: #4fc1e9; | ||
1202 | border-color: #4fc1e9; | ||
1203 | } | ||
1204 | a.list-group-item.active .list-group-item-text, a.list-group-item.active:hover .list-group-item-text, a.list-group-item.active:focus .list-group-item-text { | ||
1205 | color: white; | ||
1206 | } | ||
1207 | |||
1208 | .list-group-item-primary { | ||
1209 | color: #22b1e3; | ||
1210 | border-color: #3bafda transparent transparent transparent; | ||
1211 | background-color: #4fc1e9; | ||
1212 | } | ||
1213 | .list-group-item-primary:first-child { | ||
1214 | border-color: transparent; | ||
1215 | } | ||
1216 | a.list-group-item-primary { | ||
1217 | color: #126d8d; | ||
1218 | } | ||
1219 | a.list-group-item-primary:hover, a.list-group-item-primary:focus { | ||
1220 | color: white; | ||
1221 | background-color: #3bafda; | ||
1222 | } | ||
1223 | a.list-group-item-primary.active, a.list-group-item-primary:hover, a.list-group-item-primary:focus { | ||
1224 | background-color: #3bafda; | ||
1225 | border-color: #4fc1e9 transparent transparent transparent; | ||
1226 | } | ||
1227 | |||
1228 | .list-group-item-success { | ||
1229 | color: #87c940; | ||
1230 | border-color: #8cc152 transparent transparent transparent; | ||
1231 | background-color: #a0d468; | ||
1232 | } | ||
1233 | .list-group-item-success:first-child { | ||
1234 | border-color: transparent; | ||
1235 | } | ||
1236 | a.list-group-item-success { | ||
1237 | color: #537f24; | ||
1238 | } | ||
1239 | a.list-group-item-success:hover, a.list-group-item-success:focus { | ||
1240 | color: white; | ||
1241 | background-color: #8cc152; | ||
1242 | } | ||
1243 | a.list-group-item-success.active, a.list-group-item-success:hover, a.list-group-item-success:focus { | ||
1244 | background-color: #8cc152; | ||
1245 | border-color: #a0d468 transparent transparent transparent; | ||
1246 | } | ||
1247 | |||
1248 | .list-group-item-warning { | ||
1249 | color: #ffbf21; | ||
1250 | border-color: #f6bb42 transparent transparent transparent; | ||
1251 | background-color: #ffce54; | ||
1252 | } | ||
1253 | .list-group-item-warning:first-child { | ||
1254 | border-color: transparent; | ||
1255 | } | ||
1256 | a.list-group-item-warning { | ||
1257 | color: #ba8500; | ||
1258 | } | ||
1259 | a.list-group-item-warning:hover, a.list-group-item-warning:focus { | ||
1260 | color: white; | ||
1261 | background-color: #f6bb42; | ||
1262 | } | ||
1263 | a.list-group-item-warning.active, a.list-group-item-warning:hover, a.list-group-item-warning:focus { | ||
1264 | background-color: #f6bb42; | ||
1265 | border-color: #ffce54 transparent transparent transparent; | ||
1266 | } | ||
1267 | |||
1268 | .list-group-item-info { | ||
1269 | color: #2fb593; | ||
1270 | border-color: #37bc9b transparent transparent transparent; | ||
1271 | background-color: #48cfad; | ||
1272 | } | ||
1273 | .list-group-item-info:first-child { | ||
1274 | border-color: transparent; | ||
1275 | } | ||
1276 | a.list-group-item-info { | ||
1277 | color: #1a6451; | ||
1278 | } | ||
1279 | a.list-group-item-info:hover, a.list-group-item-info:focus { | ||
1280 | color: white; | ||
1281 | background-color: #37bc9b; | ||
1282 | } | ||
1283 | a.list-group-item-info.active, a.list-group-item-info:hover, a.list-group-item-info:focus { | ||
1284 | background-color: #37bc9b; | ||
1285 | border-color: #48cfad transparent transparent transparent; | ||
1286 | } | ||
1287 | |||
1288 | .list-group-item-danger { | ||
1289 | color: #e8273b; | ||
1290 | border-color: #da4453 transparent transparent transparent; | ||
1291 | background-color: #ed5565; | ||
1292 | } | ||
1293 | .list-group-item-danger:first-child { | ||
1294 | border-color: transparent; | ||
1295 | } | ||
1296 | a.list-group-item-danger { | ||
1297 | color: #99101f; | ||
1298 | } | ||
1299 | a.list-group-item-danger:hover, a.list-group-item-danger:focus { | ||
1300 | color: white; | ||
1301 | background-color: #da4453; | ||
1302 | } | ||
1303 | a.list-group-item-danger.active, a.list-group-item-danger:hover, a.list-group-item-danger:focus { | ||
1304 | background-color: #da4453; | ||
1305 | border-color: #ed5565 transparent transparent transparent; | ||
1306 | } | ||
1307 | |||
1308 | /** | ||
1309 | * media list | ||
1310 | * -------------------------------------------------- | ||
1311 | */ | ||
1312 | .media-list { | ||
1313 | color: #aab2bd; | ||
1314 | } | ||
1315 | .media-heading { | ||
1316 | font-size: 14px; | ||
1317 | color: #434a54; | ||
1318 | } | ||
1319 | |||
1320 | /** | ||
1321 | * modal | ||
1322 | * -------------------------------------------------- | ||
1323 | */ | ||
1324 | .modal .modal-content { | ||
1325 | border: none; | ||
1326 | -webkit-border-radius: 4px; | ||
1327 | -moz-border-radius: 4px; | ||
1328 | border-radius: 4px; | ||
1329 | color: #434a54; | ||
1330 | -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); | ||
1331 | -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); | ||
1332 | box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); | ||
1333 | } | ||
1334 | .modal .modal-header { | ||
1335 | border-bottom: none; | ||
1336 | } | ||
1337 | .modal .modal-body { | ||
1338 | padding: 0 15px; | ||
1339 | } | ||
1340 | .modal .modal-footer { | ||
1341 | border-top: none; | ||
1342 | } | ||
1343 | |||
1344 | /** | ||
1345 | * well | ||
1346 | * -------------------------------------------------- | ||
1347 | */ | ||
1348 | .well { | ||
1349 | padding: 10px; | ||
1350 | border: none; | ||
1351 | -webkit-border-radius: 4px; | ||
1352 | -moz-border-radius: 4px; | ||
1353 | border-radius: 4px; | ||
1354 | color: #434a54; | ||
1355 | background-color: white; | ||
1356 | -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); | ||
1357 | -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); | ||
1358 | box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); | ||
1359 | } | ||
1360 | .well blockquote { | ||
1361 | border-color: #ccd1d9; | ||
1362 | } | ||
1363 | .well-lg { | ||
1364 | padding: 20px; | ||
1365 | } | ||
1366 | .well-sm { | ||
1367 | padding: 5px; | ||
1368 | } | ||
1369 | |||
1370 | /** | ||
1371 | * thumbnail | ||
1372 | * -------------------------------------------------- | ||
1373 | */ | ||
1374 | .thumbnail { | ||
1375 | border: none; | ||
1376 | -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); | ||
1377 | -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); | ||
1378 | box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); | ||
1379 | } | ||
1380 | .thumbnail .caption { | ||
1381 | font-size: 14px; | ||
1382 | } | ||
1383 | .thumbnail .caption h1, .thumbnail .caption h2, .thumbnail .caption h3, .thumbnail .caption h4, .thumbnail .caption h5, .thumbnail .caption h6 { | ||
1384 | margin: 5px 0 10px; | ||
1385 | font-size: 16px; | ||
1386 | } | ||
1387 | |||
1388 | /** | ||
1389 | * jumbotron | ||
1390 | * -------------------------------------------------- | ||
1391 | */ | ||
1392 | .jumbotron { | ||
1393 | margin-bottom: 20px; | ||
1394 | padding: 0; | ||
1395 | -webkit-border-radius: 4px; | ||
1396 | -moz-border-radius: 4px; | ||
1397 | border-radius: 4px; | ||
1398 | background-color: white; | ||
1399 | -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); | ||
1400 | -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); | ||
1401 | box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); | ||
1402 | } | ||
1403 | .container .jumbotron { | ||
1404 | -webkit-border-radius: 4px; | ||
1405 | -moz-border-radius: 4px; | ||
1406 | border-radius: 4px; | ||
1407 | } | ||
1408 | .jumbotron > .jumbotron-photo img { | ||
1409 | -webkit-border-radius: 4px 4px 0 0; | ||
1410 | -moz-border-radius: 4px 4px 0 0; | ||
1411 | border-radius: 4px 4px 0 0; | ||
1412 | width: 100%; | ||
1413 | } | ||
1414 | .jumbotron .jumbotron-contents { | ||
1415 | padding: 20px; | ||
1416 | color: #434a54; | ||
1417 | } | ||
1418 | .jumbotron .carousel, .jumbotron .carousel-inner, .jumbotron .carousel-inner > .item.active img { | ||
1419 | -webkit-border-radius: 4px 4px 0 0; | ||
1420 | -moz-border-radius: 4px 4px 0 0; | ||
1421 | border-radius: 4px 4px 0 0; | ||
1422 | } | ||
1423 | .jumbotron .carousel-control.left { | ||
1424 | -webkit-border-radius: 4px 0 0 0; | ||
1425 | -moz-border-radius: 4px 0 0 0; | ||
1426 | border-radius: 4px 0 0 0; | ||
1427 | } | ||
1428 | .jumbotron .carousel-control.right { | ||
1429 | -webkit-border-radius: 0 4px 0 0; | ||
1430 | -moz-border-radius: 0 4px 0 0; | ||
1431 | border-radius: 0 4px 0 0; | ||
1432 | } | ||
1433 | .jumbotron h1, .jumbotron .h1, .jumbotron h2, .jumbotron .h2 { | ||
1434 | font-weight: 400; | ||
1435 | } | ||
1436 | .jumbotron h1, .jumbotron .h1 { | ||
1437 | font-size: 28px; | ||
1438 | } | ||
1439 | .jumbotron h2, .jumbotron .h2 { | ||
1440 | font-size: 24px; | ||
1441 | } | ||
1442 | .jumbotron p { | ||
1443 | font-size: 14px; | ||
1444 | } | ||
1445 | @media screen and (min-width: 768px) { | ||
1446 | .jumbotron, .container .jumbotron { | ||
1447 | padding: 0; | ||
1448 | } | ||
1449 | .jumbotron h1, .jumbotron .h1 { | ||
1450 | font-size: 28px; | ||
1451 | } | ||
1452 | } | ||
1453 | |||
1454 | /** | ||
1455 | * panel | ||
1456 | * -------------------------------------------------- | ||
1457 | */ | ||
1458 | .panel { | ||
1459 | background-color: white; | ||
1460 | border: none; | ||
1461 | -webkit-border-radius: 4px; | ||
1462 | -moz-border-radius: 4px; | ||
1463 | border-radius: 4px; | ||
1464 | -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); | ||
1465 | -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); | ||
1466 | box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); | ||
1467 | } | ||
1468 | .panel .list-group { | ||
1469 | -webkit-box-shadow: none; | ||
1470 | -moz-box-shadow: none; | ||
1471 | box-shadow: none; | ||
1472 | } | ||
1473 | .panel .list-group-item:first-child { | ||
1474 | border-top: 1px solid #e6e9ed; | ||
1475 | } | ||
1476 | .panel .panel-heading { | ||
1477 | -webkit-border-radius: 4px 4px 0 0; | ||
1478 | -moz-border-radius: 4px 4px 0 0; | ||
1479 | border-radius: 4px 4px 0 0; | ||
1480 | } | ||
1481 | .panel .panel-title { | ||
1482 | font-size: 14px; | ||
1483 | color: #434a54; | ||
1484 | font-weight: normal; | ||
1485 | } | ||
1486 | .panel .panel-footer { | ||
1487 | background-color: #e6e9ed; | ||
1488 | border-top-color: #e6e9ed; | ||
1489 | -webkit-border-radius: 0 0 4px 4px; | ||
1490 | -moz-border-radius: 0 0 4px 4px; | ||
1491 | border-radius: 0 0 4px 4px; | ||
1492 | } | ||
1493 | .panel-default { | ||
1494 | border-color: #e6e9ed; | ||
1495 | } | ||
1496 | .panel-default > .panel-heading { | ||
1497 | color: #434a54; | ||
1498 | background-color: #e6e9ed; | ||
1499 | border-color: #e6e9ed; | ||
1500 | } | ||
1501 | .panel-primary { | ||
1502 | border-color: #3bafda; | ||
1503 | } | ||
1504 | .panel-primary > .panel-heading { | ||
1505 | color: white; | ||
1506 | background-color: #3bafda; | ||
1507 | border-color: #3bafda; | ||
1508 | } | ||
1509 | .panel-success { | ||
1510 | border-color: #8cc152; | ||
1511 | } | ||
1512 | .panel-success > .panel-heading { | ||
1513 | color: white; | ||
1514 | background-color: #8cc152; | ||
1515 | border-color: #8cc152; | ||
1516 | } | ||
1517 | .panel-info { | ||
1518 | border-color: #37bc9b; | ||
1519 | } | ||
1520 | .panel-info > .panel-heading { | ||
1521 | color: white; | ||
1522 | background-color: #37bc9b; | ||
1523 | border-color: #37bc9b; | ||
1524 | } | ||
1525 | .panel-warning { | ||
1526 | border-color: #f6bb42; | ||
1527 | } | ||
1528 | .panel-warning > .panel-heading { | ||
1529 | color: white; | ||
1530 | background-color: #f6bb42; | ||
1531 | border-color: #f6bb42; | ||
1532 | } | ||
1533 | .panel-danger { | ||
1534 | border-color: #da4453; | ||
1535 | } | ||
1536 | .panel-danger > .panel-heading { | ||
1537 | color: white; | ||
1538 | background-color: #da4453; | ||
1539 | border-color: #da4453; | ||
1540 | } | ||
1541 | .panel-primary > .panel-heading > .panel-title, | ||
1542 | .panel-success > .panel-heading > .panel-title, | ||
1543 | .panel-info > .panel-heading > .panel-title, | ||
1544 | .panel-warning > .panel-heading > .panel-title, | ||
1545 | .panel-danger > .panel-heading > .panel-title { | ||
1546 | color: white; | ||
1547 | } | ||
1548 | .panel > .list-group:first-child .list-group-item:first-child, .panel > .table:first-child, .panel > .table-responsive:first-child > .table:first-child { | ||
1549 | -webkit-border-radius: 4px 4px 0 0; | ||
1550 | -moz-border-radius: 4px 4px 0 0; | ||
1551 | border-radius: 4px 4px 0 0; | ||
1552 | } | ||
1553 | .panel > .list-group:last-child .list-group-item:last-child { | ||
1554 | -webkit-border-radius: 0 0 4px 4px; | ||
1555 | -moz-border-radius: 0 0 4px 4px; | ||
1556 | border-radius: 0 0 4px 4px; | ||
1557 | } | ||
1558 | .panel > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { | ||
1559 | -webkit-border-radius: 4px 0 0 0; | ||
1560 | -moz-border-radius: 4px 0 0 0; | ||
1561 | border-radius: 4px 0 0 0; | ||
1562 | } | ||
1563 | .panel > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { | ||
1564 | -webkit-border-radius: 0 4px 0 0; | ||
1565 | -moz-border-radius: 0 4px 0 0; | ||
1566 | border-radius: 0 4px 0 0; | ||
1567 | } | ||
1568 | .panel > .table:last-child, .panel > .table-responsive:last-child > .table:last-child { | ||
1569 | -webkit-border-radius: 0 0 4px 4px; | ||
1570 | -moz-border-radius: 0 0 4px 4px; | ||
1571 | border-radius: 0 0 4px 4px; | ||
1572 | } | ||
1573 | .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { | ||
1574 | -webkit-border-radius: 0 0 0 4px; | ||
1575 | -moz-border-radius: 0 0 0 4px; | ||
1576 | border-radius: 0 0 0 4px; | ||
1577 | } | ||
1578 | .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { | ||
1579 | -webkit-border-radius: 0 0 4px 0; | ||
1580 | -moz-border-radius: 0 0 4px 0; | ||
1581 | border-radius: 0 0 4px 0; | ||
1582 | } | ||
1583 | .panel > .panel-body + .table, .panel > .panel-body + .table-responsive { | ||
1584 | border-top-color: #e6e9ed; | ||
1585 | } | ||
1586 | |||
1587 | /** | ||
1588 | * accordion | ||
1589 | * -------------------------------------------------- | ||
1590 | */ | ||
1591 | .accordion .accordion-header { | ||
1592 | margin-top: 0; | ||
1593 | font-size: 16px; | ||
1594 | display: block; | ||
1595 | } | ||
1596 | .accordion .accordion-header a { | ||
1597 | font-weight: normal; | ||
1598 | font-size: 15px; | ||
1599 | color: #aab2bd; | ||
1600 | } | ||
1601 | .accordion .accordion-header a:hover, .accordion .accordion-header a:focus, .accordion .accordion-header a:active { | ||
1602 | color: #434a54; | ||
1603 | text-decoration: none; | ||
1604 | } | ||
1605 | .accordion .accordion-header .glyphicon { | ||
1606 | position: relative; | ||
1607 | top: -1px; | ||
1608 | font-size: 10px; | ||
1609 | } | ||
1610 | .accordion .accordion-header + div { | ||
1611 | display: block !important; | ||
1612 | -webkit-transition: all 0.3s ease; | ||
1613 | -moz-transition: all 0.3s ease; | ||
1614 | transition: all 0.3s ease; | ||
1615 | height: 0; | ||
1616 | overflow: hidden; | ||
1617 | } | ||
1618 | .accordion .accordion-header.open + div { | ||
1619 | height: auto; | ||
1620 | } | ||
1621 | .accordion .accordion-header.open a, .accordion .accordion-header.open a:hover, .accordion .accordion-header.open a:focus, .accordion .accordion-header.open a:active { | ||
1622 | color: #434a54; | ||
1623 | text-decoration: none; | ||
1624 | } | ||
1625 | .accordion .accordion-header.open .glyphicon { | ||
1626 | -webkit-transform: rotate(-30deg); | ||
1627 | -moz-transform: rotate(-30deg); | ||
1628 | transform: rotate(-30deg); | ||
1629 | } | ||
1630 | .accordion .accordion-body { | ||
1631 | padding: 10px 0; | ||
1632 | } | ||
1633 | |||
1634 | .accordion-panel { | ||
1635 | background-color: white; | ||
1636 | -webkit-border-radius: 4px; | ||
1637 | -moz-border-radius: 4px; | ||
1638 | border-radius: 4px; | ||
1639 | -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); | ||
1640 | -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); | ||
1641 | box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); | ||
1642 | } | ||
1643 | .accordion-panel .accordion-header { | ||
1644 | margin-bottom: 0; | ||
1645 | border-top: 1px solid #e6e9ed; | ||
1646 | } | ||
1647 | .accordion-panel .accordion-header:first-child { | ||
1648 | border-top: none; | ||
1649 | -webkit-border-radius: 4px 4px 0 0; | ||
1650 | -moz-border-radius: 4px 4px 0 0; | ||
1651 | border-radius: 4px 4px 0 0; | ||
1652 | } | ||
1653 | .accordion-panel .accordion-header:last-child { | ||
1654 | -webkit-border-radius: 0 0 4px 4px; | ||
1655 | -moz-border-radius: 0 0 4px 4px; | ||
1656 | border-radius: 0 0 4px 4px; | ||
1657 | } | ||
1658 | .accordion-panel .accordion-header a, .accordion-panel .accordion-header a:hover, .accordion-panel .accordion-header a:active, .accordion-panel .accordion-header a:focus { | ||
1659 | padding: 10px 15px; | ||
1660 | display: block; | ||
1661 | color: #434a54; | ||
1662 | } | ||
1663 | .accordion-panel .accordion-header.open { | ||
1664 | background-color: #e6e9ed; | ||
1665 | } | ||
1666 | .accordion-panel .accordion-body { | ||
1667 | padding: 10px; | ||
1668 | } | ||
1669 | |||
1670 | /** | ||
1671 | * footer | ||
1672 | * -------------------------------------------------- | ||
1673 | */ | ||
1674 | .footer { | ||
1675 | padding: 40px 0; | ||
1676 | background-color: #434a54; | ||
1677 | } | ||
1678 | .footer .footer-logo, | ||
1679 | .footer .footer-nav { | ||
1680 | float: left; | ||
1681 | padding: 0 20px; | ||
1682 | width: 20%; | ||
1683 | } | ||
1684 | .footer .footer-logo { | ||
1685 | margin-top: -5px; | ||
1686 | height: 32px; | ||
1687 | line-height: 32px; | ||
1688 | } | ||
1689 | .footer .footer-logo img { | ||
1690 | margin-right: 10px; | ||
1691 | } | ||
1692 | .footer .footer-logo a { | ||
1693 | font-size: 20px; | ||
1694 | font-weight: bold; | ||
1695 | color: white; | ||
1696 | } | ||
1697 | .footer .footer-logo a:hover, .footer .footer-logo a:active { | ||
1698 | text-decoration: none; | ||
1699 | } | ||
1700 | .footer .footer-nav .nav-title { | ||
1701 | margin-bottom: 15px; | ||
1702 | color: #e6e9ed; | ||
1703 | } | ||
1704 | .footer .footer-nav .nav-item { | ||
1705 | line-height: 28px; | ||
1706 | } | ||
1707 | .footer .footer-nav .nav-item > a { | ||
1708 | color: #aab2bd; | ||
1709 | } | ||
1710 | .footer .footer-nav .nav-item > a:hover, .footer .footer-nav .nav-item > a:active { | ||
1711 | color: #ccd1d9; | ||
1712 | text-decoration: none; | ||
1713 | } | ||
1714 | .footer .footer-copyright { | ||
1715 | color: #aab2bd; | ||
1716 | } | ||
1717 | |||
1718 | /** | ||
1719 | * dropdown-menu | ||
1720 | * -------------------------------------------------- | ||
1721 | */ | ||
1722 | .dropdown-menu { | ||
1723 | border: none; | ||
1724 | background-color: #434a54; | ||
1725 | } | ||
1726 | .dropdown-menu .dropdown-header { | ||
1727 | padding: 5px 20px; | ||
1728 | font-size: 14px; | ||
1729 | font-weight: 700; | ||
1730 | color: #aab2bd; | ||
1731 | } | ||
1732 | .dropdown-menu li a { | ||
1733 | padding: 5px 20px; | ||
1734 | color: white; | ||
1735 | } | ||
1736 | .dropdown-menu li a:hover, .dropdown-menu li a:focus, .dropdown-menu .active a, .dropdown-menu .active a:hover, .dropdown-menu .active a:focus { | ||
1737 | color: white; | ||
1738 | background-color: #656d78; | ||
1739 | outline: none; | ||
1740 | } | ||
1741 | .dropdown-menu .disabled a, .dropdown-menu .disabled a:hover, .dropdown-menu .disabled a:focus { | ||
1742 | color: #656d78; | ||
1743 | cursor: default; | ||
1744 | } | ||
1745 | .dropdown-menu .divider { | ||
1746 | background-color: #656d78; | ||
1747 | border-bottom: none; | ||
1748 | } | ||
1749 | .dropup .dropdown-menu { | ||
1750 | margin-bottom: 0; | ||
1751 | -webkit-border-radius: 4px 4px 0 0; | ||
1752 | -moz-border-radius: 4px 4px 0 0; | ||
1753 | border-radius: 4px 4px 0 0; | ||
1754 | } | ||
1755 | |||
1756 | /** | ||
1757 | * dropdown-submenu | ||
1758 | * -------------------------------------------------- | ||
1759 | */ | ||
1760 | .dropdown-submenu { | ||
1761 | position: relative; | ||
1762 | } | ||
1763 | .dropdown-submenu .dropdown-menu { | ||
1764 | top: 0; | ||
1765 | left: 100%; | ||
1766 | margin-top: -6px; | ||
1767 | margin-left: -1px; | ||
1768 | -webkit-border-radius: 0 4px 4px 4px; | ||
1769 | -moz-border-radius: 0 4px 4px 4px; | ||
1770 | border-radius: 0 4px 4px 4px; | ||
1771 | } | ||
1772 | .dropdown-submenu:hover .dropdown-menu { | ||
1773 | display: block; | ||
1774 | } | ||
1775 | .dropup .dropdown-submenu .dropdown-menu { | ||
1776 | top: auto; | ||
1777 | bottom: 0; | ||
1778 | margin-top: 0; | ||
1779 | margin-bottom: -2px; | ||
1780 | -webkit-border-radius: 4px 4px 4px 0; | ||
1781 | -moz-border-radius: 4px 4px 4px 0; | ||
1782 | border-radius: 4px 4px 4px 0; | ||
1783 | } | ||
1784 | .dropdown-submenu > a:after { | ||
1785 | display: block; | ||
1786 | content: " "; | ||
1787 | float: right; | ||
1788 | width: 0; | ||
1789 | height: 0; | ||
1790 | border-color: transparent; | ||
1791 | border-style: solid; | ||
1792 | border-width: 5px 0 5px 5px; | ||
1793 | border-left-color: white; | ||
1794 | margin-top: 5px; | ||
1795 | margin-right: -10px; | ||
1796 | } | ||
1797 | .dropdown-default .dropdown-submenu > a:after { | ||
1798 | border-left-color: #434a54; | ||
1799 | } | ||
1800 | .dropdown-submenu:hover a:after { | ||
1801 | border-left-color: white; | ||
1802 | } | ||
1803 | .dropdown-submenu.pull-left { | ||
1804 | float: none; | ||
1805 | } | ||
1806 | .dropdown-submenu.pull-left .dropdown-menu { | ||
1807 | left: -100%; | ||
1808 | margin-left: 10px; | ||
1809 | -webkit-border-radius: 4px 0 4px 4px; | ||
1810 | -moz-border-radius: 4px 0 4px 4px; | ||
1811 | border-radius: 4px 0 4px 4px; | ||
1812 | } | ||
1813 | |||
1814 | /*# sourceMappingURL=bootflat.css.map */ | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
bootflat/css/bootflat.css.map
0 → 100644
1 | { | ||
2 | "version": 3, | ||
3 | "mappings": "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", | ||
4 | "sources": ["../scss/bootflat/_typography.scss","../scss/bootflat/_global.scss","../scss/bootflat/_button.scss","../scss/bootflat/_button_group.scss","../scss/bootflat/_label_badge.scss","../scss/bootflat/_tooltip.scss","../scss/bootflat/_popover.scss","../scss/bootflat/_progress.scss","../scss/bootflat/_breadcrumb.scss","../scss/bootflat/_pagination.scss","../scss/bootflat/_pager.scss","../scss/bootflat/_form.scss","../scss/bootflat/_checkbox_radio.scss","../scss/bootflat/_alert.scss","../scss/bootflat/_tab.scss","../scss/bootflat/_pill.scss","../scss/bootflat/_navbar.scss","../scss/bootflat/_list.scss","../scss/bootflat/_media_list.scss","../scss/bootflat/_modal.scss","../scss/bootflat/_well.scss","../scss/bootflat/_thumbnail.scss","../scss/bootflat/_jumbotron.scss","../scss/bootflat/_panel.scss","../scss/bootflat/_accordion.scss","../scss/bootflat/_footer.scss","../scss/bootflat/_dropdown.scss"], | ||
5 | "file": "bootflat.css" | ||
6 | } |
bootflat/css/bootflat.min.css
0 → 100644
1 | body{font-family:'Open Sans','Helvetica Neue',Helvetica,Arial,sans-serif;color:#434a54;background-color:#fff}a{color:#3bafda;text-decoration:none}a:focus,a:hover{color:#4fc1e9;text-decoration:none}a:focus{outline:0}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:700;line-height:1.1;color:inherit}.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{color:#e7e9ec}h1,h2,h3{margin-top:30px;margin-bottom:15px}h4,h5,h6{margin-top:15px;margin-bottom:15px}h6{font-weight:400}.h1,h1{font-size:51px}.h2,h2{font-size:43px}.h3,h3{font-size:30px}.h4,h4{font-size:19px}.h5,h5{font-size:18px}.h6,h6{font-size:14px}blockquote{border-left:3px solid #ccd1d9}.img-rounded{-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.img-comment{font-size:15px;line-height:1.2;font-style:italic;margin:24px 0}.btn{color:#fff}.btn,.btn.disabled,.btn[disabled]{border-color:#aab2bd;background-color:#aab2bd}.btn.active,.btn:active,.btn:focus,.btn:hover{color:#fff;border-color:#ccd1d9;background-color:#ccd1d9;outline:0!important}.btn.active,.btn:active{-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.125);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.125);box-shadow:inset 0 1px 2px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled]{opacity:.45;filter:alpha(opacity=45)}.btn-link,.btn-link.active,.btn-link.disabled,.btn-link:active,.btn-link:focus,.btn-link:hover,.btn-link[disabled]{border-color:transparent;background-color:transparent;color:#3bafda;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.btn-link:focus,.btn-link:hover{text-decoration:underline}.btn-default{color:#434a54;border-color:#aab2bd!important}.btn-default.active,.btn-default:active,.btn-default:focus,.btn-default:hover{border-color:#ccd1d9;background-color:#ccd1d9}.btn-default,.btn-default.disabled,.btn-default[disabled]{background-color:#fff}.open .dropdown-toggle.btn-default{border-color:#ccd1d9;background-color:#ccd1d9}.btn-primary,.btn-primary.active,.btn-primary.disabled,.btn-primary:active,.btn-primary[disabled]{border-color:#3bafda;background-color:#3bafda}.btn-primary:focus,.btn-primary:hover,.open .dropdown-toggle.btn-primary{border-color:#4fc1e9;background-color:#4fc1e9}.btn-info,.btn-info.active,.btn-info.disabled,.btn-info:active,.btn-info[disabled]{border-color:#37bc9b;background-color:#37bc9b}.btn-info:focus,.btn-info:hover,.open .dropdown-toggle.btn-info{border-color:#48cfad;background-color:#48cfad}.btn-success,.btn-success.active,.btn-success.disabled,.btn-success:active,.btn-success[disabled]{border-color:#8cc152;background-color:#8cc152}.btn-success:focus,.btn-success:hover,.open .dropdown-toggle.btn-success{border-color:#a0d468;background-color:#a0d468}.btn-warning,.btn-warning.active,.btn-warning.disabled,.btn-warning:active,.btn-warning[disabled]{border-color:#f6bb42;background-color:#f6bb42}.btn-warning:focus,.btn-warning:hover,.open .dropdown-toggle.btn-warning{border-color:#ffce54;background-color:#ffce54}.btn-danger,.btn-danger .open .dropdown-toggle.btn-danger,.btn-danger.active,.btn-danger.disabled,.btn-danger:active,.btn-danger[disabled]{border-color:#da4453;background-color:#da4453}.btn-danger:focus,.btn-danger:hover,.open .dropdown-toggle.btn-danger{border-color:#ed5565;background-color:#ed5565}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.125);-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,.125);box-shadow:inset 0 1px 2px rgba(0,0,0,.125)}.btn-group .btn{border-left-color:#96a0ad}.btn-group .btn-default.active,.btn-group .btn-default:active,.btn-group .btn-default:focus,.btn-group.open .btn-default.dropdown-toggle{color:#fff}.btn-group .btn-primary,.btn-group .btn-primary.active,.btn-group .btn-primary:active,.btn-group .btn-primary:focus{border-left-color:#269ecb}.btn-group .btn-success,.btn-group .btn-success.active,.btn-group .btn-success:active,.btn-group .btn-success:focus{border-left-color:#7ab03f}.btn-group .btn-warning,.btn-group .btn-warning.active,.btn-group .btn-warning:active,.btn-group .btn-warning:focus{border-left-color:#efa50b}.btn-group .btn-danger,.btn-group .btn-danger.active,.btn-group .btn-danger:active,.btn-group .btn-danger:focus{border-left-color:#d1293a}.btn-group .btn-info,.btn-group .btn-info.active,.btn-group .btn-info:active,.btn-group .btn-info:focus{border-left-color:#2fa084}.btn-group .btn-danger:first-child,.btn-group .btn-info:first-child,.btn-group .btn-primary:first-child,.btn-group .btn-success:first-child,.btn-group .btn-warning:first-child,.btn-group .btn:first-child{border-left-color:transparent}.btn-group-vertical .btn,.btn-group-vertical .btn-group .btn-primary{border-top-color:#96a0ad!important}.btn-group-vertical .btn-group .btn-primary,.btn-group-vertical .btn-primary,.btn-group-vertical .btn-primary.active,.btn-group-vertical .btn-primary:active,.btn-group-vertical .btn-primary:focus{border-top-color:#269ecb!important}.btn-group-vertical .btn-group .btn-success,.btn-group-vertical .btn-success,.btn-group-vertical .btn-success.active,.btn-group-vertical .btn-success:active,.btn-group-vertical .btn-success:focus{border-top-color:#7ab03f!important}.btn-group-vertical .btn-group .btn-warning,.btn-group-vertical .btn-warning,.btn-group-vertical .btn-warning.active,.btn-group-vertical .btn-warning:active,.btn-group-vertical .btn-warning:focus{border-top-color:#efa50b!important}.btn-group-vertical .btn-danger,.btn-group-vertical .btn-danger.active,.btn-group-vertical .btn-danger:active,.btn-group-vertical .btn-danger:focus,.btn-group-vertical .btn-group .btn-danger{border-top-color:#d1293a!important}.btn-group-vertical .btn-group .btn-info,.btn-group-vertical .btn-info,.btn-group-vertical .btn-info.active,.btn-group-vertical .btn-info:active,.btn-group-vertical .btn-info:focus{border-top-color:#2fa084!important}.btn-group-vertical .btn-danger:first-child,.btn-group-vertical .btn-info:first-child,.btn-group-vertical .btn-primary:first-child,.btn-group-vertical .btn-success:first-child,.btn-group-vertical .btn-warning:first-child,.btn-group-vertical .btn:not(.btn-default):first-child{border-top:0}.badge,.label{background-color:#aab2bd}.badge-default,.label-default{border:1px solid #aab2bd;background-color:#fff;color:#434a54}.badge-primary,.label-primary{border-color:#3bafda;background-color:#3bafda}.badge-success,.label-success{border-color:#8cc152;background-color:#8cc152}.badge-danger,.label-danger{border-color:#da4453;background-color:#da4453}.badge-warning,.label-warning{border-color:#f6bb42;background-color:#f6bb42}.badge-info,.label-info{border-color:#37bc9b;background-color:#37bc9b}.tooltip-inner{color:#fff;background-color:#434a54}.tooltip.top .tooltip-arrow,.tooltip.top-left .tooltip-arrow,.tooltip.top-right .tooltip-arrow{border-top-color:#434a54}.tooltip.right .tooltip-arrow{border-right-color:#434a54}.tooltip.left .tooltip-arrow{border-left-color:#434a54}.tooltip.bottom .tooltip-arrow,.tooltip.bottom-left .tooltip-arrow,.tooltip.bottom-right .tooltip-arrow{border-bottom-color:#434a54}.popover{background-color:#434a54;color:#fff;border-color:#434a54}.popover-title{padding-bottom:0;font-weight:700;color:#aab2bd;background-color:transparent;border-bottom:0}.popover.top .arrow,.popover.top .arrow:after{border-top-color:#434a54}.popover.right .arrow,.popover.right .arrow:after{border-right-color:#434a54}.popover.bottom .arrow,.popover.bottom .arrow:after{border-bottom-color:#434a54}.popover.left .arrow,.popover.left .arrow:after{border-left-color:#434a54}.progress{background-color:#e6e9ed;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.progress .progress-bar{background-color:#3bafda;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.progress .progress-bar-success{background-color:#8cc152}.progress .progress-bar-info{background-color:#37bc9b}.progress .progress-bar-warning{background-color:#f6bb42}.progress .progress-bar-danger{background-color:#da4453}.breadcrumb{color:#434a54;background-color:#e6e9ed}.breadcrumb>.active{color:#434a54}.breadcrumb a{color:#3bafda}.breadcrumb-arrow{padding:0;list-style:none;background-color:#e6e9ed;height:36px;line-height:36px}.breadcrumb-arrow li:first-child a{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.breadcrumb-arrow li,.breadcrumb-arrow li a,.breadcrumb-arrow li span{display:inline-block;vertical-align:top}.breadcrumb-arrow li:not(:first-child){margin-left:-5px}.breadcrumb-arrow li+li:before{padding:0;content:""}.breadcrumb-arrow li span{padding:0 10px}.breadcrumb-arrow li a,.breadcrumb-arrow li:not(:first-child) span{padding:0 10px 0 25px;height:35px;line-height:35px}.breadcrumb-arrow li:first-child a{padding:0 10px}.breadcrumb-arrow li a{position:relative;border:1px solid #3bafda;color:#fff;background-color:#3bafda;text-decoration:none}.breadcrumb-arrow li:first-child a{padding-left:10px}.breadcrumb-arrow li a:after,.breadcrumb-arrow li a:before{position:absolute;top:0;content:'';width:0;height:0;border-top:17px solid transparent;border-bottom:17px solid transparent}.breadcrumb-arrow li a:before{right:-10px;border-left-width:10px;border-left-style:solid;border-left-color:#3bafda;z-index:3}.breadcrumb-arrow li a:after{right:-11px;border-left:10px solid #2494be;z-index:2}.breadcrumb-arrow li a:focus,.breadcrumb-arrow li a:hover{background-color:#4fc1e9;border:1px solid #4fc1e9}.breadcrumb-arrow li a:focus:before,.breadcrumb-arrow li a:hover:before{border-left-color:#4fc1e9}.breadcrumb-arrow li a:active{background-color:#2494be;border:1px solid #2494be}.breadcrumb-arrow li a:active:after,.breadcrumb-arrow li a:active:before{border-left-color:#2494be}.breadcrumb-arrow li span{color:#434a54}.pagination>li>a,.pagination>li>span{color:#434a54;background-color:#fff;border-color:#ccd1d9}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{color:#fff;background-color:#ccd1d9;border-color:#ccd1d9}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{color:#fff;background-color:#8cc152;border-color:#8cc152}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#e6e9ed;background-color:#fff;border-color:#ccd1d9}.pager li>a,.pager li>span{color:#fff;background-color:#8cc152;border-color:#8cc152}.pager li>a:focus,.pager li>a:hover{background-color:#a0d468;border-color:#a0d468}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#e6e9ed;background-color:#fff;border-color:#e6e9ed}.form-control{color:#434a54;border-color:#aab2bd}.form-control,.form-control:focus{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.form-control:focus{border-color:#3bafda}.form-control:-ms-input-placeholder,.form-control::-moz-placeholder,.form-control::-webkit-input-placeholder{color:#e6e9ed}.form-control.disabled,.form-control[disabled]{border-color:#e6e9ed;background-color:#e6e9ed}.input-group-btn .btn+.btn{border-width:1px;border-style:solid;border-color:#96a0ad}.input-group-btn .btn+.btn.btn-default{border-color:#ededed}.input-group-btn .btn+.btn.btn-primary{border-color:#269ecb}.input-group-btn .btn+.btn.btn-info{border-color:#2fa084}.input-group-btn .btn+.btn.btn-success{border-color:#7ab03f}.input-group-btn .btn+.btn.btn-warning{border-color:#f4af20}.input-group-btn .btn+.btn.btn-danger{border-color:#d1293a}.input-group-addon{background-color:#aab2bd;border-color:#96a0ad;color:#fff}.input-group-addon .checkbox,.input-group-addon .radio{margin:-3px 0 -4px!important}.form-search .search-query,.form-search .search-query:first-child,.form-search .search-query:last-child{padding:0 17px;-webkit-border-radius:17px;-moz-border-radius:17px;border-radius:17px}.input-group .form-control:last-child{-webkit-border-top-left-radius:0;-moz-border-radius-topleft:0;border-top-left-radius:0;-webkit-border-bottom-left-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0}.input-group .form-control:first-child{-webkit-border-top-right-radius:0;-moz-border-radius-topright:0;border-top-right-radius:0;-webkit-border-bottom-right-radius:0;-moz-border-radius-bottomright:0;border-bottom-right-radius:0}.form-search .btn{-webkit-border-radius:17px;-moz-border-radius:17px;border-radius:17px}.search-only{position:relative}.search-only .search-icon{position:absolute;top:2px;left:8.5px;width:30px;line-height:30px;text-align:center;font-size:17px;color:#e6e9ed;z-index:20}.search-only .form-control:last-child{padding-left:40px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline{color:#8cc152}.has-success .form-control,.has-success .form-control:focus{border-color:#8cc152;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.has-success .input-group-addon{background-color:#8cc152;border-color:#8cc152}.has-success .form-control-feedback{color:#8cc152}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline{color:#f6bb42}.has-warning .form-control,.has-warning .form-control:focus{border-color:#f6bb42;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.has-warning .input-group-addon{background-color:#f6bb42;border-color:#f6bb42}.has-warning .form-control-feedback{color:#f6bb42}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline{color:#da4453}.has-error .form-control,.has-error .form-control:focus{border-color:#da4453;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.has-error .input-group-addon{background-color:#da4453;border-color:#da4453}.has-error .form-control-feedback{color:#da4453}.checkbox,.radio{margin-top:0;padding-left:0}.icheckbox_flat,.iradio_flat{display:inline-block;*display:inline;vertical-align:middle;margin:0;padding:0!important;width:20px;height:20px;background:url(../bootflat/img/check_flat/default.png) no-repeat;border:0;cursor:pointer}.icheckbox_flat{background-position:0 0}.icheckbox_flat.checked{background-position:-22px 0}.icheckbox_flat.disabled{background-position:-44px 0;cursor:default}.icheckbox_flat.checked.disabled{background-position:-66px 0}.iradio_flat{background-position:-88px 0}.iradio_flat.checked{background-position:-110px 0}.iradio_flat.disabled{background-position:-132px 0;cursor:default}.iradio_flat.checked.disabled{background-position:-154px 0}.alert h4{margin-bottom:10px;font-weight:700}.alert .alert-dismissable .close{color:#000;opacity:.7;filter:alpha(opacity=70)}.alert-info{background-color:#7cd1ef;border:#4fc1e9}.alert-warning{background-color:#ffdd87;border:#ffce54}.alert-danger{background-color:#f2838f;border:#ed5565}.alert-success{background-color:#b9df90;border:#a0d468}.alert .alert-link{cursor:pointer;text-decoration:underline;opacity:.65;filter:alpha(opacity=65)}.alert .alert-link:focus,.alert .alert-link:hover{opacity:.45;filter:alpha(opacity=45)}.alert .btn-link,.alert .btn-link:focus,.alert .btn-link:hover{color:#000;opacity:.65;filter:alpha(opacity=65)}.alert .btn-link:focus,.alert .btn-link:hover{text-decoration:none;opacity:.4;filter:alpha(opacity=40)}.nav-tabs{border-bottom:0;background-color:#e6e9ed;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.nav-tabs>li{margin-bottom:0;border-left:1px solid #ccd1d9}.nav-tabs>li:first-child{border-left:0}.nav-tabs>li>a{margin-right:0;border:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;color:#434a54}.nav-tabs>li:first-child>a{-webkit-border-radius:4px 0 0;-moz-border-radius:4px 0 0;border-radius:4px 0 0}.nav-tabs>li>a:focus,.nav-tabs>li>a:hover{border:0;background-color:#f5f7fa}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{border:0;background-color:#fff!important}.nav-tabs .dropdown-toggle,.nav-tabs .dropdown-toggle:focus,.nav-tabs .dropdown-toggle:hover{color:#434a54}.nav-tabs li.dropdown.open .dropdown-toggle{color:#434a54;background-color:#f5f7fa}.nav-tabs li.dropdown.active.open .dropdown-toggle{color:#434a54}.nav-tabs .dropdown-toggle .caret,.nav-tabs .dropdown-toggle:focus .caret,.nav-tabs .dropdown-toggle:hover .caret,.nav-tabs li.dropdown.active .dropdown-toggle .caret,.nav-tabs li.dropdown.active.open .dropdown-toggle .caret,.nav-tabs li.dropdown.open .caret,.nav-tabs li.dropdown.open a:focus .caret,.nav-tabs li.dropdown.open a:hover .caret,.nav-tabs li.dropdown.open.active .caret{border-top-color:#434a54;border-bottom-color:#434a54}.nav-tabs.nav-justified>li>a{margin-bottom:0;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}.nav-tabs.nav-justified>li>a{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.nav-tabs.nav-justified>li:first-child>a{-webkit-border-radius:4px 0 0;-moz-border-radius:4px 0 0;border-radius:4px 0 0}.nav-tabs.nav-justified>li:last-child>a{-webkit-border-radius:0 4px 0 0;-moz-border-radius:0 4px 0 0;border-radius:0 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:0}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom:0}}.tab-content{padding:10px}.tabs-below .nav-tabs{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.tabs-below .nav-tabs>li:first-child>a{-webkit-border-radius:0 0 0 4px;-moz-border-radius:0 0 0 4px;border-radius:0 0 0 4px}.tabs-below .nav-tabs.nav-justified>li:last-child>a{-webkit-border-radius:0 0 4px;-moz-border-radius:0 0 4px;border-radius:0 0 4px}.tabs-left .nav-tabs>li,.tabs-right .nav-tabs>li{float:none;border-left:0;border-top:1px solid #ccd1d9}.tabs-left .nav-tabs>li:first-child,.tabs-right .nav-tabs>li:first-child{border-top:0}.tabs-left .nav-tabs>li>a,.tabs-right .nav-tabs>li>a{min-width:74px;margin-right:0}.tabs-left .nav-tabs{float:left;margin-right:19px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px}.tabs-left .nav-tabs>li:first-child>a{-webkit-border-radius:4px 0 0;-moz-border-radius:4px 0 0;border-radius:4px 0 0}.tabs-left .nav-tabs>li:last-child>a{-webkit-border-radius:0 0 0 4px;-moz-border-radius:0 0 0 4px;border-radius:0 0 0 4px}.tabs-right .nav-tabs{float:right;margin-left:19px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0}.tabs-right .nav-tabs>li:first-child>a{-webkit-border-radius:0 4px 0 0;-moz-border-radius:0 4px 0 0;border-radius:0 4px 0 0}.tabs-right .nav-tabs>li:last-child>a{-webkit-border-radius:0 0 4px;-moz-border-radius:0 0 4px;border-radius:0 0 4px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#3bafda}.nav-pills>li>a{color:#3bafda}.nav-pills>li>a:hover{color:#434a54;background-color:#e6e9ed}.nav-pills>.active>a>.badge{color:#3bafda}.nav-pills .open>a,.nav-pills .open>a:focus,.nav-pills .open>a:hover{color:#434a54;background-color:#e6e9ed}.navbar-default{background-color:#37bc9b;border-color:#37bc9b}.navbar-default .btn-link,.navbar-default .navbar-brand,.navbar-default .navbar-link{color:#26816a}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover,.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover,.navbar-default .navbar-link:hover{color:#fff;background-color:transparent}.navbar-default .navbar-nav>li>a,.navbar-default .navbar-text{color:#26816a}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#fff}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#fff;background-color:#48cfad}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#2e9c81;background-color:transparent}.navbar-default .navbar-toggle{border-color:#26816a;background-color:#26816a}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{border-color:#2b957a;background-color:#2b957a}.navbar-default .navbar-toggle .icon-bar{background-color:#37bc9b}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#37bc9b}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#fff;background-color:#37bc9b}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>.divider,.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{background-color:#48cfad}.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#26816a}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:#48cfad}.navbar-default .navbar-nav .open .dropdown-menu>.dropdown-header{color:#26816a}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#2b957a}}.navbar-inverse{background-color:#333;border-color:#333}.navbar-inverse .btn-link,.navbar-inverse .navbar-brand,.navbar-inverse .navbar-link{color:#8c8c8c}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover,.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-link:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>li>a,.navbar-inverse .navbar-text{color:#8c8c8c}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#000}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#666;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#000;background-color:#000}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{border-color:#1a1a1a;background-color:#1a1a1a}.navbar-inverse .navbar-toggle .icon-bar{background-color:#8c8c8c}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#000}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#000}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.divider,.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{background-color:#000}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#8c8c8c}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:#000}.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{color:#bfbfbf}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#666}}.list-group{-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.2);-moz-box-shadow:0 1px 2px rgba(0,0,0,.2);box-shadow:0 1px 2px rgba(0,0,0,.2)}.list-group-item{border-top-color:#e6e9ed}.list-group-item:first-child{border-top:0}.list-group-item-heading,a.list-group-item{color:#434a54}a.list-group-item .list-group-item-heading{font-size:16px;color:#434a54}a.list-group-item:focus,a.list-group-item:hover{background-color:#e6e9ed}a.list-group-item.active,a.list-group-item.active:focus,a.list-group-item.active:hover{background-color:#4fc1e9;border-color:#4fc1e9}a.list-group-item.active .list-group-item-text,a.list-group-item.active:focus .list-group-item-text,a.list-group-item.active:hover .list-group-item-text{color:#fff}.list-group-item-primary{color:#22b1e3;border-color:#3bafda transparent transparent;background-color:#4fc1e9}.list-group-item-primary:first-child{border-color:transparent}a.list-group-item-primary{color:#126d8d}a.list-group-item-primary:focus,a.list-group-item-primary:hover{color:#fff}a.list-group-item-primary.active,a.list-group-item-primary:focus,a.list-group-item-primary:hover{background-color:#3bafda;border-color:#4fc1e9 transparent transparent}.list-group-item-success{color:#87c940;border-color:#8cc152 transparent transparent;background-color:#a0d468}.list-group-item-success:first-child{border-color:transparent}a.list-group-item-success{color:#537f24}a.list-group-item-success:focus,a.list-group-item-success:hover{color:#fff}a.list-group-item-success.active,a.list-group-item-success:focus,a.list-group-item-success:hover{background-color:#8cc152;border-color:#a0d468 transparent transparent}.list-group-item-warning{color:#ffbf21;border-color:#f6bb42 transparent transparent;background-color:#ffce54}.list-group-item-warning:first-child{border-color:transparent}a.list-group-item-warning{color:#ba8500}a.list-group-item-warning:focus,a.list-group-item-warning:hover{color:#fff}a.list-group-item-warning.active,a.list-group-item-warning:focus,a.list-group-item-warning:hover{background-color:#f6bb42;border-color:#ffce54 transparent transparent}.list-group-item-info{color:#2fb593;border-color:#37bc9b transparent transparent;background-color:#48cfad}.list-group-item-info:first-child{border-color:transparent}a.list-group-item-info{color:#1a6451}a.list-group-item-info:focus,a.list-group-item-info:hover{color:#fff}a.list-group-item-info.active,a.list-group-item-info:focus,a.list-group-item-info:hover{background-color:#37bc9b;border-color:#48cfad transparent transparent}.list-group-item-danger{color:#e8273b;border-color:#da4453 transparent transparent;background-color:#ed5565}.list-group-item-danger:first-child{border-color:transparent}a.list-group-item-danger{color:#99101f}a.list-group-item-danger:focus,a.list-group-item-danger:hover{color:#fff}a.list-group-item-danger.active,a.list-group-item-danger:focus,a.list-group-item-danger:hover{background-color:#da4453;border-color:#ed5565 transparent transparent}.media-list{color:#aab2bd}.media-heading{font-size:14px;color:#434a54}.modal .modal-content{border:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;color:#434a54;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.2);-moz-box-shadow:0 1px 2px rgba(0,0,0,.2);box-shadow:0 1px 2px rgba(0,0,0,.2)}.modal .modal-header{border-bottom:0}.modal .modal-body{padding:0 15px}.modal .modal-footer{border-top:0}.well{padding:10px;border:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;color:#434a54;background-color:#fff;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.2);-moz-box-shadow:0 1px 2px rgba(0,0,0,.2);box-shadow:0 1px 2px rgba(0,0,0,.2)}.well blockquote{border-color:#ccd1d9}.well-lg{padding:20px}.well-sm{padding:5px}.thumbnail{border:0;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.2);-moz-box-shadow:0 1px 2px rgba(0,0,0,.2);box-shadow:0 1px 2px rgba(0,0,0,.2)}.thumbnail .caption{font-size:14px}.thumbnail .caption h1,.thumbnail .caption h2,.thumbnail .caption h3,.thumbnail .caption h4,.thumbnail .caption h5,.thumbnail .caption h6{margin:5px 0 10px;font-size:16px}.jumbotron{margin-bottom:20px;padding:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;background-color:#fff;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.2);-moz-box-shadow:0 1px 2px rgba(0,0,0,.2);box-shadow:0 1px 2px rgba(0,0,0,.2)}.container .jumbotron{-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.jumbotron>.jumbotron-photo img{-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;width:100%}.jumbotron .jumbotron-contents{padding:20px;color:#434a54}.jumbotron .carousel,.jumbotron .carousel-inner,.jumbotron .carousel-inner>.item.active img{-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.jumbotron .carousel-control.left{-webkit-border-radius:4px 0 0;-moz-border-radius:4px 0 0;border-radius:4px 0 0}.jumbotron .carousel-control.right{-webkit-border-radius:0 4px 0 0;-moz-border-radius:0 4px 0 0;border-radius:0 4px 0 0}.jumbotron .h1,.jumbotron .h2,.jumbotron h1,.jumbotron h2{font-weight:400}.jumbotron .h1,.jumbotron h1{font-size:28px}.jumbotron .h2,.jumbotron h2{font-size:24px}.jumbotron p{font-size:14px}@media screen and (min-width:768px){.container .jumbotron,.jumbotron{padding:0}.jumbotron .h1,.jumbotron h1{font-size:28px}}.panel{background-color:#fff;border:0;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.2);-moz-box-shadow:0 1px 2px rgba(0,0,0,.2);box-shadow:0 1px 2px rgba(0,0,0,.2)}.panel .list-group{-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.panel .list-group-item:first-child{border-top:1px solid #e6e9ed}.panel .panel-heading{-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.panel .panel-title{font-size:14px;color:#434a54;font-weight:400}.panel .panel-footer{background-color:#e6e9ed;border-top-color:#e6e9ed;-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.panel-default{border-color:#e6e9ed}.panel-default>.panel-heading{color:#434a54;background-color:#e6e9ed;border-color:#e6e9ed}.panel-primary{border-color:#3bafda}.panel-primary>.panel-heading{color:#fff;background-color:#3bafda;border-color:#3bafda}.panel-success{border-color:#8cc152}.panel-success>.panel-heading{color:#fff;background-color:#8cc152;border-color:#8cc152}.panel-info{border-color:#37bc9b}.panel-info>.panel-heading{color:#fff;background-color:#37bc9b;border-color:#37bc9b}.panel-warning{border-color:#f6bb42}.panel-warning>.panel-heading{color:#fff;background-color:#f6bb42;border-color:#f6bb42}.panel-danger{border-color:#da4453}.panel-danger>.panel-heading{color:#fff;background-color:#da4453;border-color:#da4453}.panel-danger>.panel-heading>.panel-title,.panel-info>.panel-heading>.panel-title,.panel-primary>.panel-heading>.panel-title,.panel-success>.panel-heading>.panel-title,.panel-warning>.panel-heading>.panel-title{color:#fff}.panel>.list-group:first-child .list-group-item:first-child,.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.panel>.list-group:last-child .list-group-item:last-child{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{-webkit-border-radius:4px 0 0;-moz-border-radius:4px 0 0;border-radius:4px 0 0}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{-webkit-border-radius:0 4px 0 0;-moz-border-radius:0 4px 0 0;border-radius:0 4px 0 0}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{-webkit-border-radius:0 0 0 4px;-moz-border-radius:0 0 0 4px;border-radius:0 0 0 4px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{-webkit-border-radius:0 0 4px;-moz-border-radius:0 0 4px;border-radius:0 0 4px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive{border-top-color:#e6e9ed}.accordion .accordion-header{margin-top:0;font-size:16px;display:block}.accordion .accordion-header a{font-weight:400;font-size:15px;color:#aab2bd}.accordion .accordion-header a:active,.accordion .accordion-header a:focus,.accordion .accordion-header a:hover{color:#434a54;text-decoration:none}.accordion .accordion-header .glyphicon{position:relative;top:-1px;font-size:10px}.accordion .accordion-header+div{display:block!important;-webkit-transition:all .3s ease;-moz-transition:all .3s ease;transition:all .3s ease;height:0;overflow:hidden}.accordion .accordion-header.open+div{height:auto}.accordion .accordion-header.open a,.accordion .accordion-header.open a:active,.accordion .accordion-header.open a:focus,.accordion .accordion-header.open a:hover{color:#434a54;text-decoration:none}.accordion .accordion-header.open .glyphicon{-webkit-transform:rotate(-30deg);-moz-transform:rotate(-30deg);transform:rotate(-30deg)}.accordion .accordion-body{padding:10px 0}.accordion-panel{background-color:#fff;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.2);-moz-box-shadow:0 1px 2px rgba(0,0,0,.2);box-shadow:0 1px 2px rgba(0,0,0,.2)}.accordion-panel .accordion-header{margin-bottom:0;border-top:1px solid #e6e9ed}.accordion-panel .accordion-header:first-child{border-top:0;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.accordion-panel .accordion-header:last-child{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.accordion-panel .accordion-header a,.accordion-panel .accordion-header a:active,.accordion-panel .accordion-header a:focus,.accordion-panel .accordion-header a:hover{padding:10px 15px;display:block;color:#434a54}.accordion-panel .accordion-header.open{background-color:#e6e9ed}.accordion-panel .accordion-body{padding:10px}.footer{padding:40px 0;background-color:#434a54}.footer .footer-logo,.footer .footer-nav{float:left;padding:0 20px;width:20%}.footer .footer-logo{margin-top:-5px;height:32px;line-height:32px}.footer .footer-logo img{margin-right:10px}.footer .footer-logo a{font-size:20px;font-weight:700;color:#fff}.footer .footer-logo a:active,.footer .footer-logo a:hover{text-decoration:none}.footer .footer-nav .nav-title{margin-bottom:15px;color:#e6e9ed}.footer .footer-nav .nav-item{line-height:28px}.footer .footer-nav .nav-item>a{color:#aab2bd}.footer .footer-nav .nav-item>a:active,.footer .footer-nav .nav-item>a:hover{color:#ccd1d9;text-decoration:none}.footer .footer-copyright{color:#aab2bd}.dropdown-menu{border:0;background-color:#434a54}.dropdown-menu .dropdown-header{padding:5px 20px;font-size:14px;font-weight:700;color:#aab2bd}.dropdown-menu li a{padding:5px 20px;color:#fff}.dropdown-menu .active a,.dropdown-menu .active a:focus,.dropdown-menu .active a:hover,.dropdown-menu li a:focus,.dropdown-menu li a:hover{color:#fff;background-color:#656d78;outline:0}.dropdown-menu .disabled a,.dropdown-menu .disabled a:focus,.dropdown-menu .disabled a:hover{color:#656d78;cursor:default}.dropdown-menu .divider{background-color:#656d78;border-bottom:0}.dropup .dropdown-menu{margin-bottom:0;-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.dropdown-submenu{position:relative}.dropdown-submenu .dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;-webkit-border-radius:0 4px 4px;-moz-border-radius:0 4px 4px;border-radius:0 4px 4px}.dropdown-submenu:hover .dropdown-menu{display:block}.dropup .dropdown-submenu .dropdown-menu{top:auto;bottom:0;margin-top:0;margin-bottom:-2px;-webkit-border-radius:4px 4px 4px 0;-moz-border-radius:4px 4px 4px 0;border-radius:4px 4px 4px 0}.dropdown-submenu>a:after{display:block;content:" ";float:right;width:0;height:0;border-color:transparent;border-style:solid;border-width:5px 0 5px 5px;border-left-color:#fff;margin-top:5px;margin-right:-10px}.dropdown-default .dropdown-submenu>a:after{border-left-color:#434a54}.dropdown-submenu:hover a:after{border-left-color:#fff}.dropdown-submenu.pull-left{float:none}.dropdown-submenu.pull-left .dropdown-menu{left:-100%;margin-left:10px;-webkit-border-radius:4px 0 4px 4px;-moz-border-radius:4px 0 4px 4px;border-radius:4px 0 4px 4px} | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
bootflat/img/check_flat/default.png
0 → 100644
2.96 KB
bootflat/img/check_flat/default.psd
0 → 100644
No preview for this file type
bootflat/js/icheck.min.js
0 → 100644
1 | /*! iCheck v1.0.1 by Damir Sultanov, http://git.io/arlzeA, MIT Licensed */ | ||
2 | (function(f){function A(a,b,d){var c=a[0],g=/er/.test(d)?_indeterminate:/bl/.test(d)?n:k,e=d==_update?{checked:c[k],disabled:c[n],indeterminate:"true"==a.attr(_indeterminate)||"false"==a.attr(_determinate)}:c[g];if(/^(ch|di|in)/.test(d)&&!e)x(a,g);else if(/^(un|en|de)/.test(d)&&e)q(a,g);else if(d==_update)for(var f in e)e[f]?x(a,f,!0):q(a,f,!0);else if(!b||"toggle"==d){if(!b)a[_callback]("ifClicked");e?c[_type]!==r&&q(a,g):x(a,g)}}function x(a,b,d){var c=a[0],g=a.parent(),e=b==k,u=b==_indeterminate, | ||
3 | v=b==n,s=u?_determinate:e?y:"enabled",F=l(a,s+t(c[_type])),B=l(a,b+t(c[_type]));if(!0!==c[b]){if(!d&&b==k&&c[_type]==r&&c.name){var w=a.closest("form"),p='input[name="'+c.name+'"]',p=w.length?w.find(p):f(p);p.each(function(){this!==c&&f(this).data(m)&&q(f(this),b)})}u?(c[b]=!0,c[k]&&q(a,k,"force")):(d||(c[b]=!0),e&&c[_indeterminate]&&q(a,_indeterminate,!1));D(a,e,b,d)}c[n]&&l(a,_cursor,!0)&&g.find("."+C).css(_cursor,"default");g[_add](B||l(a,b)||"");g.attr("role")&&!u&&g.attr("aria-"+(v?n:k),"true"); | ||
4 | g[_remove](F||l(a,s)||"")}function q(a,b,d){var c=a[0],g=a.parent(),e=b==k,f=b==_indeterminate,m=b==n,s=f?_determinate:e?y:"enabled",q=l(a,s+t(c[_type])),r=l(a,b+t(c[_type]));if(!1!==c[b]){if(f||!d||"force"==d)c[b]=!1;D(a,e,s,d)}!c[n]&&l(a,_cursor,!0)&&g.find("."+C).css(_cursor,"pointer");g[_remove](r||l(a,b)||"");g.attr("role")&&!f&&g.attr("aria-"+(m?n:k),"false");g[_add](q||l(a,s)||"")}function E(a,b){if(a.data(m)){a.parent().html(a.attr("style",a.data(m).s||""));if(b)a[_callback](b);a.off(".i").unwrap(); | ||
5 | f(_label+'[for="'+a[0].id+'"]').add(a.closest(_label)).off(".i")}}function l(a,b,f){if(a.data(m))return a.data(m).o[b+(f?"":"Class")]}function t(a){return a.charAt(0).toUpperCase()+a.slice(1)}function D(a,b,f,c){if(!c){if(b)a[_callback]("ifToggled");a[_callback]("ifChanged")[_callback]("if"+t(f))}}var m="iCheck",C=m+"-helper",r="radio",k="checked",y="un"+k,n="disabled";_determinate="determinate";_indeterminate="in"+_determinate;_update="update";_type="type";_click="click";_touch="touchbegin.i touchend.i"; | ||
6 | _add="addClass";_remove="removeClass";_callback="trigger";_label="label";_cursor="cursor";_mobile=/ipad|iphone|ipod|android|blackberry|windows phone|opera mini|silk/i.test(navigator.userAgent);f.fn[m]=function(a,b){var d='input[type="checkbox"], input[type="'+r+'"]',c=f(),g=function(a){a.each(function(){var a=f(this);c=a.is(d)?c.add(a):c.add(a.find(d))})};if(/^(check|uncheck|toggle|indeterminate|determinate|disable|enable|update|destroy)$/i.test(a))return a=a.toLowerCase(),g(this),c.each(function(){var c= | ||
7 | f(this);"destroy"==a?E(c,"ifDestroyed"):A(c,!0,a);f.isFunction(b)&&b()});if("object"!=typeof a&&a)return this;var e=f.extend({checkedClass:k,disabledClass:n,indeterminateClass:_indeterminate,labelHover:!0},a),l=e.handle,v=e.hoverClass||"hover",s=e.focusClass||"focus",t=e.activeClass||"active",B=!!e.labelHover,w=e.labelHoverClass||"hover",p=(""+e.increaseArea).replace("%","")|0;if("checkbox"==l||l==r)d='input[type="'+l+'"]';-50>p&&(p=-50);g(this);return c.each(function(){var a=f(this);E(a);var c=this, | ||
8 | b=c.id,g=-p+"%",d=100+2*p+"%",d={position:"absolute",top:g,left:g,display:"block",width:d,height:d,margin:0,padding:0,background:"#fff",border:0,opacity:0},g=_mobile?{position:"absolute",visibility:"hidden"}:p?d:{position:"absolute",opacity:0},l="checkbox"==c[_type]?e.checkboxClass||"icheckbox":e.radioClass||"i"+r,z=f(_label+'[for="'+b+'"]').add(a.closest(_label)),u=!!e.aria,y=m+"-"+Math.random().toString(36).substr(2,6),h='<div class="'+l+'" '+(u?'role="'+c[_type]+'" ':"");u&&z.each(function(){h+= | ||
9 | 'aria-labelledby="';this.id?h+=this.id:(this.id=y,h+=y);h+='"'});h=a.wrap(h+"/>")[_callback]("ifCreated").parent().append(e.insert);d=f('<ins class="'+C+'"/>').css(d).appendTo(h);a.data(m,{o:e,s:a.attr("style")}).css(g);e.inheritClass&&h[_add](c.className||"");e.inheritID&&b&&h.attr("id",m+"-"+b);"static"==h.css("position")&&h.css("position","relative");A(a,!0,_update);if(z.length)z.on(_click+".i mouseover.i mouseout.i "+_touch,function(b){var d=b[_type],e=f(this);if(!c[n]){if(d==_click){if(f(b.target).is("a"))return; | ||
10 | A(a,!1,!0)}else B&&(/ut|nd/.test(d)?(h[_remove](v),e[_remove](w)):(h[_add](v),e[_add](w)));if(_mobile)b.stopPropagation();else return!1}});a.on(_click+".i focus.i blur.i keyup.i keydown.i keypress.i",function(b){var d=b[_type];b=b.keyCode;if(d==_click)return!1;if("keydown"==d&&32==b)return c[_type]==r&&c[k]||(c[k]?q(a,k):x(a,k)),!1;if("keyup"==d&&c[_type]==r)!c[k]&&x(a,k);else if(/us|ur/.test(d))h["blur"==d?_remove:_add](s)});d.on(_click+" mousedown mouseup mouseover mouseout "+_touch,function(b){var d= | ||
11 | b[_type],e=/wn|up/.test(d)?t:v;if(!c[n]){if(d==_click)A(a,!1,!0);else{if(/wn|er|in/.test(d))h[_add](e);else h[_remove](e+" "+t);if(z.length&&B&&e==v)z[/ut|nd/.test(d)?_remove:_add](w)}if(_mobile)b.stopPropagation();else return!1}})})}})(window.jQuery||window.Zepto); |
bootflat/js/jquery.collapse.js
0 → 100644
1 | /* | ||
2 | * Collapse plugin for jQuery | ||
3 | * -- | ||
4 | * source: http://github.com/danielstocks/jQuery-Collapse/ | ||
5 | * site: http://webcloud.se/jQuery-Collapse | ||
6 | * | ||
7 | * @author Daniel Stocks (http://webcloud.se) | ||
8 | * Copyright 2013, Daniel Stocks | ||
9 | * Released under the MIT, BSD, and GPL Licenses. | ||
10 | */ | ||
11 | |||
12 | (function($, exports) { | ||
13 | |||
14 | // Constructor | ||
15 | function Collapse (el, options) { | ||
16 | options = options || {}; | ||
17 | var _this = this, | ||
18 | query = options.query || "> :even"; | ||
19 | |||
20 | $.extend(_this, { | ||
21 | $el: el, | ||
22 | options : options, | ||
23 | sections: [], | ||
24 | isAccordion : options.accordion || false, | ||
25 | db : options.persist ? jQueryCollapseStorage(el.get(0).id) : false | ||
26 | }); | ||
27 | |||
28 | // Figure out what sections are open if storage is used | ||
29 | _this.states = _this.db ? _this.db.read() : []; | ||
30 | |||
31 | // For every pair of elements in given | ||
32 | // element, create a section | ||
33 | _this.$el.find(query).each(function() { | ||
34 | new jQueryCollapseSection($(this), _this); | ||
35 | }); | ||
36 | |||
37 | // Capute ALL the clicks! | ||
38 | (function(scope) { | ||
39 | _this.$el.on("click", "[data-collapse-summary] " + (scope.options.clickQuery || ""), | ||
40 | $.proxy(_this.handleClick, scope)); | ||
41 | |||
42 | _this.$el.bind("toggle close open", | ||
43 | $.proxy(_this.handleEvent, scope)); | ||
44 | |||
45 | }(_this)); | ||
46 | } | ||
47 | |||
48 | Collapse.prototype = { | ||
49 | handleClick: function(e, state) { | ||
50 | e.preventDefault(); | ||
51 | state = state || "toggle"; | ||
52 | var sections = this.sections, | ||
53 | l = sections.length; | ||
54 | while(l--) { | ||
55 | if($.contains(sections[l].$summary[0], e.target)) { | ||
56 | sections[l][state](); | ||
57 | break; | ||
58 | } | ||
59 | } | ||
60 | }, | ||
61 | handleEvent: function(e) { | ||
62 | if(e.target == this.$el.get(0)) return this[e.type](); | ||
63 | this.handleClick(e, e.type); | ||
64 | }, | ||
65 | open: function(eq) { | ||
66 | this._change("open", eq); | ||
67 | }, | ||
68 | close: function(eq) { | ||
69 | this._change("close", eq); | ||
70 | }, | ||
71 | toggle: function(eq) { | ||
72 | this._change("toggle", eq); | ||
73 | }, | ||
74 | _change: function(action, eq) { | ||
75 | $.each(this.sections, function(i, section) { | ||
76 | section[action](); | ||
77 | }); | ||
78 | } | ||
79 | }; | ||
80 | |||
81 | // Section constructor | ||
82 | function Section($el, parent) { | ||
83 | |||
84 | if(!parent.options.clickQuery) $el.wrapInner('<a href="#"/>'); | ||
85 | |||
86 | $.extend(this, { | ||
87 | isOpen : false, | ||
88 | $summary : $el.attr("data-collapse-summary",""), | ||
89 | $details : $el.next(), | ||
90 | options: parent.options, | ||
91 | parent: parent | ||
92 | }); | ||
93 | parent.sections.push(this); | ||
94 | |||
95 | // Check current state of section | ||
96 | var state = parent.states[this._index()]; | ||
97 | |||
98 | if(state === 0) { | ||
99 | this.close(true); | ||
100 | } | ||
101 | else if(this.$summary.is(".open") || state === 1) { | ||
102 | this.open(true); | ||
103 | } else { | ||
104 | this.close(true); | ||
105 | } | ||
106 | } | ||
107 | |||
108 | Section.prototype = { | ||
109 | toggle : function() { | ||
110 | this.isOpen ? this.close() : this.open(); | ||
111 | }, | ||
112 | close: function(bypass) { | ||
113 | this._changeState("close", bypass); | ||
114 | }, | ||
115 | open: function(bypass) { | ||
116 | var _this = this; | ||
117 | if(_this.options.accordion && !bypass) { | ||
118 | $.each(_this.parent.sections, function(i, section) { | ||
119 | section.close(); | ||
120 | }); | ||
121 | } | ||
122 | _this._changeState("open", bypass); | ||
123 | }, | ||
124 | _index: function() { | ||
125 | return $.inArray(this, this.parent.sections); | ||
126 | }, | ||
127 | _changeState: function(state, bypass) { | ||
128 | |||
129 | var _this = this; | ||
130 | _this.isOpen = state == "open"; | ||
131 | if($.isFunction(_this.options[state]) && !bypass) { | ||
132 | _this.options[state].apply(_this.$details); | ||
133 | } else { | ||
134 | _this.$details[_this.isOpen ? "show" : "hide"](); | ||
135 | } | ||
136 | |||
137 | _this.$summary.toggleClass("open", state !== "close"); | ||
138 | _this.$details.attr("aria-hidden", state === "close"); | ||
139 | _this.$summary.attr("aria-expanded", state === "open"); | ||
140 | _this.$summary.trigger(state === "open" ? "opened" : "closed", _this); | ||
141 | if(_this.parent.db) { | ||
142 | _this.parent.db.write(_this._index(), _this.isOpen); | ||
143 | } | ||
144 | } | ||
145 | }; | ||
146 | |||
147 | // Expose in jQuery API | ||
148 | $.fn.extend({ | ||
149 | collapse: function(options, scan) { | ||
150 | var nodes = (scan) ? $("body").find("[data-collapse]") : $(this); | ||
151 | return nodes.each(function() { | ||
152 | var settings = (scan) ? {} : options, | ||
153 | values = $(this).attr("data-collapse") || ""; | ||
154 | $.each(values.split(" "), function(i,v) { | ||
155 | if(v) settings[v] = true; | ||
156 | }); | ||
157 | new Collapse($(this), settings); | ||
158 | }); | ||
159 | } | ||
160 | }); | ||
161 | |||
162 | //jQuery DOM Ready | ||
163 | $(function() { | ||
164 | $.fn.collapse(false, true); | ||
165 | }); | ||
166 | |||
167 | // Expose constructor to | ||
168 | // global namespace | ||
169 | exports.jQueryCollapse = Collapse; | ||
170 | exports.jQueryCollapseSection = Section; | ||
171 | |||
172 | })(window.jQuery, window); |
bootflat/scss/bootflat.scss
0 → 100644
1 | @charset "UTF-8"; | ||
2 | |||
3 | /* | ||
4 | * Copyright 2013 FLATHEMES. | ||
5 | * | ||
6 | * Bootflat, v2.0.0 | ||
7 | * A open source Flat UI KIT based on Twitter Bootstrap 3.1.0 css framework. | ||
8 | * http://http://bootflat.github.io/ | ||
9 | * | ||
10 | * By @flathemes | ||
11 | * | ||
12 | * Licensed under the MIT license. Please see LICENSE for more information. | ||
13 | * | ||
14 | */ | ||
15 | |||
16 | @import | ||
17 | |||
18 | // Variables, Extends, Mixins | ||
19 | "bootflat/global", | ||
20 | |||
21 | // Base | ||
22 | "bootflat/typography", | ||
23 | "bootflat/button", | ||
24 | "bootflat/button_group", | ||
25 | "bootflat/label_badge", | ||
26 | "bootflat/tooltip", | ||
27 | "bootflat/popover", | ||
28 | "bootflat/progress", | ||
29 | "bootflat/breadcrumb", | ||
30 | "bootflat/pagination", | ||
31 | "bootflat/pager", | ||
32 | "bootflat/form", | ||
33 | "bootflat/checkbox_radio", | ||
34 | "bootflat/alert", | ||
35 | "bootflat/tab", | ||
36 | "bootflat/pill", | ||
37 | "bootflat/navbar", | ||
38 | "bootflat/list", | ||
39 | "bootflat/media_list", | ||
40 | "bootflat/modal", | ||
41 | "bootflat/well", | ||
42 | "bootflat/thumbnail", | ||
43 | "bootflat/jumbotron", | ||
44 | "bootflat/panel", | ||
45 | "bootflat/accordion", | ||
46 | "bootflat/footer", | ||
47 | "bootflat/dropdown"; |
bootflat/scss/bootflat/_accordion.scss
0 → 100644
1 | // Variables | ||
2 | //------------------------------------------------------ | ||
3 | $accordion-header-border-color: $lightgray-dark !default; | ||
4 | |||
5 | $accordion-panel-header-color: $lightgray-dark !default; | ||
6 | $accordion-panel-background-color: $white !default; | ||
7 | $accordion-panel-font-color: $darkgray-dark !default; | ||
8 | $accordion-panel-font-color-hover: $mediumgray-dark !default; | ||
9 | $accordion-panel-radius: 4px !default; | ||
10 | $accordion-panel-shadow: 0 1px 2px rgba(0, 0, 0, .2) !default; | ||
11 | |||
12 | |||
13 | |||
14 | // Exports | ||
15 | //------------------------------------------------------ | ||
16 | |||
17 | @include exports("accordion") { | ||
18 | |||
19 | /** | ||
20 | * accordion | ||
21 | * -------------------------------------------------- | ||
22 | */ | ||
23 | |||
24 | .accordion { | ||
25 | & #{&}-header { | ||
26 | margin-top: 0; | ||
27 | font-size: 16px; | ||
28 | display: block; | ||
29 | & a { | ||
30 | font-weight: normal; | ||
31 | font-size: 15px; | ||
32 | color: $accordion-panel-font-color-hover | ||
33 | } | ||
34 | & a:hover, | ||
35 | & a:focus, | ||
36 | & a:active { | ||
37 | color: $accordion-panel-font-color; | ||
38 | text-decoration: none; | ||
39 | } | ||
40 | & .glyphicon { | ||
41 | position: relative; | ||
42 | top: -1px; | ||
43 | font-size: 10px; | ||
44 | } | ||
45 | & + div { | ||
46 | display: block !important; | ||
47 | @include transition (all 0.3s ease); | ||
48 | height: 0; | ||
49 | overflow: hidden; | ||
50 | } | ||
51 | &.open + div { | ||
52 | height: auto; | ||
53 | } | ||
54 | &.open a, | ||
55 | &.open a:hover, | ||
56 | &.open a:focus, | ||
57 | &.open a:active { | ||
58 | color: $accordion-panel-font-color; | ||
59 | text-decoration: none; | ||
60 | } | ||
61 | &.open .glyphicon { | ||
62 | @include transform($value: rotate(-30deg)); | ||
63 | } | ||
64 | } | ||
65 | & .accordion-body { | ||
66 | padding: 10px 0; | ||
67 | } | ||
68 | } | ||
69 | |||
70 | .accordion-panel { | ||
71 | background-color: $accordion-panel-background-color; | ||
72 | @include radius($type: border-radius, $value: $accordion-panel-radius); | ||
73 | @include box-shadow($value: $accordion-panel-shadow); | ||
74 | |||
75 | & .accordion-header { | ||
76 | margin-bottom: 0; | ||
77 | border-top: 1px solid $accordion-header-border-color; | ||
78 | &:first-child { | ||
79 | border-top: none; | ||
80 | @include radius($type: border-radius, $value: $accordion-panel-radius $accordion-panel-radius 0 0); | ||
81 | } | ||
82 | &:last-child { | ||
83 | @include radius($type: border-radius, $value: 0 0 $accordion-panel-radius $accordion-panel-radius); | ||
84 | } | ||
85 | & a, | ||
86 | & a:hover, | ||
87 | & a:active, | ||
88 | & a:focus { | ||
89 | padding: 10px 15px; | ||
90 | display: block; | ||
91 | color: $accordion-panel-font-color; | ||
92 | } | ||
93 | &.open { | ||
94 | background-color: $accordion-panel-header-color; | ||
95 | } | ||
96 | } | ||
97 | & .accordion-body { | ||
98 | padding: 10px; | ||
99 | } | ||
100 | } | ||
101 | |||
102 | } | ||
103 | |||
104 |
bootflat/scss/bootflat/_alert.scss
0 → 100644
1 | // Variables | ||
2 | //------------------------------------------------------ | ||
3 | $alert-primary: $aqua-light !default; | ||
4 | $alert-success: $grass-light !default; | ||
5 | $alert-danger: $grapefruit-light !default; | ||
6 | $alert-warning: $sunflower-light !default; | ||
7 | |||
8 | $alert-close-color: $black !default; | ||
9 | |||
10 | $alert-link-color: $mediumgray-light !default; | ||
11 | |||
12 | |||
13 | // Exports | ||
14 | //------------------------------------------------------ | ||
15 | |||
16 | @include exports("alert") { | ||
17 | |||
18 | /** | ||
19 | * alert | ||
20 | * -------------------------------------------------- | ||
21 | */ | ||
22 | .alert { | ||
23 | |||
24 | & h4 { | ||
25 | margin-bottom: 10px; | ||
26 | font-weight: bold; | ||
27 | } | ||
28 | |||
29 | #{&}-dismissable .close { | ||
30 | color: $alert-close-color; | ||
31 | @include opacity($opacity: 70, $filter: true); | ||
32 | } | ||
33 | |||
34 | @at-root #{&}-info { | ||
35 | background-color: lighten($alert-primary, 10%); | ||
36 | border: $alert-primary; | ||
37 | } | ||
38 | @at-root #{&}-warning { | ||
39 | background-color: lighten($alert-warning, 10%); | ||
40 | border: $alert-warning; | ||
41 | } | ||
42 | @at-root #{&}-danger { | ||
43 | background-color: lighten($alert-danger, 10%); | ||
44 | border: $alert-danger; | ||
45 | } | ||
46 | @at-root #{&}-success { | ||
47 | background-color: lighten($alert-success, 10%); | ||
48 | border: $alert-success; | ||
49 | } | ||
50 | |||
51 | @at-root & #{&}-link { | ||
52 | cursor: pointer; | ||
53 | text-decoration: underline; | ||
54 | @include opacity($opacity: 65, $filter: true); | ||
55 | &:hover, | ||
56 | &:focus { | ||
57 | @include opacity($opacity: 45, $filter: true); | ||
58 | } | ||
59 | } | ||
60 | |||
61 | @at-root & .btn-link, | ||
62 | & .btn-link:hover, | ||
63 | & .btn-link:focus { | ||
64 | color: $alert-close-color; | ||
65 | @include opacity($opacity: 65, $filter: true); | ||
66 | } | ||
67 | @at-root & .btn-link:focus, | ||
68 | & .btn-link:hover { | ||
69 | text-decoration: none; | ||
70 | @include opacity($opacity: 40, $filter: true); | ||
71 | } | ||
72 | } | ||
73 | |||
74 | } | ||
75 | |||
76 |
bootflat/scss/bootflat/_breadcrumb.scss
0 → 100644
1 | // Variables | ||
2 | //------------------------------------------------------ | ||
3 | $breadcrumb-font-color: $darkgray-dark !default; | ||
4 | $breadcrumb-link-color: $aqua-dark !default; | ||
5 | $breadcrumb-background-color: $lightgray-dark !default; | ||
6 | |||
7 | $breadcrumb-arrow-radius: 4px !default; | ||
8 | $breadcrumb-arrow-font-color: $white !default; | ||
9 | $breadcrumb-arrow-background-color: $aqua-dark !default; | ||
10 | $breadcrumb-arrow-background-color-hover: $aqua-light !default; | ||
11 | |||
12 | // Exports | ||
13 | //------------------------------------------------------ | ||
14 | @include exports("breadcrumb") { | ||
15 | |||
16 | /** | ||
17 | * breadcrumb | ||
18 | * -------------------------------------------------- | ||
19 | */ | ||
20 | .breadcrumb { | ||
21 | color: $breadcrumb-font-color; | ||
22 | background-color: $breadcrumb-background-color; | ||
23 | & > .active { | ||
24 | color: $breadcrumb-font-color; | ||
25 | } | ||
26 | & a { | ||
27 | color: $breadcrumb-link-color; | ||
28 | } | ||
29 | } | ||
30 | |||
31 | .breadcrumb-arrow { | ||
32 | padding: 0; | ||
33 | list-style: none; | ||
34 | background-color: $breadcrumb-background-color; | ||
35 | height: 36px; | ||
36 | line-height: 36px; | ||
37 | |||
38 | & li:first-child a { | ||
39 | @include radius($type: border-radius, $value: $breadcrumb-arrow-radius 0 0 $breadcrumb-arrow-radius); | ||
40 | } | ||
41 | & li, | ||
42 | & li a, | ||
43 | & li span{ | ||
44 | display: inline-block; | ||
45 | vertical-align: top; | ||
46 | } | ||
47 | & li:not(:first-child) { | ||
48 | margin-left: -5px; | ||
49 | } | ||
50 | & li + li:before { | ||
51 | padding: 0; | ||
52 | content: ""; | ||
53 | } | ||
54 | & li span { | ||
55 | padding: 0 10px; | ||
56 | } | ||
57 | & li a, | ||
58 | & li:not(:first-child) span { | ||
59 | padding: 0 10px 0 25px; | ||
60 | height: 35px; | ||
61 | line-height: 35px; | ||
62 | } | ||
63 | & li:first-child a { | ||
64 | padding: 0 10px; | ||
65 | } | ||
66 | & li a { | ||
67 | position: relative; | ||
68 | border: 1px solid $breadcrumb-arrow-background-color; | ||
69 | color: $breadcrumb-arrow-font-color; | ||
70 | background-color: $breadcrumb-arrow-background-color; | ||
71 | text-decoration: none; | ||
72 | } | ||
73 | & li:first-child a { | ||
74 | padding-left: 10px; | ||
75 | } | ||
76 | & li a:before, | ||
77 | & li a:after { | ||
78 | position: absolute; | ||
79 | top: 0; | ||
80 | content: ''; | ||
81 | width: 0; | ||
82 | height: 0; | ||
83 | border-top: 17px solid transparent; | ||
84 | border-bottom: 17px solid transparent; | ||
85 | } | ||
86 | & li a:before { | ||
87 | right: -10px; | ||
88 | border-left-width: 10px; | ||
89 | border-left-style: solid; | ||
90 | border-left-color: $breadcrumb-arrow-background-color; | ||
91 | z-index: 3; | ||
92 | } | ||
93 | & li a:after{ | ||
94 | right: -11px; | ||
95 | border-left: 10px solid darken($breadcrumb-arrow-background-color, 10%); | ||
96 | z-index: 2; | ||
97 | } | ||
98 | & li a:hover, | ||
99 | & li a:focus { | ||
100 | background-color: $breadcrumb-arrow-background-color-hover; | ||
101 | border: 1px solid $breadcrumb-arrow-background-color-hover; | ||
102 | } | ||
103 | & li a:hover:before, | ||
104 | & li a:focus:before { | ||
105 | border-left-color: $breadcrumb-arrow-background-color-hover; | ||
106 | } | ||
107 | & li a:active { | ||
108 | background-color: darken($breadcrumb-arrow-background-color, 10%); | ||
109 | border: 1px solid darken($breadcrumb-arrow-background-color, 10%); | ||
110 | } | ||
111 | & li a:active:before, | ||
112 | & li a:active:after { | ||
113 | border-left-color: darken($breadcrumb-arrow-background-color, 10%); | ||
114 | } | ||
115 | & li span { | ||
116 | color: $breadcrumb-font-color; | ||
117 | } | ||
118 | } | ||
119 | } | ||
120 | |||
121 |
bootflat/scss/bootflat/_button.scss
0 → 100644
1 | // Variables | ||
2 | //------------------------------------------------------ | ||
3 | $button-normal: $mediumgray-dark !default; | ||
4 | $button-default: $white !default; | ||
5 | $button-primary: $aqua-dark !default; | ||
6 | $button-success: $grass-dark !default; | ||
7 | $button-danger: $grapefruit-dark !default; | ||
8 | $button-warning: $sunflower-dark !default; | ||
9 | $button-info: $mint-dark !default; | ||
10 | |||
11 | $button-normal-hover: $mediumgray-light !default; | ||
12 | $button-default-hover: $button-default !default; | ||
13 | $button-primary-hover: $aqua-light !default; | ||
14 | $button-success-hover: $grass-light !default; | ||
15 | $button-danger-hover: $grapefruit-light !default; | ||
16 | $button-warning-hover: $sunflower-light !default; | ||
17 | $button-info-hover: $mint-light !default; | ||
18 | |||
19 | $button-font-color-dark: $darkgray-dark !default; | ||
20 | $button-font-color-light: $white !default; | ||
21 | |||
22 | $button-opacity: 45 !default; | ||
23 | $button-shaodw: inset 0 1px 2px rgba(0, 0, 0, .125) !default; | ||
24 | |||
25 | // Exports | ||
26 | //------------------------------------------------------ | ||
27 | |||
28 | @include exports("button") { | ||
29 | |||
30 | /** | ||
31 | * button | ||
32 | * -------------------------------------------------- | ||
33 | */ | ||
34 | .btn { | ||
35 | color: $button-font-color-light; | ||
36 | |||
37 | &, | ||
38 | &.disabled, | ||
39 | &[disabled] { | ||
40 | border-color: $button-normal; | ||
41 | background-color: $button-normal; | ||
42 | } | ||
43 | &:hover, | ||
44 | &:focus, | ||
45 | &:active, | ||
46 | &.active { | ||
47 | color: $button-font-color-light; | ||
48 | border-color: $button-normal-hover; | ||
49 | background-color: $button-normal-hover; | ||
50 | outline: none !important; | ||
51 | } | ||
52 | &:active, | ||
53 | &.active { | ||
54 | @include box-shadow($value: $button-shaodw); | ||
55 | } | ||
56 | &.disabled, | ||
57 | &[disabled] { | ||
58 | @include opacity($opacity: $button-opacity, $filter: true); | ||
59 | } | ||
60 | |||
61 | @at-root #{&}-link { | ||
62 | &, | ||
63 | &:hover, | ||
64 | &:focus, | ||
65 | &:active, | ||
66 | &.active, | ||
67 | &.disabled, | ||
68 | &[disabled] { | ||
69 | border-color: transparent; | ||
70 | background-color: transparent; | ||
71 | color: $button-primary; | ||
72 | @include box-shadow($value: none); | ||
73 | } | ||
74 | &:hover, | ||
75 | &:focus { | ||
76 | text-decoration: underline; | ||
77 | } | ||
78 | } | ||
79 | |||
80 | @at-root #{&}-default { | ||
81 | color: $button-font-color-dark; | ||
82 | border-color: $button-normal !important; | ||
83 | |||
84 | &:hover, | ||
85 | &:focus, | ||
86 | &:active, | ||
87 | &.active { | ||
88 | border-color: $button-normal-hover; | ||
89 | background-color: $button-normal-hover; | ||
90 | } | ||
91 | &, | ||
92 | &.disabled, | ||
93 | &[disabled] { | ||
94 | background-color: $button-default; | ||
95 | } | ||
96 | } | ||
97 | @at-root .open .dropdown-toggle#{&}-default { | ||
98 | border-color: $button-normal-hover; | ||
99 | background-color: $button-normal-hover; | ||
100 | } | ||
101 | |||
102 | @at-root #{&}-primary { | ||
103 | &, | ||
104 | &:active, | ||
105 | &.active, | ||
106 | &.disabled, | ||
107 | &[disabled] { | ||
108 | border-color: $button-primary; | ||
109 | background-color: $button-primary; | ||
110 | } | ||
111 | &:hover, | ||
112 | &:focus { | ||
113 | border-color: $button-primary-hover; | ||
114 | background-color: $button-primary-hover; | ||
115 | } | ||
116 | } | ||
117 | @at-root .open .dropdown-toggle#{&}-primary { | ||
118 | border-color: $button-primary-hover; | ||
119 | background-color: $button-primary-hover; | ||
120 | } | ||
121 | |||
122 | @at-root #{&}-info { | ||
123 | &, | ||
124 | &:active, | ||
125 | &.active, | ||
126 | &.disabled, | ||
127 | &[disabled] { | ||
128 | border-color: $button-info; | ||
129 | background-color: $button-info; | ||
130 | } | ||
131 | &:hover, | ||
132 | &:focus { | ||
133 | border-color: $button-info-hover; | ||
134 | background-color: $button-info-hover; | ||
135 | } | ||
136 | } | ||
137 | @at-root .open .dropdown-toggle#{&}-info { | ||
138 | border-color: $button-info-hover; | ||
139 | background-color: $button-info-hover; | ||
140 | } | ||
141 | |||
142 | @at-root #{&}-success { | ||
143 | &, | ||
144 | &:active, | ||
145 | &.active, | ||
146 | &.disabled, | ||
147 | &[disabled] { | ||
148 | border-color: $button-success; | ||
149 | background-color: $button-success; | ||
150 | } | ||
151 | &:hover, | ||
152 | &:focus { | ||
153 | border-color: $button-success-hover; | ||
154 | background-color: $button-success-hover; | ||
155 | } | ||
156 | } | ||
157 | @at-root .open .dropdown-toggle#{&}-success { | ||
158 | border-color: $button-success-hover; | ||
159 | background-color: $button-success-hover; | ||
160 | } | ||
161 | |||
162 | @at-root #{&}-warning { | ||
163 | &, | ||
164 | &:active, | ||
165 | &.active, | ||
166 | &.disabled, | ||
167 | &[disabled] { | ||
168 | border-color: $button-warning; | ||
169 | background-color: $button-warning; | ||
170 | } | ||
171 | &:hover, | ||
172 | &:focus { | ||
173 | border-color: $button-warning-hover; | ||
174 | background-color: $button-warning-hover; | ||
175 | } | ||
176 | } | ||
177 | @at-root .open .dropdown-toggle#{&}-warning { | ||
178 | border-color: $button-warning-hover; | ||
179 | background-color: $button-warning-hover; | ||
180 | } | ||
181 | |||
182 | @at-root #{&}-danger { | ||
183 | &, | ||
184 | &:active, | ||
185 | &.active, | ||
186 | &.disabled, | ||
187 | &[disabled], | ||
188 | .open .dropdown-toggle#{&} { | ||
189 | border-color: $button-danger; | ||
190 | background-color: $button-danger; | ||
191 | } | ||
192 | &:hover, | ||
193 | &:focus { | ||
194 | border-color: $button-danger-hover; | ||
195 | background-color: $button-danger-hover; | ||
196 | } | ||
197 | } | ||
198 | @at-root .open .dropdown-toggle#{&}-danger { | ||
199 | border-color: $button-danger-hover; | ||
200 | background-color: $button-danger-hover; | ||
201 | } | ||
202 | } | ||
203 | } | ||
204 | |||
205 |
bootflat/scss/bootflat/_button_group.scss
0 → 100644
1 | // Exports | ||
2 | //------------------------------------------------------ | ||
3 | |||
4 | @include exports("button-group") { | ||
5 | |||
6 | /** | ||
7 | * button-group | ||
8 | * -------------------------------------------------- | ||
9 | */ | ||
10 | .btn-group { | ||
11 | @at-root #{&}.open .dropdown-toggle { | ||
12 | @include box-shadow($value: inset 0 1px 2px rgba(0, 0, 0, .125)); | ||
13 | } | ||
14 | |||
15 | & .btn { | ||
16 | border-left-color: darken($button-normal, 7%); | ||
17 | } | ||
18 | |||
19 | @at-root #{&}.open .btn-default.dropdown-toggle, | ||
20 | & .btn-default:focus, | ||
21 | & .btn-default:active, | ||
22 | & .btn-default.active { | ||
23 | color: $button-default; | ||
24 | } | ||
25 | |||
26 | & .btn-primary, | ||
27 | & .btn-primary:focus, | ||
28 | & .btn-primary:active, | ||
29 | & .btn-primary.active { | ||
30 | border-left-color: darken($button-primary, 7%); | ||
31 | } | ||
32 | |||
33 | & .btn-success, | ||
34 | & .btn-success:focus, | ||
35 | & .btn-success:active, | ||
36 | & .btn-success.active { | ||
37 | border-left-color: darken($button-success, 7%); | ||
38 | } | ||
39 | |||
40 | & .btn-warning, | ||
41 | & .btn-warning:focus, | ||
42 | & .btn-warning:active, | ||
43 | & .btn-warning.active { | ||
44 | border-left-color: darken($button-warning, 12%); | ||
45 | } | ||
46 | |||
47 | & .btn-danger, | ||
48 | & .btn-danger:focus, | ||
49 | & .btn-danger:active, | ||
50 | & .btn-danger.active { | ||
51 | border-left-color: darken($button-danger, 7%); | ||
52 | } | ||
53 | |||
54 | & .btn-info, | ||
55 | & .btn-info:focus, | ||
56 | & .btn-info:active, | ||
57 | & .btn-info.active { | ||
58 | border-left-color: darken($button-info, 7%); | ||
59 | } | ||
60 | |||
61 | & .btn:first-child, | ||
62 | & .btn-primary:first-child, | ||
63 | & .btn-success:first-child, | ||
64 | & .btn-warning:first-child, | ||
65 | & .btn-danger:first-child, | ||
66 | & .btn-info:first-child { | ||
67 | border-left-color: transparent; | ||
68 | } | ||
69 | } | ||
70 | |||
71 | .btn-group-vertical { | ||
72 | & .btn, | ||
73 | & .btn-group .btn-primary { | ||
74 | border-top-color: darken($button-normal, 7%) !important; | ||
75 | } | ||
76 | |||
77 | & .btn-primary, | ||
78 | & .btn-primary:focus, | ||
79 | & .btn-primary:active, | ||
80 | & .btn-primary.active, | ||
81 | & .btn-group .btn-primary { | ||
82 | border-top-color: darken($button-primary, 7%) !important; | ||
83 | } | ||
84 | |||
85 | & .btn-success, | ||
86 | & .btn-success:focus, | ||
87 | & .btn-success:active, | ||
88 | & .btn-success.active, | ||
89 | & .btn-group .btn-success { | ||
90 | border-top-color: darken($button-success, 7%) !important; | ||
91 | } | ||
92 | |||
93 | & .btn-warning, | ||
94 | & .btn-warning:focus, | ||
95 | & .btn-warning:active, | ||
96 | & .btn-warning.active, | ||
97 | & .btn-group .btn-warning { | ||
98 | border-top-color: darken($button-warning, 12%) !important; | ||
99 | } | ||
100 | |||
101 | & .btn-danger, | ||
102 | & .btn-danger:focus, | ||
103 | & .btn-danger:active, | ||
104 | & .btn-danger.active, | ||
105 | & .btn-group .btn-danger { | ||
106 | border-top-color: darken($button-danger, 7%) !important; | ||
107 | } | ||
108 | |||
109 | & .btn-info, | ||
110 | & .btn-info:focus, | ||
111 | & .btn-info:active, | ||
112 | & .btn-info.active, | ||
113 | & .btn-group .btn-info { | ||
114 | border-top-color: darken($button-info, 7%) !important; | ||
115 | } | ||
116 | |||
117 | & .btn:not(.btn-default):first-child, | ||
118 | & .btn-primary:first-child, | ||
119 | & .btn-success:first-child, | ||
120 | & .btn-warning:first-child, | ||
121 | & .btn-danger:first-child, | ||
122 | & .btn-info:first-child { | ||
123 | border-top: none; | ||
124 | } | ||
125 | } | ||
126 | |||
127 | } | ||
128 | |||
129 | |||
130 | |||
131 | |||
132 | |||
133 |
bootflat/scss/bootflat/_checkbox_radio.scss
0 → 100644
1 | // Variables | ||
2 | //------------------------------------------------------ | ||
3 | $img-src: "../bootflat/img/check_flat/default.png" !default; | ||
4 | |||
5 | // Exports | ||
6 | //------------------------------------------------------ | ||
7 | |||
8 | @include exports("checkbox-radio") { | ||
9 | |||
10 | /** | ||
11 | * checkbox and radio | ||
12 | * -------------------------------------------------- | ||
13 | */ | ||
14 | .checkbox, .radio { | ||
15 | margin-top: 0; | ||
16 | padding-left: 0; | ||
17 | } | ||
18 | .icheckbox_flat, | ||
19 | .iradio_flat { | ||
20 | display: inline-block; | ||
21 | *display: inline; | ||
22 | vertical-align: middle; | ||
23 | margin: 0; | ||
24 | padding: 0 !important; | ||
25 | width: 20px; | ||
26 | height: 20px; | ||
27 | background: url($img-src) no-repeat; | ||
28 | border: none; | ||
29 | cursor: pointer; | ||
30 | } | ||
31 | |||
32 | .icheckbox_flat { | ||
33 | background-position: 0 0; | ||
34 | |||
35 | &.checked { | ||
36 | background-position: -22px 0; | ||
37 | } | ||
38 | &.disabled { | ||
39 | background-position: -44px 0; | ||
40 | cursor: default; | ||
41 | } | ||
42 | &.checked.disabled { | ||
43 | background-position: -66px 0; | ||
44 | } | ||
45 | } | ||
46 | |||
47 | .iradio_flat { | ||
48 | background-position: -88px 0; | ||
49 | |||
50 | &.checked { | ||
51 | background-position: -110px 0; | ||
52 | } | ||
53 | &.disabled { | ||
54 | background-position: -132px 0; | ||
55 | cursor: default; | ||
56 | } | ||
57 | &.checked.disabled { | ||
58 | background-position: -154px 0; | ||
59 | } | ||
60 | } | ||
61 | |||
62 | } |
bootflat/scss/bootflat/_dropdown.scss
0 → 100644
1 | // Variables | ||
2 | //------------------------------------------------------ | ||
3 | $dropdown-background-color: $darkgray-dark !default; | ||
4 | $dropdown-background-color-hover: $darkgray-light !default; | ||
5 | |||
6 | $dropdown-normal: $mediumgray-dark !default; | ||
7 | $dropdown-default: $white !default; | ||
8 | |||
9 | $dropdown-padding: 5px 20px !default; | ||
10 | |||
11 | $dropdown-radius: 4px !default; | ||
12 | |||
13 | $dropdown-font-size: 14px !default; | ||
14 | $dropdown-font-color-dark: $darkgray-dark !default; | ||
15 | $dropdown-font-color-light: $white !default; | ||
16 | $dropdown-font-weight: 700 !default; | ||
17 | |||
18 | // Exports | ||
19 | //------------------------------------------------------ | ||
20 | |||
21 | @include exports("dropdown") { | ||
22 | |||
23 | /** | ||
24 | * dropdown-menu | ||
25 | * -------------------------------------------------- | ||
26 | */ | ||
27 | .dropdown-menu { | ||
28 | border: none; | ||
29 | background-color: $dropdown-background-color; | ||
30 | |||
31 | & .dropdown-header { | ||
32 | padding: $dropdown-padding; | ||
33 | font-size: $dropdown-font-size; | ||
34 | font-weight: $dropdown-font-weight; | ||
35 | color: $dropdown-normal; | ||
36 | } | ||
37 | |||
38 | & li a { | ||
39 | padding: $dropdown-padding; | ||
40 | color: $dropdown-font-color-light; | ||
41 | } | ||
42 | & li a:hover, | ||
43 | & li a:focus, | ||
44 | & .active a, | ||
45 | & .active a:hover, | ||
46 | & .active a:focus{ | ||
47 | color: $dropdown-font-color-light; | ||
48 | background-color: $dropdown-background-color-hover; | ||
49 | outline: none; | ||
50 | } | ||
51 | & .disabled a, | ||
52 | & .disabled a:hover, | ||
53 | & .disabled a:focus { | ||
54 | color: $dropdown-background-color-hover; | ||
55 | cursor: default; | ||
56 | } | ||
57 | & .divider { | ||
58 | background-color: $dropdown-background-color-hover; | ||
59 | border-bottom: none; | ||
60 | } | ||
61 | |||
62 | @at-root .dropup & { | ||
63 | margin-bottom: 0; | ||
64 | @include radius($type: border-radius, $value: $dropdown-radius $dropdown-radius 0 0); | ||
65 | } | ||
66 | } | ||
67 | /** | ||
68 | * dropdown-submenu | ||
69 | * -------------------------------------------------- | ||
70 | */ | ||
71 | .dropdown-submenu { | ||
72 | position: relative; | ||
73 | |||
74 | & .dropdown-menu { | ||
75 | top: 0; | ||
76 | left: 100%; | ||
77 | margin-top: -6px; | ||
78 | margin-left: -1px; | ||
79 | @include radius($type: border-radius, $value: 0 4px 4px 4px); | ||
80 | } | ||
81 | &:hover .dropdown-menu { | ||
82 | display: block; | ||
83 | } | ||
84 | .dropup & .dropdown-menu { | ||
85 | top: auto; | ||
86 | bottom: 0; | ||
87 | margin-top: 0; | ||
88 | margin-bottom: -2px; | ||
89 | @include radius($type: border-radius, $value: 4px 4px 4px 0); | ||
90 | } | ||
91 | & > a:after { | ||
92 | display: block; | ||
93 | content: " "; | ||
94 | float: right; | ||
95 | width: 0; | ||
96 | height: 0; | ||
97 | border-color: transparent; | ||
98 | border-style: solid; | ||
99 | border-width: 5px 0 5px 5px; | ||
100 | border-left-color: $dropdown-default; | ||
101 | margin-top: 5px; | ||
102 | margin-right: -10px; | ||
103 | } | ||
104 | @at-root .dropdown-default & > a:after { | ||
105 | border-left-color: $dropdown-font-color-dark; | ||
106 | } | ||
107 | &:hover a:after { | ||
108 | border-left-color: $dropdown-default; | ||
109 | } | ||
110 | &.pull-left { | ||
111 | float: none; | ||
112 | } | ||
113 | &.pull-left .dropdown-menu { | ||
114 | left: -100%; | ||
115 | margin-left: 10px; | ||
116 | @include radius($type: border-radius, $value: 4px 0 4px 4px); | ||
117 | } | ||
118 | } | ||
119 | |||
120 | } | ||
121 | |||
122 |
bootflat/scss/bootflat/_footer.scss
0 → 100644
1 | // Variables | ||
2 | //------------------------------------------------------ | ||
3 | $footer-background-color: $darkgray-dark !default; | ||
4 | $footer-menu-title-color: $lightgray-dark !default; | ||
5 | $footer-menu-item-color: $mediumgray-dark !default; | ||
6 | $footer-menu-item-color-hover: $mediumgray-light !default; | ||
7 | $footer-logo-color: $white !default; | ||
8 | |||
9 | |||
10 | |||
11 | // Exports | ||
12 | //------------------------------------------------------ | ||
13 | |||
14 | @include exports("footer") { | ||
15 | |||
16 | /** | ||
17 | * footer | ||
18 | * -------------------------------------------------- | ||
19 | */ | ||
20 | |||
21 | .footer { | ||
22 | padding: 40px 0; | ||
23 | background-color: $footer-background-color; | ||
24 | |||
25 | #{&}-logo, | ||
26 | #{&}-nav { | ||
27 | float: left; | ||
28 | padding: 0 20px; | ||
29 | width: 20%; | ||
30 | } | ||
31 | #{&}-logo { | ||
32 | margin-top: -5px; | ||
33 | height: 32px; | ||
34 | line-height: 32px; | ||
35 | |||
36 | & img { | ||
37 | margin-right: 10px; | ||
38 | } | ||
39 | & a { | ||
40 | font-size: 20px; | ||
41 | font-weight: bold; | ||
42 | color: $footer-logo-color; | ||
43 | } | ||
44 | & a:hover, | ||
45 | & a:active { | ||
46 | text-decoration: none; | ||
47 | } | ||
48 | } | ||
49 | #{&}-nav .nav-title { | ||
50 | margin-bottom: 15px; | ||
51 | color: $footer-menu-title-color; | ||
52 | } | ||
53 | #{&}-nav .nav-item { | ||
54 | line-height: 28px; | ||
55 | & > a { | ||
56 | color: $footer-menu-item-color; | ||
57 | } | ||
58 | & > a:hover, | ||
59 | & > a:active { | ||
60 | color: $footer-menu-item-color-hover; | ||
61 | text-decoration: none; | ||
62 | } | ||
63 | } | ||
64 | #{&}-copyright { | ||
65 | color: $footer-menu-item-color; | ||
66 | } | ||
67 | } | ||
68 | |||
69 | } | ||
70 | |||
71 |
bootflat/scss/bootflat/_form.scss
0 → 100644
1 | // Variables | ||
2 | //------------------------------------------------------ | ||
3 | $form-normal: $mediumgray-dark !default; | ||
4 | $form-default: $white !default; | ||
5 | $form-primary: $aqua-dark !default; | ||
6 | $form-success: $grass-dark !default; | ||
7 | $form-danger: $grapefruit-dark !default; | ||
8 | $form-warning: $sunflower-dark !default; | ||
9 | $form-info: $mint-dark !default; | ||
10 | |||
11 | $message-success: $grass-dark !default; | ||
12 | $message-danger: $grapefruit-dark !default; | ||
13 | $message-warning: $sunflower-dark !default; | ||
14 | |||
15 | $form-font-color: $darkgray-dark !default; | ||
16 | $form-placeholder-font-color: $lightgray-dark !default; | ||
17 | |||
18 | $form-disabled-color: $lightgray-dark !default; | ||
19 | |||
20 | $search-query-value: 17px !default; | ||
21 | |||
22 | $search-icon-width: 30px !default; | ||
23 | $search-icon-line-height: 30px !default; | ||
24 | |||
25 | // Exports | ||
26 | //------------------------------------------------------ | ||
27 | |||
28 | @include exports("form") { | ||
29 | |||
30 | /** | ||
31 | * form | ||
32 | * -------------------------------------------------- | ||
33 | */ | ||
34 | .form-control { | ||
35 | color: $form-font-color; | ||
36 | border-color: $form-normal; | ||
37 | |||
38 | &, | ||
39 | &:focus { | ||
40 | @include box-shadow($value: none); | ||
41 | } | ||
42 | &:focus { | ||
43 | border-color: $form-primary; | ||
44 | } | ||
45 | &::-moz-placeholder, | ||
46 | &:-ms-input-placeholder, | ||
47 | &::-webkit-input-placeholder { | ||
48 | color: $form-placeholder-font-color; | ||
49 | } | ||
50 | |||
51 | &.disabled, | ||
52 | &[disabled] { | ||
53 | border-color: $form-disabled-color; | ||
54 | background-color: $form-disabled-color; | ||
55 | } | ||
56 | } | ||
57 | |||
58 | .input-group-btn { | ||
59 | & .btn + .btn { | ||
60 | border-width: 1px; | ||
61 | border-style: solid; | ||
62 | border-color: darken($form-normal, 7%); | ||
63 | } | ||
64 | & .btn + .btn.btn-default { | ||
65 | border-color: darken($form-default, 7%); | ||
66 | } | ||
67 | & .btn + .btn.btn-primary { | ||
68 | border-color: darken($form-primary, 7%); | ||
69 | } | ||
70 | & .btn + .btn.btn-info { | ||
71 | border-color: darken($form-info, 7%); | ||
72 | } | ||
73 | & .btn + .btn.btn-success { | ||
74 | border-color: darken($form-success, 7%); | ||
75 | } | ||
76 | & .btn + .btn.btn-warning { | ||
77 | border-color: darken($form-warning, 7%); | ||
78 | } | ||
79 | & .btn + .btn.btn-danger { | ||
80 | border-color: darken($form-danger, 7%); | ||
81 | } | ||
82 | } | ||
83 | |||
84 | .input-group-addon { | ||
85 | background-color: $form-normal; | ||
86 | border-color: darken($form-normal, 7%); | ||
87 | color: $form-default; | ||
88 | |||
89 | & .radio, | ||
90 | & .checkbox { | ||
91 | margin: -3px 0 -4px !important; | ||
92 | } | ||
93 | } | ||
94 | |||
95 | .form-search { | ||
96 | & .search-query, | ||
97 | & .search-query:first-child, | ||
98 | & .search-query:last-child { | ||
99 | padding: 0 $search-query-value; | ||
100 | @include radius($type: border-radius, $value: $search-query-value); | ||
101 | } | ||
102 | @at-root .input-group .form-control:last-child { | ||
103 | // padding: 0 $search-query-value 0 10px; | ||
104 | @include radius($type: border-top-left-radius, $value: 0); | ||
105 | @include radius($type: border-bottom-left-radius, $value: 0); | ||
106 | } | ||
107 | @at-root .input-group .form-control:first-child { | ||
108 | @include radius($type: border-top-right-radius, $value: 0); | ||
109 | @include radius($type: border-bottom-right-radius, $value: 0); | ||
110 | } | ||
111 | & .btn { | ||
112 | @include radius($type: border-radius, $value: $search-query-value); | ||
113 | } | ||
114 | } | ||
115 | |||
116 | .search-only { | ||
117 | position: relative; | ||
118 | & .search-icon { | ||
119 | position: absolute; | ||
120 | top: 2px; | ||
121 | left: $search-query-value / 2; | ||
122 | width: $search-icon-width; | ||
123 | line-height: $search-icon-line-height; | ||
124 | text-align: center; | ||
125 | font-size: $search-query-value; | ||
126 | color: $form-placeholder-font-color; | ||
127 | z-index: 20; | ||
128 | } | ||
129 | & .form-control:last-child { | ||
130 | padding-left: $search-icon-width + 10; | ||
131 | } | ||
132 | } | ||
133 | |||
134 | .has-success { | ||
135 | & .help-block, | ||
136 | & .control-label, | ||
137 | & .radio, | ||
138 | & .checkbox, | ||
139 | & .radio-inline, | ||
140 | & .checkbox-inline { | ||
141 | color: $message-success; | ||
142 | } | ||
143 | & .form-control { | ||
144 | border-color: $message-success; | ||
145 | @include box-shadow($value: none); | ||
146 | } | ||
147 | & .form-control:focus { | ||
148 | border-color: $message-success; | ||
149 | @include box-shadow($value: none); | ||
150 | } | ||
151 | & .input-group-addon { | ||
152 | background-color: $message-success; | ||
153 | border-color: $message-success; | ||
154 | } | ||
155 | & .form-control-feedback { | ||
156 | color: $message-success; | ||
157 | } | ||
158 | } | ||
159 | .has-warning { | ||
160 | & .help-block, | ||
161 | & .control-label, | ||
162 | & .radio, | ||
163 | & .checkbox, | ||
164 | & .radio-inline, | ||
165 | & .checkbox-inline { | ||
166 | color: $message-warning; | ||
167 | } | ||
168 | & .form-control { | ||
169 | border-color: $message-warning; | ||
170 | @include box-shadow($value: none); | ||
171 | } | ||
172 | & .form-control:focus { | ||
173 | border-color: $message-warning; | ||
174 | @include box-shadow($value: none); | ||
175 | } | ||
176 | & .input-group-addon { | ||
177 | background-color: $message-warning; | ||
178 | border-color: $message-warning; | ||
179 | } | ||
180 | & .form-control-feedback { | ||
181 | color: $message-warning; | ||
182 | } | ||
183 | } | ||
184 | .has-error { | ||
185 | & .help-block, | ||
186 | & .control-label, | ||
187 | & .radio, | ||
188 | & .checkbox, | ||
189 | & .radio-inline, | ||
190 | & .checkbox-inline { | ||
191 | color: $message-danger; | ||
192 | } | ||
193 | & .form-control { | ||
194 | border-color: $message-danger; | ||
195 | @include box-shadow($value: none); | ||
196 | } | ||
197 | & .form-control:focus { | ||
198 | border-color: $message-danger; | ||
199 | @include box-shadow($value: none); | ||
200 | } | ||
201 | & .input-group-addon { | ||
202 | background-color: $message-danger; | ||
203 | border-color: $message-danger; | ||
204 | } | ||
205 | & .form-control-feedback { | ||
206 | color: $message-danger; | ||
207 | } | ||
208 | } | ||
209 | |||
210 | } | ||
211 | |||
212 |
bootflat/scss/bootflat/_global.scss
0 → 100644
1 | // Global Variables | ||
2 | //------------------------------------------------------ | ||
3 | $modules: () !global; | ||
4 | |||
5 | $experimental: true !default; | ||
6 | |||
7 | // prefix elements | ||
8 | $prefix-webkit: true !global; | ||
9 | $prefix-moz: true !global; | ||
10 | $prefix-spec: true !global; | ||
11 | |||
12 | // color elements | ||
13 | $white: #FFF !default; | ||
14 | $black: #000 !default; | ||
15 | |||
16 | $bluejeans-dark: #4A89DC !default; | ||
17 | $bluejeans-light: #5D9CEC !default; | ||
18 | |||
19 | $aqua-dark: #3BAFDA !default; | ||
20 | $aqua-light: #4FC1E9 !default; | ||
21 | |||
22 | $mint-dark: #37BC9B !default; | ||
23 | $mint-light: #48CFAD !default; | ||
24 | |||
25 | $grass-dark: #8CC152 !default; | ||
26 | $grass-light: #A0D468 !default; | ||
27 | |||
28 | $sunflower-dark: #F6BB42 !default; | ||
29 | $sunflower-light: #FFCE54 !default; | ||
30 | |||
31 | $bittersweet-dark: #E9573F !default; | ||
32 | $bittersweet-light: #FC6E51 !default; | ||
33 | |||
34 | $grapefruit-dark: #DA4453 !default; | ||
35 | $grapefruit-light: #ED5565 !default; | ||
36 | |||
37 | $lavander-dark: #967ADC !default; | ||
38 | $lavander-light: #AC92EC !default; | ||
39 | |||
40 | $pinkrose-dark: #D770AD !default; | ||
41 | $pinkrose-light: #EC87C0 !default; | ||
42 | |||
43 | $lightgray-dark: #E6E9ED !default; | ||
44 | $lightgray-light: #F5F7FA !default; | ||
45 | |||
46 | $mediumgray-dark: #AAB2BD !default; | ||
47 | $mediumgray-light: #CCD1D9 !default; | ||
48 | |||
49 | $darkgray-dark: #434A54 !default; | ||
50 | $darkgray-light: #656D78 !default; | ||
51 | |||
52 | // Global Mixins | ||
53 | //------------------------------------------------------ | ||
54 | |||
55 | // We use this to loading scss files | ||
56 | @mixin exports($name) { | ||
57 | @if (index($modules, $name) == false) { | ||
58 | $modules: append($modules, $name); | ||
59 | @content; | ||
60 | } | ||
61 | } | ||
62 | |||
63 | // We use this to do set opacity | ||
64 | @mixin opacity($opacity:50, $filter: true) { | ||
65 | opacity: $opacity / 100; | ||
66 | @if $filter { | ||
67 | filter: alpha(opacity=$opacity); | ||
68 | } | ||
69 | } | ||
70 | |||
71 | // We use this to ellipsis text | ||
72 | @mixin ellipsis($width: 100%) { | ||
73 | display: inline-block; | ||
74 | max-width: $width; | ||
75 | overflow: hidden; | ||
76 | text-overflow: ellipsis; | ||
77 | white-space: nowrap; | ||
78 | } | ||
79 | |||
80 | // We use this to add across browser prefixes | ||
81 | @mixin prefixer($property, $value, $prefixes: webkit moz spec) { | ||
82 | @if $experimental { | ||
83 | @each $prefix in $prefixes { | ||
84 | @if $prefix != spec { | ||
85 | @if $property == border-top-left-radius and $prefix == moz { | ||
86 | @if $prefix-moz { | ||
87 | -moz-border-radius-topleft: $value; | ||
88 | } | ||
89 | } @else if $property == border-top-right-radius and $prefix == moz { | ||
90 | @if $prefix-moz { | ||
91 | -moz-border-radius-topright: $value; | ||
92 | } | ||
93 | } @else if $property == border-bottom-right-radius and $prefix == moz { | ||
94 | @if $prefix-moz { | ||
95 | -moz-border-radius-bottomright: $value; | ||
96 | } | ||
97 | } @else if $property == border-bottom-left-radius and $prefix == moz { | ||
98 | @if $prefix-moz { | ||
99 | -moz-border-radius-bottomleft: $value; | ||
100 | } | ||
101 | } @else { | ||
102 | @if $prefix == webkit { | ||
103 | @if $prefix-webkit { | ||
104 | -webkit-#{$property}: $value; | ||
105 | } | ||
106 | } | ||
107 | @if $prefix == moz { | ||
108 | @if $prefix-moz { | ||
109 | -moz-#{$property}: $value; | ||
110 | } | ||
111 | } | ||
112 | } | ||
113 | } @else { | ||
114 | @if $prefix-spec { | ||
115 | #{$property}: $value; | ||
116 | } | ||
117 | } | ||
118 | } | ||
119 | } | ||
120 | } | ||
121 | |||
122 | // We use this to add box-sizing across browser prefixes | ||
123 | @mixin box-sizing($value: border-box) { | ||
124 | @include prefixer($property: box-sizing, $value: $value, $prefixes: webkit moz spec); | ||
125 | } | ||
126 | |||
127 | // We use this to control border radius. | ||
128 | @mixin radius($type: border-radius, $value: $global-radius) { | ||
129 | @include prefixer($property: $type, $value: $value, $prefixes: webkit moz spec); | ||
130 | } | ||
131 | |||
132 | // We use this to control box shadow. | ||
133 | @mixin box-shadow($value) { | ||
134 | @include prefixer($property: box-shadow, $value: $value, $prefixes: webkit moz spec); | ||
135 | } | ||
136 | // We use this to creat animation effect. | ||
137 | // Examples: | ||
138 | // @include keyframes(move-the-object) { | ||
139 | // 0% { left: 100px; } | ||
140 | // 100% { left: 200px; } | ||
141 | // } | ||
142 | // .object-to-animate { | ||
143 | // @include animation(move-the-object .5s 1); | ||
144 | // } | ||
145 | @mixin animation ($value...) { | ||
146 | @include prefixer($property: animation, $value: $value, $prefixes: webkit moz spec); | ||
147 | } | ||
148 | // Individual Animation Properties | ||
149 | @mixin animation-name ($value...) { | ||
150 | @include prefixer($property: animation-name, $value: $value, $prefixes: webkit moz spec); | ||
151 | } | ||
152 | @mixin animation-duration ($value...) { | ||
153 | @include prefixer($property: animation-duration, $value: $value, $prefixes: webkit moz spec); | ||
154 | } | ||
155 | @mixin animation-timing-function ($value...) { | ||
156 | // ease | linear | ease-in | ease-out | ease-in-out | ||
157 | @include prefixer($property: animation-timing-function, $value: $value, $prefixes: webkit moz spec); | ||
158 | } | ||
159 | @mixin animation-iteration-count ($value...) { | ||
160 | // infinite | <number> | ||
161 | @include prefixer($property: animation-iteration-count, $value: $value, $prefixes: webkit moz spec); | ||
162 | } | ||
163 | @mixin animation-direction ($value...) { | ||
164 | @include prefixer($property: animation-direction, $value: $value, $prefixes: webkit moz spec); | ||
165 | } | ||
166 | @mixin animation-play-state ($value...) { | ||
167 | // running | paused | ||
168 | @include prefixer($property: animation-play-state, $value: $value, $prefixes: webkit moz spec); | ||
169 | } | ||
170 | @mixin animation-delay ($value...) { | ||
171 | @include prefixer($property: animation-delay, $value: $value, $prefixes: webkit moz spec); | ||
172 | } | ||
173 | @mixin animation-fill-mode ($value...) { | ||
174 | // none | forwards | backwards | both | ||
175 | @include prefixer($property: animation-fill-mode, $value: $value, $prefixes: webkit moz spec); | ||
176 | } | ||
177 | @mixin keyframes($name) { | ||
178 | $original-prefix-webkit: $prefix-webkit; | ||
179 | $original-prefix-moz: $prefix-moz; | ||
180 | $original-prefix-spec: $prefix-spec; | ||
181 | |||
182 | @if $original-prefix-webkit { | ||
183 | @include disable-prefix(); | ||
184 | $prefix-webkit: true !global; | ||
185 | @-webkit-keyframes #{$name} { | ||
186 | @content; | ||
187 | } | ||
188 | } | ||
189 | @if $original-prefix-moz { | ||
190 | @include disable-prefix(); | ||
191 | $prefix-moz: true !global; | ||
192 | @-moz-keyframes #{$name} { | ||
193 | @content; | ||
194 | } | ||
195 | } | ||
196 | @if $original-prefix-spec { | ||
197 | @include disable-prefix(); | ||
198 | $prefix-spec: true !global; | ||
199 | @keyframes #{$name} { | ||
200 | @content; | ||
201 | } | ||
202 | } | ||
203 | |||
204 | $prefix-webkit: $original-prefix-webkit !global; | ||
205 | $prefix-moz: $original-prefix-moz !global; | ||
206 | $prefix-spec: $original-prefix-spec !global; | ||
207 | } | ||
208 | |||
209 | // We use this to set transform. | ||
210 | @mixin transform($value: none) { | ||
211 | // none | <transform-function> | ||
212 | @include prefixer($property: transform, $value: $value, $prefixes: webkit moz spec); | ||
213 | } | ||
214 | |||
215 | @mixin transform-origin($value: 50%) { | ||
216 | // x-axis - left | center | right | length | % | ||
217 | // y-axis - top | center | bottom | length | % | ||
218 | // z-axis - length | ||
219 | @include prefixer($property: transform-origin, $value: $value, $prefixes: webkit moz spec); | ||
220 | } | ||
221 | |||
222 | @mixin transform-style ($value: flat) { | ||
223 | @include prefixer($property: transform-style, $value: $value, $prefixes: webkit moz spec); | ||
224 | } | ||
225 | |||
226 | // We use this to set transition. | ||
227 | // example: @include transition (all 2s ease-in-out); | ||
228 | // @include transition (opacity 1s ease-in 2s, width 2s ease-out); | ||
229 | // @include transition-property (transform, opacity); | ||
230 | |||
231 | @mixin transition ($value...) { | ||
232 | @if length($value) >= 1 { | ||
233 | @include prefixer($property: transition, $value: $value, $prefixes: webkit moz spec); | ||
234 | } @else { | ||
235 | $value: all 0.15s ease-out 0s; | ||
236 | @include prefixer($property: transition, $value: $value, $prefixes: webkit moz spec); | ||
237 | } | ||
238 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
bootflat/scss/bootflat/_jumbotron.scss
0 → 100644
1 | // Variables | ||
2 | //------------------------------------------------------ | ||
3 | $jumbotron-font-color: $darkgray-dark !default; | ||
4 | |||
5 | $jumbotron-background-color: $white !default; | ||
6 | |||
7 | $jumbotron-radius: 4px; | ||
8 | $jumbotron-shadow: 0 1px 2px rgba(0, 0, 0, .2) !default; | ||
9 | |||
10 | |||
11 | // Exports | ||
12 | //------------------------------------------------------ | ||
13 | |||
14 | @include exports("jumbotron") { | ||
15 | |||
16 | /** | ||
17 | * jumbotron | ||
18 | * -------------------------------------------------- | ||
19 | */ | ||
20 | .jumbotron { | ||
21 | margin-bottom: 20px; | ||
22 | padding: 0; | ||
23 | @include radius($type: border-radius, $value: $jumbotron-radius); | ||
24 | background-color: $jumbotron-background-color; | ||
25 | @include box-shadow($value: $jumbotron-shadow); | ||
26 | |||
27 | @at-root .container & { | ||
28 | @include radius($type: border-radius, $value: $jumbotron-radius); | ||
29 | } | ||
30 | |||
31 | & > #{&}-photo img { | ||
32 | @include radius($type: border-radius, $value: $jumbotron-radius $jumbotron-radius 0 0); | ||
33 | width: 100%; | ||
34 | } | ||
35 | |||
36 | & #{&}-contents { | ||
37 | padding: 20px; | ||
38 | color: $jumbotron-font-color; | ||
39 | } | ||
40 | & .carousel, | ||
41 | & .carousel-inner, | ||
42 | & .carousel-inner > .item.active img { | ||
43 | @include radius($type: border-radius, $value: $jumbotron-radius $jumbotron-radius 0 0); | ||
44 | } | ||
45 | & .carousel-control.left { | ||
46 | @include radius($type: border-radius, $value: $jumbotron-radius 0 0 0); | ||
47 | } | ||
48 | & .carousel-control.right { | ||
49 | @include radius($type: border-radius, $value: 0 $jumbotron-radius 0 0); | ||
50 | } | ||
51 | |||
52 | & h1, & .h1, | ||
53 | & h2, & .h2 { | ||
54 | font-weight: 400; | ||
55 | } | ||
56 | |||
57 | & h1, & .h1 { | ||
58 | font-size: 28px; | ||
59 | } | ||
60 | & h2, & .h2 { | ||
61 | font-size: 24px; | ||
62 | } | ||
63 | & p { | ||
64 | font-size: 14px; | ||
65 | } | ||
66 | |||
67 | @media screen and (min-width: 768px) { | ||
68 | &, | ||
69 | .container & { | ||
70 | padding: 0; | ||
71 | } | ||
72 | & h1, | ||
73 | & .h1 { | ||
74 | font-size: 28px; | ||
75 | } | ||
76 | } | ||
77 | } | ||
78 | } | ||
79 | |||
80 |
bootflat/scss/bootflat/_label_badge.scss
0 → 100644
1 | // Variables | ||
2 | //------------------------------------------------------ | ||
3 | $label-normal: $mediumgray-dark !default; | ||
4 | $label-default: $white !default; | ||
5 | $label-primary: $aqua-dark !default; | ||
6 | $label-success: $grass-dark !default; | ||
7 | $label-danger: $grapefruit-dark !default; | ||
8 | $label-warning: $sunflower-dark !default; | ||
9 | $label-info: $mint-dark !default; | ||
10 | |||
11 | $label-default-font-color: $darkgray-dark !default; | ||
12 | |||
13 | // Exports | ||
14 | //------------------------------------------------------ | ||
15 | |||
16 | @include exports("label-badge") { | ||
17 | |||
18 | /** | ||
19 | * labels and badges | ||
20 | * -------------------------------------------------- | ||
21 | */ | ||
22 | .label, | ||
23 | .badge { | ||
24 | background-color: $label-normal; | ||
25 | } | ||
26 | |||
27 | .label-default, | ||
28 | .badge-default { | ||
29 | border: 1px solid $button-normal; | ||
30 | background-color: $label-default; | ||
31 | color: $label-default-font-color; | ||
32 | } | ||
33 | |||
34 | .label-primary, | ||
35 | .badge-primary { | ||
36 | border-color: $label-primary; | ||
37 | background-color: $label-primary; | ||
38 | } | ||
39 | |||
40 | .label-success, | ||
41 | .badge-success { | ||
42 | border-color: $label-success; | ||
43 | background-color: $label-success; | ||
44 | } | ||
45 | |||
46 | .label-danger, | ||
47 | .badge-danger { | ||
48 | border-color: $label-danger; | ||
49 | background-color: $label-danger; | ||
50 | } | ||
51 | |||
52 | .label-warning, | ||
53 | .badge-warning { | ||
54 | border-color: $label-warning; | ||
55 | background-color: $label-warning; | ||
56 | } | ||
57 | |||
58 | .label-info, | ||
59 | .badge-info { | ||
60 | border-color: $label-info; | ||
61 | background-color: $label-info; | ||
62 | } | ||
63 | } | ||
64 | |||
65 |
bootflat/scss/bootflat/_list.scss
0 → 100644
1 | // Variables | ||
2 | //------------------------------------------------------ | ||
3 | $list-primary: $aqua-light !default; | ||
4 | $list-info: $mint-light !default; | ||
5 | $list-warning: $sunflower-light !default; | ||
6 | $list-success: $grass-light !default; | ||
7 | $list-danger: $grapefruit-light !default; | ||
8 | |||
9 | $list-primary-hover: $aqua-dark !default; | ||
10 | $list-info-hover: $mint-dark !default; | ||
11 | $list-warning-hover: $sunflower-dark !default; | ||
12 | $list-success-hover: $grass-dark !default; | ||
13 | $list-danger-hover: $grapefruit-dark !default; | ||
14 | |||
15 | $list-border-color: $lightgray-dark !default; | ||
16 | $list-background-color: $white !default; | ||
17 | $list-font-color: $darkgray-dark !default; | ||
18 | $list-font-color-hover: $mediumgray-dark !default; | ||
19 | |||
20 | $list-item-background-color: $lightgray-dark !default; | ||
21 | |||
22 | $list-radius: 4px !default; | ||
23 | $list-shadow: 0 1px 2px rgba(0, 0, 0, .2) !default; | ||
24 | |||
25 | |||
26 | |||
27 | // Exports | ||
28 | //------------------------------------------------------ | ||
29 | |||
30 | @include exports("list") { | ||
31 | |||
32 | /** | ||
33 | * list | ||
34 | * -------------------------------------------------- | ||
35 | */ | ||
36 | .list-group { | ||
37 | @include radius($type: border-radius, $value: $list-radius); | ||
38 | @include box-shadow($value: $list-shadow); | ||
39 | @at-root #{&}-item { | ||
40 | border-top-color: $list-border-color; | ||
41 | &:first-child { | ||
42 | border-top: none; | ||
43 | } | ||
44 | @at-root #{&}-heading { | ||
45 | color: $list-font-color; | ||
46 | } | ||
47 | } | ||
48 | } | ||
49 | |||
50 | |||
51 | a.list-group-item { | ||
52 | color: $list-font-color; | ||
53 | |||
54 | & .list-group-item-heading { | ||
55 | font-size: 16px; | ||
56 | color: $list-font-color; | ||
57 | } | ||
58 | |||
59 | &:hover, | ||
60 | &:focus { | ||
61 | background-color: $list-item-background-color; | ||
62 | } | ||
63 | &.active, | ||
64 | &.active:hover, | ||
65 | &.active:focus { | ||
66 | background-color: $list-primary; | ||
67 | border-color: $list-primary; | ||
68 | } | ||
69 | &.active .list-group-item-text, | ||
70 | &.active:hover .list-group-item-text, | ||
71 | &.active:focus .list-group-item-text { | ||
72 | color: $list-background-color; | ||
73 | } | ||
74 | } | ||
75 | .list-group-item-primary { | ||
76 | color: darken($list-primary, 10%); | ||
77 | border-color: $list-primary-hover transparent transparent transparent; | ||
78 | background-color: $list-primary; | ||
79 | &:first-child { | ||
80 | border-color: transparent; | ||
81 | } | ||
82 | @at-root a#{&} { | ||
83 | color: darken($list-primary, 30%); | ||
84 | &:hover, | ||
85 | &:focus { | ||
86 | color: $list-background-color; | ||
87 | background-color: $list-primary-hover; | ||
88 | } | ||
89 | &.active, | ||
90 | &:hover, | ||
91 | &:focus { | ||
92 | background-color: $list-primary-hover; | ||
93 | border-color: $list-primary transparent transparent transparent; | ||
94 | } | ||
95 | } | ||
96 | } | ||
97 | .list-group-item-success { | ||
98 | color: darken($list-success, 10%); | ||
99 | border-color: $list-success-hover transparent transparent transparent; | ||
100 | background-color: $list-success; | ||
101 | &:first-child { | ||
102 | border-color: transparent; | ||
103 | } | ||
104 | @at-root a#{&} { | ||
105 | color: darken($list-success, 30%); | ||
106 | &:hover, | ||
107 | &:focus { | ||
108 | color: $list-background-color; | ||
109 | background-color: $list-success-hover; | ||
110 | } | ||
111 | &.active, | ||
112 | &:hover, | ||
113 | &:focus { | ||
114 | background-color: $list-success-hover; | ||
115 | border-color: $list-success transparent transparent transparent; | ||
116 | } | ||
117 | } | ||
118 | } | ||
119 | .list-group-item-warning { | ||
120 | color: darken($list-warning, 10%); | ||
121 | border-color: $list-warning-hover transparent transparent transparent; | ||
122 | background-color: $list-warning; | ||
123 | &:first-child { | ||
124 | border-color: transparent; | ||
125 | } | ||
126 | @at-root a#{&} { | ||
127 | color: darken($list-warning, 30%); | ||
128 | &:hover, | ||
129 | &:focus { | ||
130 | color: $list-background-color; | ||
131 | background-color: $list-warning-hover; | ||
132 | } | ||
133 | &.active, | ||
134 | &:hover, | ||
135 | &:focus { | ||
136 | background-color: $list-warning-hover; | ||
137 | border-color: $list-warning transparent transparent transparent; | ||
138 | } | ||
139 | } | ||
140 | } | ||
141 | .list-group-item-info { | ||
142 | color: darken($list-info, 10%); | ||
143 | border-color: $list-info-hover transparent transparent transparent; | ||
144 | background-color: $list-info; | ||
145 | &:first-child { | ||
146 | border-color: transparent; | ||
147 | } | ||
148 | @at-root a#{&} { | ||
149 | color: darken($list-info, 30%); | ||
150 | &:hover, | ||
151 | &:focus { | ||
152 | color: $list-background-color; | ||
153 | background-color: $list-info-hover; | ||
154 | } | ||
155 | &.active, | ||
156 | &:hover, | ||
157 | &:focus { | ||
158 | background-color: $list-info-hover; | ||
159 | border-color: $list-info transparent transparent transparent; | ||
160 | } | ||
161 | } | ||
162 | } | ||
163 | .list-group-item-danger { | ||
164 | color: darken($list-danger, 10%); | ||
165 | border-color: $list-danger-hover transparent transparent transparent; | ||
166 | background-color: $list-danger; | ||
167 | &:first-child { | ||
168 | border-color: transparent; | ||
169 | } | ||
170 | @at-root a#{&} { | ||
171 | color: darken($list-danger, 30%); | ||
172 | &:hover, | ||
173 | &:focus { | ||
174 | color: $list-background-color; | ||
175 | background-color: $list-danger-hover; | ||
176 | } | ||
177 | &.active, | ||
178 | &:hover, | ||
179 | &:focus { | ||
180 | background-color: $list-danger-hover; | ||
181 | border-color: $list-danger transparent transparent transparent; | ||
182 | } | ||
183 | } | ||
184 | } | ||
185 | } | ||
186 | |||
187 |
bootflat/scss/bootflat/_media_list.scss
0 → 100644
1 | // Variables | ||
2 | //------------------------------------------------------ | ||
3 | $media-list-font-color-head: $darkgray-dark !default; | ||
4 | $media-list-font-color-body: $mediumgray-dark !default; | ||
5 | |||
6 | |||
7 | // Exports | ||
8 | //------------------------------------------------------ | ||
9 | |||
10 | @include exports("media-list") { | ||
11 | |||
12 | /** | ||
13 | * media list | ||
14 | * -------------------------------------------------- | ||
15 | */ | ||
16 | .media-list { | ||
17 | color: $media-list-font-color-body; | ||
18 | @at-root .media-heading { | ||
19 | font-size: 14px; | ||
20 | color: $media-list-font-color-head; | ||
21 | } | ||
22 | } | ||
23 | |||
24 | } | ||
25 | |||
26 |
bootflat/scss/bootflat/_modal.scss
0 → 100644
1 | // Variables | ||
2 | //------------------------------------------------------ | ||
3 | $modal-font-color: $darkgray-dark !default; | ||
4 | |||
5 | $modal-radius: 4px; | ||
6 | $modal-shadow: 0 1px 2px rgba(0, 0, 0, .2) !default; | ||
7 | |||
8 | |||
9 | // Exports | ||
10 | //------------------------------------------------------ | ||
11 | |||
12 | @include exports("modal") { | ||
13 | |||
14 | /** | ||
15 | * modal | ||
16 | * -------------------------------------------------- | ||
17 | */ | ||
18 | |||
19 | .modal { | ||
20 | #{&}-content { | ||
21 | border: none; | ||
22 | @include radius($type: border-radius, $value: $modal-radius); | ||
23 | color: $modal-font-color; | ||
24 | @include box-shadow($value: $modal-shadow); | ||
25 | } | ||
26 | #{&}-header { | ||
27 | border-bottom: none; | ||
28 | } | ||
29 | #{&}-body { | ||
30 | padding: 0 15px; | ||
31 | } | ||
32 | #{&}-footer { | ||
33 | border-top: none; | ||
34 | } | ||
35 | } | ||
36 | |||
37 | } | ||
38 | |||
39 |
bootflat/scss/bootflat/_navbar.scss
0 → 100644
1 | // Variables | ||
2 | //------------------------------------------------------ | ||
3 | $navbar-background-color: $mint-dark !default; | ||
4 | $navbar-background-color-active: $mint-light !default; | ||
5 | |||
6 | $navbar-font-color: $white !default; | ||
7 | $navbar-item-background-color-hover: $navbar-background-color-active !default; | ||
8 | |||
9 | $navbar-inverse-background-color: $black !default; | ||
10 | |||
11 | // Exports | ||
12 | //------------------------------------------------------ | ||
13 | |||
14 | @include exports("navbar") { | ||
15 | |||
16 | /** | ||
17 | * navbar | ||
18 | * -------------------------------------------------- | ||
19 | */ | ||
20 | |||
21 | .navbar-default { | ||
22 | & { | ||
23 | background-color: $navbar-background-color; | ||
24 | border-color: $navbar-background-color; | ||
25 | } | ||
26 | & .navbar-brand, | ||
27 | & .navbar-link, | ||
28 | & .btn-link { | ||
29 | color: darken($navbar-background-color, 15%); | ||
30 | } | ||
31 | & .navbar-brand:hover, | ||
32 | & .navbar-brand:focus, | ||
33 | & .navbar-link:hover, | ||
34 | & .btn-link:hover, | ||
35 | & .btn-link:focus { | ||
36 | color: $navbar-font-color; | ||
37 | background-color: transparent; | ||
38 | } | ||
39 | & .navbar-text, | ||
40 | & .navbar-nav > li > a { | ||
41 | color: darken($navbar-background-color, 15%); | ||
42 | } | ||
43 | & .navbar-nav > li > a:hover, | ||
44 | & .navbar-nav > li > a:focus { | ||
45 | color: $navbar-font-color; | ||
46 | } | ||
47 | & .navbar-nav > .active > a, | ||
48 | & .navbar-nav > .active > a:hover, | ||
49 | & .navbar-nav > .active > a:focus { | ||
50 | color: $navbar-font-color; | ||
51 | background-color: $navbar-background-color-active; | ||
52 | } | ||
53 | & .btn-link[disabled]:hover, | ||
54 | fieldset[disabled] & .btn-link:hover, | ||
55 | & .btn-link[disabled]:focus, | ||
56 | fieldset[disabled] & .btn-link:focus, | ||
57 | & .navbar-nav > .disabled > a, | ||
58 | & .navbar-nav > .disabled > a:hover, | ||
59 | & .navbar-nav > .disabled > a:focus { | ||
60 | color: darken($navbar-background-color, 8%); | ||
61 | background-color: transparent; | ||
62 | } | ||
63 | & .navbar-toggle { | ||
64 | border-color: darken($navbar-background-color, 15%); | ||
65 | background-color: darken($navbar-background-color, 15%); | ||
66 | } | ||
67 | & .navbar-toggle:hover, | ||
68 | & .navbar-toggle:focus { | ||
69 | border-color: darken($navbar-background-color, 10%); | ||
70 | background-color: darken($navbar-background-color, 10%); | ||
71 | } | ||
72 | & .navbar-toggle .icon-bar { | ||
73 | background-color: $navbar-background-color; | ||
74 | } | ||
75 | & .navbar-collapse, | ||
76 | & .navbar-form { | ||
77 | border-color: $navbar-background-color; | ||
78 | } | ||
79 | & .navbar-nav > .open > a, | ||
80 | & .navbar-nav > .open > a:hover, | ||
81 | & .navbar-nav > .open > a:focus { | ||
82 | color: $navbar-font-color; | ||
83 | background-color: $navbar-background-color; | ||
84 | } | ||
85 | |||
86 | @media (max-width: 767px) { | ||
87 | & .navbar-nav > li > a:hover, | ||
88 | & .navbar-nav > li > a:focus { | ||
89 | background-color: $navbar-background-color-active; | ||
90 | } | ||
91 | & .navbar-nav .open .dropdown-menu > .divider { | ||
92 | background-color: $navbar-item-background-color-hover; | ||
93 | } | ||
94 | & .navbar-nav .open .dropdown-menu > li > a { | ||
95 | color: darken($navbar-background-color, 15%);; | ||
96 | } | ||
97 | & .navbar-nav .open .dropdown-menu > li > a:hover, | ||
98 | & .navbar-nav .open .dropdown-menu > li > a:focus, | ||
99 | & .navbar-nav .open .dropdown-menu > .active > a, | ||
100 | & .navbar-nav .open .dropdown-menu > .active > a:hover, | ||
101 | & .navbar-nav .open .dropdown-menu > .active > a:focus { | ||
102 | color: $navbar-font-color; | ||
103 | background-color: $navbar-item-background-color-hover; | ||
104 | } | ||
105 | & .navbar-nav .open .dropdown-menu > .dropdown-header { | ||
106 | color: darken($navbar-background-color, 15%); | ||
107 | } | ||
108 | & .navbar-nav .open .dropdown-menu > .disabled > a, | ||
109 | & .navbar-nav .open .dropdown-menu > .disabled > a:hover, | ||
110 | & .navbar-nav .open .dropdown-menu > .disabled > a:focus { | ||
111 | color: darken($navbar-background-color, 10%); | ||
112 | } | ||
113 | } | ||
114 | } | ||
115 | |||
116 | .navbar-inverse { | ||
117 | & { | ||
118 | background-color: lighten($navbar-inverse-background-color, 20%); | ||
119 | border-color: lighten($navbar-inverse-background-color, 20%); | ||
120 | } | ||
121 | & .navbar-brand, | ||
122 | & .navbar-link, | ||
123 | & .btn-link { | ||
124 | color: lighten($navbar-inverse-background-color, 55%); | ||
125 | } | ||
126 | & .navbar-brand:hover, | ||
127 | & .navbar-brand:focus, | ||
128 | & .navbar-link:hover, | ||
129 | & .btn-link:hover, | ||
130 | & .btn-link:focus { | ||
131 | color: $navbar-font-color; | ||
132 | background-color: transparent; | ||
133 | } | ||
134 | & .navbar-text, | ||
135 | & .navbar-nav > li > a { | ||
136 | color: lighten($navbar-inverse-background-color, 55%); | ||
137 | } | ||
138 | & .navbar-nav > li > a:hover, | ||
139 | & .navbar-nav > li > a:focus { | ||
140 | color: $navbar-font-color; | ||
141 | } | ||
142 | & .navbar-nav > .active > a, | ||
143 | & .navbar-nav > .active > a:hover, | ||
144 | & .navbar-nav > .active > a:focus { | ||
145 | color: $navbar-font-color; | ||
146 | background-color: $navbar-inverse-background-color; | ||
147 | } | ||
148 | & .btn-link[disabled]:hover, | ||
149 | fieldset[disabled] & .btn-link:hover, | ||
150 | & .btn-link[disabled]:focus, | ||
151 | fieldset[disabled] & .btn-link:focus, | ||
152 | & .navbar-nav > .disabled > a, | ||
153 | & .navbar-nav > .disabled > a:hover, | ||
154 | & .navbar-nav > .disabled > a:focus { | ||
155 | color: lighten($navbar-inverse-background-color, 40%); | ||
156 | background-color: transparent; | ||
157 | } | ||
158 | & .navbar-toggle { | ||
159 | border-color: $navbar-inverse-background-color; | ||
160 | background-color: $navbar-inverse-background-color; | ||
161 | } | ||
162 | & .navbar-toggle:hover, | ||
163 | & .navbar-toggle:focus { | ||
164 | border-color: lighten($navbar-inverse-background-color, 10%); | ||
165 | background-color: lighten($navbar-inverse-background-color, 10%); | ||
166 | } | ||
167 | & .navbar-toggle .icon-bar { | ||
168 | background-color: lighten($navbar-inverse-background-color, 55%); | ||
169 | } | ||
170 | & .navbar-collapse, | ||
171 | & .navbar-form { | ||
172 | border-color: $navbar-inverse-background-color; | ||
173 | } | ||
174 | & .navbar-nav > .open > a, | ||
175 | & .navbar-nav > .open > a:hover, | ||
176 | & .navbar-nav > .open > a:focus { | ||
177 | color: $navbar-font-color; | ||
178 | background-color: $navbar-inverse-background-color; | ||
179 | } | ||
180 | |||
181 | @media (max-width: 767px) { | ||
182 | & .navbar-nav > li > a:hover, | ||
183 | & .navbar-nav > li > a:focus { | ||
184 | background-color: $navbar-inverse-background-color; | ||
185 | } | ||
186 | & .navbar-nav .open .dropdown-menu > .divider { | ||
187 | background-color: $navbar-inverse-background-color; | ||
188 | } | ||
189 | & .navbar-nav .open .dropdown-menu > li > a { | ||
190 | color: lighten($navbar-inverse-background-color, 55%); | ||
191 | } | ||
192 | & .navbar-nav .open .dropdown-menu > li > a:hover, | ||
193 | & .navbar-nav .open .dropdown-menu > li > a:focus, | ||
194 | & .navbar-nav .open .dropdown-menu > .active > a, | ||
195 | & .navbar-nav .open .dropdown-menu > .active > a:hover, | ||
196 | & .navbar-nav .open .dropdown-menu > .active > a:focus { | ||
197 | color: $navbar-font-color; | ||
198 | background-color: $navbar-inverse-background-color; | ||
199 | } | ||
200 | & .navbar-nav .open .dropdown-menu > .dropdown-header { | ||
201 | color: lighten($navbar-inverse-background-color, 75%); | ||
202 | } | ||
203 | & .navbar-nav .open .dropdown-menu > .disabled > a, | ||
204 | & .navbar-nav .open .dropdown-menu > .disabled > a:hover, | ||
205 | & .navbar-nav .open .dropdown-menu > .disabled > a:focus { | ||
206 | color: lighten($navbar-inverse-background-color, 40%); | ||
207 | } | ||
208 | } | ||
209 | } | ||
210 | |||
211 | } | ||
212 | |||
213 |
bootflat/scss/bootflat/_pager.scss
0 → 100644
1 | // Variables | ||
2 | //------------------------------------------------------ | ||
3 | $paper-background-color: $grass-dark !default; | ||
4 | $paper-background-color-hover: $grass-light !default; | ||
5 | |||
6 | $paper-font-color: $white !default; | ||
7 | $paper-font-color-disabled: $lightgray-dark !default; | ||
8 | |||
9 | // Exports | ||
10 | //------------------------------------------------------ | ||
11 | |||
12 | @include exports("pager") { | ||
13 | |||
14 | /** | ||
15 | * pager | ||
16 | * -------------------------------------------------- | ||
17 | */ | ||
18 | .pager { | ||
19 | |||
20 | & li > a, | ||
21 | & li > span { | ||
22 | color: $paper-font-color; | ||
23 | background-color: $paper-background-color; | ||
24 | border-color: $paper-background-color; | ||
25 | } | ||
26 | & li > a:hover, | ||
27 | & li > a:focus { | ||
28 | background-color: $paper-background-color-hover; | ||
29 | border-color: $paper-background-color-hover; | ||
30 | } | ||
31 | & .disabled > a, | ||
32 | & .disabled > a:hover, | ||
33 | & .disabled > a:focus, | ||
34 | & .disabled > span { | ||
35 | color: $paper-font-color-disabled; | ||
36 | background-color: $paper-font-color; | ||
37 | border-color: $paper-font-color-disabled; | ||
38 | } | ||
39 | } | ||
40 | } | ||
41 | |||
42 |
bootflat/scss/bootflat/_pagination.scss
0 → 100644
1 | // Variables | ||
2 | //------------------------------------------------------ | ||
3 | $pagination-background-color: $white !default; | ||
4 | $pagination-background-color-hover: $mediumgray-light !default; | ||
5 | $pagination-background-color-active: $grass-dark !default; | ||
6 | |||
7 | $pagination-font-color: $darkgray-dark !default; | ||
8 | $pagination-font-color-hover: $white !default; | ||
9 | $pagination-font-color-disabled: $lightgray-dark !default; | ||
10 | |||
11 | // Exports | ||
12 | //------------------------------------------------------ | ||
13 | |||
14 | @include exports("pagination") { | ||
15 | |||
16 | /** | ||
17 | * pagination | ||
18 | * -------------------------------------------------- | ||
19 | */ | ||
20 | .pagination { | ||
21 | |||
22 | & > li > a, | ||
23 | & > li > span { | ||
24 | color: $pagination-font-color; | ||
25 | background-color: $pagination-background-color; | ||
26 | border-color: $pagination-background-color-hover; | ||
27 | } | ||
28 | & > li > a:hover, | ||
29 | & > li > span:hover, | ||
30 | & > li > a:focus, | ||
31 | & > li > span:focus { | ||
32 | color: $pagination-font-color-hover; | ||
33 | background-color: $pagination-background-color-hover; | ||
34 | border-color: $pagination-background-color-hover; | ||
35 | } | ||
36 | & > .active > a, | ||
37 | & > .active > span, | ||
38 | & > .active > a:hover, | ||
39 | & > .active > span:hover, | ||
40 | & > .active > a:focus, | ||
41 | & > .active > span:focus { | ||
42 | color: $pagination-font-color-hover; | ||
43 | background-color: $pagination-background-color-active; | ||
44 | border-color: $pagination-background-color-active; | ||
45 | } | ||
46 | & > .disabled > span, | ||
47 | & > .disabled > span:hover, | ||
48 | & > .disabled > span:focus, | ||
49 | & > .disabled > a, | ||
50 | & > .disabled > a:hover, | ||
51 | & > .disabled > a:focus { | ||
52 | color: $pagination-font-color-disabled; | ||
53 | background-color: $pagination-background-color; | ||
54 | border-color: $pagination-background-color-hover; | ||
55 | } | ||
56 | } | ||
57 | } | ||
58 | |||
59 |
bootflat/scss/bootflat/_panel.scss
0 → 100644
1 | // Variables | ||
2 | //------------------------------------------------------ | ||
3 | $panel-normal: $lightgray-dark !default; | ||
4 | $panel-default: $white !default; | ||
5 | $panel-primary: $aqua-dark !default; | ||
6 | $panel-success: $grass-dark !default; | ||
7 | $panel-danger: $grapefruit-dark !default; | ||
8 | $panel-warning: $sunflower-dark !default; | ||
9 | $panel-info: $mint-dark !default; | ||
10 | |||
11 | $panel-font-color: $darkgray-dark !default; | ||
12 | |||
13 | $panel-background-color: $white !default; | ||
14 | $panel-shadow: 0 1px 2px rgba(0, 0, 0, .2) !default; | ||
15 | $panel-radius: 4px !default; | ||
16 | |||
17 | |||
18 | // Exports | ||
19 | //------------------------------------------------------ | ||
20 | |||
21 | @include exports("panel") { | ||
22 | |||
23 | /** | ||
24 | * panel | ||
25 | * -------------------------------------------------- | ||
26 | */ | ||
27 | .panel { | ||
28 | background-color: $panel-background-color; | ||
29 | border: none; | ||
30 | @include radius($type: border-radius, $value: $panel-radius); | ||
31 | @include box-shadow($value: $panel-shadow); | ||
32 | |||
33 | & .list-group { | ||
34 | @include box-shadow($value: none); | ||
35 | } | ||
36 | & .list-group-item:first-child { | ||
37 | border-top: 1px solid $panel-normal; | ||
38 | } | ||
39 | |||
40 | #{&}-heading { | ||
41 | @include radius($type: border-radius, $value: $panel-radius $panel-radius 0 0); | ||
42 | } | ||
43 | #{&}-title { | ||
44 | font-size: 14px; | ||
45 | color: $panel-font-color; | ||
46 | font-weight: normal; | ||
47 | } | ||
48 | #{&}-footer { | ||
49 | background-color: $panel-normal; | ||
50 | border-top-color: $panel-normal; | ||
51 | @include radius($type: border-radius, $value: 0 0 $panel-radius $panel-radius); | ||
52 | } | ||
53 | |||
54 | @at-root #{&}-default { | ||
55 | border-color: $panel-normal; | ||
56 | & > .panel-heading { | ||
57 | color: $panel-font-color; | ||
58 | background-color: $panel-normal; | ||
59 | border-color: $panel-normal; | ||
60 | } | ||
61 | } | ||
62 | @at-root #{&}-primary { | ||
63 | border-color: $panel-primary; | ||
64 | & > .panel-heading { | ||
65 | color: $panel-default; | ||
66 | background-color: $panel-primary; | ||
67 | border-color: $panel-primary; | ||
68 | } | ||
69 | } | ||
70 | @at-root #{&}-success { | ||
71 | border-color: $panel-success; | ||
72 | & > .panel-heading { | ||
73 | color: $panel-default; | ||
74 | background-color: $panel-success; | ||
75 | border-color: $panel-success; | ||
76 | } | ||
77 | } | ||
78 | @at-root #{&}-info { | ||
79 | border-color: $panel-info; | ||
80 | & > .panel-heading { | ||
81 | color: $panel-default; | ||
82 | background-color: $panel-info; | ||
83 | border-color: $panel-info; | ||
84 | } | ||
85 | } | ||
86 | @at-root #{&}-warning { | ||
87 | border-color: $panel-warning; | ||
88 | & > .panel-heading { | ||
89 | color: $panel-default; | ||
90 | background-color: $panel-warning; | ||
91 | border-color: $panel-warning; | ||
92 | } | ||
93 | } | ||
94 | @at-root #{&}-danger { | ||
95 | border-color: $panel-danger; | ||
96 | & > .panel-heading { | ||
97 | color: $panel-default; | ||
98 | background-color: $panel-danger; | ||
99 | border-color: $panel-danger; | ||
100 | } | ||
101 | } | ||
102 | |||
103 | @at-root #{&}-primary > #{&}-heading > #{&}-title, | ||
104 | #{&}-success > #{&}-heading > #{&}-title, | ||
105 | #{&}-info > #{&}-heading > #{&}-title, | ||
106 | #{&}-warning > #{&}-heading > #{&}-title, | ||
107 | #{&}-danger > #{&}-heading > #{&}-title { | ||
108 | color: $panel-default; | ||
109 | } | ||
110 | |||
111 | & > .list-group:first-child .list-group-item:first-child, | ||
112 | & > .table:first-child, | ||
113 | & > .table-responsive:first-child > .table:first-child { | ||
114 | @include radius($type: border-radius, $value: $panel-radius $panel-radius 0 0); | ||
115 | } | ||
116 | & > .list-group:last-child .list-group-item:last-child { | ||
117 | @include radius($type: border-radius, $value: 0 0 $panel-radius $panel-radius); | ||
118 | } | ||
119 | & > .table:first-child > thead:first-child > tr:first-child td:first-child, | ||
120 | & > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, | ||
121 | & > .table:first-child > tbody:first-child > tr:first-child td:first-child, | ||
122 | & > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, | ||
123 | & > .table:first-child > thead:first-child > tr:first-child th:first-child, | ||
124 | & > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, | ||
125 | & > .table:first-child > tbody:first-child > tr:first-child th:first-child, | ||
126 | & > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { | ||
127 | @include radius($type: border-radius, $value: $panel-radius 0 0 0); | ||
128 | } | ||
129 | & > .table:first-child > thead:first-child > tr:first-child td:last-child, | ||
130 | & > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, | ||
131 | & > .table:first-child > tbody:first-child > tr:first-child td:last-child, | ||
132 | & > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, | ||
133 | & > .table:first-child > thead:first-child > tr:first-child th:last-child, | ||
134 | & > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, | ||
135 | & > .table:first-child > tbody:first-child > tr:first-child th:last-child, | ||
136 | & > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { | ||
137 | @include radius($type: border-radius, $value: 0 $panel-radius 0 0); | ||
138 | } | ||
139 | & > .table:last-child, | ||
140 | & > .table-responsive:last-child > .table:last-child { | ||
141 | @include radius($type: border-radius, $value: 0 0 $panel-radius $panel-radius); | ||
142 | } | ||
143 | & > .table:last-child > tbody:last-child > tr:last-child td:first-child, | ||
144 | & > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, | ||
145 | & > .table:last-child > tfoot:last-child > tr:last-child td:first-child, | ||
146 | & > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, | ||
147 | & > .table:last-child > tbody:last-child > tr:last-child th:first-child, | ||
148 | & > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, | ||
149 | & > .table:last-child > tfoot:last-child > tr:last-child th:first-child, | ||
150 | & > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { | ||
151 | @include radius($type: border-radius, $value: 0 0 0 $panel-radius); | ||
152 | } | ||
153 | & > .table:last-child > tbody:last-child > tr:last-child td:last-child, | ||
154 | & > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, | ||
155 | & > .table:last-child > tfoot:last-child > tr:last-child td:last-child, | ||
156 | & > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, | ||
157 | & > .table:last-child > tbody:last-child > tr:last-child th:last-child, | ||
158 | & > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, | ||
159 | & > .table:last-child > tfoot:last-child > tr:last-child th:last-child, | ||
160 | & > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { | ||
161 | @include radius($type: border-radius, $value: 0 0 $panel-radius 0); | ||
162 | } | ||
163 | & > #{&}-body + .table, | ||
164 | & > #{&}-body + .table-responsive { | ||
165 | border-top-color: $panel-normal; | ||
166 | } | ||
167 | } | ||
168 | |||
169 | } |
bootflat/scss/bootflat/_pill.scss
0 → 100644
1 | // Variables | ||
2 | //------------------------------------------------------ | ||
3 | $pill-background-color: $aqua-dark !default; | ||
4 | $pill-background-color-hover: $lightgray-dark !default; | ||
5 | $pill-font-color: $darkgray-dark !default; | ||
6 | $pill-font-color-active: $white !default; | ||
7 | |||
8 | |||
9 | // Exports | ||
10 | //------------------------------------------------------ | ||
11 | |||
12 | @include exports("pill") { | ||
13 | |||
14 | /** | ||
15 | * pill | ||
16 | * -------------------------------------------------- | ||
17 | */ | ||
18 | .nav-pills { | ||
19 | & > li.active > a, | ||
20 | & > li.active > a:hover, | ||
21 | & > li.active > a:focus { | ||
22 | color: $pill-font-color-active; | ||
23 | background-color: $pill-background-color; | ||
24 | } | ||
25 | & > li > a { | ||
26 | color: $pill-background-color; | ||
27 | } | ||
28 | & > li > a:hover { | ||
29 | color: $pill-font-color; | ||
30 | background-color: $pill-background-color-hover; | ||
31 | } | ||
32 | & > .active > a > .badge { | ||
33 | color: $pill-background-color; | ||
34 | } | ||
35 | & .open > a, | ||
36 | & .open > a:focus, | ||
37 | & .open > a:hover { | ||
38 | color: $pill-font-color; | ||
39 | background-color: $pill-background-color-hover; | ||
40 | } | ||
41 | } | ||
42 | |||
43 | } | ||
44 | |||
45 |
bootflat/scss/bootflat/_popover.scss
0 → 100644
1 | // Variables | ||
2 | //------------------------------------------------------ | ||
3 | $popover-background-color: $darkgray-dark !default; | ||
4 | $popover-font-color: $white !default; | ||
5 | $popover-title-font-color: $mediumgray-dark !default; | ||
6 | |||
7 | |||
8 | // Exports | ||
9 | //------------------------------------------------------ | ||
10 | |||
11 | @include exports("popover") { | ||
12 | |||
13 | /** | ||
14 | * popover | ||
15 | * -------------------------------------------------- | ||
16 | */ | ||
17 | |||
18 | .popover { | ||
19 | background-color: $popover-background-color; | ||
20 | color: $popover-font-color; | ||
21 | border-color: $popover-background-color; | ||
22 | |||
23 | @at-root #{&}-title { | ||
24 | padding-bottom: 0; | ||
25 | font-weight: bold; | ||
26 | color: $popover-title-font-color; | ||
27 | background-color: transparent; | ||
28 | border-bottom: none; | ||
29 | } | ||
30 | &.top .arrow, | ||
31 | &.top .arrow:after { | ||
32 | border-top-color: $popover-background-color; | ||
33 | } | ||
34 | &.right .arrow, | ||
35 | &.right .arrow:after { | ||
36 | border-right-color: $popover-background-color; | ||
37 | } | ||
38 | &.bottom .arrow, | ||
39 | &.bottom .arrow:after { | ||
40 | border-bottom-color: $popover-background-color; | ||
41 | } | ||
42 | &.left .arrow, | ||
43 | &.left .arrow:after { | ||
44 | border-left-color: $popover-background-color; | ||
45 | } | ||
46 | } | ||
47 | |||
48 | } | ||
49 | |||
50 |
bootflat/scss/bootflat/_progress.scss
0 → 100644
1 | // Variables | ||
2 | //------------------------------------------------------ | ||
3 | $progress-primary: $aqua-dark !default; | ||
4 | $progress-success: $grass-dark !default; | ||
5 | $progress-danger: $grapefruit-dark !default; | ||
6 | $progress-warning: $sunflower-dark !default; | ||
7 | $progress-info: $mint-dark !default; | ||
8 | |||
9 | $progress-background-color: $lightgray-dark !default; | ||
10 | |||
11 | // Exports | ||
12 | //------------------------------------------------------ | ||
13 | @include exports("progress") { | ||
14 | |||
15 | /** | ||
16 | * progress | ||
17 | * -------------------------------------------------- | ||
18 | */ | ||
19 | .progress { | ||
20 | background-color: $progress-background-color; | ||
21 | @include box-shadow($value: none); | ||
22 | |||
23 | #{&}-bar { | ||
24 | background-color: $progress-primary; | ||
25 | @include box-shadow($value: none); | ||
26 | } | ||
27 | #{&}-bar-success { | ||
28 | background-color: $progress-success; | ||
29 | } | ||
30 | #{&}-bar-info { | ||
31 | background-color: $progress-info; | ||
32 | } | ||
33 | #{&}-bar-warning { | ||
34 | background-color: $progress-warning; | ||
35 | } | ||
36 | #{&}-bar-danger { | ||
37 | background-color: $progress-danger; | ||
38 | } | ||
39 | } | ||
40 | } | ||
41 | |||
42 |
bootflat/scss/bootflat/_tab.scss
0 → 100644
1 | // Variables | ||
2 | //------------------------------------------------------ | ||
3 | $tab-background-color: $lightgray-dark !default; | ||
4 | $tab-background-color-hover: $lightgray-light !default; | ||
5 | $tab-radius: 4px !default; | ||
6 | |||
7 | $tab-font-color: $darkgray-dark !default; | ||
8 | $tab-font-color-acitve: $white !default; | ||
9 | |||
10 | $tab-aside-width: 74px !default; | ||
11 | |||
12 | $tab-border-color: $mediumgray-light !default; | ||
13 | // Exports | ||
14 | //------------------------------------------------------ | ||
15 | |||
16 | @include exports("tab") { | ||
17 | |||
18 | /** | ||
19 | * tab | ||
20 | * -------------------------------------------------- | ||
21 | */ | ||
22 | .nav-tabs { | ||
23 | border-bottom: none; | ||
24 | background-color: $tab-background-color; | ||
25 | @include radius($type: border-radius, $value: $tab-radius $tab-radius 0 0); | ||
26 | |||
27 | & > li { | ||
28 | margin-bottom: 0; | ||
29 | border-left: 1px solid $tab-border-color; | ||
30 | } | ||
31 | & > li:first-child { | ||
32 | border-left: none; | ||
33 | } | ||
34 | & > li > a { | ||
35 | margin-right: 0; | ||
36 | border: none; | ||
37 | @include radius($type: border-radius, $value: 0); | ||
38 | color: $tab-font-color; | ||
39 | } | ||
40 | & > li:first-child > a { | ||
41 | @include radius($type: border-radius, $value: $tab-radius 0 0 0); | ||
42 | } | ||
43 | & > li > a:focus, | ||
44 | & > li > a:hover { | ||
45 | border: none; | ||
46 | background-color: $tab-background-color-hover; | ||
47 | } | ||
48 | & > li.active > a, | ||
49 | & > li.active > a:focus, | ||
50 | & > li.active > a:hover { | ||
51 | border: none; | ||
52 | background-color: $tab-font-color-acitve !important; | ||
53 | } | ||
54 | |||
55 | & .dropdown-toggle, | ||
56 | & .dropdown-toggle:hover, | ||
57 | & .dropdown-toggle:focus { | ||
58 | color: $tab-font-color; | ||
59 | } | ||
60 | |||
61 | & li.dropdown.open .dropdown-toggle { | ||
62 | color: $tab-font-color; | ||
63 | background-color: $tab-background-color-hover; | ||
64 | } | ||
65 | & li.dropdown.active.open .dropdown-toggle { | ||
66 | color: $tab-font-color; | ||
67 | } | ||
68 | & li.dropdown.active.open .dropdown-toggle .caret, | ||
69 | & li.dropdown.active .dropdown-toggle .caret { | ||
70 | border-top-color: $tab-font-color; | ||
71 | border-bottom-color: $tab-font-color; | ||
72 | } | ||
73 | & li.dropdown.open .caret, | ||
74 | & li.dropdown.open.active .caret, | ||
75 | & li.dropdown.open a:hover .caret, | ||
76 | & li.dropdown.open a:focus .caret, | ||
77 | & .dropdown-toggle .caret, | ||
78 | & .dropdown-toggle:hover .caret, | ||
79 | & .dropdown-toggle:focus .caret { | ||
80 | border-top-color: $tab-font-color; | ||
81 | border-bottom-color: $tab-font-color; | ||
82 | } | ||
83 | |||
84 | &.nav-justified > li > a { | ||
85 | margin-bottom: 0; | ||
86 | text-align: center; | ||
87 | } | ||
88 | &.nav-justified > .dropdown .dropdown-menu { | ||
89 | top: auto; | ||
90 | left: auto; | ||
91 | } | ||
92 | &.nav-justified > li > a { | ||
93 | @include radius($type: border-radius, $value: 0); | ||
94 | } | ||
95 | &.nav-justified > li:first-child > a { | ||
96 | @include radius($type: border-radius, $value: $tab-radius 0 0 0); | ||
97 | } | ||
98 | &.nav-justified > li:last-child > a { | ||
99 | @include radius($type: border-radius, $value: 0 $tab-radius 0 0); | ||
100 | } | ||
101 | &.nav-justified > .active > a, | ||
102 | &.nav-justified > .active > a:hover, | ||
103 | &.nav-justified > .active > a:focus { | ||
104 | border: none; | ||
105 | } | ||
106 | @media (min-width: 768px) { | ||
107 | &.nav-justified > li > a { | ||
108 | border-bottom: none; | ||
109 | @include radius($type: border-radius, $value: 0); | ||
110 | } | ||
111 | &.nav-justified > .active > a, | ||
112 | &.nav-justified > .active > a:hover, | ||
113 | &.nav-justified > .active > a:focus { | ||
114 | border-bottom: none; | ||
115 | } | ||
116 | } | ||
117 | |||
118 | @at-root .tab-content { | ||
119 | padding: 10px; | ||
120 | } | ||
121 | } | ||
122 | |||
123 | .tabs-below { | ||
124 | & .nav-tabs { | ||
125 | @include radius($type: border-radius, $value: 0 0 $tab-radius $tab-radius); | ||
126 | } | ||
127 | & .nav-tabs > li:first-child > a { | ||
128 | @include radius($type: border-radius, $value: 0 0 0 $tab-radius); | ||
129 | } | ||
130 | & .nav-tabs.nav-justified > li:last-child > a { | ||
131 | @include radius($type: border-radius, $value: 0 0 $tab-radius 0); | ||
132 | } | ||
133 | } | ||
134 | |||
135 | .tabs-left .nav-tabs > li, | ||
136 | .tabs-right .nav-tabs > li { | ||
137 | float: none; | ||
138 | border-left: none; | ||
139 | border-top: 1px solid $tab-border-color; | ||
140 | } | ||
141 | .tabs-left .nav-tabs > li:first-child, | ||
142 | .tabs-right .nav-tabs > li:first-child { | ||
143 | border-top: none; | ||
144 | } | ||
145 | .tabs-left .nav-tabs > li > a, | ||
146 | .tabs-right .nav-tabs > li > a { | ||
147 | min-width: $tab-aside-width; | ||
148 | margin-right: 0; | ||
149 | } | ||
150 | .tabs-left { | ||
151 | & .nav-tabs { | ||
152 | float: left; | ||
153 | margin-right: 19px; | ||
154 | @include radius($type: border-radius, $value: $tab-radius 0 0 $tab-radius); | ||
155 | } | ||
156 | & .nav-tabs > li:first-child > a { | ||
157 | @include radius($type: border-radius, $value: $tab-radius 0 0 0); | ||
158 | } | ||
159 | & .nav-tabs > li:last-child > a { | ||
160 | @include radius($type: border-radius, $value: 0 0 0 $tab-radius); | ||
161 | } | ||
162 | } | ||
163 | .tabs-right { | ||
164 | & .nav-tabs { | ||
165 | float: right; | ||
166 | margin-left: 19px; | ||
167 | @include radius($type: border-radius, $value: 0 $tab-radius $tab-radius 0); | ||
168 | } | ||
169 | & .nav-tabs > li:first-child > a { | ||
170 | @include radius($type: border-radius, $value: 0 $tab-radius 0 0); | ||
171 | } | ||
172 | & .nav-tabs > li:last-child > a { | ||
173 | @include radius($type: border-radius, $value: 0 0 $tab-radius 0); | ||
174 | } | ||
175 | } | ||
176 | |||
177 | } | ||
178 | |||
179 |
bootflat/scss/bootflat/_thumbnail.scss
0 → 100644
1 | // Variables | ||
2 | //------------------------------------------------------ | ||
3 | $media-font-color: $darkgray-dark !default; | ||
4 | |||
5 | |||
6 | $thumbnail-shadow: 0 1px 2px rgba(0, 0, 0, .2) !default; | ||
7 | |||
8 | |||
9 | // Exports | ||
10 | //------------------------------------------------------ | ||
11 | |||
12 | @include exports("thumbnail") { | ||
13 | |||
14 | /** | ||
15 | * thumbnail | ||
16 | * -------------------------------------------------- | ||
17 | */ | ||
18 | .thumbnail { | ||
19 | border: none; | ||
20 | @include box-shadow($value: $list-shadow); | ||
21 | |||
22 | & .caption { | ||
23 | font-size: 14px; | ||
24 | } | ||
25 | |||
26 | & .caption h1, | ||
27 | & .caption h2, | ||
28 | & .caption h3, | ||
29 | & .caption h4, | ||
30 | & .caption h5, | ||
31 | & .caption h6 { | ||
32 | margin: 5px 0 10px; | ||
33 | font-size: 16px; | ||
34 | } | ||
35 | } | ||
36 | |||
37 | } | ||
38 | |||
39 |
bootflat/scss/bootflat/_tooltip.scss
0 → 100644
1 | // Variables | ||
2 | //------------------------------------------------------ | ||
3 | $tooltip-background-color: $darkgray-dark !default; | ||
4 | $tooltip-font-color: $white !default; | ||
5 | |||
6 | |||
7 | // Exports | ||
8 | //------------------------------------------------------ | ||
9 | |||
10 | @include exports("tooltip") { | ||
11 | |||
12 | /** | ||
13 | * tooltip | ||
14 | * -------------------------------------------------- | ||
15 | */ | ||
16 | |||
17 | .tooltip { | ||
18 | @at-root #{&}-inner { | ||
19 | color: $tooltip-font-color; | ||
20 | background-color: $tooltip-background-color; | ||
21 | } | ||
22 | &.top #{&}-arrow, | ||
23 | &.top-left #{&}-arrow, | ||
24 | &.top-right #{&}-arrow { | ||
25 | border-top-color: $tooltip-background-color; | ||
26 | } | ||
27 | &.right #{&}-arrow { | ||
28 | border-right-color: $tooltip-background-color; | ||
29 | } | ||
30 | &.left #{&}-arrow { | ||
31 | border-left-color: $tooltip-background-color; | ||
32 | } | ||
33 | &.bottom #{&}-arrow, | ||
34 | &.bottom-left #{&}-arrow, | ||
35 | &.bottom-right #{&}-arrow { | ||
36 | border-bottom-color: $tooltip-background-color; | ||
37 | } | ||
38 | } | ||
39 | |||
40 | } | ||
41 | |||
42 |
bootflat/scss/bootflat/_typography.scss
0 → 100644
1 | // Variables | ||
2 | //------------------------------------------------------ | ||
3 | $body-font-color: $darkgray-dark !default; | ||
4 | $body-background-color: $white !default; | ||
5 | |||
6 | $link-font-color: $aqua-dark !default; | ||
7 | $link-font-color-hover: $aqua-light !default; | ||
8 | |||
9 | $blockquote-border-color: $mediumgray-light !default; | ||
10 | |||
11 | $image-radius: 4px !default; | ||
12 | |||
13 | // Exports | ||
14 | //------------------------------------------------------ | ||
15 | |||
16 | @include exports("typography") { | ||
17 | |||
18 | /** | ||
19 | * typography | ||
20 | * -------------------------------------------------- | ||
21 | */ | ||
22 | |||
23 | body { | ||
24 | font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif; | ||
25 | color: $body-font-color; | ||
26 | background-color: $body-background-color; | ||
27 | } | ||
28 | a { | ||
29 | color: $link-font-color; | ||
30 | text-decoration: none; | ||
31 | |||
32 | &:hover, | ||
33 | &:focus { | ||
34 | color: $link-font-color-hover; | ||
35 | text-decoration: none; | ||
36 | } | ||
37 | &:focus { | ||
38 | outline: none; | ||
39 | } | ||
40 | } | ||
41 | h1, | ||
42 | h2, | ||
43 | h3, | ||
44 | h4, | ||
45 | h5, | ||
46 | h6, | ||
47 | .h1, | ||
48 | .h2, | ||
49 | .h3, | ||
50 | .h4, | ||
51 | .h5, | ||
52 | .h6 { | ||
53 | font-family: inherit; | ||
54 | font-weight: 700; | ||
55 | line-height: 1.1; | ||
56 | color: inherit; | ||
57 | } | ||
58 | h1 small, | ||
59 | h2 small, | ||
60 | h3 small, | ||
61 | h4 small, | ||
62 | h5 small, | ||
63 | h6 small, | ||
64 | .h1 small, | ||
65 | .h2 small, | ||
66 | .h3 small, | ||
67 | .h4 small, | ||
68 | .h5 small, | ||
69 | .h6 small { | ||
70 | color: #e7e9ec; | ||
71 | } | ||
72 | h1, | ||
73 | h2, | ||
74 | h3 { | ||
75 | margin-top: 30px; | ||
76 | margin-bottom: 15px; | ||
77 | } | ||
78 | h4, | ||
79 | h5, | ||
80 | h6 { | ||
81 | margin-top: 15px; | ||
82 | margin-bottom: 15px; | ||
83 | } | ||
84 | h6 { | ||
85 | font-weight: normal; | ||
86 | } | ||
87 | h1, | ||
88 | .h1 { | ||
89 | font-size: 51px; | ||
90 | } | ||
91 | h2, | ||
92 | .h2 { | ||
93 | font-size: 43px; | ||
94 | } | ||
95 | h3, | ||
96 | .h3 { | ||
97 | font-size: 30px; | ||
98 | } | ||
99 | h4, | ||
100 | .h4 { | ||
101 | font-size: 19px; | ||
102 | } | ||
103 | h5, | ||
104 | .h5 { | ||
105 | font-size: 18px; | ||
106 | } | ||
107 | h6, | ||
108 | .h6 { | ||
109 | font-size: 14px; | ||
110 | } | ||
111 | blockquote { | ||
112 | border-left: 3px solid $blockquote-border-color; | ||
113 | } | ||
114 | .img-rounded { | ||
115 | @include radius($type: border-radius, $value: $image-radius); | ||
116 | } | ||
117 | .img-comment { | ||
118 | font-size: 15px; | ||
119 | line-height: 1.2; | ||
120 | font-style: italic; | ||
121 | margin: 24px 0; | ||
122 | } | ||
123 | |||
124 | } | ||
125 | |||
126 |
bootflat/scss/bootflat/_well.scss
0 → 100644
1 | // Variables | ||
2 | //------------------------------------------------------ | ||
3 | $well-font-color: $darkgray-dark !default; | ||
4 | $well-background-color: $white !default; | ||
5 | |||
6 | $well-blockquote-color: $mediumgray-light !default; | ||
7 | |||
8 | $well-radius: 4px; | ||
9 | $well-shadow: 0 1px 2px rgba(0, 0, 0, .2) !default; | ||
10 | |||
11 | |||
12 | // Exports | ||
13 | //------------------------------------------------------ | ||
14 | |||
15 | @include exports("well") { | ||
16 | |||
17 | /** | ||
18 | * well | ||
19 | * -------------------------------------------------- | ||
20 | */ | ||
21 | |||
22 | .well { | ||
23 | padding: 10px; | ||
24 | border: none; | ||
25 | @include radius($type: border-radius, $value: $well-radius); | ||
26 | color: $modal-font-color; | ||
27 | background-color: $well-background-color; | ||
28 | @include box-shadow($value: $well-shadow); | ||
29 | |||
30 | & blockquote { | ||
31 | border-color: $well-blockquote-color; | ||
32 | } | ||
33 | @at-root #{&}-lg { | ||
34 | padding: 20px; | ||
35 | } | ||
36 | @at-root #{&}-sm { | ||
37 | padding: 5px; | ||
38 | } | ||
39 | } | ||
40 | |||
41 | } | ||
42 | |||
43 |
css/bootstrap.min.css
0 → 100644
1 | /*! | ||
2 | * Bootstrap v3.1.1 (http://getbootstrap.com) | ||
3 | * Copyright 2011-2014 Twitter, Inc. | ||
4 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) | ||
5 | */ | ||
6 | |||
7 | /*! normalize.css v3.0.0 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:0 0}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}@media print{*{text-shadow:none!important;color:#000!important;background:transparent!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100%!important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}select{background:#fff!important}.navbar{display:none}.table td,.table th{background-color:#fff!important}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table-bordered th,.table-bordered td{border:1px solid #ddd!important}}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:before,:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:62.5%;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#428bca;text-decoration:none}a:hover,a:focus{color:#2a6496;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive,.thumbnail>img,.thumbnail a>img,.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:400;line-height:1;color:#999}h1,.h1,h2,.h2,h3,.h3{margin-top:20px;margin-bottom:10px}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:10px;margin-bottom:10px}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:200;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}small,.small{font-size:85%}cite{font-style:normal}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-muted{color:#999}.text-primary{color:#428bca}a.text-primary:hover{color:#3071a9}.text-success{color:#3c763d}a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#428bca}a.bg-primary:hover{background-color:#3071a9}.bg-success{background-color:#dff0d8}a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.42857143;color:#999}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}blockquote:before,blockquote:after{content:""}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;white-space:nowrap;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;word-break:break-all;word-wrap:break-word;color:#333;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-xs-1,.col-sm-1,.col-md-1,.col-lg-1,.col-xs-2,.col-sm-2,.col-md-2,.col-lg-2,.col-xs-3,.col-sm-3,.col-md-3,.col-lg-3,.col-xs-4,.col-sm-4,.col-md-4,.col-lg-4,.col-xs-5,.col-sm-5,.col-md-5,.col-lg-5,.col-xs-6,.col-sm-6,.col-md-6,.col-lg-6,.col-xs-7,.col-sm-7,.col-md-7,.col-lg-7,.col-xs-8,.col-sm-8,.col-md-8,.col-lg-8,.col-xs-9,.col-sm-9,.col-md-9,.col-lg-9,.col-xs-10,.col-sm-10,.col-md-10,.col-lg-10,.col-xs-11,.col-sm-11,.col-md-11,.col-lg-11,.col-xs-12,.col-sm-12,.col-md-12,.col-lg-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:0}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:0}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:0}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:0}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:0}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:0}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:0}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:0}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{max-width:100%;background-color:transparent}th{text-align:left}.table{width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-child(odd)>td,.table-striped>tbody>tr:nth-child(odd)>th{background-color:#f9f9f9}.table-hover>tbody>tr:hover>td,.table-hover>tbody>tr:hover>th{background-color:#f5f5f5}table col[class*=col-]{position:static;float:none;display:table-column}table td[class*=col-],table th[class*=col-]{position:static;float:none;display:table-cell}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}@media (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;overflow-x:scroll;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd;-webkit-overflow-scrolling:touch}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{padding:0;margin:0;border:0;min-width:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=radio],input[type=checkbox]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=radio]:focus,input[type=checkbox]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{cursor:not-allowed;background-color:#eee;opacity:1}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}input[type=date]{line-height:34px}.form-group{margin-bottom:15px}.radio,.checkbox{display:block;min-height:20px;margin-top:10px;margin-bottom:10px;padding-left:20px}.radio label,.checkbox label{display:inline;font-weight:400;cursor:pointer}.radio input[type=radio],.radio-inline input[type=radio],.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox]{float:left;margin-left:-20px}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:400;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type=radio][disabled],input[type=checkbox][disabled],.radio[disabled],.radio-inline[disabled],.checkbox[disabled],.checkbox-inline[disabled],fieldset[disabled] input[type=radio],fieldset[disabled] input[type=checkbox],fieldset[disabled] .radio,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}textarea.input-sm,select[multiple].input-sm{height:auto}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-lg{height:46px;line-height:46px}textarea.input-lg,select[multiple].input-lg{height:auto}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.has-feedback .form-control-feedback{position:absolute;top:25px;right:0;display:block;width:34px;height:34px;line-height:34px;text-align:center}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-error .form-control-feedback{color:#a94442}.form-control-static{margin-bottom:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;padding-left:0;vertical-align:middle}.form-inline .radio input[type=radio],.form-inline .checkbox input[type=checkbox]{float:none;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .control-label,.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}.form-horizontal .form-control-static{padding-top:7px;padding-bottom:7px}@media (min-width:768px){.form-horizontal .control-label{text-align:right}}.form-horizontal .has-feedback .form-control-feedback{top:0;right:15px}.btn{display:inline-block;margin-bottom:0;font-weight:400;text-align:center;vertical-align:middle;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn:focus,.btn:active:focus,.btn.active:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus{color:#333;text-decoration:none}.btn:active,.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;pointer-events:none;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:hover,.btn-default:focus,.btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default{color:#333;background-color:#ebebeb;border-color:#adadad}.btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#428bca;border-color:#357ebd}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{color:#fff;background-color:#3276b1;border-color:#285e8e}.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color:#428bca;border-color:#357ebd}.btn-primary .badge{color:#428bca;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{color:#fff;background-color:#47a447;border-color:#398439}.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{color:#fff;background-color:#39b3d7;border-color:#269abc}.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{color:#fff;background-color:#ed9c28;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{color:#fff;background-color:#d2322d;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#428bca;font-weight:400;cursor:pointer;border-radius:0}.btn-link,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#2a6496;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#999;text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%;padding-left:0;padding-right:0}.btn-block+.btn-block{margin-top:5px}input[type=submit].btn-block,input[type=reset].btn-block,input[type=button].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;transition:height .35s ease}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\2a"}.glyphicon-plus:before{content:"\2b"}.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#428bca}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#999}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}@media (min-width:768px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group>.btn:focus,.btn-group-vertical>.btn:focus{outline:0}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child>.btn:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-bottom-left-radius:4px;border-top-right-radius:0;border-top-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}[data-toggle=buttons]>.btn>input[type=radio],[data-toggle=buttons]>.btn>input[type=checkbox]{display:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-left:0;padding-right:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn,select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn,select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=radio],.input-group-addon input[type=checkbox]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{margin-left:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#999}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#999;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#428bca}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#428bca}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{max-height:340px;overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-left:0;padding-right:0}}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px;font-size:18px;line-height:20px;height:50px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}.navbar-nav.navbar-right:last-child{margin-right:-15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important}}.navbar-form{margin-left:-15px;margin-right:-15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);margin-top:8px;margin-bottom:8px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;padding-left:0;vertical-align:middle}.navbar-form .radio input[type=radio],.navbar-form .checkbox input[type=checkbox]{float:none;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}}@media (min-width:768px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}.navbar-form.navbar-right:last-child{margin-right:-15px}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-left:15px;margin-right:15px}.navbar-text.navbar-right:last-child{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{background-color:#e7e7e7;color:#555}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#333}.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#999}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#999}.navbar-inverse .navbar-nav>li>a{color:#999}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{background-color:#080808;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#999}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#999}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#999}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff}.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#ccc}.breadcrumb>.active{color:#999}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#428bca;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:4px;border-top-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{color:#2a6496;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca;cursor:default}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#999;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pager{padding-left:0;margin:20px 0;list-style:none;text-align:center}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#999;background-color:#fff;cursor:not-allowed}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}.label[href]:hover,.label[href]:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#999}.label-default[href]:hover,.label-default[href]:focus{background-color:gray}.label-primary{background-color:#428bca}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#3071a9}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;color:#fff;line-height:1;vertical-align:baseline;white-space:nowrap;text-align:center;background-color:#999;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge{top:0;padding:1px 5px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}a.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#428bca;background-color:#fff}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron h1,.jumbotron .h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.container .jumbotron{border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron{padding-left:60px;padding-right:60px}.jumbotron h1,.jumbotron .h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.thumbnail>img,.thumbnail a>img{margin-left:auto;margin-right:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#428bca}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable{padding-right:35px}.alert-dismissable .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#428bca;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;transition:width .6s ease}.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:40px 40px}.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media,.media-body{overflow:hidden;zoom:1}.media,.media .media{margin-top:15px}.media:first-child{margin-top:0}.media-object{display:block}.media-heading{margin:0 0 5px}.media>.pull-left{margin-right:10px}.media>.pull-right{margin-left:10px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}a.list-group-item{color:#555}a.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,a.list-group-item:focus{text-decoration:none;background-color:#f5f5f5}a.list-group-item.active,a.list-group-item.active:hover,a.list-group-item.active:focus{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca}a.list-group-item.active .list-group-item-heading,a.list-group-item.active:hover .list-group-item-heading,a.list-group-item.active:focus .list-group-item-heading{color:inherit}a.list-group-item.active .list-group-item-text,a.list-group-item.active:hover .list-group-item-text,a.list-group-item.active:focus .list-group-item-text{color:#e1edf7}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,a.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:hover,a.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,a.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:hover,a.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,a.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,a.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:3px;border-top-left-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group{margin-bottom:0}.panel>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:3px;border-top-left-radius:3px}.panel>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.table:first-child,.panel>.table-responsive:first-child>.table:first-child{border-top-right-radius:3px;border-top-left-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table:last-child,.panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px;overflow:hidden}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse .panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#428bca}.panel-primary>.panel-heading{color:#fff;background-color:#428bca;border-color:#428bca}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#428bca}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#428bca}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{display:none;overflow:auto;overflow-y:scroll;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);transform:translate(0,-25%);-webkit-transition:-webkit-transform .3s ease-out;-moz-transition:-moz-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5);background-clip:padding-box;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5;min-height:16.42857143px}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1030;display:block;visibility:visible;font-size:12px;line-height:1.4;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{bottom:0;left:5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;right:5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;left:5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;right:5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);white-space:normal}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:400;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,.25)}.popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.carousel{position:relative}.carousel-inner{position:relative;overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{line-height:1}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-control.left{background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,.5) 0),color-stop(rgba(0,0,0,.0001) 100%));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,.0001) 0),color-stop(rgba(0,0,0,.5) 100%));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.carousel-control:hover,.carousel-control:focus{outline:0;color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;margin-top:-10px;margin-left:-10px;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0)}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-15px;margin-left:-15px;font-size:30px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after,.dl-horizontal dd:before,.dl-horizontal dd:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.btn-toolbar:before,.btn-toolbar:after,.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after,.pager:before,.pager:after,.panel-body:before,.panel-body:after,.modal-footer:before,.modal-footer:after{content:" ";display:table}.clearfix:after,.dl-horizontal dd:after,.container:after,.container-fluid:after,.row:after,.form-horizontal .form-group:after,.btn-toolbar:after,.btn-group-vertical>.btn-group:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after,.pager:after,.panel-body:after,.modal-footer:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important;visibility:hidden!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table}tr.visible-xs{display:table-row!important}th.visible-xs,td.visible-xs{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table}tr.visible-sm{display:table-row!important}th.visible-sm,td.visible-sm{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table}tr.visible-md{display:table-row!important}th.visible-md,td.visible-md{display:table-cell!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table}tr.visible-lg{display:table-row!important}th.visible-lg,td.visible-lg{display:table-cell!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table}tr.visible-print{display:table-row!important}th.visible-print,td.visible-print{display:table-cell!important}}@media print{.hidden-print{display:none!important}} | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
css/shCore.css
0 → 100644
1 | /** | ||
2 | * SyntaxHighlighter | ||
3 | * http://alexgorbatchev.com/SyntaxHighlighter | ||
4 | * | ||
5 | * SyntaxHighlighter is donationware. If you are using it, please donate. | ||
6 | * http://alexgorbatchev.com/SyntaxHighlighter/donate.html | ||
7 | * | ||
8 | * @version | ||
9 | * 3.0.83 (July 02 2010) | ||
10 | * | ||
11 | * @copyright | ||
12 | * Copyright (C) 2004-2010 Alex Gorbatchev. | ||
13 | * | ||
14 | * @license | ||
15 | * Dual licensed under the MIT and GPL licenses. | ||
16 | */ | ||
17 | .syntaxhighlighter a, | ||
18 | .syntaxhighlighter div, | ||
19 | .syntaxhighlighter code, | ||
20 | .syntaxhighlighter table, | ||
21 | .syntaxhighlighter table td, | ||
22 | .syntaxhighlighter table tr, | ||
23 | .syntaxhighlighter table tbody, | ||
24 | .syntaxhighlighter table thead, | ||
25 | .syntaxhighlighter table caption, | ||
26 | .syntaxhighlighter textarea { | ||
27 | -moz-border-radius: 0 0 0 0 !important; | ||
28 | -webkit-border-radius: 0 0 0 0 !important; | ||
29 | background: none !important; | ||
30 | border: 0 !important; | ||
31 | bottom: auto !important; | ||
32 | float: none !important; | ||
33 | height: auto !important; | ||
34 | left: auto !important; | ||
35 | line-height: 1.1em !important; | ||
36 | margin: 0 !important; | ||
37 | outline: 0 !important; | ||
38 | overflow: auto !important; | ||
39 | padding: 0 !important; | ||
40 | position: static !important; | ||
41 | right: auto !important; | ||
42 | text-align: left !important; | ||
43 | top: auto !important; | ||
44 | vertical-align: baseline !important; | ||
45 | width: auto !important; | ||
46 | box-sizing: content-box !important; | ||
47 | font-family: "Consolas", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; | ||
48 | font-weight: normal !important; | ||
49 | font-style: normal !important; | ||
50 | font-size: 1em !important; | ||
51 | min-height: inherit !important; | ||
52 | min-height: auto !important; | ||
53 | white-space: nowrap !important; | ||
54 | } | ||
55 | |||
56 | .syntaxhighlighter { | ||
57 | width: 100% !important; | ||
58 | margin: 1em 0 1em 0 !important; | ||
59 | position: relative !important; | ||
60 | overflow-x: auto !important; | ||
61 | font-size: 1em !important; | ||
62 | border: 1px solid #eee; | ||
63 | } | ||
64 | .syntaxhighlighter.source { | ||
65 | overflow: hidden !important; | ||
66 | } | ||
67 | .syntaxhighlighter .bold { | ||
68 | font-weight: bold !important; | ||
69 | } | ||
70 | .syntaxhighlighter .italic { | ||
71 | font-style: italic !important; | ||
72 | } | ||
73 | .syntaxhighlighter .line { | ||
74 | white-space: pre !important; | ||
75 | } | ||
76 | x:-o-prefocus, .syntaxhighlighter .line { | ||
77 | white-space: normal !important; | ||
78 | } | ||
79 | |||
80 | .syntaxhighlighter table { | ||
81 | width: 100% !important; | ||
82 | } | ||
83 | .syntaxhighlighter table caption { | ||
84 | text-align: left !important; | ||
85 | padding: .5em 0 0.5em 1em !important; | ||
86 | } | ||
87 | .syntaxhighlighter table td.code { | ||
88 | width: 100% !important; | ||
89 | } | ||
90 | .syntaxhighlighter table td.code .container { | ||
91 | position: relative !important; | ||
92 | } | ||
93 | .syntaxhighlighter table td.code .container textarea { | ||
94 | box-sizing: border-box !important; | ||
95 | position: absolute !important; | ||
96 | left: 0 !important; | ||
97 | top: 0 !important; | ||
98 | width: 100% !important; | ||
99 | height: 100% !important; | ||
100 | border: none !important; | ||
101 | background: white !important; | ||
102 | padding-left: 1em !important; | ||
103 | overflow: hidden !important; | ||
104 | white-space: pre !important; | ||
105 | } | ||
106 | .syntaxhighlighter table td.gutter .line { | ||
107 | text-align: right !important; | ||
108 | /*padding: 0 0.5em 0 1em !important;*/ | ||
109 | } | ||
110 | .syntaxhighlighter table td.code .line { | ||
111 | padding: 5px !important; | ||
112 | } | ||
113 | .syntaxhighlighter.nogutter td.code .container textarea, .syntaxhighlighter.nogutter td.code .line { | ||
114 | padding-left: 0em !important; | ||
115 | } | ||
116 | .syntaxhighlighter.show { | ||
117 | display: block !important; | ||
118 | } | ||
119 | .syntaxhighlighter.collapsed table { | ||
120 | display: none !important; | ||
121 | } | ||
122 | .syntaxhighlighter.collapsed .toolbar { | ||
123 | padding: 0.1em 0.8em 0em 0.8em !important; | ||
124 | font-size: 1em !important; | ||
125 | position: static !important; | ||
126 | width: auto !important; | ||
127 | height: auto !important; | ||
128 | } | ||
129 | .syntaxhighlighter.collapsed .toolbar span { | ||
130 | display: inline !important; | ||
131 | margin-right: 1em !important; | ||
132 | } | ||
133 | .syntaxhighlighter.collapsed .toolbar span a { | ||
134 | padding: 0 !important; | ||
135 | display: none !important; | ||
136 | } | ||
137 | .syntaxhighlighter.collapsed .toolbar span a.expandSource { | ||
138 | display: inline !important; | ||
139 | } | ||
140 | .syntaxhighlighter .toolbar { | ||
141 | position: absolute !important; | ||
142 | right: 1px !important; | ||
143 | top: 1px !important; | ||
144 | width: 11px !important; | ||
145 | height: 11px !important; | ||
146 | font-size: 10px !important; | ||
147 | z-index: 10 !important; | ||
148 | } | ||
149 | .syntaxhighlighter .toolbar span.title { | ||
150 | display: inline !important; | ||
151 | } | ||
152 | .syntaxhighlighter .toolbar a { | ||
153 | display: block !important; | ||
154 | text-align: center !important; | ||
155 | text-decoration: none !important; | ||
156 | padding-top: 1px !important; | ||
157 | } | ||
158 | .syntaxhighlighter .toolbar a.expandSource { | ||
159 | display: none !important; | ||
160 | } | ||
161 | .syntaxhighlighter.ie { | ||
162 | font-size: .9em !important; | ||
163 | padding: 1px 0 1px 0 !important; | ||
164 | } | ||
165 | .syntaxhighlighter.ie .toolbar { | ||
166 | line-height: 8px !important; | ||
167 | } | ||
168 | .syntaxhighlighter.ie .toolbar a { | ||
169 | padding-top: 0px !important; | ||
170 | } | ||
171 | .syntaxhighlighter.printing .line.alt1 .content, | ||
172 | .syntaxhighlighter.printing .line.alt2 .content, | ||
173 | .syntaxhighlighter.printing .line.highlighted .number, | ||
174 | .syntaxhighlighter.printing .line.highlighted.alt1 .content, | ||
175 | .syntaxhighlighter.printing .line.highlighted.alt2 .content { | ||
176 | background: none !important; | ||
177 | } | ||
178 | .syntaxhighlighter.printing .line .number { | ||
179 | color: #bbbbbb !important; | ||
180 | } | ||
181 | .syntaxhighlighter.printing .line .content { | ||
182 | color: black !important; | ||
183 | } | ||
184 | .syntaxhighlighter.printing .toolbar { | ||
185 | display: none !important; | ||
186 | } | ||
187 | .syntaxhighlighter.printing a { | ||
188 | text-decoration: none !important; | ||
189 | } | ||
190 | .syntaxhighlighter.printing .plain, .syntaxhighlighter.printing .plain a { | ||
191 | color: black !important; | ||
192 | } | ||
193 | .syntaxhighlighter.printing .comments, .syntaxhighlighter.printing .comments a { | ||
194 | color: #008200 !important; | ||
195 | } | ||
196 | .syntaxhighlighter.printing .string, .syntaxhighlighter.printing .string a { | ||
197 | color: blue !important; | ||
198 | } | ||
199 | .syntaxhighlighter.printing .keyword { | ||
200 | color: #006699 !important; | ||
201 | font-weight: bold !important; | ||
202 | } | ||
203 | .syntaxhighlighter.printing .preprocessor { | ||
204 | color: gray !important; | ||
205 | } | ||
206 | .syntaxhighlighter.printing .variable { | ||
207 | color: #aa7700 !important; | ||
208 | } | ||
209 | .syntaxhighlighter.printing .value { | ||
210 | color: #009900 !important; | ||
211 | } | ||
212 | .syntaxhighlighter.printing .functions { | ||
213 | color: #ff1493 !important; | ||
214 | } | ||
215 | .syntaxhighlighter.printing .constants { | ||
216 | color: #0066cc !important; | ||
217 | } | ||
218 | .syntaxhighlighter.printing .script { | ||
219 | font-weight: bold !important; | ||
220 | } | ||
221 | .syntaxhighlighter.printing .color1, .syntaxhighlighter.printing .color1 a { | ||
222 | color: gray !important; | ||
223 | } | ||
224 | .syntaxhighlighter.printing .color2, .syntaxhighlighter.printing .color2 a { | ||
225 | color: #ff1493 !important; | ||
226 | } | ||
227 | .syntaxhighlighter.printing .color3, .syntaxhighlighter.printing .color3 a { | ||
228 | color: red !important; | ||
229 | } | ||
230 | .syntaxhighlighter.printing .break, .syntaxhighlighter.printing .break a { | ||
231 | color: black !important; | ||
232 | } |
css/shThemeDefault.css
0 → 100644
1 | /** | ||
2 | * SyntaxHighlighter | ||
3 | * http://alexgorbatchev.com/SyntaxHighlighter | ||
4 | * | ||
5 | * SyntaxHighlighter is donationware. If you are using it, please donate. | ||
6 | * http://alexgorbatchev.com/SyntaxHighlighter/donate.html | ||
7 | * | ||
8 | * @version | ||
9 | * 3.0.83 (July 02 2010) | ||
10 | * | ||
11 | * @copyright | ||
12 | * Copyright (C) 2004-2010 Alex Gorbatchev. | ||
13 | * | ||
14 | * @license | ||
15 | * Dual licensed under the MIT and GPL licenses. | ||
16 | */ | ||
17 | .syntaxhighlighter { | ||
18 | background-color: white !important; | ||
19 | } | ||
20 | .syntaxhighlighter .line.alt1 { | ||
21 | background-color: #eee !important; | ||
22 | } | ||
23 | .syntaxhighlighter .line.alt2 { | ||
24 | background-color: white !important; | ||
25 | } | ||
26 | .syntaxhighlighter .line.highlighted.alt1, .syntaxhighlighter .line.highlighted.alt2 { | ||
27 | background-color: #e0e0e0 !important; | ||
28 | } | ||
29 | .syntaxhighlighter .line.highlighted.number { | ||
30 | color: black !important; | ||
31 | } | ||
32 | .syntaxhighlighter table caption { | ||
33 | color: black !important; | ||
34 | } | ||
35 | .syntaxhighlighter .gutter { | ||
36 | display: none; | ||
37 | color: #afafaf !important; | ||
38 | } | ||
39 | .syntaxhighlighter .gutter .line { | ||
40 | /*border-right: 3px solid #6ce26c !important;*/ | ||
41 | } | ||
42 | .syntaxhighlighter .gutter .line.highlighted { | ||
43 | background-color: #6ce26c !important; | ||
44 | color: white !important; | ||
45 | } | ||
46 | .syntaxhighlighter.printing .line .content { | ||
47 | border: none !important; | ||
48 | } | ||
49 | .syntaxhighlighter.collapsed { | ||
50 | overflow: visible !important; | ||
51 | } | ||
52 | .syntaxhighlighter.collapsed .toolbar { | ||
53 | color: blue !important; | ||
54 | background: white !important; | ||
55 | border: 1px solid #6ce26c !important; | ||
56 | } | ||
57 | .syntaxhighlighter.collapsed .toolbar a { | ||
58 | color: blue !important; | ||
59 | } | ||
60 | .syntaxhighlighter.collapsed .toolbar a:hover { | ||
61 | color: red !important; | ||
62 | } | ||
63 | .syntaxhighlighter .toolbar { | ||
64 | display: none; | ||
65 | color: white !important; | ||
66 | background: #6ce26c !important; | ||
67 | border: none !important; | ||
68 | } | ||
69 | .syntaxhighlighter .toolbar a { | ||
70 | color: white !important; | ||
71 | } | ||
72 | .syntaxhighlighter .toolbar a:hover { | ||
73 | color: black !important; | ||
74 | } | ||
75 | .syntaxhighlighter .plain, .syntaxhighlighter .plain a { | ||
76 | color: black !important; | ||
77 | } | ||
78 | .syntaxhighlighter .comments, .syntaxhighlighter .comments a { | ||
79 | color: #008200 !important; | ||
80 | } | ||
81 | .syntaxhighlighter .string, .syntaxhighlighter .string a { | ||
82 | color: blue !important; | ||
83 | } | ||
84 | .syntaxhighlighter .keyword { | ||
85 | color: #006699 !important; | ||
86 | } | ||
87 | .syntaxhighlighter .preprocessor { | ||
88 | color: gray !important; | ||
89 | } | ||
90 | .syntaxhighlighter .variable { | ||
91 | color: #aa7700 !important; | ||
92 | } | ||
93 | .syntaxhighlighter .value { | ||
94 | color: #009900 !important; | ||
95 | } | ||
96 | .syntaxhighlighter .functions { | ||
97 | color: #ff1493 !important; | ||
98 | } | ||
99 | .syntaxhighlighter .constants { | ||
100 | color: #0066cc !important; | ||
101 | } | ||
102 | .syntaxhighlighter .script { | ||
103 | font-weight: bold !important; | ||
104 | color: #006699 !important; | ||
105 | background-color: none !important; | ||
106 | } | ||
107 | .syntaxhighlighter .color1, .syntaxhighlighter .color1 a { | ||
108 | color: gray !important; | ||
109 | } | ||
110 | .syntaxhighlighter .color2, .syntaxhighlighter .color2 a { | ||
111 | color: #ff1493 !important; | ||
112 | } | ||
113 | .syntaxhighlighter .color3, .syntaxhighlighter .color3 a { | ||
114 | color: red !important; | ||
115 | } | ||
116 | |||
117 | .syntaxhighlighter .keyword { | ||
118 | font-weight: bold !important; | ||
119 | } |
css/site.css
0 → 100644
1 | body { | ||
2 | position: relative; /* For scrollyspy */ | ||
3 | font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif !important; | ||
4 | /*font-family: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif; */ | ||
5 | } | ||
6 | h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { | ||
7 | font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif !important; | ||
8 | } | ||
9 | /* ---------------------------------- | ||
10 | * home | ||
11 | * ---------------------------------- */ | ||
12 | .home { | ||
13 | background: url(../img/index.png) no-repeat 50% 100px; | ||
14 | } | ||
15 | @media (max-width: 767px) { | ||
16 | .home { | ||
17 | background: none; | ||
18 | } | ||
19 | } | ||
20 | /* ---------------------------------- | ||
21 | * icons | ||
22 | * ---------------------------------- */ | ||
23 | @font-face { | ||
24 | font-family: "angularicons"; | ||
25 | src: url("../angularicons/angularicons.eot"); | ||
26 | src: url("../angularicons/angularicons.eot?#iefix") format("embedded-opentype"), url("../angularicons/angularicons.woff") format("woff"), url("../angularicons/angularicons.ttf") format("truetype"), url("../angularicons/angularicons.svg") format("svg"); | ||
27 | } | ||
28 | .icon { | ||
29 | display: inline-block; | ||
30 | font-family: "angularicons"; | ||
31 | font-weight: normal; | ||
32 | font-style: normal; | ||
33 | text-decoration: none; | ||
34 | vertical-align: top; | ||
35 | -webkit-font-smoothing: antialiased; | ||
36 | -moz-osx-font-smoothing: grayscale; | ||
37 | } | ||
38 | .icon[data-icon]:before { | ||
39 | content: attr(data-icon); | ||
40 | speak: none; | ||
41 | } | ||
42 | /* ---------------------------------- | ||
43 | * index | ||
44 | * ---------------------------------- */ | ||
45 | .index { | ||
46 | padding-top: 100px; | ||
47 | text-align: center; | ||
48 | background-color: rgba(255, 255, 255, .9); | ||
49 | min-height: 746px; | ||
50 | } | ||
51 | .index h2 { | ||
52 | margin-top: 10px; | ||
53 | color: rgba(0, 0, 0, .8); | ||
54 | font-size: 16px; | ||
55 | line-height: 26px; | ||
56 | font-weight: normal; | ||
57 | } | ||
58 | .index h3 { | ||
59 | margin-top: 20px; | ||
60 | font-size: 14px; | ||
61 | font-style: italic; | ||
62 | } | ||
63 | .index .download-link { | ||
64 | margin: 40px 0 20px; | ||
65 | } | ||
66 | .index .download-link .btn { | ||
67 | padding: 15px 35px; | ||
68 | border: 0; | ||
69 | font-size: 22px; | ||
70 | opacity: 1; | ||
71 | } | ||
72 | .index .version-text { | ||
73 | color: rgba(0, 0, 0, .6); | ||
74 | font-size: 12px; | ||
75 | } | ||
76 | .index .learn-more { | ||
77 | margin-top: 20px; | ||
78 | font-weight: bold; | ||
79 | color: rgba(79, 190, 186, 1); | ||
80 | } | ||
81 | .index .learn-more a, | ||
82 | .index .learn-more a:hover, | ||
83 | .index .learn-more a:active { | ||
84 | color: #50c1e9 !important; | ||
85 | text-decoration: none; | ||
86 | } | ||
87 | .index .learn-more .icon { | ||
88 | font-weight: bold; | ||
89 | font-size: 16px; | ||
90 | } | ||
91 | @media (max-width: 767px) { | ||
92 | .index { | ||
93 | padding-top: 0; | ||
94 | min-height: 600px; | ||
95 | } | ||
96 | .index .download-link .btn { | ||
97 | padding: 15px; | ||
98 | } | ||
99 | } | ||
100 | /* ---------------------------------- | ||
101 | * social | ||
102 | * ---------------------------------- */ | ||
103 | .social { | ||
104 | position: relative; | ||
105 | margin-top: -100px; | ||
106 | margin-bottom: 0; | ||
107 | padding: 40px 5px; | ||
108 | height: 99px; | ||
109 | text-align: center; | ||
110 | background: rgba(255, 255, 255, .7) url(../img/divider.png) no-repeat 50% 100%; | ||
111 | } | ||
112 | .social li { | ||
113 | height: 30px; | ||
114 | display: inline-block; | ||
115 | vertical-align: top; | ||
116 | } | ||
117 | .social a { | ||
118 | color: #50c1e9 !important; | ||
119 | } | ||
120 | .social .github-watch { | ||
121 | width: 105px; | ||
122 | } | ||
123 | .social .github-fork { | ||
124 | width: 105px; | ||
125 | } | ||
126 | .social .twitter-share { | ||
127 | width: 80px; | ||
128 | margin-right: 10px; | ||
129 | } | ||
130 | .social .twitter-follow { | ||
131 | width: 200px; | ||
132 | } | ||
133 | /* ---------------------------------- | ||
134 | * desc | ||
135 | * ---------------------------------- */ | ||
136 | .desc { | ||
137 | text-align: center; | ||
138 | background-color: rgba(255, 255, 255, 1); | ||
139 | } | ||
140 | .desc a { | ||
141 | color: rgba(79, 190, 186, 1); | ||
142 | } | ||
143 | .desc a:hover, | ||
144 | .desc a:active { | ||
145 | color: #50c1e9; | ||
146 | text-decoration: none; | ||
147 | } | ||
148 | .desc .desc__introduces h3, | ||
149 | .desc .desc__introduces p { | ||
150 | margin: 0 auto; | ||
151 | } | ||
152 | .desc .desc__introduces h3 { | ||
153 | padding: 70px 0 14px; | ||
154 | max-width: 900px; | ||
155 | font-size: 28px; | ||
156 | } | ||
157 | .desc .desc__introduces p { | ||
158 | padding-bottom: 40px; | ||
159 | max-width: 900px; | ||
160 | font-size: 18px; | ||
161 | color: #888; | ||
162 | } | ||
163 | .desc .desc__introduces .photo--responsive img { | ||
164 | width: 100%; | ||
165 | } | ||
166 | .desc .desc__features { | ||
167 | margin: 70px auto; | ||
168 | text-align: left; | ||
169 | } | ||
170 | .desc .desc__features .row { | ||
171 | margin-bottom: 70px; | ||
172 | } | ||
173 | .desc .desc__features .col-md-6 { | ||
174 | padding-left: 247px; | ||
175 | min-height: 240px; | ||
176 | text-align: left; | ||
177 | } | ||
178 | .desc .desc__features .features__photo { | ||
179 | position: absolute; | ||
180 | top: 0; | ||
181 | left: 0; | ||
182 | } | ||
183 | .desc .desc__features h4 { | ||
184 | font-size: 20px; | ||
185 | margin-bottom: 10px; | ||
186 | } | ||
187 | .desc .desc__features p { | ||
188 | font-size: 16px; | ||
189 | color: #888; | ||
190 | line-height: 26px; | ||
191 | } | ||
192 | @media (max-width: 767px) { | ||
193 | .desc .desc__introduces h3 { | ||
194 | padding-top: 20px; | ||
195 | text-align: left; | ||
196 | } | ||
197 | .desc .desc__introduces p { | ||
198 | text-align: left; | ||
199 | } | ||
200 | .desc .desc__features { | ||
201 | margin-top: 20px; | ||
202 | } | ||
203 | .desc .desc__features .row { | ||
204 | margin-bottom: 20px; | ||
205 | } | ||
206 | .desc .desc__features .row p { | ||
207 | padding-bottom: 20px; | ||
208 | text-align: left; | ||
209 | } | ||
210 | .desc .desc__features .features__photo { | ||
211 | position: static; | ||
212 | } | ||
213 | .desc .desc__features .col-md-6 { | ||
214 | padding: 0 15px; | ||
215 | text-align: center; | ||
216 | } | ||
217 | } | ||
218 | /* ---------------------------------- | ||
219 | * docs | ||
220 | * ---------------------------------- */ | ||
221 | .docs-header { | ||
222 | padding-top: 50px; | ||
223 | border-top: 1px solid #50c1e9; | ||
224 | background: url(../img/wild_flowers.png) repeat 0 0; | ||
225 | } | ||
226 | .docs-header.header--noBackground { | ||
227 | background: none; | ||
228 | } | ||
229 | @media (max-width: 768px) { | ||
230 | .docs-header { | ||
231 | padding-top: 0; | ||
232 | } | ||
233 | } | ||
234 | /* ---------------------------------- | ||
235 | * advertisement | ||
236 | * ---------------------------------- */ | ||
237 | .advertisement { | ||
238 | width: auto !important; | ||
239 | padding: 10px !important; | ||
240 | overflow: hidden; /* clearfix */ | ||
241 | font-size: 13px !important; | ||
242 | line-height: 18px !important; | ||
243 | text-align: left; | ||
244 | background: #50c1e9 !important; | ||
245 | border: 0 !important; | ||
246 | border-radius: 4px; | ||
247 | box-shadow: inset 0 3px 5px rgba(0,0,0,.075); | ||
248 | height: 121px; | ||
249 | } | ||
250 | .advertisement-image { | ||
251 | margin: 0 !important; | ||
252 | position: absolute; | ||
253 | } | ||
254 | .advertisement-text { | ||
255 | margin-left: 100px !important; | ||
256 | font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important; | ||
257 | } | ||
258 | .advertisement-text a { | ||
259 | color: #fff !important; | ||
260 | } | ||
261 | @media (max-width: 767px) { | ||
262 | .advertisement { | ||
263 | position: static; | ||
264 | margin-top: 30px; | ||
265 | box-shadow: inset 0 3px 5px rgba(0,0,0,.075), 0 1px 0 rgba(255,255,255,.1); | ||
266 | } | ||
267 | } | ||
268 | @media (min-width: 768px) { | ||
269 | .advertisement { | ||
270 | position: absolute; | ||
271 | top: 5px; | ||
272 | right: 15px; /* 15px instead of 0 since box-sizing */ | ||
273 | padding: 15px !important; | ||
274 | width: 300px !important; | ||
275 | } | ||
276 | } | ||
277 | /* ---------------------------------- | ||
278 | * navbar | ||
279 | * ---------------------------------- */ | ||
280 | .navbar-custom { | ||
281 | position: fixed; | ||
282 | top: 0; | ||
283 | left: 0; | ||
284 | border: none; | ||
285 | border-radius: 0; | ||
286 | background-color: rgba(255, 255, 255, .9); | ||
287 | width: 100%; | ||
288 | z-index: 2000; | ||
289 | } | ||
290 | .navbar-custom .nav li a { | ||
291 | display: block; | ||
292 | color: #50c1e9; | ||
293 | } | ||
294 | .navbar-custom .nav li a:focus, | ||
295 | .navbar-custom .nav li a:hover { | ||
296 | color: #50c1e9; | ||
297 | } | ||
298 | .navbar-custom .nav li a:active, | ||
299 | .navbar-custom .nav li a.current { | ||
300 | border-bottom: 3px solid #50c1e9; | ||
301 | } | ||
302 | .navbar-custom .navbar-toggle { | ||
303 | position: relative; | ||
304 | background-color: #50c1e9; | ||
305 | border-color: #50c1e9; | ||
306 | } | ||
307 | .navbar-custom .navbar-toggle:hover, | ||
308 | .navbar-custom .navbar-toggle:focus { | ||
309 | background-color: #50c1e9; | ||
310 | } | ||
311 | .navbar-custom .navbar-toggle .icon-bar { | ||
312 | background-color: rgba(255, 255, 255, .9); | ||
313 | } | ||
314 | .navbar-custom .navbar-brand { | ||
315 | padding: 5px 15px; | ||
316 | opacity: .7; | ||
317 | filter:alpha(opacity=70); | ||
318 | transition: opacity .4s ease-in-out; | ||
319 | } | ||
320 | .navbar-custom .navbar-brand:hover, | ||
321 | .navbar-custom .navbar-brand:active { | ||
322 | opacity: 1; | ||
323 | filter:alpha(opacity=100); | ||
324 | } | ||
325 | .navbar-default .navbar-collapse { | ||
326 | border-color: #e7e7e7; | ||
327 | } | ||
328 | @media (max-width: 992px) { | ||
329 | .navbar-custom .navbar-brand { | ||
330 | width: 63px; | ||
331 | overflow: hidden; | ||
332 | } | ||
333 | } | ||
334 | @media (max-width: 767px) { | ||
335 | .navbar-custom { | ||
336 | position: relative; | ||
337 | top: 0; | ||
338 | } | ||
339 | .navbar-custom .navbar-nav > li > a:hover, | ||
340 | .navbar-custom .navbar-nav > li > a:focus { | ||
341 | color: #fff; | ||
342 | background-color: #50c1e9; | ||
343 | } | ||
344 | } | ||
345 | /* ---------------------------------- | ||
346 | * topic | ||
347 | * ---------------------------------- */ | ||
348 | .topic { | ||
349 | position: relative; | ||
350 | padding: 50px 0 110px; | ||
351 | } | ||
352 | .topic h3 { | ||
353 | margin-top: 30px; | ||
354 | color: #fff; | ||
355 | font-size: 28px; | ||
356 | font-weight: normal; | ||
357 | } | ||
358 | .topic h4 { | ||
359 | margin-top: 15px; | ||
360 | color: rgba(255, 255, 255, .8); | ||
361 | font-weight: normal; | ||
362 | } | ||
363 | .topic .topic__infos { | ||
364 | position: absolute; | ||
365 | bottom: 0; | ||
366 | padding-bottom: 15px; | ||
367 | padding-top: 14px; | ||
368 | background: rgba(255, 255, 255, 0.25); | ||
369 | width: 100%; | ||
370 | } | ||
371 | .topic .container { | ||
372 | position: relative; | ||
373 | color: rgba(255, 255, 255, .8); | ||
374 | } | ||
375 | .topic .container a { | ||
376 | color: #fff; | ||
377 | filter:alpha(opacity=100); | ||
378 | opacity: 1; | ||
379 | text-decoration: underline; | ||
380 | padding: 0; | ||
381 | font-weight: normal; | ||
382 | } | ||
383 | /* ---------------------------------- | ||
384 | * documents | ||
385 | * ---------------------------------- */ | ||
386 | .documents { | ||
387 | margin-top: 40px; | ||
388 | } | ||
389 | /* ---------------------------------- | ||
390 | * details | ||
391 | * ---------------------------------- */ | ||
392 | .details { | ||
393 | position: relative; | ||
394 | padding-right: 400px; | ||
395 | } | ||
396 | @media (max-width: 991px) { | ||
397 | .details { width: 100%; } | ||
398 | } | ||
399 | @media (max-width: 767px) { | ||
400 | .details { padding: 0 15px; } | ||
401 | } | ||
402 | /* ---------------------------------- | ||
403 | * docs-article | ||
404 | * ---------------------------------- */ | ||
405 | .docs-article { | ||
406 | margin-bottom: 40px; | ||
407 | padding-bottom: 40px; | ||
408 | border-bottom: 1px solid #ddd; | ||
409 | } | ||
410 | .docs-article:last-child { | ||
411 | border-bottom: none; | ||
412 | } | ||
413 | .docs-article h3 { | ||
414 | margin: 0 0 10px; | ||
415 | padding-bottom: 10px; | ||
416 | font-family: "Georgia", "Palatino", "Times New Roman", "Times" !important; | ||
417 | font-weight: normal; | ||
418 | font-size: 25px; | ||
419 | color: #50c1e9; | ||
420 | } | ||
421 | .docs-article p { | ||
422 | margin-bottom: 10px; | ||
423 | font-size: 14px; | ||
424 | line-height: 22px; | ||
425 | } | ||
426 | .docs-article dd { | ||
427 | margin-bottom: 10px; | ||
428 | } | ||
429 | .docs-article a { | ||
430 | color: #50c1e9; | ||
431 | text-decoration: underline; | ||
432 | } | ||
433 | .docs-article a:hover { | ||
434 | color: #50c1e9; | ||
435 | } | ||
436 | .docs-article .item__infos { | ||
437 | margin: 0 0 10px 0; | ||
438 | font-size: 14px; | ||
439 | list-style: disc; | ||
440 | } | ||
441 | .docs-article .item__infos li { | ||
442 | margin-bottom: 10px; | ||
443 | } | ||
444 | .docs-article .btn-primary, | ||
445 | .docs-article .btn-primary:hover { | ||
446 | color: #fff; | ||
447 | text-decoration: none; | ||
448 | } | ||
449 | .docs-article pre { | ||
450 | border: none; | ||
451 | background-color: #f7f7f7; | ||
452 | } | ||
453 | /* ---------------------------------- | ||
454 | * example | ||
455 | * ---------------------------------- */ | ||
456 | .example { | ||
457 | margin-bottom: 20px; | ||
458 | } | ||
459 | .example .example-title { | ||
460 | margin-bottom: 20px; | ||
461 | font-weight: 700; | ||
462 | font-size: 18px; | ||
463 | text-shadow: 2px 2px 2px rgba(255, 255, 255, 1); | ||
464 | } | ||
465 | .example .example-title span { | ||
466 | font-weight: normal; | ||
467 | font-size: 14px; | ||
468 | color: #ED5565; | ||
469 | } | ||
470 | .example [class*="col-"] { | ||
471 | margin-bottom: 10px; | ||
472 | } | ||
473 | .example-dropdown h2 + .dropdown-menu, | ||
474 | .example-popover .popover, | ||
475 | .example-modal .modal { | ||
476 | position: static; | ||
477 | display: block; | ||
478 | } | ||
479 | .example-dropdown h2 + .dropdown-menu { | ||
480 | float: none; | ||
481 | width: 200px; | ||
482 | } | ||
483 | .example-popover .popover { | ||
484 | position: relative; | ||
485 | } | ||
486 | @media (max-width: 960px) { | ||
487 | .tooltip-demo [class*="col-"] { | ||
488 | text-align: center; | ||
489 | } | ||
490 | .tooltip-demo [class*="col-"] .btn-block { | ||
491 | display: inline-block; | ||
492 | margin: 0 auto; | ||
493 | width: 160px; | ||
494 | } | ||
495 | } | ||
496 | .example-popover [class*="col-"]:nth-of-type(1) .popover { | ||
497 | margin-top: 0; | ||
498 | } | ||
499 | .example-popover [class*="col-"]:nth-of-type(3) .popover, | ||
500 | .example-popover [class*="col-"]:nth-of-type(4) .popover { | ||
501 | margin-top: 40px; | ||
502 | } | ||
503 | .example-progress [class*="col-"]:last-child .progress { | ||
504 | margin-bottom: 10px; | ||
505 | } | ||
506 | .example-pagination .pagination, | ||
507 | .example-pagination .pager { | ||
508 | margin: 0 !important; | ||
509 | } | ||
510 | |||
511 | .example-modal .modal { | ||
512 | overflow: hidden; | ||
513 | } | ||
514 | @media (min-width: 768px) { | ||
515 | .example-modal .modal-dialog { | ||
516 | width: 545px; | ||
517 | margin: 5px; | ||
518 | } | ||
519 | } | ||
520 | .example-typography { | ||
521 | position: relative; | ||
522 | padding-left: 25%; | ||
523 | margin-bottom: 40px; | ||
524 | } | ||
525 | .example-typography .heading-note, | ||
526 | .example-typography .text-note { | ||
527 | display: block; | ||
528 | width: 260px; | ||
529 | position: absolute; | ||
530 | bottom: 2px; | ||
531 | left: 0; | ||
532 | font-size: 13px; | ||
533 | line-height: 13px; | ||
534 | color: #AAB2BD; | ||
535 | font-weight: 400; | ||
536 | } | ||
537 | .example-typography .text-note { | ||
538 | bottom: auto; | ||
539 | top: 10px; | ||
540 | } | ||
541 | /* ---------------------------------- | ||
542 | * color-swatches | ||
543 | * ---------------------------------- */ | ||
544 | .color-swatches .swatches { | ||
545 | -webkit-border-radius: 4px; | ||
546 | -moz-border-radius: 4px; | ||
547 | border-radius: 4px; | ||
548 | background-color: #FFF; | ||
549 | width: 100%; | ||
550 | box-shadow: 0 1px 2px rgba(0, 0, 0, .2); | ||
551 | } | ||
552 | .color-swatches .light, | ||
553 | .color-swatches .dark { | ||
554 | width: 50%; | ||
555 | height: 50px; | ||
556 | } | ||
557 | .color-swatches .light { | ||
558 | -webkit-border-radius: 4px 0 0 0; | ||
559 | -moz-border-radius: 4px 0 0 0; | ||
560 | border-radius: 4px 0 0 0; | ||
561 | } | ||
562 | .color-swatches .dark { | ||
563 | -webkit-border-radius: 0 4px 0 0; | ||
564 | -moz-border-radius: 0 4px 0 0; | ||
565 | border-radius: 0 4px 0 0; | ||
566 | } | ||
567 | .color-swatches .infos { | ||
568 | padding: 5px 10px; | ||
569 | } | ||
570 | .color-swatches .infos h4, | ||
571 | .color-swatches .infos p { | ||
572 | margin: 0; | ||
573 | } | ||
574 | .color-swatches .infos h4 { | ||
575 | margin-bottom: 3px; | ||
576 | font-weight: bold; | ||
577 | font-size: 14px; | ||
578 | } | ||
579 | .color-swatches .infos p { | ||
580 | font-size: 12px; | ||
581 | } | ||
582 | /* ---------------------------------- | ||
583 | * site-footer | ||
584 | * ---------------------------------- */ | ||
585 | .site-footer { | ||
586 | position: relative; | ||
587 | z-index: 2000; | ||
588 | border-top: 1px dashed #AAB2BD; | ||
589 | padding: 40px 0 20px; | ||
590 | background-color: #f5f5f5; | ||
591 | } | ||
592 | .site-footer a, | ||
593 | .site-footer .connect { | ||
594 | color: #50c1e9; | ||
595 | } | ||
596 | .site-footer a:hover, | ||
597 | .site-footer a:active { | ||
598 | color: #50c1e9; | ||
599 | text-decoration: none; | ||
600 | } | ||
601 | .site-footer .row .col-md-4 { | ||
602 | margin-bottom: 20px; | ||
603 | } | ||
604 | .site-footer h3 { | ||
605 | margin-bottom: 20px; | ||
606 | font-weight: 600; | ||
607 | font-size: 18px; | ||
608 | } | ||
609 | .site-footer ul { | ||
610 | padding-left: 0; | ||
611 | } | ||
612 | .site-footer li { | ||
613 | list-style: none; | ||
614 | font-size: 14px; | ||
615 | } | ||
616 | .site-footer hr { | ||
617 | margin: 20px 0; | ||
618 | border: none; | ||
619 | height: 1px; | ||
620 | width: 100%; | ||
621 | } | ||
622 | .site-footer hr.dashed { | ||
623 | border-top: 1px dashed #ccc; | ||
624 | } | ||
625 | .site-footer .icon { | ||
626 | margin-right: 10px; | ||
627 | font-size: 28px; | ||
628 | } | ||
629 | .site-footer form { | ||
630 | padding: 0 !important; | ||
631 | } | ||
632 | .site-footer form label { | ||
633 | font-size: 14px !important; | ||
634 | font-weight: normal !important; | ||
635 | } | ||
636 | .site-footer input[type="email"] { | ||
637 | margin-right: 10px; | ||
638 | width: 75%; | ||
639 | } | ||
640 | .site-footer input[type="email"], | ||
641 | .site-footer input[type="email"]:focus, | ||
642 | .site-footer input[type="submit"], | ||
643 | .site-footer input[type="submit"]:active, | ||
644 | .site-footer input[type="submit"]:focus { | ||
645 | border: none !important; | ||
646 | } | ||
647 | .site-footer .email, | ||
648 | .site-footer .clear { | ||
649 | float: left; | ||
650 | } | ||
651 | .site-footer .copyright p:last-child { | ||
652 | margin-top: 10px; | ||
653 | } | ||
654 | .site-footer .copyright b { | ||
655 | font-size: 16px; | ||
656 | } | ||
657 | .site-footer .download .download__infos { | ||
658 | font-size: 18px; | ||
659 | } | ||
660 | .site-footer .download .btn { | ||
661 | color: #000; | ||
662 | } | ||
663 | .site-footer .download .btn-primary { | ||
664 | color: #fff; | ||
665 | } |
css/site.min.css
0 → 100644
This diff could not be displayed because it is too large.
documentation.html
0 → 100644
This diff could not be displayed because it is too large.
fonts/glyphicons-halflings-regular.eot
0 → 100644
No preview for this file type
fonts/glyphicons-halflings-regular.svg
0 → 100644
1 | <?xml version="1.0" standalone="no"?> | ||
2 | <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" > | ||
3 | <svg xmlns="http://www.w3.org/2000/svg"> | ||
4 | <metadata></metadata> | ||
5 | <defs> | ||
6 | <font id="glyphicons_halflingsregular" horiz-adv-x="1200" > | ||
7 | <font-face units-per-em="1200" ascent="960" descent="-240" /> | ||
8 | <missing-glyph horiz-adv-x="500" /> | ||
9 | <glyph /> | ||
10 | <glyph /> | ||
11 | <glyph unicode="
" /> | ||
12 | <glyph unicode=" " /> | ||
13 | <glyph unicode="*" d="M100 500v200h259l-183 183l141 141l183 -183v259h200v-259l183 183l141 -141l-183 -183h259v-200h-259l183 -183l-141 -141l-183 183v-259h-200v259l-183 -183l-141 141l183 183h-259z" /> | ||
14 | <glyph unicode="+" d="M0 400v300h400v400h300v-400h400v-300h-400v-400h-300v400h-400z" /> | ||
15 | <glyph unicode=" " /> | ||
16 | <glyph unicode=" " horiz-adv-x="652" /> | ||
17 | <glyph unicode=" " horiz-adv-x="1304" /> | ||
18 | <glyph unicode=" " horiz-adv-x="652" /> | ||
19 | <glyph unicode=" " horiz-adv-x="1304" /> | ||
20 | <glyph unicode=" " horiz-adv-x="434" /> | ||
21 | <glyph unicode=" " horiz-adv-x="326" /> | ||
22 | <glyph unicode=" " horiz-adv-x="217" /> | ||
23 | <glyph unicode=" " horiz-adv-x="217" /> | ||
24 | <glyph unicode=" " horiz-adv-x="163" /> | ||
25 | <glyph unicode=" " horiz-adv-x="260" /> | ||
26 | <glyph unicode=" " horiz-adv-x="72" /> | ||
27 | <glyph unicode=" " horiz-adv-x="260" /> | ||
28 | <glyph unicode=" " horiz-adv-x="326" /> | ||
29 | <glyph unicode="€" d="M100 500l100 100h113q0 47 5 100h-218l100 100h135q37 167 112 257q117 141 297 141q242 0 354 -189q60 -103 66 -209h-181q0 55 -25.5 99t-63.5 68t-75 36.5t-67 12.5q-24 0 -52.5 -10t-62.5 -32t-65.5 -67t-50.5 -107h379l-100 -100h-300q-6 -46 -6 -100h406l-100 -100 h-300q9 -74 33 -132t52.5 -91t62 -54.5t59 -29t46.5 -7.5q29 0 66 13t75 37t63.5 67.5t25.5 96.5h174q-31 -172 -128 -278q-107 -117 -274 -117q-205 0 -324 158q-36 46 -69 131.5t-45 205.5h-217z" /> | ||
30 | <glyph unicode="−" d="M200 400h900v300h-900v-300z" /> | ||
31 | <glyph unicode="◼" horiz-adv-x="500" d="M0 0z" /> | ||
32 | <glyph unicode="☁" d="M-14 494q0 -80 56.5 -137t135.5 -57h750q120 0 205 86.5t85 207.5t-85 207t-205 86q-46 0 -90 -14q-44 97 -134.5 156.5t-200.5 59.5q-152 0 -260 -107.5t-108 -260.5q0 -25 2 -37q-66 -14 -108.5 -67.5t-42.5 -122.5z" /> | ||
33 | <glyph unicode="✉" d="M0 100l400 400l200 -200l200 200l400 -400h-1200zM0 300v600l300 -300zM0 1100l600 -603l600 603h-1200zM900 600l300 300v-600z" /> | ||
34 | <glyph unicode="✏" d="M-13 -13l333 112l-223 223zM187 403l214 -214l614 614l-214 214zM887 1103l214 -214l99 92q13 13 13 32.5t-13 33.5l-153 153q-15 13 -33 13t-33 -13z" /> | ||
35 | <glyph unicode="" d="M0 1200h1200l-500 -550v-550h300v-100h-800v100h300v550z" /> | ||
36 | <glyph unicode="" d="M14 84q18 -55 86 -75.5t147 5.5q65 21 109 69t44 90v606l600 155v-521q-64 16 -138 -7q-79 -26 -122.5 -83t-25.5 -111q18 -55 86 -75.5t147 4.5q70 23 111.5 63.5t41.5 95.5v881q0 10 -7 15.5t-17 2.5l-752 -193q-10 -3 -17 -12.5t-7 -19.5v-689q-64 17 -138 -7 q-79 -25 -122.5 -82t-25.5 -112z" /> | ||
37 | <glyph unicode="" d="M23 693q0 200 142 342t342 142t342 -142t142 -342q0 -142 -78 -261l300 -300q7 -8 7 -18t-7 -18l-109 -109q-8 -7 -18 -7t-18 7l-300 300q-119 -78 -261 -78q-200 0 -342 142t-142 342zM176 693q0 -136 97 -233t234 -97t233.5 96.5t96.5 233.5t-96.5 233.5t-233.5 96.5 t-234 -97t-97 -233z" /> | ||
38 | <glyph unicode="" d="M100 784q0 64 28 123t73 100.5t104.5 64t119 20.5t120 -38.5t104.5 -104.5q48 69 109.5 105t121.5 38t118.5 -20.5t102.5 -64t71 -100.5t27 -123q0 -57 -33.5 -117.5t-94 -124.5t-126.5 -127.5t-150 -152.5t-146 -174q-62 85 -145.5 174t-149.5 152.5t-126.5 127.5 t-94 124.5t-33.5 117.5z" /> | ||
39 | <glyph unicode="" d="M-72 800h479l146 400h2l146 -400h472l-382 -278l145 -449l-384 275l-382 -275l146 447zM168 71l2 1z" /> | ||
40 | <glyph unicode="" d="M-72 800h479l146 400h2l146 -400h472l-382 -278l145 -449l-384 275l-382 -275l146 447zM168 71l2 1zM237 700l196 -142l-73 -226l192 140l195 -141l-74 229l193 140h-235l-77 211l-78 -211h-239z" /> | ||
41 | <glyph unicode="" d="M0 0v143l400 257v100q-37 0 -68.5 74.5t-31.5 125.5v200q0 124 88 212t212 88t212 -88t88 -212v-200q0 -51 -31.5 -125.5t-68.5 -74.5v-100l400 -257v-143h-1200z" /> | ||
42 | <glyph unicode="" d="M0 0v1100h1200v-1100h-1200zM100 100h100v100h-100v-100zM100 300h100v100h-100v-100zM100 500h100v100h-100v-100zM100 700h100v100h-100v-100zM100 900h100v100h-100v-100zM300 100h600v400h-600v-400zM300 600h600v400h-600v-400zM1000 100h100v100h-100v-100z M1000 300h100v100h-100v-100zM1000 500h100v100h-100v-100zM1000 700h100v100h-100v-100zM1000 900h100v100h-100v-100z" /> | ||
43 | <glyph unicode="" d="M0 50v400q0 21 14.5 35.5t35.5 14.5h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5zM0 650v400q0 21 14.5 35.5t35.5 14.5h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400 q-21 0 -35.5 14.5t-14.5 35.5zM600 50v400q0 21 14.5 35.5t35.5 14.5h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5zM600 650v400q0 21 14.5 35.5t35.5 14.5h400q21 0 35.5 -14.5t14.5 -35.5v-400 q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5z" /> | ||
44 | <glyph unicode="" d="M0 50v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5zM0 450v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200 q-21 0 -35.5 14.5t-14.5 35.5zM0 850v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5zM400 50v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5 t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5zM400 450v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5zM400 850v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5 v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5zM800 50v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5zM800 450v200q0 21 14.5 35.5t35.5 14.5h200 q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5zM800 850v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5z" /> | ||
45 | <glyph unicode="" d="M0 50v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5zM0 450q0 -21 14.5 -35.5t35.5 -14.5h200q21 0 35.5 14.5t14.5 35.5v200q0 21 -14.5 35.5t-35.5 14.5h-200q-21 0 -35.5 -14.5 t-14.5 -35.5v-200zM0 850v200q0 21 14.5 35.5t35.5 14.5h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5zM400 50v200q0 21 14.5 35.5t35.5 14.5h700q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5 t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5zM400 450v200q0 21 14.5 35.5t35.5 14.5h700q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5zM400 850v200q0 21 14.5 35.5t35.5 14.5h700q21 0 35.5 -14.5t14.5 -35.5 v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5z" /> | ||
46 | <glyph unicode="" d="M29 454l419 -420l818 820l-212 212l-607 -607l-206 207z" /> | ||
47 | <glyph unicode="" d="M106 318l282 282l-282 282l212 212l282 -282l282 282l212 -212l-282 -282l282 -282l-212 -212l-282 282l-282 -282z" /> | ||
48 | <glyph unicode="" d="M23 693q0 200 142 342t342 142t342 -142t142 -342q0 -142 -78 -261l300 -300q7 -8 7 -18t-7 -18l-109 -109q-8 -7 -18 -7t-18 7l-300 300q-119 -78 -261 -78q-200 0 -342 142t-142 342zM176 693q0 -136 97 -233t234 -97t233.5 96.5t96.5 233.5t-96.5 233.5t-233.5 96.5 t-234 -97t-97 -233zM300 600v200h100v100h200v-100h100v-200h-100v-100h-200v100h-100z" /> | ||
49 | <glyph unicode="" d="M23 694q0 200 142 342t342 142t342 -142t142 -342q0 -141 -78 -262l300 -299q7 -7 7 -18t-7 -18l-109 -109q-8 -8 -18 -8t-18 8l-300 300q-119 -78 -261 -78q-200 0 -342 142t-142 342zM176 694q0 -136 97 -233t234 -97t233.5 97t96.5 233t-96.5 233t-233.5 97t-234 -97 t-97 -233zM300 601h400v200h-400v-200z" /> | ||
50 | <glyph unicode="" d="M23 600q0 183 105 331t272 210v-166q-103 -55 -165 -155t-62 -220q0 -177 125 -302t302 -125t302 125t125 302q0 120 -62 220t-165 155v166q167 -62 272 -210t105 -331q0 -118 -45.5 -224.5t-123 -184t-184 -123t-224.5 -45.5t-224.5 45.5t-184 123t-123 184t-45.5 224.5 zM500 750q0 -21 14.5 -35.5t35.5 -14.5h100q21 0 35.5 14.5t14.5 35.5v400q0 21 -14.5 35.5t-35.5 14.5h-100q-21 0 -35.5 -14.5t-14.5 -35.5v-400z" /> | ||
51 | <glyph unicode="" d="M100 1h200v300h-200v-300zM400 1v500h200v-500h-200zM700 1v800h200v-800h-200zM1000 1v1200h200v-1200h-200z" /> | ||
52 | <glyph unicode="" d="M26 601q0 -33 6 -74l151 -38l2 -6q14 -49 38 -93l3 -5l-80 -134q45 -59 105 -105l133 81l5 -3q45 -26 94 -39l5 -2l38 -151q40 -5 74 -5q27 0 74 5l38 151l6 2q46 13 93 39l5 3l134 -81q56 44 104 105l-80 134l3 5q24 44 39 93l1 6l152 38q5 40 5 74q0 28 -5 73l-152 38 l-1 6q-16 51 -39 93l-3 5l80 134q-44 58 -104 105l-134 -81l-5 3q-45 25 -93 39l-6 1l-38 152q-40 5 -74 5q-27 0 -74 -5l-38 -152l-5 -1q-50 -14 -94 -39l-5 -3l-133 81q-59 -47 -105 -105l80 -134l-3 -5q-25 -47 -38 -93l-2 -6l-151 -38q-6 -48 -6 -73zM385 601 q0 88 63 151t152 63t152 -63t63 -151q0 -89 -63 -152t-152 -63t-152 63t-63 152z" /> | ||
53 | <glyph unicode="" d="M100 1025v50q0 10 7.5 17.5t17.5 7.5h275v100q0 41 29.5 70.5t70.5 29.5h300q41 0 70.5 -29.5t29.5 -70.5v-100h275q10 0 17.5 -7.5t7.5 -17.5v-50q0 -11 -7 -18t-18 -7h-1050q-11 0 -18 7t-7 18zM200 100v800h900v-800q0 -41 -29.5 -71t-70.5 -30h-700q-41 0 -70.5 30 t-29.5 71zM300 100h100v700h-100v-700zM500 100h100v700h-100v-700zM500 1100h300v100h-300v-100zM700 100h100v700h-100v-700zM900 100h100v700h-100v-700z" /> | ||
54 | <glyph unicode="" d="M1 601l656 644l644 -644h-200v-600h-300v400h-300v-400h-300v600h-200z" /> | ||
55 | <glyph unicode="" d="M100 25v1150q0 11 7 18t18 7h475v-500h400v-675q0 -11 -7 -18t-18 -7h-850q-11 0 -18 7t-7 18zM700 800v300l300 -300h-300z" /> | ||
56 | <glyph unicode="" d="M4 600q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM186 600q0 -171 121.5 -292.5t292.5 -121.5t292.5 121.5t121.5 292.5t-121.5 292.5t-292.5 121.5t-292.5 -121.5t-121.5 -292.5zM500 500v400h100 v-300h200v-100h-300z" /> | ||
57 | <glyph unicode="" d="M-100 0l431 1200h209l-21 -300h162l-20 300h208l431 -1200h-538l-41 400h-242l-40 -400h-539zM488 500h224l-27 300h-170z" /> | ||
58 | <glyph unicode="" d="M0 0v400h490l-290 300h200v500h300v-500h200l-290 -300h490v-400h-1100zM813 200h175v100h-175v-100z" /> | ||
59 | <glyph unicode="" d="M1 600q0 122 47.5 233t127.5 191t191 127.5t233 47.5t233 -47.5t191 -127.5t127.5 -191t47.5 -233t-47.5 -233t-127.5 -191t-191 -127.5t-233 -47.5t-233 47.5t-191 127.5t-127.5 191t-47.5 233zM188 600q0 -170 121 -291t291 -121t291 121t121 291t-121 291t-291 121 t-291 -121t-121 -291zM350 600h150v300h200v-300h150l-250 -300z" /> | ||
60 | <glyph unicode="" d="M4 600q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM186 600q0 -171 121.5 -292.5t292.5 -121.5t292.5 121.5t121.5 292.5t-121.5 292.5t-292.5 121.5t-292.5 -121.5t-121.5 -292.5zM350 600l250 300 l250 -300h-150v-300h-200v300h-150z" /> | ||
61 | <glyph unicode="" d="M0 25v475l200 700h800l199 -700l1 -475q0 -11 -7 -18t-18 -7h-1150q-11 0 -18 7t-7 18zM200 500h200l50 -200h300l50 200h200l-97 500h-606z" /> | ||
62 | <glyph unicode="" d="M4 600q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM186 600q0 -172 121.5 -293t292.5 -121t292.5 121t121.5 293q0 171 -121.5 292.5t-292.5 121.5t-292.5 -121.5t-121.5 -292.5zM500 397v401 l297 -200z" /> | ||
63 | <glyph unicode="" d="M23 600q0 -118 45.5 -224.5t123 -184t184 -123t224.5 -45.5t224.5 45.5t184 123t123 184t45.5 224.5h-150q0 -177 -125 -302t-302 -125t-302 125t-125 302t125 302t302 125q136 0 246 -81l-146 -146h400v400l-145 -145q-157 122 -355 122q-118 0 -224.5 -45.5t-184 -123 t-123 -184t-45.5 -224.5z" /> | ||
64 | <glyph unicode="" d="M23 600q0 118 45.5 224.5t123 184t184 123t224.5 45.5q198 0 355 -122l145 145v-400h-400l147 147q-112 80 -247 80q-177 0 -302 -125t-125 -302h-150zM100 0v400h400l-147 -147q112 -80 247 -80q177 0 302 125t125 302h150q0 -118 -45.5 -224.5t-123 -184t-184 -123 t-224.5 -45.5q-198 0 -355 122z" /> | ||
65 | <glyph unicode="" d="M100 0h1100v1200h-1100v-1200zM200 100v900h900v-900h-900zM300 200v100h100v-100h-100zM300 400v100h100v-100h-100zM300 600v100h100v-100h-100zM300 800v100h100v-100h-100zM500 200h500v100h-500v-100zM500 400v100h500v-100h-500zM500 600v100h500v-100h-500z M500 800v100h500v-100h-500z" /> | ||
66 | <glyph unicode="" d="M0 100v600q0 41 29.5 70.5t70.5 29.5h100v200q0 82 59 141t141 59h300q82 0 141 -59t59 -141v-200h100q41 0 70.5 -29.5t29.5 -70.5v-600q0 -41 -29.5 -70.5t-70.5 -29.5h-900q-41 0 -70.5 29.5t-29.5 70.5zM400 800h300v150q0 21 -14.5 35.5t-35.5 14.5h-200 q-21 0 -35.5 -14.5t-14.5 -35.5v-150z" /> | ||
67 | <glyph unicode="" d="M100 0v1100h100v-1100h-100zM300 400q60 60 127.5 84t127.5 17.5t122 -23t119 -30t110 -11t103 42t91 120.5v500q-40 -81 -101.5 -115.5t-127.5 -29.5t-138 25t-139.5 40t-125.5 25t-103 -29.5t-65 -115.5v-500z" /> | ||
68 | <glyph unicode="" d="M0 275q0 -11 7 -18t18 -7h50q11 0 18 7t7 18v300q0 127 70.5 231.5t184.5 161.5t245 57t245 -57t184.5 -161.5t70.5 -231.5v-300q0 -11 7 -18t18 -7h50q11 0 18 7t7 18v300q0 116 -49.5 227t-131 192.5t-192.5 131t-227 49.5t-227 -49.5t-192.5 -131t-131 -192.5 t-49.5 -227v-300zM200 20v460q0 8 6 14t14 6h160q8 0 14 -6t6 -14v-460q0 -8 -6 -14t-14 -6h-160q-8 0 -14 6t-6 14zM800 20v460q0 8 6 14t14 6h160q8 0 14 -6t6 -14v-460q0 -8 -6 -14t-14 -6h-160q-8 0 -14 6t-6 14z" /> | ||
69 | <glyph unicode="" d="M0 400h300l300 -200v800l-300 -200h-300v-400zM688 459l141 141l-141 141l71 71l141 -141l141 141l71 -71l-141 -141l141 -141l-71 -71l-141 141l-141 -141z" /> | ||
70 | <glyph unicode="" d="M0 400h300l300 -200v800l-300 -200h-300v-400zM700 857l69 53q111 -135 111 -310q0 -169 -106 -302l-67 54q86 110 86 248q0 146 -93 257z" /> | ||
71 | <glyph unicode="" d="M0 401v400h300l300 200v-800l-300 200h-300zM702 858l69 53q111 -135 111 -310q0 -170 -106 -303l-67 55q86 110 86 248q0 145 -93 257zM889 951l7 -8q123 -151 123 -344q0 -189 -119 -339l-7 -8l81 -66l6 8q142 178 142 405q0 230 -144 408l-6 8z" /> | ||
72 | <glyph unicode="" d="M0 0h500v500h-200v100h-100v-100h-200v-500zM0 600h100v100h400v100h100v100h-100v300h-500v-600zM100 100v300h300v-300h-300zM100 800v300h300v-300h-300zM200 200v100h100v-100h-100zM200 900h100v100h-100v-100zM500 500v100h300v-300h200v-100h-100v-100h-200v100 h-100v100h100v200h-200zM600 0v100h100v-100h-100zM600 1000h100v-300h200v-300h300v200h-200v100h200v500h-600v-200zM800 800v300h300v-300h-300zM900 0v100h300v-100h-300zM900 900v100h100v-100h-100zM1100 200v100h100v-100h-100z" /> | ||
73 | <glyph unicode="" d="M0 200h100v1000h-100v-1000zM100 0v100h300v-100h-300zM200 200v1000h100v-1000h-100zM500 0v91h100v-91h-100zM500 200v1000h200v-1000h-200zM700 0v91h100v-91h-100zM800 200v1000h100v-1000h-100zM900 0v91h200v-91h-200zM1000 200v1000h200v-1000h-200z" /> | ||
74 | <glyph unicode="" d="M0 700l1 475q0 10 7.5 17.5t17.5 7.5h474l700 -700l-500 -500zM148 953q0 -42 29 -71q30 -30 71.5 -30t71.5 30q29 29 29 71t-29 71q-30 30 -71.5 30t-71.5 -30q-29 -29 -29 -71z" /> | ||
75 | <glyph unicode="" d="M1 700l1 475q0 11 7 18t18 7h474l700 -700l-500 -500zM148 953q0 -42 30 -71q29 -30 71 -30t71 30q30 29 30 71t-30 71q-29 30 -71 30t-71 -30q-30 -29 -30 -71zM701 1200h100l700 -700l-500 -500l-50 50l450 450z" /> | ||
76 | <glyph unicode="" d="M100 0v1025l175 175h925v-1000l-100 -100v1000h-750l-100 -100h750v-1000h-900z" /> | ||
77 | <glyph unicode="" d="M200 0l450 444l450 -443v1150q0 20 -14.5 35t-35.5 15h-800q-21 0 -35.5 -15t-14.5 -35v-1151z" /> | ||
78 | <glyph unicode="" d="M0 100v700h200l100 -200h600l100 200h200v-700h-200v200h-800v-200h-200zM253 829l40 -124h592l62 124l-94 346q-2 11 -10 18t-18 7h-450q-10 0 -18 -7t-10 -18zM281 24l38 152q2 10 11.5 17t19.5 7h500q10 0 19.5 -7t11.5 -17l38 -152q2 -10 -3.5 -17t-15.5 -7h-600 q-10 0 -15.5 7t-3.5 17z" /> | ||
79 | <glyph unicode="" d="M0 200q0 -41 29.5 -70.5t70.5 -29.5h1000q41 0 70.5 29.5t29.5 70.5v600q0 41 -29.5 70.5t-70.5 29.5h-150q-4 8 -11.5 21.5t-33 48t-53 61t-69 48t-83.5 21.5h-200q-41 0 -82 -20.5t-70 -50t-52 -59t-34 -50.5l-12 -20h-150q-41 0 -70.5 -29.5t-29.5 -70.5v-600z M356 500q0 100 72 172t172 72t172 -72t72 -172t-72 -172t-172 -72t-172 72t-72 172zM494 500q0 -44 31 -75t75 -31t75 31t31 75t-31 75t-75 31t-75 -31t-31 -75zM900 700v100h100v-100h-100z" /> | ||
80 | <glyph unicode="" d="M53 0h365v66q-41 0 -72 11t-49 38t1 71l92 234h391l82 -222q16 -45 -5.5 -88.5t-74.5 -43.5v-66h417v66q-34 1 -74 43q-18 19 -33 42t-21 37l-6 13l-385 998h-93l-399 -1006q-24 -48 -52 -75q-12 -12 -33 -25t-36 -20l-15 -7v-66zM416 521l178 457l46 -140l116 -317h-340 z" /> | ||
81 | <glyph unicode="" d="M100 0v89q41 7 70.5 32.5t29.5 65.5v827q0 28 -1 39.5t-5.5 26t-15.5 21t-29 14t-49 14.5v71l471 -1q120 0 213 -88t93 -228q0 -55 -11.5 -101.5t-28 -74t-33.5 -47.5t-28 -28l-12 -7q8 -3 21.5 -9t48 -31.5t60.5 -58t47.5 -91.5t21.5 -129q0 -84 -59 -156.5t-142 -111 t-162 -38.5h-500zM400 200h161q89 0 153 48.5t64 132.5q0 90 -62.5 154.5t-156.5 64.5h-159v-400zM400 700h139q76 0 130 61.5t54 138.5q0 82 -84 130.5t-239 48.5v-379z" /> | ||
82 | <glyph unicode="" d="M200 0v57q77 7 134.5 40.5t65.5 80.5l173 849q10 56 -10 74t-91 37q-6 1 -10.5 2.5t-9.5 2.5v57h425l2 -57q-33 -8 -62 -25.5t-46 -37t-29.5 -38t-17.5 -30.5l-5 -12l-128 -825q-10 -52 14 -82t95 -36v-57h-500z" /> | ||
83 | <glyph unicode="" d="M-75 200h75v800h-75l125 167l125 -167h-75v-800h75l-125 -167zM300 900v300h150h700h150v-300h-50q0 29 -8 48.5t-18.5 30t-33.5 15t-39.5 5.5t-50.5 1h-200v-850l100 -50v-100h-400v100l100 50v850h-200q-34 0 -50.5 -1t-40 -5.5t-33.5 -15t-18.5 -30t-8.5 -48.5h-49z " /> | ||
84 | <glyph unicode="" d="M33 51l167 125v-75h800v75l167 -125l-167 -125v75h-800v-75zM100 901v300h150h700h150v-300h-50q0 29 -8 48.5t-18 30t-33.5 15t-40 5.5t-50.5 1h-200v-650l100 -50v-100h-400v100l100 50v650h-200q-34 0 -50.5 -1t-39.5 -5.5t-33.5 -15t-18.5 -30t-8 -48.5h-50z" /> | ||
85 | <glyph unicode="" d="M0 50q0 -20 14.5 -35t35.5 -15h1100q21 0 35.5 15t14.5 35v100q0 21 -14.5 35.5t-35.5 14.5h-1100q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM0 350q0 -20 14.5 -35t35.5 -15h800q21 0 35.5 15t14.5 35v100q0 21 -14.5 35.5t-35.5 14.5h-800q-21 0 -35.5 -14.5t-14.5 -35.5 v-100zM0 650q0 -20 14.5 -35t35.5 -15h1000q21 0 35.5 15t14.5 35v100q0 21 -14.5 35.5t-35.5 14.5h-1000q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM0 950q0 -20 14.5 -35t35.5 -15h600q21 0 35.5 15t14.5 35v100q0 21 -14.5 35.5t-35.5 14.5h-600q-21 0 -35.5 -14.5 t-14.5 -35.5v-100z" /> | ||
86 | <glyph unicode="" d="M0 50q0 -20 14.5 -35t35.5 -15h1100q21 0 35.5 15t14.5 35v100q0 21 -14.5 35.5t-35.5 14.5h-1100q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM0 650q0 -20 14.5 -35t35.5 -15h1100q21 0 35.5 15t14.5 35v100q0 21 -14.5 35.5t-35.5 14.5h-1100q-21 0 -35.5 -14.5t-14.5 -35.5 v-100zM200 350q0 -20 14.5 -35t35.5 -15h700q21 0 35.5 15t14.5 35v100q0 21 -14.5 35.5t-35.5 14.5h-700q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM200 950q0 -20 14.5 -35t35.5 -15h700q21 0 35.5 15t14.5 35v100q0 21 -14.5 35.5t-35.5 14.5h-700q-21 0 -35.5 -14.5 t-14.5 -35.5v-100z" /> | ||
87 | <glyph unicode="" d="M0 50v100q0 21 14.5 35.5t35.5 14.5h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-1100q-21 0 -35.5 15t-14.5 35zM100 650v100q0 21 14.5 35.5t35.5 14.5h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-1000q-21 0 -35.5 15 t-14.5 35zM300 350v100q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-800q-21 0 -35.5 15t-14.5 35zM500 950v100q0 21 14.5 35.5t35.5 14.5h600q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-600 q-21 0 -35.5 15t-14.5 35z" /> | ||
88 | <glyph unicode="" d="M0 50v100q0 21 14.5 35.5t35.5 14.5h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-1100q-21 0 -35.5 15t-14.5 35zM0 350v100q0 21 14.5 35.5t35.5 14.5h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-1100q-21 0 -35.5 15 t-14.5 35zM0 650v100q0 21 14.5 35.5t35.5 14.5h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-1100q-21 0 -35.5 15t-14.5 35zM0 950v100q0 21 14.5 35.5t35.5 14.5h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-1100 q-21 0 -35.5 15t-14.5 35z" /> | ||
89 | <glyph unicode="" d="M0 50v100q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-100q-21 0 -35.5 15t-14.5 35zM0 350v100q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-100q-21 0 -35.5 15 t-14.5 35zM0 650v100q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-100q-21 0 -35.5 15t-14.5 35zM0 950v100q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-100q-21 0 -35.5 15 t-14.5 35zM300 50v100q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-800q-21 0 -35.5 15t-14.5 35zM300 350v100q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-800 q-21 0 -35.5 15t-14.5 35zM300 650v100q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15h-800q-21 0 -35.5 15t-14.5 35zM300 950v100q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -20 -14.5 -35t-35.5 -15 h-800q-21 0 -35.5 15t-14.5 35z" /> | ||
90 | <glyph unicode="" d="M-101 500v100h201v75l166 -125l-166 -125v75h-201zM300 0h100v1100h-100v-1100zM500 50q0 -20 14.5 -35t35.5 -15h600q20 0 35 15t15 35v100q0 21 -15 35.5t-35 14.5h-600q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM500 350q0 -20 14.5 -35t35.5 -15h300q20 0 35 15t15 35 v100q0 21 -15 35.5t-35 14.5h-300q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM500 650q0 -20 14.5 -35t35.5 -15h500q20 0 35 15t15 35v100q0 21 -15 35.5t-35 14.5h-500q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM500 950q0 -20 14.5 -35t35.5 -15h100q20 0 35 15t15 35v100 q0 21 -15 35.5t-35 14.5h-100q-21 0 -35.5 -14.5t-14.5 -35.5v-100z" /> | ||
91 | <glyph unicode="" d="M1 50q0 -20 14.5 -35t35.5 -15h600q20 0 35 15t15 35v100q0 21 -15 35.5t-35 14.5h-600q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM1 350q0 -20 14.5 -35t35.5 -15h300q20 0 35 15t15 35v100q0 21 -15 35.5t-35 14.5h-300q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM1 650 q0 -20 14.5 -35t35.5 -15h500q20 0 35 15t15 35v100q0 21 -15 35.5t-35 14.5h-500q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM1 950q0 -20 14.5 -35t35.5 -15h100q20 0 35 15t15 35v100q0 21 -15 35.5t-35 14.5h-100q-21 0 -35.5 -14.5t-14.5 -35.5v-100zM801 0v1100h100v-1100 h-100zM934 550l167 -125v75h200v100h-200v75z" /> | ||
92 | <glyph unicode="" d="M0 275v650q0 31 22 53t53 22h750q31 0 53 -22t22 -53v-650q0 -31 -22 -53t-53 -22h-750q-31 0 -53 22t-22 53zM900 600l300 300v-600z" /> | ||
93 | <glyph unicode="" d="M0 44v1012q0 18 13 31t31 13h1112q19 0 31.5 -13t12.5 -31v-1012q0 -18 -12.5 -31t-31.5 -13h-1112q-18 0 -31 13t-13 31zM100 263l247 182l298 -131l-74 156l293 318l236 -288v500h-1000v-737zM208 750q0 56 39 95t95 39t95 -39t39 -95t-39 -95t-95 -39t-95 39t-39 95z " /> | ||
94 | <glyph unicode="" d="M148 745q0 124 60.5 231.5t165 172t226.5 64.5q123 0 227 -63t164.5 -169.5t60.5 -229.5t-73 -272q-73 -114 -166.5 -237t-150.5 -189l-57 -66q-10 9 -27 26t-66.5 70.5t-96 109t-104 135.5t-100.5 155q-63 139 -63 262zM342 772q0 -107 75.5 -182.5t181.5 -75.5 q107 0 182.5 75.5t75.5 182.5t-75.5 182t-182.5 75t-182 -75.5t-75 -181.5z" /> | ||
95 | <glyph unicode="" d="M1 600q0 122 47.5 233t127.5 191t191 127.5t233 47.5t233 -47.5t191 -127.5t127.5 -191t47.5 -233t-47.5 -233t-127.5 -191t-191 -127.5t-233 -47.5t-233 47.5t-191 127.5t-127.5 191t-47.5 233zM173 600q0 -177 125.5 -302t301.5 -125v854q-176 0 -301.5 -125 t-125.5 -302z" /> | ||
96 | <glyph unicode="" d="M117 406q0 94 34 186t88.5 172.5t112 159t115 177t87.5 194.5q21 -71 57.5 -142.5t76 -130.5t83 -118.5t82 -117t70 -116t50 -125.5t18.5 -136q0 -89 -39 -165.5t-102 -126.5t-140 -79.5t-156 -33.5q-114 6 -211.5 53t-161.5 139t-64 210zM243 414q14 -82 59.5 -136 t136.5 -80l16 98q-7 6 -18 17t-34 48t-33 77q-15 73 -14 143.5t10 122.5l9 51q-92 -110 -119.5 -185t-12.5 -156z" /> | ||
97 | <glyph unicode="" d="M0 400v300q0 165 117.5 282.5t282.5 117.5q366 -6 397 -14l-186 -186h-311q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v125l200 200v-225q0 -165 -117.5 -282.5t-282.5 -117.5h-300q-165 0 -282.5 117.5 t-117.5 282.5zM436 341l161 50l412 412l-114 113l-405 -405zM995 1015l113 -113l113 113l-21 85l-92 28z" /> | ||
98 | <glyph unicode="" d="M0 400v300q0 165 117.5 282.5t282.5 117.5h261l2 -80q-133 -32 -218 -120h-145q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5l200 153v-53q0 -165 -117.5 -282.5t-282.5 -117.5h-300q-165 0 -282.5 117.5t-117.5 282.5 zM423 524q30 38 81.5 64t103 35.5t99 14t77.5 3.5l29 -1v-209l360 324l-359 318v-216q-7 0 -19 -1t-48 -8t-69.5 -18.5t-76.5 -37t-76.5 -59t-62 -88t-39.5 -121.5z" /> | ||
99 | <glyph unicode="" d="M0 400v300q0 165 117.5 282.5t282.5 117.5h300q61 0 127 -23l-178 -177h-349q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v69l200 200v-169q0 -165 -117.5 -282.5t-282.5 -117.5h-300q-165 0 -282.5 117.5 t-117.5 282.5zM342 632l283 -284l567 567l-137 137l-430 -431l-146 147z" /> | ||
100 | <glyph unicode="" d="M0 603l300 296v-198h200v200h-200l300 300l295 -300h-195v-200h200v198l300 -296l-300 -300v198h-200v-200h195l-295 -300l-300 300h200v200h-200v-198z" /> | ||
101 | <glyph unicode="" d="M200 50v1000q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-437l500 487v-1100l-500 488v-438q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5z" /> | ||
102 | <glyph unicode="" d="M0 50v1000q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-437l500 487v-487l500 487v-1100l-500 488v-488l-500 488v-438q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5z" /> | ||
103 | <glyph unicode="" d="M136 550l564 550v-487l500 487v-1100l-500 488v-488z" /> | ||
104 | <glyph unicode="" d="M200 0l900 550l-900 550v-1100z" /> | ||
105 | <glyph unicode="" d="M200 150q0 -21 14.5 -35.5t35.5 -14.5h200q21 0 35.5 14.5t14.5 35.5v800q0 21 -14.5 35.5t-35.5 14.5h-200q-21 0 -35.5 -14.5t-14.5 -35.5v-800zM600 150q0 -21 14.5 -35.5t35.5 -14.5h200q21 0 35.5 14.5t14.5 35.5v800q0 21 -14.5 35.5t-35.5 14.5h-200 q-21 0 -35.5 -14.5t-14.5 -35.5v-800z" /> | ||
106 | <glyph unicode="" d="M200 150q0 -20 14.5 -35t35.5 -15h800q21 0 35.5 15t14.5 35v800q0 21 -14.5 35.5t-35.5 14.5h-800q-21 0 -35.5 -14.5t-14.5 -35.5v-800z" /> | ||
107 | <glyph unicode="" d="M0 0v1100l500 -487v487l564 -550l-564 -550v488z" /> | ||
108 | <glyph unicode="" d="M0 0v1100l500 -487v487l500 -487v437q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-1000q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v438l-500 -488v488z" /> | ||
109 | <glyph unicode="" d="M300 0v1100l500 -487v437q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-1000q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v438z" /> | ||
110 | <glyph unicode="" d="M100 250v100q0 21 14.5 35.5t35.5 14.5h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5zM100 500h1100l-550 564z" /> | ||
111 | <glyph unicode="" d="M185 599l592 -592l240 240l-353 353l353 353l-240 240z" /> | ||
112 | <glyph unicode="" d="M272 194l353 353l-353 353l241 240l572 -571l21 -22l-1 -1v-1l-592 -591z" /> | ||
113 | <glyph unicode="" d="M3 600q0 162 80 299.5t217.5 217.5t299.5 80t299.5 -80t217.5 -217.5t80 -299.5t-80 -299.5t-217.5 -217.5t-299.5 -80t-299.5 80t-217.5 217.5t-80 299.5zM300 500h200v-200h200v200h200v200h-200v200h-200v-200h-200v-200z" /> | ||
114 | <glyph unicode="" d="M3 600q0 162 80 299.5t217.5 217.5t299.5 80t299.5 -80t217.5 -217.5t80 -299.5t-80 -299.5t-217.5 -217.5t-299.5 -80t-299.5 80t-217.5 217.5t-80 299.5zM300 500h600v200h-600v-200z" /> | ||
115 | <glyph unicode="" d="M3 600q0 162 80 299.5t217.5 217.5t299.5 80t299.5 -80t217.5 -217.5t80 -299.5t-80 -299.5t-217.5 -217.5t-299.5 -80t-299.5 80t-217.5 217.5t-80 299.5zM246 459l213 -213l141 142l141 -142l213 213l-142 141l142 141l-213 212l-141 -141l-141 142l-212 -213l141 -141 z" /> | ||
116 | <glyph unicode="" d="M3 600q0 162 80 299.5t217.5 217.5t299.5 80t299.5 -80t217.5 -217.5t80 -299.5t-80 -299.5t-217.5 -217.5t-299.5 -80t-299.5 80t-217.5 217.5t-80 299.5zM270 551l276 -277l411 411l-175 174l-236 -236l-102 102z" /> | ||
117 | <glyph unicode="" d="M3 600q0 162 80 299.5t217.5 217.5t299.5 80t299.5 -80t217.5 -217.5t80 -299.5t-80 -299.5t-217.5 -217.5t-299.5 -80t-299.5 80t-217.5 217.5t-80 299.5zM364 700h143q4 0 11.5 -1t11 -1t6.5 3t3 9t1 11t3.5 8.5t3.5 6t5.5 4t6.5 2.5t9 1.5t9 0.5h11.5h12.5 q19 0 30 -10t11 -26q0 -22 -4 -28t-27 -22q-5 -1 -12.5 -3t-27 -13.5t-34 -27t-26.5 -46t-11 -68.5h200q5 3 14 8t31.5 25.5t39.5 45.5t31 69t14 94q0 51 -17.5 89t-42 58t-58.5 32t-58.5 15t-51.5 3q-50 0 -90.5 -12t-75 -38.5t-53.5 -74.5t-19 -114zM500 300h200v100h-200 v-100z" /> | ||
118 | <glyph unicode="" d="M3 600q0 162 80 299.5t217.5 217.5t299.5 80t299.5 -80t217.5 -217.5t80 -299.5t-80 -299.5t-217.5 -217.5t-299.5 -80t-299.5 80t-217.5 217.5t-80 299.5zM400 300h400v100h-100v300h-300v-100h100v-200h-100v-100zM500 800h200v100h-200v-100z" /> | ||
119 | <glyph unicode="" d="M0 500v200h195q31 125 98.5 199.5t206.5 100.5v200h200v-200q54 -20 113 -60t112.5 -105.5t71.5 -134.5h203v-200h-203q-25 -102 -116.5 -186t-180.5 -117v-197h-200v197q-140 27 -208 102.5t-98 200.5h-194zM290 500q24 -73 79.5 -127.5t130.5 -78.5v206h200v-206 q149 48 201 206h-201v200h200q-25 74 -75.5 127t-124.5 77v-204h-200v203q-75 -23 -130 -77t-79 -126h209v-200h-210z" /> | ||
120 | <glyph unicode="" d="M4 600q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM186 600q0 -171 121.5 -292.5t292.5 -121.5t292.5 121.5t121.5 292.5t-121.5 292.5t-292.5 121.5t-292.5 -121.5t-121.5 -292.5zM356 465l135 135 l-135 135l109 109l135 -135l135 135l109 -109l-135 -135l135 -135l-109 -109l-135 135l-135 -135z" /> | ||
121 | <glyph unicode="" d="M4 600q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM186 600q0 -171 121.5 -292.5t292.5 -121.5t292.5 121.5t121.5 292.5t-121.5 292.5t-292.5 121.5t-292.5 -121.5t-121.5 -292.5zM322 537l141 141 l87 -87l204 205l142 -142l-346 -345z" /> | ||
122 | <glyph unicode="" d="M4 600q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM186 600q0 -115 62 -215l568 567q-100 62 -216 62q-171 0 -292.5 -121.5t-121.5 -292.5zM391 245q97 -59 209 -59q171 0 292.5 121.5t121.5 292.5 q0 112 -59 209z" /> | ||
123 | <glyph unicode="" d="M0 547l600 453v-300h600v-300h-600v-301z" /> | ||
124 | <glyph unicode="" d="M0 400v300h600v300l600 -453l-600 -448v301h-600z" /> | ||
125 | <glyph unicode="" d="M204 600l450 600l444 -600h-298v-600h-300v600h-296z" /> | ||
126 | <glyph unicode="" d="M104 600h296v600h300v-600h298l-449 -600z" /> | ||
127 | <glyph unicode="" d="M0 200q6 132 41 238.5t103.5 193t184 138t271.5 59.5v271l600 -453l-600 -448v301q-95 -2 -183 -20t-170 -52t-147 -92.5t-100 -135.5z" /> | ||
128 | <glyph unicode="" d="M0 0v400l129 -129l294 294l142 -142l-294 -294l129 -129h-400zM635 777l142 -142l294 294l129 -129v400h-400l129 -129z" /> | ||
129 | <glyph unicode="" d="M34 176l295 295l-129 129h400v-400l-129 130l-295 -295zM600 600v400l129 -129l295 295l142 -141l-295 -295l129 -130h-400z" /> | ||
130 | <glyph unicode="" d="M23 600q0 118 45.5 224.5t123 184t184 123t224.5 45.5t224.5 -45.5t184 -123t123 -184t45.5 -224.5t-45.5 -224.5t-123 -184t-184 -123t-224.5 -45.5t-224.5 45.5t-184 123t-123 184t-45.5 224.5zM456 851l58 -302q4 -20 21.5 -34.5t37.5 -14.5h54q20 0 37.5 14.5 t21.5 34.5l58 302q4 20 -8 34.5t-32 14.5h-207q-21 0 -33 -14.5t-8 -34.5zM500 300h200v100h-200v-100z" /> | ||
131 | <glyph unicode="" d="M0 800h100v-200h400v300h200v-300h400v200h100v100h-111q1 1 1 6.5t-1.5 15t-3.5 17.5l-34 172q-11 39 -41.5 63t-69.5 24q-32 0 -61 -17l-239 -144q-22 -13 -40 -35q-19 24 -40 36l-238 144q-33 18 -62 18q-39 0 -69.5 -23t-40.5 -61l-35 -177q-2 -8 -3 -18t-1 -15v-6 h-111v-100zM100 0h400v400h-400v-400zM200 900q-3 0 14 48t36 96l18 47l213 -191h-281zM700 0v400h400v-400h-400zM731 900l202 197q5 -12 12 -32.5t23 -64t25 -72t7 -28.5h-269z" /> | ||
132 | <glyph unicode="" d="M0 -22v143l216 193q-9 53 -13 83t-5.5 94t9 113t38.5 114t74 124q47 60 99.5 102.5t103 68t127.5 48t145.5 37.5t184.5 43.5t220 58.5q0 -189 -22 -343t-59 -258t-89 -181.5t-108.5 -120t-122 -68t-125.5 -30t-121.5 -1.5t-107.5 12.5t-87.5 17t-56.5 7.5l-99 -55z M238.5 300.5q19.5 -6.5 86.5 76.5q55 66 367 234q70 38 118.5 69.5t102 79t99 111.5t86.5 148q22 50 24 60t-6 19q-7 5 -17 5t-26.5 -14.5t-33.5 -39.5q-35 -51 -113.5 -108.5t-139.5 -89.5l-61 -32q-369 -197 -458 -401q-48 -111 -28.5 -117.5z" /> | ||
133 | <glyph unicode="" d="M111 408q0 -33 5 -63q9 -56 44 -119.5t105 -108.5q31 -21 64 -16t62 23.5t57 49.5t48 61.5t35 60.5q32 66 39 184.5t-13 157.5q79 -80 122 -164t26 -184q-5 -33 -20.5 -69.5t-37.5 -80.5q-10 -19 -14.5 -29t-12 -26t-9 -23.5t-3 -19t2.5 -15.5t11 -9.5t19.5 -5t30.5 2.5 t42 8q57 20 91 34t87.5 44.5t87 64t65.5 88.5t47 122q38 172 -44.5 341.5t-246.5 278.5q22 -44 43 -129q39 -159 -32 -154q-15 2 -33 9q-79 33 -120.5 100t-44 175.5t48.5 257.5q-13 -8 -34 -23.5t-72.5 -66.5t-88.5 -105.5t-60 -138t-8 -166.5q2 -12 8 -41.5t8 -43t6 -39.5 t3.5 -39.5t-1 -33.5t-6 -31.5t-13.5 -24t-21 -20.5t-31 -12q-38 -10 -67 13t-40.5 61.5t-15 81.5t10.5 75q-52 -46 -83.5 -101t-39 -107t-7.5 -85z" /> | ||
134 | <glyph unicode="" d="M-61 600l26 40q6 10 20 30t49 63.5t74.5 85.5t97 90t116.5 83.5t132.5 59t145.5 23.5t145.5 -23.5t132.5 -59t116.5 -83.5t97 -90t74.5 -85.5t49 -63.5t20 -30l26 -40l-26 -40q-6 -10 -20 -30t-49 -63.5t-74.5 -85.5t-97 -90t-116.5 -83.5t-132.5 -59t-145.5 -23.5 t-145.5 23.5t-132.5 59t-116.5 83.5t-97 90t-74.5 85.5t-49 63.5t-20 30zM120 600q7 -10 40.5 -58t56 -78.5t68 -77.5t87.5 -75t103 -49.5t125 -21.5t123.5 20t100.5 45.5t85.5 71.5t66.5 75.5t58 81.5t47 66q-1 1 -28.5 37.5t-42 55t-43.5 53t-57.5 63.5t-58.5 54 q49 -74 49 -163q0 -124 -88 -212t-212 -88t-212 88t-88 212q0 85 46 158q-102 -87 -226 -258zM377 656q49 -124 154 -191l105 105q-37 24 -75 72t-57 84l-20 36z" /> | ||
135 | <glyph unicode="" d="M-61 600l26 40q6 10 20 30t49 63.5t74.5 85.5t97 90t116.5 83.5t132.5 59t145.5 23.5q61 0 121 -17l37 142h148l-314 -1200h-148l37 143q-82 21 -165 71.5t-140 102t-109.5 112t-72 88.5t-29.5 43zM120 600q210 -282 393 -336l37 141q-107 18 -178.5 101.5t-71.5 193.5 q0 85 46 158q-102 -87 -226 -258zM377 656q49 -124 154 -191l47 47l23 87q-30 28 -59 69t-44 68l-14 26zM780 161l38 145q22 15 44.5 34t46 44t40.5 44t41 50.5t33.5 43.5t33 44t24.5 34q-97 127 -140 175l39 146q67 -54 131.5 -125.5t87.5 -103.5t36 -52l26 -40l-26 -40 q-7 -12 -25.5 -38t-63.5 -79.5t-95.5 -102.5t-124 -100t-146.5 -79z" /> | ||
136 | <glyph unicode="" d="M-97.5 34q13.5 -34 50.5 -34h1294q37 0 50.5 35.5t-7.5 67.5l-642 1056q-20 34 -48 36.5t-48 -29.5l-642 -1066q-21 -32 -7.5 -66zM155 200l445 723l445 -723h-345v100h-200v-100h-345zM500 600l100 -300l100 300v100h-200v-100z" /> | ||
137 | <glyph unicode="" d="M100 262v41q0 20 11 44.5t26 38.5l363 325v339q0 62 44 106t106 44t106 -44t44 -106v-339l363 -325q15 -14 26 -38.5t11 -44.5v-41q0 -20 -12 -26.5t-29 5.5l-359 249v-263q100 -91 100 -113v-64q0 -20 -13 -28.5t-32 0.5l-94 78h-222l-94 -78q-19 -9 -32 -0.5t-13 28.5 v64q0 22 100 113v263l-359 -249q-17 -12 -29 -5.5t-12 26.5z" /> | ||
138 | <glyph unicode="" d="M0 50q0 -20 14.5 -35t35.5 -15h1000q21 0 35.5 15t14.5 35v750h-1100v-750zM0 900h1100v150q0 21 -14.5 35.5t-35.5 14.5h-150v100h-100v-100h-500v100h-100v-100h-150q-21 0 -35.5 -14.5t-14.5 -35.5v-150zM100 100v100h100v-100h-100zM100 300v100h100v-100h-100z M100 500v100h100v-100h-100zM300 100v100h100v-100h-100zM300 300v100h100v-100h-100zM300 500v100h100v-100h-100zM500 100v100h100v-100h-100zM500 300v100h100v-100h-100zM500 500v100h100v-100h-100zM700 100v100h100v-100h-100zM700 300v100h100v-100h-100zM700 500 v100h100v-100h-100zM900 100v100h100v-100h-100zM900 300v100h100v-100h-100zM900 500v100h100v-100h-100z" /> | ||
139 | <glyph unicode="" d="M0 200v200h259l600 600h241v198l300 -295l-300 -300v197h-159l-600 -600h-341zM0 800h259l122 -122l141 142l-181 180h-341v-200zM678 381l141 142l122 -123h159v198l300 -295l-300 -300v197h-241z" /> | ||
140 | <glyph unicode="" d="M0 400v600q0 41 29.5 70.5t70.5 29.5h1000q41 0 70.5 -29.5t29.5 -70.5v-600q0 -41 -29.5 -70.5t-70.5 -29.5h-596l-304 -300v300h-100q-41 0 -70.5 29.5t-29.5 70.5z" /> | ||
141 | <glyph unicode="" d="M100 600v200h300v-250q0 -113 6 -145q17 -92 102 -117q39 -11 92 -11q37 0 66.5 5.5t50 15.5t36 24t24 31.5t14 37.5t7 42t2.5 45t0 47v25v250h300v-200q0 -42 -3 -83t-15 -104t-31.5 -116t-58 -109.5t-89 -96.5t-129 -65.5t-174.5 -25.5t-174.5 25.5t-129 65.5t-89 96.5 t-58 109.5t-31.5 116t-15 104t-3 83zM100 900v300h300v-300h-300zM800 900v300h300v-300h-300z" /> | ||
142 | <glyph unicode="" d="M-30 411l227 -227l352 353l353 -353l226 227l-578 579z" /> | ||
143 | <glyph unicode="" d="M70 797l580 -579l578 579l-226 227l-353 -353l-352 353z" /> | ||
144 | <glyph unicode="" d="M-198 700l299 283l300 -283h-203v-400h385l215 -200h-800v600h-196zM402 1000l215 -200h381v-400h-198l299 -283l299 283h-200v600h-796z" /> | ||
145 | <glyph unicode="" d="M18 939q-5 24 10 42q14 19 39 19h896l38 162q5 17 18.5 27.5t30.5 10.5h94q20 0 35 -14.5t15 -35.5t-15 -35.5t-35 -14.5h-54l-201 -961q-2 -4 -6 -10.5t-19 -17.5t-33 -11h-31v-50q0 -20 -14.5 -35t-35.5 -15t-35.5 15t-14.5 35v50h-300v-50q0 -20 -14.5 -35t-35.5 -15 t-35.5 15t-14.5 35v50h-50q-21 0 -35.5 15t-14.5 35q0 21 14.5 35.5t35.5 14.5h535l48 200h-633q-32 0 -54.5 21t-27.5 43z" /> | ||
146 | <glyph unicode="" d="M0 0v800h1200v-800h-1200zM0 900v100h200q0 41 29.5 70.5t70.5 29.5h300q41 0 70.5 -29.5t29.5 -70.5h500v-100h-1200z" /> | ||
147 | <glyph unicode="" d="M1 0l300 700h1200l-300 -700h-1200zM1 400v600h200q0 41 29.5 70.5t70.5 29.5h300q41 0 70.5 -29.5t29.5 -70.5h500v-200h-1000z" /> | ||
148 | <glyph unicode="" d="M302 300h198v600h-198l298 300l298 -300h-198v-600h198l-298 -300z" /> | ||
149 | <glyph unicode="" d="M0 600l300 298v-198h600v198l300 -298l-300 -297v197h-600v-197z" /> | ||
150 | <glyph unicode="" d="M0 100v100q0 41 29.5 70.5t70.5 29.5h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5zM31 400l172 739q5 22 23 41.5t38 19.5h672q19 0 37.5 -22.5t23.5 -45.5l172 -732h-1138zM800 100h100v100h-100v-100z M1000 100h100v100h-100v-100z" /> | ||
151 | <glyph unicode="" d="M-101 600v50q0 24 25 49t50 38l25 13v-250l-11 5.5t-24 14t-30 21.5t-24 27.5t-11 31.5zM100 500v250v8v8v7t0.5 7t1.5 5.5t2 5t3 4t4.5 3.5t6 1.5t7.5 0.5h200l675 250v-850l-675 200h-38l47 -276q2 -12 -3 -17.5t-11 -6t-21 -0.5h-8h-83q-20 0 -34.5 14t-18.5 35 q-55 337 -55 351zM1100 200v850q0 21 14.5 35.5t35.5 14.5q20 0 35 -14.5t15 -35.5v-850q0 -20 -15 -35t-35 -15q-21 0 -35.5 15t-14.5 35z" /> | ||
152 | <glyph unicode="" d="M74 350q0 21 13.5 35.5t33.5 14.5h18l117 173l63 327q15 77 76 140t144 83l-18 32q-6 19 3 32t29 13h94q20 0 29 -10.5t3 -29.5q-18 -36 -18 -37q83 -19 144 -82.5t76 -140.5l63 -327l118 -173h17q20 0 33.5 -14.5t13.5 -35.5q0 -20 -13 -40t-31 -27q-8 -3 -23 -8.5 t-65 -20t-103 -25t-132.5 -19.5t-158.5 -9q-125 0 -245.5 20.5t-178.5 40.5l-58 20q-18 7 -31 27.5t-13 40.5zM497 110q12 -49 40 -79.5t63 -30.5t63 30.5t39 79.5q-48 -6 -102 -6t-103 6z" /> | ||
153 | <glyph unicode="" d="M21 445l233 -45l-78 -224l224 78l45 -233l155 179l155 -179l45 233l224 -78l-78 224l234 45l-180 155l180 156l-234 44l78 225l-224 -78l-45 233l-155 -180l-155 180l-45 -233l-224 78l78 -225l-233 -44l179 -156z" /> | ||
154 | <glyph unicode="" d="M0 200h200v600h-200v-600zM300 275q0 -75 100 -75h61q124 -100 139 -100h250q46 0 83 57l238 344q29 31 29 74v100q0 44 -30.5 84.5t-69.5 40.5h-328q28 118 28 125v150q0 44 -30.5 84.5t-69.5 40.5h-50q-27 0 -51 -20t-38 -48l-96 -198l-145 -196q-20 -26 -20 -63v-400z M400 300v375l150 213l100 212h50v-175l-50 -225h450v-125l-250 -375h-214l-136 100h-100z" /> | ||
155 | <glyph unicode="" d="M0 400v600h200v-600h-200zM300 525v400q0 75 100 75h61q124 100 139 100h250q46 0 83 -57l238 -344q29 -31 29 -74v-100q0 -44 -30.5 -84.5t-69.5 -40.5h-328q28 -118 28 -125v-150q0 -44 -30.5 -84.5t-69.5 -40.5h-50q-27 0 -51 20t-38 48l-96 198l-145 196 q-20 26 -20 63zM400 525l150 -212l100 -213h50v175l-50 225h450v125l-250 375h-214l-136 -100h-100v-375z" /> | ||
156 | <glyph unicode="" d="M8 200v600h200v-600h-200zM308 275v525q0 17 14 35.5t28 28.5l14 9l362 230q14 6 25 6q17 0 29 -12l109 -112q14 -14 14 -34q0 -18 -11 -32l-85 -121h302q85 0 138.5 -38t53.5 -110t-54.5 -111t-138.5 -39h-107l-130 -339q-7 -22 -20.5 -41.5t-28.5 -19.5h-341 q-7 0 -90 81t-83 94zM408 289l100 -89h293l131 339q6 21 19.5 41t28.5 20h203q16 0 25 15t9 36q0 20 -9 34.5t-25 14.5h-457h-6.5h-7.5t-6.5 0.5t-6 1t-5 1.5t-5.5 2.5t-4 4t-4 5.5q-5 12 -5 20q0 14 10 27l147 183l-86 83l-339 -236v-503z" /> | ||
157 | <glyph unicode="" d="M-101 651q0 72 54 110t139 38l302 -1l-85 121q-11 16 -11 32q0 21 14 34l109 113q13 12 29 12q11 0 25 -6l365 -230q7 -4 17 -10.5t26.5 -26t16.5 -36.5v-526q0 -13 -86 -93.5t-94 -80.5h-341q-16 0 -29.5 20t-19.5 41l-130 339h-107q-84 0 -139 39t-55 111zM-1 601h222 q15 0 28.5 -20.5t19.5 -40.5l131 -339h293l107 89v502l-343 237l-87 -83l145 -184q10 -11 10 -26q0 -11 -5 -20q-1 -3 -3.5 -5.5l-4 -4t-5 -2.5t-5.5 -1.5t-6.5 -1t-6.5 -0.5h-7.5h-6.5h-476v-100zM1000 201v600h200v-600h-200z" /> | ||
158 | <glyph unicode="" d="M97 719l230 -363q4 -6 10.5 -15.5t26 -25t36.5 -15.5h525q13 0 94 83t81 90v342q0 15 -20 28.5t-41 19.5l-339 131v106q0 84 -39 139t-111 55t-110 -53.5t-38 -138.5v-302l-121 84q-15 12 -33.5 11.5t-32.5 -13.5l-112 -110q-22 -22 -6 -53zM172 739l83 86l183 -146 q22 -18 47 -5q3 1 5.5 3.5l4 4t2.5 5t1.5 5.5t1 6.5t0.5 6.5v7.5v6.5v456q0 22 25 31t50 -0.5t25 -30.5v-202q0 -16 20 -29.5t41 -19.5l339 -130v-294l-89 -100h-503zM400 0v200h600v-200h-600z" /> | ||
159 | <glyph unicode="" d="M2 585q-16 -31 6 -53l112 -110q13 -13 32 -13.5t34 10.5l121 85q0 -51 -0.5 -153.5t-0.5 -148.5q0 -84 38.5 -138t110.5 -54t111 55t39 139v106l339 131q20 6 40.5 19.5t20.5 28.5v342q0 7 -81 90t-94 83h-525q-17 0 -35.5 -14t-28.5 -28l-10 -15zM77 565l236 339h503 l89 -100v-294l-340 -130q-20 -6 -40 -20t-20 -29v-202q0 -22 -25 -31t-50 0t-25 31v456v14.5t-1.5 11.5t-5 12t-9.5 7q-24 13 -46 -5l-184 -146zM305 1104v200h600v-200h-600z" /> | ||
160 | <glyph unicode="" d="M5 597q0 122 47.5 232.5t127.5 190.5t190.5 127.5t232.5 47.5q162 0 299.5 -80t217.5 -218t80 -300t-80 -299.5t-217.5 -217.5t-299.5 -80t-300 80t-218 217.5t-80 299.5zM298 701l2 -201h300l-2 -194l402 294l-402 298v-197h-300z" /> | ||
161 | <glyph unicode="" d="M0 597q0 122 47.5 232.5t127.5 190.5t190.5 127.5t231.5 47.5q122 0 232.5 -47.5t190.5 -127.5t127.5 -190.5t47.5 -232.5q0 -162 -80 -299.5t-218 -217.5t-300 -80t-299.5 80t-217.5 217.5t-80 299.5zM200 600l402 -294l-2 194h300l2 201h-300v197z" /> | ||
162 | <glyph unicode="" d="M5 597q0 122 47.5 232.5t127.5 190.5t190.5 127.5t232.5 47.5q162 0 299.5 -80t217.5 -218t80 -300t-80 -299.5t-217.5 -217.5t-299.5 -80t-300 80t-218 217.5t-80 299.5zM300 600h200v-300h200v300h200l-300 400z" /> | ||
163 | <glyph unicode="" d="M5 597q0 122 47.5 232.5t127.5 190.5t190.5 127.5t232.5 47.5q162 0 299.5 -80t217.5 -218t80 -300t-80 -299.5t-217.5 -217.5t-299.5 -80t-300 80t-218 217.5t-80 299.5zM300 600l300 -400l300 400h-200v300h-200v-300h-200z" /> | ||
164 | <glyph unicode="" d="M5 597q0 122 47.5 232.5t127.5 190.5t190.5 127.5t232.5 47.5q121 0 231.5 -47.5t190.5 -127.5t127.5 -190.5t47.5 -232.5q0 -162 -80 -299.5t-217.5 -217.5t-299.5 -80t-300 80t-218 217.5t-80 299.5zM254 780q-8 -33 5.5 -92.5t7.5 -87.5q0 -9 17 -44t16 -60 q12 0 23 -5.5t23 -15t20 -13.5q24 -12 108 -42q22 -8 53 -31.5t59.5 -38.5t57.5 -11q8 -18 -15 -55t-20 -57q42 -71 87 -80q0 -6 -3 -15.5t-3.5 -14.5t4.5 -17q104 -3 221 112q30 29 47 47t34.5 49t20.5 62q-14 9 -37 9.5t-36 7.5q-14 7 -49 15t-52 19q-9 0 -39.5 -0.5 t-46.5 -1.5t-39 -6.5t-39 -16.5q-50 -35 -66 -12q-4 2 -3.5 25.5t0.5 25.5q-6 13 -26.5 17t-24.5 7q2 22 -2 41t-16.5 28t-38.5 -20q-23 -25 -42 4q-19 28 -8 58q6 16 22 22q6 -1 26 -1.5t33.5 -4t19.5 -13.5q12 -19 32 -37.5t34 -27.5l14 -8q0 3 9.5 39.5t5.5 57.5 q-4 23 14.5 44.5t22.5 31.5q5 14 10 35t8.5 31t15.5 22.5t34 21.5q-6 18 10 37q8 0 23.5 -1.5t24.5 -1.5t20.5 4.5t20.5 15.5q-10 23 -30.5 42.5t-38 30t-49 26.5t-43.5 23q11 39 2 44q31 -13 58 -14.5t39 3.5l11 4q7 36 -16.5 53.5t-64.5 28.5t-56 23q-19 -3 -37 0 q-15 -12 -36.5 -21t-34.5 -12t-44 -8t-39 -6q-15 -3 -45.5 0.5t-45.5 -2.5q-21 -7 -52 -26.5t-34 -34.5q-3 -11 6.5 -22.5t8.5 -18.5q-3 -34 -27.5 -90.5t-29.5 -79.5zM518 916q3 12 16 30t16 25q10 -10 18.5 -10t14 6t14.5 14.5t16 12.5q0 -24 17 -66.5t17 -43.5 q-9 2 -31 5t-36 5t-32 8t-30 14zM692 1003h1h-1z" /> | ||
165 | <glyph unicode="" d="M0 164.5q0 21.5 15 37.5l600 599q-33 101 6 201.5t135 154.5q164 92 306 -9l-259 -138l145 -232l251 126q13 -175 -151 -267q-123 -70 -253 -23l-596 -596q-15 -16 -36.5 -16t-36.5 16l-111 110q-15 15 -15 36.5z" /> | ||
166 | <glyph unicode="" horiz-adv-x="1220" d="M0 196v100q0 41 29.5 70.5t70.5 29.5h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5zM0 596v100q0 41 29.5 70.5t70.5 29.5h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000 q-41 0 -70.5 29.5t-29.5 70.5zM0 996v100q0 41 29.5 70.5t70.5 29.5h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5zM600 596h500v100h-500v-100zM800 196h300v100h-300v-100zM900 996h200v100h-200v-100z" /> | ||
167 | <glyph unicode="" d="M100 1100v100h1000v-100h-1000zM150 1000h900l-350 -500v-300l-200 -200v500z" /> | ||
168 | <glyph unicode="" d="M0 200v200h1200v-200q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5zM0 500v400q0 41 29.5 70.5t70.5 29.5h300v100q0 41 29.5 70.5t70.5 29.5h200q41 0 70.5 -29.5t29.5 -70.5v-100h300q41 0 70.5 -29.5t29.5 -70.5v-400h-500v100h-200v-100h-500z M500 1000h200v100h-200v-100z" /> | ||
169 | <glyph unicode="" d="M0 0v400l129 -129l200 200l142 -142l-200 -200l129 -129h-400zM0 800l129 129l200 -200l142 142l-200 200l129 129h-400v-400zM729 329l142 142l200 -200l129 129v-400h-400l129 129zM729 871l200 200l-129 129h400v-400l-129 129l-200 -200z" /> | ||
170 | <glyph unicode="" d="M0 596q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM182 596q0 -172 121.5 -293t292.5 -121t292.5 121t121.5 293q0 171 -121.5 292.5t-292.5 121.5t-292.5 -121.5t-121.5 -292.5zM291 655 q0 23 15.5 38.5t38.5 15.5t39 -16t16 -38q0 -23 -16 -39t-39 -16q-22 0 -38 16t-16 39zM400 850q0 22 16 38.5t39 16.5q22 0 38 -16t16 -39t-16 -39t-38 -16q-23 0 -39 16.5t-16 38.5zM514 609q0 32 20.5 56.5t51.5 29.5l122 126l1 1q-9 14 -9 28q0 22 16 38.5t39 16.5 q22 0 38 -16t16 -39t-16 -39t-38 -16q-14 0 -29 10l-55 -145q17 -22 17 -51q0 -36 -25.5 -61.5t-61.5 -25.5t-61.5 25.5t-25.5 61.5zM800 655q0 22 16 38t39 16t38.5 -15.5t15.5 -38.5t-16 -39t-38 -16q-23 0 -39 16t-16 39z" /> | ||
171 | <glyph unicode="" d="M-40 375q-13 -95 35 -173q35 -57 94 -89t129 -32q63 0 119 28q33 16 65 40.5t52.5 45.5t59.5 64q40 44 57 61l394 394q35 35 47 84t-3 96q-27 87 -117 104q-20 2 -29 2q-46 0 -78.5 -16.5t-67.5 -51.5l-389 -396l-7 -7l69 -67l377 373q20 22 39 38q23 23 50 23 q38 0 53 -36q16 -39 -20 -75l-547 -547q-52 -52 -125 -52q-55 0 -100 33t-54 96q-5 35 2.5 66t31.5 63t42 50t56 54q24 21 44 41l348 348q52 52 82.5 79.5t84 54t107.5 26.5q25 0 48 -4q95 -17 154 -94.5t51 -175.5q-7 -101 -98 -192l-252 -249l-253 -256l7 -7l69 -60 l517 511q67 67 95 157t11 183q-16 87 -67 154t-130 103q-69 33 -152 33q-107 0 -197 -55q-40 -24 -111 -95l-512 -512q-68 -68 -81 -163z" /> | ||
172 | <glyph unicode="" d="M80 784q0 131 98.5 229.5t230.5 98.5q143 0 241 -129q103 129 246 129q129 0 226 -98.5t97 -229.5q0 -46 -17.5 -91t-61 -99t-77 -89.5t-104.5 -105.5q-197 -191 -293 -322l-17 -23l-16 23q-43 58 -100 122.5t-92 99.5t-101 100q-71 70 -104.5 105.5t-77 89.5t-61 99 t-17.5 91zM250 784q0 -27 30.5 -70t61.5 -75.5t95 -94.5l22 -22q93 -90 190 -201q82 92 195 203l12 12q64 62 97.5 97t64.5 79t31 72q0 71 -48 119.5t-105 48.5q-74 0 -132 -83l-118 -171l-114 174q-51 80 -123 80q-60 0 -109.5 -49.5t-49.5 -118.5z" /> | ||
173 | <glyph unicode="" d="M57 353q0 -95 66 -159l141 -142q68 -66 159 -66q93 0 159 66l283 283q66 66 66 159t-66 159l-141 141q-8 9 -19 17l-105 -105l212 -212l-389 -389l-247 248l95 95l-18 18q-46 45 -75 101l-55 -55q-66 -66 -66 -159zM269 706q0 -93 66 -159l141 -141q7 -7 19 -17l105 105 l-212 212l389 389l247 -247l-95 -96l18 -17q47 -49 77 -100l29 29q35 35 62.5 88t27.5 96q0 93 -66 159l-141 141q-66 66 -159 66q-95 0 -159 -66l-283 -283q-66 -64 -66 -159z" /> | ||
174 | <glyph unicode="" d="M200 100v953q0 21 30 46t81 48t129 38t163 15t162 -15t127 -38t79 -48t29 -46v-953q0 -41 -29.5 -70.5t-70.5 -29.5h-600q-41 0 -70.5 29.5t-29.5 70.5zM300 300h600v700h-600v-700zM496 150q0 -43 30.5 -73.5t73.5 -30.5t73.5 30.5t30.5 73.5t-30.5 73.5t-73.5 30.5 t-73.5 -30.5t-30.5 -73.5z" /> | ||
175 | <glyph unicode="" d="M0 0l303 380l207 208l-210 212h300l267 279l-35 36q-15 14 -15 35t15 35q14 15 35 15t35 -15l283 -282q15 -15 15 -36t-15 -35q-14 -15 -35 -15t-35 15l-36 35l-279 -267v-300l-212 210l-208 -207z" /> | ||
176 | <glyph unicode="" d="M295 433h139q5 -77 48.5 -126.5t117.5 -64.5v335q-6 1 -15.5 4t-11.5 3q-46 14 -79 26.5t-72 36t-62.5 52t-40 72.5t-16.5 99q0 92 44 159.5t109 101t144 40.5v78h100v-79q38 -4 72.5 -13.5t75.5 -31.5t71 -53.5t51.5 -84t24.5 -118.5h-159q-8 72 -35 109.5t-101 50.5 v-307l64 -14q34 -7 64 -16.5t70 -31.5t67.5 -52t47.5 -80.5t20 -112.5q0 -139 -89 -224t-244 -96v-77h-100v78q-152 17 -237 104q-40 40 -52.5 93.5t-15.5 139.5zM466 889q0 -29 8 -51t16.5 -34t29.5 -22.5t31 -13.5t38 -10q7 -2 11 -3v274q-61 -8 -97.5 -37.5t-36.5 -102.5 zM700 237q170 18 170 151q0 64 -44 99.5t-126 60.5v-311z" /> | ||
177 | <glyph unicode="" d="M100 600v100h166q-24 49 -44 104q-10 26 -14.5 55.5t-3 72.5t25 90t68.5 87q97 88 263 88q129 0 230 -89t101 -208h-153q0 52 -34 89.5t-74 51.5t-76 14q-37 0 -79 -14.5t-62 -35.5q-41 -44 -41 -101q0 -28 16.5 -69.5t28 -62.5t41.5 -72h241v-100h-197q8 -50 -2.5 -115 t-31.5 -94q-41 -59 -99 -113q35 11 84 18t70 7q33 1 103 -16t103 -17q76 0 136 30l50 -147q-41 -25 -80.5 -36.5t-59 -13t-61.5 -1.5q-23 0 -128 33t-155 29q-39 -4 -82 -17t-66 -25l-24 -11l-55 145l16.5 11t15.5 10t13.5 9.5t14.5 12t14.5 14t17.5 18.5q48 55 54 126.5 t-30 142.5h-221z" /> | ||
178 | <glyph unicode="" d="M2 300l298 -300l298 300h-198v900h-200v-900h-198zM602 900l298 300l298 -300h-198v-900h-200v900h-198z" /> | ||
179 | <glyph unicode="" d="M2 300h198v900h200v-900h198l-298 -300zM700 0v200h100v-100h200v-100h-300zM700 400v100h300v-200h-99v-100h-100v100h99v100h-200zM700 700v500h300v-500h-100v100h-100v-100h-100zM801 900h100v200h-100v-200z" /> | ||
180 | <glyph unicode="" d="M2 300h198v900h200v-900h198l-298 -300zM700 0v500h300v-500h-100v100h-100v-100h-100zM700 700v200h100v-100h200v-100h-300zM700 1100v100h300v-200h-99v-100h-100v100h99v100h-200zM801 200h100v200h-100v-200z" /> | ||
181 | <glyph unicode="" d="M2 300l298 -300l298 300h-198v900h-200v-900h-198zM800 100v400h300v-500h-100v100h-200zM800 1100v100h200v-500h-100v400h-100zM901 200h100v200h-100v-200z" /> | ||
182 | <glyph unicode="" d="M2 300l298 -300l298 300h-198v900h-200v-900h-198zM800 400v100h200v-500h-100v400h-100zM800 800v400h300v-500h-100v100h-200zM901 900h100v200h-100v-200z" /> | ||
183 | <glyph unicode="" d="M2 300l298 -300l298 300h-198v900h-200v-900h-198zM700 100v200h500v-200h-500zM700 400v200h400v-200h-400zM700 700v200h300v-200h-300zM700 1000v200h200v-200h-200z" /> | ||
184 | <glyph unicode="" d="M2 300l298 -300l298 300h-198v900h-200v-900h-198zM700 100v200h200v-200h-200zM700 400v200h300v-200h-300zM700 700v200h400v-200h-400zM700 1000v200h500v-200h-500z" /> | ||
185 | <glyph unicode="" d="M0 400v300q0 165 117.5 282.5t282.5 117.5h300q162 0 281 -118.5t119 -281.5v-300q0 -165 -118.5 -282.5t-281.5 -117.5h-300q-165 0 -282.5 117.5t-117.5 282.5zM200 300q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v500q0 41 -29.5 70.5t-70.5 29.5 h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500z" /> | ||
186 | <glyph unicode="" d="M0 400v300q0 163 119 281.5t281 118.5h300q165 0 282.5 -117.5t117.5 -282.5v-300q0 -165 -117.5 -282.5t-282.5 -117.5h-300q-163 0 -281.5 117.5t-118.5 282.5zM200 300q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v500q0 41 -29.5 70.5t-70.5 29.5 h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500zM400 300l333 250l-333 250v-500z" /> | ||
187 | <glyph unicode="" d="M0 400v300q0 163 117.5 281.5t282.5 118.5h300q163 0 281.5 -119t118.5 -281v-300q0 -165 -117.5 -282.5t-282.5 -117.5h-300q-165 0 -282.5 117.5t-117.5 282.5zM200 300q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v500q0 41 -29.5 70.5t-70.5 29.5 h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500zM300 700l250 -333l250 333h-500z" /> | ||
188 | <glyph unicode="" d="M0 400v300q0 165 117.5 282.5t282.5 117.5h300q165 0 282.5 -117.5t117.5 -282.5v-300q0 -162 -118.5 -281t-281.5 -119h-300q-165 0 -282.5 118.5t-117.5 281.5zM200 300q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v500q0 41 -29.5 70.5t-70.5 29.5 h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500zM300 400h500l-250 333z" /> | ||
189 | <glyph unicode="" d="M0 400v300h300v200l400 -350l-400 -350v200h-300zM500 0v200h500q41 0 70.5 29.5t29.5 70.5v500q0 41 -29.5 70.5t-70.5 29.5h-500v200h400q165 0 282.5 -117.5t117.5 -282.5v-300q0 -165 -117.5 -282.5t-282.5 -117.5h-400z" /> | ||
190 | <glyph unicode="" d="M217 519q8 -19 31 -19h302q-155 -438 -160 -458q-5 -21 4 -32l9 -8h9q14 0 26 15q11 13 274.5 321.5t264.5 308.5q14 19 5 36q-8 17 -31 17l-301 -1q1 4 78 219.5t79 227.5q2 15 -5 27l-9 9h-9q-15 0 -25 -16q-4 -6 -98 -111.5t-228.5 -257t-209.5 -237.5q-16 -19 -6 -41 z" /> | ||
191 | <glyph unicode="" d="M0 400q0 -165 117.5 -282.5t282.5 -117.5h300q47 0 100 15v185h-500q-41 0 -70.5 29.5t-29.5 70.5v500q0 41 29.5 70.5t70.5 29.5h500v185q-14 4 -114 7.5t-193 5.5l-93 2q-165 0 -282.5 -117.5t-117.5 -282.5v-300zM600 400v300h300v200l400 -350l-400 -350v200h-300z " /> | ||
192 | <glyph unicode="" d="M0 400q0 -165 117.5 -282.5t282.5 -117.5h300q163 0 281.5 117.5t118.5 282.5v98l-78 73l-122 -123v-148q0 -41 -29.5 -70.5t-70.5 -29.5h-500q-41 0 -70.5 29.5t-29.5 70.5v500q0 41 29.5 70.5t70.5 29.5h156l118 122l-74 78h-100q-165 0 -282.5 -117.5t-117.5 -282.5 v-300zM496 709l353 342l-149 149h500v-500l-149 149l-342 -353z" /> | ||
193 | <glyph unicode="" d="M4 600q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM186 600q0 -171 121.5 -292.5t292.5 -121.5t292.5 121.5t121.5 292.5t-121.5 292.5t-292.5 121.5t-292.5 -121.5t-121.5 -292.5zM406 600 q0 80 57 137t137 57t137 -57t57 -137t-57 -137t-137 -57t-137 57t-57 137z" /> | ||
194 | <glyph unicode="" d="M0 0v275q0 11 7 18t18 7h1048q11 0 19 -7.5t8 -17.5v-275h-1100zM100 800l445 -500l450 500h-295v400h-300v-400h-300zM900 150h100v50h-100v-50z" /> | ||
195 | <glyph unicode="" d="M0 0v275q0 11 7 18t18 7h1048q11 0 19 -7.5t8 -17.5v-275h-1100zM100 700h300v-300h300v300h295l-445 500zM900 150h100v50h-100v-50z" /> | ||
196 | <glyph unicode="" d="M0 0v275q0 11 7 18t18 7h1048q11 0 19 -7.5t8 -17.5v-275h-1100zM100 705l305 -305l596 596l-154 155l-442 -442l-150 151zM900 150h100v50h-100v-50z" /> | ||
197 | <glyph unicode="" d="M0 0v275q0 11 7 18t18 7h1048q11 0 19 -7.5t8 -17.5v-275h-1100zM100 988l97 -98l212 213l-97 97zM200 400l697 1l3 699l-250 -239l-149 149l-212 -212l149 -149zM900 150h100v50h-100v-50z" /> | ||
198 | <glyph unicode="" d="M0 0v275q0 11 7 18t18 7h1048q11 0 19 -7.5t8 -17.5v-275h-1100zM200 612l212 -212l98 97l-213 212zM300 1200l239 -250l-149 -149l212 -212l149 148l249 -237l-1 697zM900 150h100v50h-100v-50z" /> | ||
199 | <glyph unicode="" d="M23 415l1177 784v-1079l-475 272l-310 -393v416h-392zM494 210l672 938l-672 -712v-226z" /> | ||
200 | <glyph unicode="" d="M0 150v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100l200 -200v-850q0 -21 -15 -35.5t-35 -14.5h-150v400h-700v-400h-150q-21 0 -35.5 14.5t-14.5 35.5zM600 1000h100v200h-100v-200z" /> | ||
201 | <glyph unicode="" d="M0 150v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100l200 -200v-218l-276 -275l-120 120l-126 -127h-378v-400h-150q-21 0 -35.5 14.5t-14.5 35.5zM581 306l123 123l120 -120l353 352l123 -123l-475 -476zM600 1000h100v200h-100v-200z" /> | ||
202 | <glyph unicode="" d="M0 150v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100l200 -200v-269l-103 -103l-170 170l-298 -298h-329v-400h-150q-21 0 -35.5 14.5t-14.5 35.5zM600 1000h100v200h-100v-200zM700 133l170 170l-170 170l127 127l170 -170l170 170l127 -128l-170 -169l170 -170 l-127 -127l-170 170l-170 -170z" /> | ||
203 | <glyph unicode="" d="M0 150v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100l200 -200v-300h-400v-200h-500v-400h-150q-21 0 -35.5 14.5t-14.5 35.5zM600 300l300 -300l300 300h-200v300h-200v-300h-200zM600 1000v200h100v-200h-100z" /> | ||
204 | <glyph unicode="" d="M0 150v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100l200 -200v-402l-200 200l-298 -298h-402v-400h-150q-21 0 -35.5 14.5t-14.5 35.5zM600 300h200v-300h200v300h200l-300 300zM600 1000v200h100v-200h-100z" /> | ||
205 | <glyph unicode="" d="M0 250q0 -21 14.5 -35.5t35.5 -14.5h1100q21 0 35.5 14.5t14.5 35.5v550h-1200v-550zM0 900h1200v150q0 21 -14.5 35.5t-35.5 14.5h-1100q-21 0 -35.5 -14.5t-14.5 -35.5v-150zM100 300v200h400v-200h-400z" /> | ||
206 | <glyph unicode="" d="M0 400l300 298v-198h400v-200h-400v-198zM100 800v200h100v-200h-100zM300 800v200h100v-200h-100zM500 800v200h400v198l300 -298l-300 -298v198h-400zM800 300v200h100v-200h-100zM1000 300h100v200h-100v-200z" /> | ||
207 | <glyph unicode="" d="M100 700v400l50 100l50 -100v-300h100v300l50 100l50 -100v-300h100v300l50 100l50 -100v-400l-100 -203v-447q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v447zM800 597q0 -29 10.5 -55.5t25 -43t29 -28.5t25.5 -18l10 -5v-397q0 -21 14.5 -35.5 t35.5 -14.5h200q21 0 35.5 14.5t14.5 35.5v1106q0 31 -18 40.5t-44 -7.5l-276 -116q-25 -17 -43.5 -51.5t-18.5 -65.5v-359z" /> | ||
208 | <glyph unicode="" d="M100 0h400v56q-75 0 -87.5 6t-12.5 44v394h500v-394q0 -38 -12.5 -44t-87.5 -6v-56h400v56q-4 0 -11 0.5t-24 3t-30 7t-24 15t-11 24.5v888q0 22 25 34.5t50 13.5l25 2v56h-400v-56q75 0 87.5 -6t12.5 -44v-394h-500v394q0 38 12.5 44t87.5 6v56h-400v-56q4 0 11 -0.5 t24 -3t30 -7t24 -15t11 -24.5v-888q0 -22 -25 -34.5t-50 -13.5l-25 -2v-56z" /> | ||
209 | <glyph unicode="" d="M0 300q0 -41 29.5 -70.5t70.5 -29.5h300q41 0 70.5 29.5t29.5 70.5v500q0 41 -29.5 70.5t-70.5 29.5h-300q-41 0 -70.5 -29.5t-29.5 -70.5v-500zM100 100h400l200 200h105l295 98v-298h-425l-100 -100h-375zM100 300v200h300v-200h-300zM100 600v200h300v-200h-300z M100 1000h400l200 -200v-98l295 98h105v200h-425l-100 100h-375zM700 402v163l400 133v-163z" /> | ||
210 | <glyph unicode="" d="M16.5 974.5q0.5 -21.5 16 -90t46.5 -140t104 -177.5t175 -208q103 -103 207.5 -176t180 -103.5t137 -47t92.5 -16.5l31 1l163 162q17 18 13.5 41t-22.5 37l-192 136q-19 14 -45 12t-42 -19l-118 -118q-142 101 -268 227t-227 268l118 118q17 17 20 41.5t-11 44.5 l-139 194q-14 19 -36.5 22t-40.5 -14l-162 -162q-1 -11 -0.5 -32.5z" /> | ||
211 | <glyph unicode="" d="M0 50v212q0 20 10.5 45.5t24.5 39.5l365 303v50q0 4 1 10.5t12 22.5t30 28.5t60 23t97 10.5t97 -10t60 -23.5t30 -27.5t12 -24l1 -10v-50l365 -303q14 -14 24.5 -39.5t10.5 -45.5v-212q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-20 0 -35 14.5t-15 35.5zM0 712 q0 -21 14.5 -33.5t34.5 -8.5l202 33q20 4 34.5 21t14.5 38v146q141 24 300 24t300 -24v-146q0 -21 14.5 -38t34.5 -21l202 -33q20 -4 34.5 8.5t14.5 33.5v200q-6 8 -19 20.5t-63 45t-112 57t-171 45t-235 20.5q-92 0 -175 -10.5t-141.5 -27t-108.5 -36.5t-81.5 -40 t-53.5 -36.5t-31 -27.5l-9 -10v-200z" /> | ||
212 | <glyph unicode="" d="M100 0v100h1100v-100h-1100zM175 200h950l-125 150v250l100 100v400h-100v-200h-100v200h-200v-200h-100v200h-200v-200h-100v200h-100v-400l100 -100v-250z" /> | ||
213 | <glyph unicode="" d="M100 0h300v400q0 41 -29.5 70.5t-70.5 29.5h-100q-41 0 -70.5 -29.5t-29.5 -70.5v-400zM500 0v1000q0 41 29.5 70.5t70.5 29.5h100q41 0 70.5 -29.5t29.5 -70.5v-1000h-300zM900 0v700q0 41 29.5 70.5t70.5 29.5h100q41 0 70.5 -29.5t29.5 -70.5v-700h-300z" /> | ||
214 | <glyph unicode="" d="M-100 300v500q0 124 88 212t212 88h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212zM100 200h900v700h-900v-700zM200 300h300v300h-200v100h200v100h-300v-300h200v-100h-200v-100zM600 300h200v100h100v300h-100v100h-200v-500 zM700 400v300h100v-300h-100z" /> | ||
215 | <glyph unicode="" d="M-100 300v500q0 124 88 212t212 88h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212zM100 200h900v700h-900v-700zM200 300h100v200h100v-200h100v500h-100v-200h-100v200h-100v-500zM600 300h200v100h100v300h-100v100h-200v-500 zM700 400v300h100v-300h-100z" /> | ||
216 | <glyph unicode="" d="M-100 300v500q0 124 88 212t212 88h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212zM100 200h900v700h-900v-700zM200 300h300v100h-200v300h200v100h-300v-500zM600 300h300v100h-200v300h200v100h-300v-500z" /> | ||
217 | <glyph unicode="" d="M-100 300v500q0 124 88 212t212 88h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212zM100 200h900v700h-900v-700zM200 550l300 -150v300zM600 400l300 150l-300 150v-300z" /> | ||
218 | <glyph unicode="" d="M-100 300v500q0 124 88 212t212 88h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212zM100 200h900v700h-900v-700zM200 300v500h700v-500h-700zM300 400h130q41 0 68 42t27 107t-28.5 108t-66.5 43h-130v-300zM575 549 q0 -65 27 -107t68 -42h130v300h-130q-38 0 -66.5 -43t-28.5 -108z" /> | ||
219 | <glyph unicode="" d="M-100 300v500q0 124 88 212t212 88h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212zM100 200h900v700h-900v-700zM200 300h300v300h-200v100h200v100h-300v-300h200v-100h-200v-100zM601 300h100v100h-100v-100zM700 700h100 v-400h100v500h-200v-100z" /> | ||
220 | <glyph unicode="" d="M-100 300v500q0 124 88 212t212 88h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212zM100 200h900v700h-900v-700zM200 300h300v400h-200v100h-100v-500zM301 400v200h100v-200h-100zM601 300h100v100h-100v-100zM700 700h100 v-400h100v500h-200v-100z" /> | ||
221 | <glyph unicode="" d="M-100 300v500q0 124 88 212t212 88h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212zM100 200h900v700h-900v-700zM200 700v100h300v-300h-99v-100h-100v100h99v200h-200zM201 300v100h100v-100h-100zM601 300v100h100v-100h-100z M700 700v100h200v-500h-100v400h-100z" /> | ||
222 | <glyph unicode="" d="M4 600q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM186 600q0 -171 121.5 -292.5t292.5 -121.5t292.5 121.5t121.5 292.5t-121.5 292.5t-292.5 121.5t-292.5 -121.5t-121.5 -292.5zM400 500v200 l100 100h300v-100h-300v-200h300v-100h-300z" /> | ||
223 | <glyph unicode="" d="M0 600q0 162 80 299t217 217t299 80t299 -80t217 -217t80 -299t-80 -299t-217 -217t-299 -80t-299 80t-217 217t-80 299zM182 600q0 -171 121.5 -292.5t292.5 -121.5t292.5 121.5t121.5 292.5t-121.5 292.5t-292.5 121.5t-292.5 -121.5t-121.5 -292.5zM400 400v400h300 l100 -100v-100h-100v100h-200v-100h200v-100h-200v-100h-100zM700 400v100h100v-100h-100z" /> | ||
224 | <glyph unicode="" d="M-14 494q0 -80 56.5 -137t135.5 -57h222v300h400v-300h128q120 0 205 86.5t85 207.5t-85 207t-205 86q-46 0 -90 -14q-44 97 -134.5 156.5t-200.5 59.5q-152 0 -260 -107.5t-108 -260.5q0 -25 2 -37q-66 -14 -108.5 -67.5t-42.5 -122.5zM300 200h200v300h200v-300h200 l-300 -300z" /> | ||
225 | <glyph unicode="" d="M-14 494q0 -80 56.5 -137t135.5 -57h8l414 414l403 -403q94 26 154.5 104.5t60.5 178.5q0 120 -85 206.5t-205 86.5q-46 0 -90 -14q-44 97 -134.5 156.5t-200.5 59.5q-152 0 -260 -107.5t-108 -260.5q0 -25 2 -37q-66 -14 -108.5 -67.5t-42.5 -122.5zM300 200l300 300 l300 -300h-200v-300h-200v300h-200z" /> | ||
226 | <glyph unicode="" d="M100 200h400v-155l-75 -45h350l-75 45v155h400l-270 300h170l-270 300h170l-300 333l-300 -333h170l-270 -300h170z" /> | ||
227 | <glyph unicode="" d="M121 700q0 -53 28.5 -97t75.5 -65q-4 -16 -4 -38q0 -74 52.5 -126.5t126.5 -52.5q56 0 100 30v-306l-75 -45h350l-75 45v306q46 -30 100 -30q74 0 126.5 52.5t52.5 126.5q0 24 -9 55q50 32 79.5 83t29.5 112q0 90 -61.5 155.5t-150.5 71.5q-26 89 -99.5 145.5 t-167.5 56.5q-116 0 -197.5 -81.5t-81.5 -197.5q0 -4 1 -11.5t1 -11.5q-14 2 -23 2q-74 0 -126.5 -52.5t-52.5 -126.5z" /> | ||
228 | </font> | ||
229 | </defs></svg> | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
fonts/glyphicons-halflings-regular.ttf
0 → 100644
No preview for this file type
fonts/glyphicons-halflings-regular.woff
0 → 100644
No preview for this file type
getting-started.html
0 → 100644
1 | <!DOCTYPE html> | ||
2 | <html> | ||
3 | <head> | ||
4 | <meta charset="utf-8"> | ||
5 | <title>Getting Started - Bootflat</title> | ||
6 | <!-- Sets initial viewport load and disables zooming --> | ||
7 | <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no"> | ||
8 | <!-- site css --> | ||
9 | <link rel="stylesheet" href="css/site.min.css"> | ||
10 | <link href="http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,800,700,400italic,600italic,700italic,800italic,300italic" rel="stylesheet" type="text/css"> | ||
11 | <!-- HTML5 shim, for IE6-8 support of HTML5 elements. All other JS at the end of file. --> | ||
12 | <!--[if lt IE 9]> | ||
13 | <script src="js/html5shiv.js"></script> | ||
14 | <script src="js/respond.min.js"></script> | ||
15 | <![endif]--> | ||
16 | <script type="text/javascript" src="js/site.min.js"></script> | ||
17 | </head> | ||
18 | <body> | ||
19 | <div class="docs-header"> | ||
20 | <!--nav--> | ||
21 | <nav class="navbar navbar-default navbar-custom" role="navigation"> | ||
22 | <div class="container"> | ||
23 | <div class="navbar-header"> | ||
24 | <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> | ||
25 | <span class="sr-only">Toggle navigation</span> | ||
26 | <span class="icon-bar"></span> | ||
27 | <span class="icon-bar"></span> | ||
28 | <span class="icon-bar"></span> | ||
29 | </button> | ||
30 | <a class="navbar-brand" href="index.html"><img src="img/logo.png" height="40"></a> | ||
31 | </div> | ||
32 | <div class="collapse navbar-collapse"> | ||
33 | <ul class="nav navbar-nav navbar-right"> | ||
34 | <li><a class="nav-link current" href="getting-started.html">Getting Started</a></li> | ||
35 | <li><a class="nav-link" href="documentation.html">Documentation</a></li> | ||
36 | </ul> | ||
37 | </div> | ||
38 | </div> | ||
39 | </nav> | ||
40 | <!--header--> | ||
41 | <div class="topic"> | ||
42 | <div class="container"> | ||
43 | <h3>Getting Started with Bootflat Framework</h3> | ||
44 | <h4>An overview of Bootflat, why we built it, how to use it, and what you should know along the way.</h4> | ||
45 | <!-- <div class="advertisement"> | ||
46 | <span class="advertisement-image"> | ||
47 | <img src="" title="bootflat" alt="bootflat" border="0" height="90"> | ||
48 | </span> | ||
49 | <p class="advertisement-text"></p> | ||
50 | </div> --> | ||
51 | </div> | ||
52 | <div class="topic__infos"> | ||
53 | <div class="container"> | ||
54 | Getting started With Bootflat is easy. Whether you are a master of Sass, building a new app, we've got you covered. | ||
55 | </div> | ||
56 | </div> | ||
57 | </div> | ||
58 | </div> | ||
59 | <!--documents--> | ||
60 | <div class="container documents"> | ||
61 | <div class="row"> | ||
62 | <div class="col-md-12"> | ||
63 | <!-- Overview | ||
64 | ================================================== --> | ||
65 | <div class="docs-article docs--start" id="overview"> | ||
66 | <h3>Overview</h3> | ||
67 | <p>Why is this important? Bootstrap is a reliable and proven tool for developers, validated in the field. It reminds us of Superman, a friend you can trust completely with a serious project.</p> | ||
68 | <dl> | ||
69 | <dt>OOCSS Approach</dt> | ||
70 | <dd>Object-based coding method encourages code reuse and creates faster and more efficient style sheets, which are easier to add to and maintain.</dd> | ||
71 | <dt>Bootstrap 3.1.0 Support</dt> | ||
72 | <dd>Now Bootflat is supporting Bootstrap 3.1.0 as well.</dd> | ||
73 | <dt>Configurable Color Scheme</dt> | ||
74 | <dd>You can change any or all of the colors if you wish. Bootflat is easy to configure and match to your brand's color scheme.</dd> | ||
75 | <dt>Easy Installation</dt> | ||
76 | <dd>Upload all Bootflat files and paste one line of code at the bottom of your <code>head</code> tag. That’s it!</dd> | ||
77 | </dl> | ||
78 | </div> | ||
79 | <!-- Download | ||
80 | ================================================== --> | ||
81 | <div class="docs-article docs--start" id="download"> | ||
82 | <h3>Download</h3> | ||
83 | <p>Download the latest official release of Bootflat and get started!</p> | ||
84 | <ul class="item__infos"> | ||
85 | <li>Version 2.0.0</li> | ||
86 | <li>Released December 18th, 2013</li> | ||
87 | </ul> | ||
88 | <p><a class="btn btn-primary" href="https://github.com/bootflat/bootflat.github.io/archive/master.zip">Download v2.0.0</a></p> | ||
89 | <p>You can also <a href="https://github.com/bootflat/bootflat.github.io">clone it on GitHub</a> to get the bleeding edge release. </p> | ||
90 | </div> | ||
91 | <!-- What's included | ||
92 | ================================================== --> | ||
93 | <div class="docs-article docs--start" id="included"> | ||
94 | <h3>What's included</h3> | ||
95 | <p>Within the download you'll find the following directories and files, logically grouping common assets and providing both compiled and minified variations.</p> | ||
96 | <p>Once downloaded, unzip the compressed folder to see the structure of (the compiled) Bootflat. You'll see something like this:</p> | ||
97 | <pre><code class="bash">bootflat/ | ||
98 | ├── css/ | ||
99 | │ ├── bootflat.css | ||
100 | │ ├── bootflat.min.css | ||
101 | ├── js/ | ||
102 | │ ├── icheck.min.js | ||
103 | │ ├── jquery.collapse.js | ||
104 | ├── fonts/ | ||
105 | │ ├── glyphicons-halflings-regular.eot | ||
106 | │ ├── glyphicons-halflings-regular.svg | ||
107 | │ ├── glyphicons-halflings-regular.ttf | ||
108 | │ ├── glyphicons-halflings-regular.woff | ||
109 | └── img/ | ||
110 | └── check_flat/ | ||
111 | └── default.png | ||
112 | </code></pre> | ||
113 | </div> | ||
114 | <!-- CSS/SASS | ||
115 | ================================================== --> | ||
116 | <div class="docs-article docs--start" id="css-sass"> | ||
117 | <h3>CSS/SASS</h3> | ||
118 | <p>The CSS can stand on its own, but it is also built to be enhanced by the developer. For simplicity you can always just add in your own CSS and override default properties. And for even more power and flexibility, the core is written with <a href="http://sass-lang.com/">SASS</a> and includes easily customized variables and mixins. We feel we’ve left the CSS in a state which can be easily extended to get your own look and feel.</p> | ||
119 | </div> | ||
120 | <!-- Browser Support | ||
121 | ================================================== --> | ||
122 | <div class="docs-article docs--start" id="browser-support"> | ||
123 | <h3>Browser Support</h3> | ||
124 | <p>As such, our browser support tends to be whatever Web View API is available to native on a given platform. For Bootflat v2.0.0, that means UIWebView for E8, IE9, IE10, Firefox, Safari, Opera, Chrome.</p> | ||
125 | </div> | ||
126 | <!-- Licensing | ||
127 | ================================================== --> | ||
128 | <div class="docs-article docs--start" id="licensing"> | ||
129 | <h3>Licensing</h3> | ||
130 | <p>Bootflat is an open source framework released under a permisive <a href="http://opensource.org/licenses/MIT">MIT</a> license. This means you can use Bootflat in your own personal or commercial projects for free. MIT is the same license used by such popular projects as jQuery and Ruby on Rails.</p> | ||
131 | </div> | ||
132 | </div> | ||
133 | </div> | ||
134 | </div> | ||
135 | <!--footer--> | ||
136 | <div class="site-footer"> | ||
137 | <div class="container"> | ||
138 | <div class="download"> | ||
139 | <span class="download__infos">You simply have to <b>try it</b>.</span> | ||
140 | <a class="btn btn-primary" href="https://github.com/bootflat/bootflat.github.io/archive/master.zip">Download Bootflat</a> | ||
141 | <a class="btn" href="documentation.html">Read the Documentation</a> | ||
142 | </div> | ||
143 | <hr class="dashed" /> | ||
144 | <div class="row"> | ||
145 | <div class="col-md-4"> | ||
146 | <h3>Get involved</h3> | ||
147 | <p>Bootflat is hosted on <a href="https://github.com/bootflat/bootflat.github.io" target="_blank" rel="external nofollow">GitHub</a> and open for everyone to contribute. Please give us some feedback and join the development!</p> | ||
148 | </div> | ||
149 | <div class="col-md-4"> | ||
150 | <h3>Contribute</h3> | ||
151 | <p>You want to help us and participate in the development or the documentation? Just fork Bootflat on <a href="https://github.com/bootflat/bootflat.github.io" target="_blank" rel="external nofollow">GitHub</a> and send us a pull request.</p> | ||
152 | </div> | ||
153 | <div class="col-md-4"> | ||
154 | <h3>Found a bug?</h3> | ||
155 | <p>Open a <a href="https://github.com/bootflat/bootflat.github.io/issues" target="_blank" rel="external nofollow">new issue</a> on GitHub. Please search for existing issues first and make sure to include all relevant information.</p> | ||
156 | </div> | ||
157 | </div> | ||
158 | <hr class="dashed" /> | ||
159 | <div class="row"> | ||
160 | <div class="col-md-6"> | ||
161 | <h3>Talk to us</h3> | ||
162 | <ul> | ||
163 | <li>Tweet us at <a href="https://twitter.com/flathemes" target="_blank">@flathemes</a> Email us at <span class="connect">info@flathemes.com</span></li> | ||
164 | <li> | ||
165 | <a title="Twitter" href="https://twitter.com/flathemes" target="_blank" rel="external nofollow"><i class="icon" data-icon=""></i></a> | ||
166 | <a title="Facebook" href="https://www.facebook.com/Flathemes" target="_blank" rel="external nofollow"><i class="icon" data-icon=""></i></a> | ||
167 | <a title="Google+" href="https://plus.google.com/u/0/" target="_blank" rel="external nofollow"><i class="icon" data-icon=""></i></a> | ||
168 | <a title="Github" href="https://github.com/bootflat/bootflat.github.io" target="_blank" rel="external nofollow"><i class="icon" data-icon=""></i></a> | ||
169 | </li> | ||
170 | </ul> | ||
171 | </div> | ||
172 | <div class="col-md-6"> | ||
173 | <!-- Begin MailChimp Signup Form --> | ||
174 | <link href="//cdn-images.mailchimp.com/embedcode/slim-081711.css" rel="stylesheet" type="text/css"> | ||
175 | <div id="mc_embed_signup"> | ||
176 | <h3 style="margin-bottom: 15px;">Newsletter</h3> | ||
177 | <form action="http://flathemes.us3.list-manage.com/subscribe/post?u=faba9adaea2b85dc9a5c496bd&id=acd08a1b0f" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate> | ||
178 | <input style="margin-bottom: 10px;" type="email" value="" name="EMAIL" class="email form-control" id="mce-EMAIL" placeholder="email address" required> | ||
179 | <span class="clear"><input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="btn btn-primary"></span> | ||
180 | </form> | ||
181 | </div> | ||
182 | <!--End mc_embed_signup--> | ||
183 | </div> | ||
184 | </div> | ||
185 | <hr class="dashed" /> | ||
186 | <div class="copyright clearfix"> | ||
187 | <p><b>Bootflat</b> <a href="getting-started.html">Getting Started</a> • <a href="documentation.html">Documentation</a><!-- • <a href="examples/">Examples</a> --></p> | ||
188 | <p>© 2014 FLATHEMES, Inc. All rights reserved. Code licensed under <a href="http://opensource.org/licenses/mit-license.html" target="_blank" rel="external nofollow">MIT License</a>, documentation under <a href="http://creativecommons.org/licenses/by/3.0/" rel="external nofollow">CC BY 3.0</a>.</p> | ||
189 | </div> | ||
190 | </div> | ||
191 | </div> | ||
192 | <script> | ||
193 | (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ | ||
194 | (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), | ||
195 | m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) | ||
196 | })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); | ||
197 | |||
198 | ga('create', 'UA-48011661-1', 'Bootflat.github.io'); | ||
199 | ga('send', 'pageview'); | ||
200 | |||
201 | </script> | ||
202 | </body> | ||
203 | </html> |
img/Jumbotron.jpg
0 → 100644
50.6 KB
img/divider.png
0 → 100644
72.5 KB
img/feature-bootstrap.png
0 → 100644
3.59 KB
img/feature-css.png
0 → 100644
6.15 KB
img/feature-lightweight.png
0 → 100644
7.87 KB
img/feature-mobile.png
0 → 100644
3.64 KB
img/footer-logo.png
0 → 100644
2.18 KB
img/index.png
0 → 100644
167 KB
img/logo-index.png
0 → 100644
12 KB
img/logo.png
0 → 100644
6.71 KB
img/slider1.jpg
0 → 100644
24.9 KB
img/slider2.jpg
0 → 100644
38 KB
img/slider3.jpg
0 → 100644
43.3 KB
img/wild_flowers.png
0 → 100644
132 KB
index.html
0 → 100644
1 | <!DOCTYPE html> | ||
2 | <html> | ||
3 | <head> | ||
4 | <meta charset="utf-8"> | ||
5 | <title>Bootflat</title> | ||
6 | <!-- Sets initial viewport load and disables zooming --> | ||
7 | <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no"> | ||
8 | <!-- site css --> | ||
9 | <link rel="stylesheet" href="css/site.min.css"> | ||
10 | <link href="http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,800,700,400italic,600italic,700italic,800italic,300italic" rel="stylesheet" type="text/css"> | ||
11 | <!-- HTML5 shim, for IE6-8 support of HTML5 elements. All other JS at the end of file. --> | ||
12 | <!--[if lt IE 9]> | ||
13 | <script src="js/html5shiv.js"></script> | ||
14 | <script src="js/respond.min.js"></script> | ||
15 | <![endif]--> | ||
16 | <script type="text/javascript" src="js/site.min.js"></script> | ||
17 | </head> | ||
18 | <body class="home"> | ||
19 | <div class="docs-header header--noBackground"> | ||
20 | <!--nav--> | ||
21 | <nav class="navbar navbar-default navbar-custom" role="navigation"> | ||
22 | <div class="container"> | ||
23 | <div class="navbar-header"> | ||
24 | <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> | ||
25 | <span class="sr-only">Toggle navigation</span> | ||
26 | <span class="icon-bar"></span> | ||
27 | <span class="icon-bar"></span> | ||
28 | <span class="icon-bar"></span> | ||
29 | </button> | ||
30 | <a class="navbar-brand" href="index.html"><img src="img/logo.png" height="40"></a> | ||
31 | </div> | ||
32 | <div class="collapse navbar-collapse"> | ||
33 | <ul class="nav navbar-nav navbar-right"> | ||
34 | <li><a class="nav-link" href="getting-started.html">Getting Started</a></li> | ||
35 | <li><a class="nav-link" href="documentation.html">Documentation</a></li> | ||
36 | </ul> | ||
37 | </div> | ||
38 | </div> | ||
39 | </nav> | ||
40 | <!--index--> | ||
41 | <div class="index"> | ||
42 | <h1> | ||
43 | <img src="img/logo-index.png" alt="Bootflat: Advanced HTML5 Hybrid Mobile App Framework"> | ||
44 | </h1> | ||
45 | <h2>BOOTFLAT is an open source Flat UI KIT based on Twitter Bootstrap 3.1.0 css framework. <br />It provides a faster, easier and less repetitive way for web developers to create elegant web app.</h2> | ||
46 | <h3>Compatible Browsers: IE8, IE9, IE10, Firefox, Safari, Opera, Chrome.</h3> | ||
47 | <p class="download-link"> | ||
48 | <a class="btn btn-primary" href="https://github.com/Bootflat/Bootflat.github.io/archive/master.zip">Download (Version 2.0.0)</a> | ||
49 | </p> | ||
50 | <p class="version-text">MIT Licensed - Version 2.0.0</p> | ||
51 | <p class="learn-more Bootflat"> | ||
52 | <a href="#learn-more">Learn more <i class="icon" data-icon=""></i></a> | ||
53 | </p> | ||
54 | </div> | ||
55 | <!--social--> | ||
56 | <ul class="social"> | ||
57 | <li class="github-watch"> | ||
58 | <iframe src="http://ghbtns.com/github-btn.html?user=bootflat&repo=bootflat.github.io&type=watch&count=true" title="Star on GitHub" frameborder="0" scrolling="0" width="150" height="25"></iframe> | ||
59 | </li> | ||
60 | <li class="github-fork"> | ||
61 | <iframe src="http://ghbtns.com/github-btn.html?user=bootflat&repo=bootflat.github.io&type=fork&count=true" title="Fork on GitHub" frameborder="0" scrolling="0" width="150" height="25"></iframe> | ||
62 | </li> | ||
63 | <li class="twitter-follow"> | ||
64 | <iframe allowtransparency="true" frameborder="0" scrolling="no" src="http://platform.twitter.com/widgets/follow_button.1375828408.html#_=1376720237528&id=twitter-widget-1&lang=en&screen_name=flathemes&show_count=true&show_screen_name=true&size=m" class="twitter-follow-button twitter-follow-button" title="Twitter Follow Button" data-twttr-rendered="true" style="width: 254px; height: 20px;"></iframe> | ||
65 | </li> | ||
66 | <li class="twitter-share"> | ||
67 | <iframe allowtransparency="true" frameborder="0" scrolling="no" src="http://platform.twitter.com/widgets/tweet_button.1375828408.html#_=1376720237525&count=horizontal&id=twitter-widget-0&lang=en&original_referer=http%3A%2F%2Fgetbootstrap.com%2F&related=mdo%3ACreator%20of%20Twitter%20Bootstrap&size=m&text=Bootflat&url=http%3A%2F%2Fflathemes.com%2F&via=flathemes" class="twitter-share-button twitter-count-horizontal" title="Twitter Tweet Button" data-twttr-rendered="true" style="width: 116px; height: 20px;"></iframe> | ||
68 | </li> | ||
69 | </ul> | ||
70 | <!--desc--> | ||
71 | <div id="learn-more" class="desc container"> | ||
72 | <div class="desc__introduces"> | ||
73 | <h3>Designed for everyone, everywhere.</h3> | ||
74 | <p>Bootflat is made on the basis of Twitter Bootstrap in a stunning flat-style. Bootstrap is a trusted, reliable and proven tool for developers. Built with <a href="http://sass-lang.com/" target="_blank">Sass</a>.</p> | ||
75 | </div> | ||
76 | <div class="desc__features"> | ||
77 | <div class="row"> | ||
78 | <div class="col-md-6"> | ||
79 | <div class="features__photo"><img src="img/feature-bootstrap.png" /></div> | ||
80 | <h4>Bootstrap 3.1.0</h4> | ||
81 | <p>Bootsflat is based on Bootstrap 3.1.0 the sleek, intuitive, and powerful mobile-first front-end framework for faster and easier web development.</p> | ||
82 | </div> | ||
83 | <div class="col-md-6"> | ||
84 | <div class="features__photo"><img src="img/feature-css.png" /></div> | ||
85 | <h4>HTML5 & CSS3</h4> | ||
86 | <p>First use HTML5 and CSS3 to build the components. the pages use header, nav, section to build the layout. this project have a good color scheme, can easy to change.</p> | ||
87 | </div> | ||
88 | </div> | ||
89 | <div class="row"> | ||
90 | <div class="col-md-6"> | ||
91 | <div class="features__photo"><img src="img/feature-lightweight.png" /></div> | ||
92 | <h4>Lightweight</h4> | ||
93 | <p>We only choose the lightweight plugins, but with rich functions. we use tiny components, css and js size is first consideration.</p> | ||
94 | </div> | ||
95 | <div class="col-md-6"> | ||
96 | <div class="features__photo"><img src="img/feature-mobile.png" /></div> | ||
97 | <h4>Mobile first</h4> | ||
98 | <p>Bootflat is fully responsive, but it's mobile first. it provide the off screen nav, and almost all the widgets are copatible to all the screen sizes.</p> | ||
99 | </div> | ||
100 | </div> | ||
101 | </div> | ||
102 | <!-- <div class="desc__introduces"> | ||
103 | <h3>Bootflat examples</h3> | ||
104 | <p>Check out our <a href="/examples/">examples</a>, including starter templates and showcase demos.</p> | ||
105 | <div class="photo--responsive"><img src="img/demo-index.png" /></div> | ||
106 | </div> --> | ||
107 | </div> | ||
108 | <!--footer--> | ||
109 | <div class="site-footer"> | ||
110 | <div class="container"> | ||
111 | <div class="download"> | ||
112 | <span class="download__infos">You simply have to <b>try it</b>.</span> | ||
113 | <a class="btn btn-primary" href="https://github.com/bootflat/bootflat.github.io/archive/master.zip">Download Bootflat</a> | ||
114 | <a class="btn" href="documentation.html">Read the Documentation</a> | ||
115 | </div> | ||
116 | <hr class="dashed" /> | ||
117 | <div class="row"> | ||
118 | <div class="col-md-4"> | ||
119 | <h3>Get involved</h3> | ||
120 | <p>Bootflat is hosted on <a href="https://github.com/bootflat/bootflat.github.io" target="_blank" rel="external nofollow">GitHub</a> and open for everyone to contribute. Please give us some feedback and join the development!</p> | ||
121 | </div> | ||
122 | <div class="col-md-4"> | ||
123 | <h3>Contribute</h3> | ||
124 | <p>You want to help us and participate in the development or the documentation? Just fork Bootflat on <a href="https://github.com/bootflat/bootflat.github.io" target="_blank" rel="external nofollow">GitHub</a> and send us a pull request.</p> | ||
125 | </div> | ||
126 | <div class="col-md-4"> | ||
127 | <h3>Found a bug?</h3> | ||
128 | <p>Open a <a href="https://github.com/bootflat/bootflat.github.io/issues" target="_blank" rel="external nofollow">new issue</a> on GitHub. Please search for existing issues first and make sure to include all relevant information.</p> | ||
129 | </div> | ||
130 | </div> | ||
131 | <hr class="dashed" /> | ||
132 | <div class="row"> | ||
133 | <div class="col-md-6"> | ||
134 | <h3>Talk to us</h3> | ||
135 | <ul> | ||
136 | <li>Tweet us at <a href="https://twitter.com/flathemes" target="_blank">@flathemes</a> Email us at <span class="connect">info@flathemes.com</span></li> | ||
137 | <li> | ||
138 | <a title="Twitter" href="https://twitter.com/flathemes" target="_blank" rel="external nofollow"><i class="icon" data-icon=""></i></a> | ||
139 | <a title="Facebook" href="https://www.facebook.com/Flathemes" target="_blank" rel="external nofollow"><i class="icon" data-icon=""></i></a> | ||
140 | <a title="Google+" href="https://plus.google.com/u/0/" target="_blank" rel="external nofollow"><i class="icon" data-icon=""></i></a> | ||
141 | <a title="Github" href="https://github.com/bootflat/bootflat.github.io" target="_blank" rel="external nofollow"><i class="icon" data-icon=""></i></a> | ||
142 | </li> | ||
143 | </ul> | ||
144 | </div> | ||
145 | <div class="col-md-6"> | ||
146 | <!-- Begin MailChimp Signup Form --> | ||
147 | <link href="//cdn-images.mailchimp.com/embedcode/slim-081711.css" rel="stylesheet" type="text/css"> | ||
148 | <div id="mc_embed_signup"> | ||
149 | <h3 style="margin-bottom: 15px;">Newsletter</h3> | ||
150 | <form action="http://flathemes.us3.list-manage.com/subscribe/post?u=faba9adaea2b85dc9a5c496bd&id=acd08a1b0f" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate> | ||
151 | <input style="margin-bottom: 10px;" type="email" value="" name="EMAIL" class="email form-control" id="mce-EMAIL" placeholder="email address" required> | ||
152 | <span class="clear"><input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="btn btn-primary"></span> | ||
153 | </form> | ||
154 | </div> | ||
155 | <!--End mc_embed_signup--> | ||
156 | </div> | ||
157 | </div> | ||
158 | <hr class="dashed" /> | ||
159 | <div class="copyright clearfix"> | ||
160 | <p><b>Bootflat</b> <a href="getting-started.html">Getting Started</a> • <a href="documentation.html">Documentation</a><!-- • <a href="examples/">Examples</a> --></p> | ||
161 | <p>© 2014 FLATHEMES, Inc. All rights reserved. Code licensed under <a href="http://opensource.org/licenses/mit-license.html" target="_blank" rel="external nofollow">MIT License</a>, documentation under <a href="http://creativecommons.org/licenses/by/3.0/" rel="external nofollow">CC BY 3.0</a>.</p> | ||
162 | </div> | ||
163 | </div> | ||
164 | </div> | ||
165 | |||
166 | </div> | ||
167 | <script> | ||
168 | (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ | ||
169 | (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), | ||
170 | m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) | ||
171 | })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); | ||
172 | |||
173 | ga('create', 'UA-48011661-1', 'Bootflat.github.io'); | ||
174 | ga('send', 'pageview'); | ||
175 | |||
176 | </script> | ||
177 | </body> | ||
178 | </html> |
js/application.js
0 → 100644
1 | // NOTICE!! DO NOT USE ANY OF THIS JAVASCRIPT | ||
2 | // IT'S ALL JUST JUNK FOR OUR DOCS! | ||
3 | // ++++++++++++++++++++++++++++++++++++++++++ | ||
4 | |||
5 | !function ($) { | ||
6 | $(function(){ | ||
7 | |||
8 | Holder.add_theme("new", { background: "#AC92EC", foreground: "#fff", size: 12 }).run() | ||
9 | |||
10 | $('.tooltip-demo').tooltip({ | ||
11 | selector: "[data-toggle=tooltip]", | ||
12 | container: "body" | ||
13 | }) | ||
14 | |||
15 | $('.checkbox input').iCheck({ | ||
16 | checkboxClass: 'icheckbox_flat', | ||
17 | increaseArea: '20%' | ||
18 | }) | ||
19 | |||
20 | $('.radio input').iCheck({ | ||
21 | radioClass: 'iradio_flat', | ||
22 | increaseArea: '20%' | ||
23 | }) | ||
24 | |||
25 | $("#accordion1").collapse({ | ||
26 | accordion: true, | ||
27 | open: function() { | ||
28 | this.addClass("open"); | ||
29 | this.css({ height: this.children().outerHeight() }); | ||
30 | }, | ||
31 | close: function() { | ||
32 | this.css({ height: "0" }); | ||
33 | this.removeClass("open"); | ||
34 | } | ||
35 | }); | ||
36 | |||
37 | $("#accordion2").collapse({ | ||
38 | accordion: true, | ||
39 | open: function() { | ||
40 | this.addClass("open"); | ||
41 | this.css({ height: this.children().outerHeight() }); | ||
42 | }, | ||
43 | close: function() { | ||
44 | this.css({ height: "0" }); | ||
45 | this.removeClass("open"); | ||
46 | } | ||
47 | }); | ||
48 | |||
49 | }) | ||
50 | }(window.jQuery) | ||
51 |
js/bootstrap.min.js
0 → 100644
1 | /*! | ||
2 | * Bootstrap v3.1.1 (http://getbootstrap.com) | ||
3 | * Copyright 2011-2014 Twitter, Inc. | ||
4 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) | ||
5 | */ | ||
6 | if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one(a.support.transition.end,function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b()})}(jQuery),+function(a){"use strict";var b='[data-dismiss="alert"]',c=function(c){a(c).on("click",b,this.close)};c.prototype.close=function(b){function c(){f.trigger("closed.bs.alert").remove()}var d=a(this),e=d.attr("data-target");e||(e=d.attr("href"),e=e&&e.replace(/.*(?=#[^\s]*$)/,""));var f=a(e);b&&b.preventDefault(),f.length||(f=d.hasClass("alert")?d:d.parent()),f.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(f.removeClass("in"),a.support.transition&&f.hasClass("fade")?f.one(a.support.transition.end,c).emulateTransitionEnd(150):c())};var d=a.fn.alert;a.fn.alert=function(b){return this.each(function(){var d=a(this),e=d.data("bs.alert");e||d.data("bs.alert",e=new c(this)),"string"==typeof b&&e[b].call(d)})},a.fn.alert.Constructor=c,a.fn.alert.noConflict=function(){return a.fn.alert=d,this},a(document).on("click.bs.alert.data-api",b,c.prototype.close)}(jQuery),+function(a){"use strict";var b=function(c,d){this.$element=a(c),this.options=a.extend({},b.DEFAULTS,d),this.isLoading=!1};b.DEFAULTS={loadingText:"loading..."},b.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",f.resetText||d.data("resetText",d[e]()),d[e](f[b]||this.options[b]),setTimeout(a.proxy(function(){"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c))},this),0)},b.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")&&(c.prop("checked")&&this.$element.hasClass("active")?a=!1:b.find(".active").removeClass("active")),a&&c.prop("checked",!this.$element.hasClass("active")).trigger("change")}a&&this.$element.toggleClass("active")};var c=a.fn.button;a.fn.button=function(c){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof c&&c;e||d.data("bs.button",e=new b(this,f)),"toggle"==c?e.toggle():c&&e.setState(c)})},a.fn.button.Constructor=b,a.fn.button.noConflict=function(){return a.fn.button=c,this},a(document).on("click.bs.button.data-api","[data-toggle^=button]",function(b){var c=a(b.target);c.hasClass("btn")||(c=c.closest(".btn")),c.button("toggle"),b.preventDefault()})}(jQuery),+function(a){"use strict";var b=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=this.sliding=this.interval=this.$active=this.$items=null,"hover"==this.options.pause&&this.$element.on("mouseenter",a.proxy(this.pause,this)).on("mouseleave",a.proxy(this.cycle,this))};b.DEFAULTS={interval:5e3,pause:"hover",wrap:!0},b.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},b.prototype.getActiveIndex=function(){return this.$active=this.$element.find(".item.active"),this.$items=this.$active.parent().children(),this.$items.index(this.$active)},b.prototype.to=function(b){var c=this,d=this.getActiveIndex();return b>this.$items.length-1||0>b?void 0:this.sliding?this.$element.one("slid.bs.carousel",function(){c.to(b)}):d==b?this.pause().cycle():this.slide(b>d?"next":"prev",a(this.$items[b]))},b.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},b.prototype.next=function(){return this.sliding?void 0:this.slide("next")},b.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},b.prototype.slide=function(b,c){var d=this.$element.find(".item.active"),e=c||d[b](),f=this.interval,g="next"==b?"left":"right",h="next"==b?"first":"last",i=this;if(!e.length){if(!this.options.wrap)return;e=this.$element.find(".item")[h]()}if(e.hasClass("active"))return this.sliding=!1;var j=a.Event("slide.bs.carousel",{relatedTarget:e[0],direction:g});return this.$element.trigger(j),j.isDefaultPrevented()?void 0:(this.sliding=!0,f&&this.pause(),this.$indicators.length&&(this.$indicators.find(".active").removeClass("active"),this.$element.one("slid.bs.carousel",function(){var b=a(i.$indicators.children()[i.getActiveIndex()]);b&&b.addClass("active")})),a.support.transition&&this.$element.hasClass("slide")?(e.addClass(b),e[0].offsetWidth,d.addClass(g),e.addClass(g),d.one(a.support.transition.end,function(){e.removeClass([b,g].join(" ")).addClass("active"),d.removeClass(["active",g].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger("slid.bs.carousel")},0)}).emulateTransitionEnd(1e3*d.css("transition-duration").slice(0,-1))):(d.removeClass("active"),e.addClass("active"),this.sliding=!1,this.$element.trigger("slid.bs.carousel")),f&&this.cycle(),this)};var c=a.fn.carousel;a.fn.carousel=function(c){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},b.DEFAULTS,d.data(),"object"==typeof c&&c),g="string"==typeof c?c:f.slide;e||d.data("bs.carousel",e=new b(this,f)),"number"==typeof c?e.to(c):g?e[g]():f.interval&&e.pause().cycle()})},a.fn.carousel.Constructor=b,a.fn.carousel.noConflict=function(){return a.fn.carousel=c,this},a(document).on("click.bs.carousel.data-api","[data-slide], [data-slide-to]",function(b){var c,d=a(this),e=a(d.attr("data-target")||(c=d.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"")),f=a.extend({},e.data(),d.data()),g=d.attr("data-slide-to");g&&(f.interval=!1),e.carousel(f),(g=d.attr("data-slide-to"))&&e.data("bs.carousel").to(g),b.preventDefault()}),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var b=a(this);b.carousel(b.data())})})}(jQuery),+function(a){"use strict";var b=function(c,d){this.$element=a(c),this.options=a.extend({},b.DEFAULTS,d),this.transitioning=null,this.options.parent&&(this.$parent=a(this.options.parent)),this.options.toggle&&this.toggle()};b.DEFAULTS={toggle:!0},b.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},b.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b=a.Event("show.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.$parent&&this.$parent.find("> .panel > .in");if(c&&c.length){var d=c.data("bs.collapse");if(d&&d.transitioning)return;c.collapse("hide"),d||c.data("bs.collapse",null)}var e=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[e](0),this.transitioning=1;var f=function(){this.$element.removeClass("collapsing").addClass("collapse in")[e]("auto"),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return f.call(this);var g=a.camelCase(["scroll",e].join("-"));this.$element.one(a.support.transition.end,a.proxy(f,this)).emulateTransitionEnd(350)[e](this.$element[0][g])}}},b.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse").removeClass("in"),this.transitioning=1;var d=function(){this.transitioning=0,this.$element.trigger("hidden.bs.collapse").removeClass("collapsing").addClass("collapse")};return a.support.transition?void this.$element[c](0).one(a.support.transition.end,a.proxy(d,this)).emulateTransitionEnd(350):d.call(this)}}},b.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()};var c=a.fn.collapse;a.fn.collapse=function(c){return this.each(function(){var d=a(this),e=d.data("bs.collapse"),f=a.extend({},b.DEFAULTS,d.data(),"object"==typeof c&&c);!e&&f.toggle&&"show"==c&&(c=!c),e||d.data("bs.collapse",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.collapse.Constructor=b,a.fn.collapse.noConflict=function(){return a.fn.collapse=c,this},a(document).on("click.bs.collapse.data-api","[data-toggle=collapse]",function(b){var c,d=a(this),e=d.attr("data-target")||b.preventDefault()||(c=d.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,""),f=a(e),g=f.data("bs.collapse"),h=g?"toggle":d.data(),i=d.attr("data-parent"),j=i&&a(i);g&&g.transitioning||(j&&j.find('[data-toggle=collapse][data-parent="'+i+'"]').not(d).addClass("collapsed"),d[f.hasClass("in")?"addClass":"removeClass"]("collapsed")),f.collapse(h)})}(jQuery),+function(a){"use strict";function b(b){a(d).remove(),a(e).each(function(){var d=c(a(this)),e={relatedTarget:this};d.hasClass("open")&&(d.trigger(b=a.Event("hide.bs.dropdown",e)),b.isDefaultPrevented()||d.removeClass("open").trigger("hidden.bs.dropdown",e))})}function c(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}var d=".dropdown-backdrop",e="[data-toggle=dropdown]",f=function(b){a(b).on("click.bs.dropdown",this.toggle)};f.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=c(e),g=f.hasClass("open");if(b(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a('<div class="dropdown-backdrop"/>').insertAfter(a(this)).on("click",b);var h={relatedTarget:this};if(f.trigger(d=a.Event("show.bs.dropdown",h)),d.isDefaultPrevented())return;f.toggleClass("open").trigger("shown.bs.dropdown",h),e.trigger("focus")}return!1}},f.prototype.keydown=function(b){if(/(38|40|27)/.test(b.keyCode)){var d=a(this);if(b.preventDefault(),b.stopPropagation(),!d.is(".disabled, :disabled")){var f=c(d),g=f.hasClass("open");if(!g||g&&27==b.keyCode)return 27==b.which&&f.find(e).trigger("focus"),d.trigger("click");var h=" li:not(.divider):visible a",i=f.find("[role=menu]"+h+", [role=listbox]"+h);if(i.length){var j=i.index(i.filter(":focus"));38==b.keyCode&&j>0&&j--,40==b.keyCode&&j<i.length-1&&j++,~j||(j=0),i.eq(j).trigger("focus")}}}};var g=a.fn.dropdown;a.fn.dropdown=function(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new f(this)),"string"==typeof b&&d[b].call(c)})},a.fn.dropdown.Constructor=f,a.fn.dropdown.noConflict=function(){return a.fn.dropdown=g,this},a(document).on("click.bs.dropdown.data-api",b).on("click.bs.dropdown.data-api",".dropdown form",function(a){a.stopPropagation()}).on("click.bs.dropdown.data-api",e,f.prototype.toggle).on("keydown.bs.dropdown.data-api",e+", [role=menu], [role=listbox]",f.prototype.keydown)}(jQuery),+function(a){"use strict";var b=function(b,c){this.options=c,this.$element=a(b),this.$backdrop=this.isShown=null,this.options.remote&&this.$element.find(".modal-content").load(this.options.remote,a.proxy(function(){this.$element.trigger("loaded.bs.modal")},this))};b.DEFAULTS={backdrop:!0,keyboard:!0,show:!0},b.prototype.toggle=function(a){return this[this.isShown?"hide":"show"](a)},b.prototype.show=function(b){var c=this,d=a.Event("show.bs.modal",{relatedTarget:b});this.$element.trigger(d),this.isShown||d.isDefaultPrevented()||(this.isShown=!0,this.escape(),this.$element.on("click.dismiss.bs.modal",'[data-dismiss="modal"]',a.proxy(this.hide,this)),this.backdrop(function(){var d=a.support.transition&&c.$element.hasClass("fade");c.$element.parent().length||c.$element.appendTo(document.body),c.$element.show().scrollTop(0),d&&c.$element[0].offsetWidth,c.$element.addClass("in").attr("aria-hidden",!1),c.enforceFocus();var e=a.Event("shown.bs.modal",{relatedTarget:b});d?c.$element.find(".modal-dialog").one(a.support.transition.end,function(){c.$element.trigger("focus").trigger(e)}).emulateTransitionEnd(300):c.$element.trigger("focus").trigger(e)}))},b.prototype.hide=function(b){b&&b.preventDefault(),b=a.Event("hide.bs.modal"),this.$element.trigger(b),this.isShown&&!b.isDefaultPrevented()&&(this.isShown=!1,this.escape(),a(document).off("focusin.bs.modal"),this.$element.removeClass("in").attr("aria-hidden",!0).off("click.dismiss.bs.modal"),a.support.transition&&this.$element.hasClass("fade")?this.$element.one(a.support.transition.end,a.proxy(this.hideModal,this)).emulateTransitionEnd(300):this.hideModal())},b.prototype.enforceFocus=function(){a(document).off("focusin.bs.modal").on("focusin.bs.modal",a.proxy(function(a){this.$element[0]===a.target||this.$element.has(a.target).length||this.$element.trigger("focus")},this))},b.prototype.escape=function(){this.isShown&&this.options.keyboard?this.$element.on("keyup.dismiss.bs.modal",a.proxy(function(a){27==a.which&&this.hide()},this)):this.isShown||this.$element.off("keyup.dismiss.bs.modal")},b.prototype.hideModal=function(){var a=this;this.$element.hide(),this.backdrop(function(){a.removeBackdrop(),a.$element.trigger("hidden.bs.modal")})},b.prototype.removeBackdrop=function(){this.$backdrop&&this.$backdrop.remove(),this.$backdrop=null},b.prototype.backdrop=function(b){var c=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var d=a.support.transition&&c;if(this.$backdrop=a('<div class="modal-backdrop '+c+'" />').appendTo(document.body),this.$element.on("click.dismiss.bs.modal",a.proxy(function(a){a.target===a.currentTarget&&("static"==this.options.backdrop?this.$element[0].focus.call(this.$element[0]):this.hide.call(this))},this)),d&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),!b)return;d?this.$backdrop.one(a.support.transition.end,b).emulateTransitionEnd(150):b()}else!this.isShown&&this.$backdrop?(this.$backdrop.removeClass("in"),a.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one(a.support.transition.end,b).emulateTransitionEnd(150):b()):b&&b()};var c=a.fn.modal;a.fn.modal=function(c,d){return this.each(function(){var e=a(this),f=e.data("bs.modal"),g=a.extend({},b.DEFAULTS,e.data(),"object"==typeof c&&c);f||e.data("bs.modal",f=new b(this,g)),"string"==typeof c?f[c](d):g.show&&f.show(d)})},a.fn.modal.Constructor=b,a.fn.modal.noConflict=function(){return a.fn.modal=c,this},a(document).on("click.bs.modal.data-api",'[data-toggle="modal"]',function(b){var c=a(this),d=c.attr("href"),e=a(c.attr("data-target")||d&&d.replace(/.*(?=#[^\s]+$)/,"")),f=e.data("bs.modal")?"toggle":a.extend({remote:!/#/.test(d)&&d},e.data(),c.data());c.is("a")&&b.preventDefault(),e.modal(f,this).one("hide",function(){c.is(":visible")&&c.trigger("focus")})}),a(document).on("show.bs.modal",".modal",function(){a(document.body).addClass("modal-open")}).on("hidden.bs.modal",".modal",function(){a(document.body).removeClass("modal-open")})}(jQuery),+function(a){"use strict";var b=function(a,b){this.type=this.options=this.enabled=this.timeout=this.hoverState=this.$element=null,this.init("tooltip",a,b)};b.DEFAULTS={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,container:!1},b.prototype.init=function(b,c,d){this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d);for(var e=this.options.trigger.split(" "),f=e.length;f--;){var g=e[f];if("click"==g)this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this));else if("manual"!=g){var h="hover"==g?"mouseenter":"focusin",i="hover"==g?"mouseleave":"focusout";this.$element.on(h+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(i+"."+this.type,this.options.selector,a.proxy(this.leave,this))}}this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},b.prototype.getDefaults=function(){return b.DEFAULTS},b.prototype.getOptions=function(b){return b=a.extend({},this.getDefaults(),this.$element.data(),b),b.delay&&"number"==typeof b.delay&&(b.delay={show:b.delay,hide:b.delay}),b},b.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},b.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget)[this.type](this.getDelegateOptions()).data("bs."+this.type);return clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):c.show()},b.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget)[this.type](this.getDelegateOptions()).data("bs."+this.type);return clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):c.hide()},b.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){if(this.$element.trigger(b),b.isDefaultPrevented())return;var c=this,d=this.tip();this.setContent(),this.options.animation&&d.addClass("fade");var e="function"==typeof this.options.placement?this.options.placement.call(this,d[0],this.$element[0]):this.options.placement,f=/\s?auto?\s?/i,g=f.test(e);g&&(e=e.replace(f,"")||"top"),d.detach().css({top:0,left:0,display:"block"}).addClass(e),this.options.container?d.appendTo(this.options.container):d.insertAfter(this.$element);var h=this.getPosition(),i=d[0].offsetWidth,j=d[0].offsetHeight;if(g){var k=this.$element.parent(),l=e,m=document.documentElement.scrollTop||document.body.scrollTop,n="body"==this.options.container?window.innerWidth:k.outerWidth(),o="body"==this.options.container?window.innerHeight:k.outerHeight(),p="body"==this.options.container?0:k.offset().left;e="bottom"==e&&h.top+h.height+j-m>o?"top":"top"==e&&h.top-m-j<0?"bottom":"right"==e&&h.right+i>n?"left":"left"==e&&h.left-i<p?"right":e,d.removeClass(l).addClass(e)}var q=this.getCalculatedOffset(e,h,i,j);this.applyPlacement(q,e),this.hoverState=null;var r=function(){c.$element.trigger("shown.bs."+c.type)};a.support.transition&&this.$tip.hasClass("fade")?d.one(a.support.transition.end,r).emulateTransitionEnd(150):r()}},b.prototype.applyPlacement=function(b,c){var d,e=this.tip(),f=e[0].offsetWidth,g=e[0].offsetHeight,h=parseInt(e.css("margin-top"),10),i=parseInt(e.css("margin-left"),10);isNaN(h)&&(h=0),isNaN(i)&&(i=0),b.top=b.top+h,b.left=b.left+i,a.offset.setOffset(e[0],a.extend({using:function(a){e.css({top:Math.round(a.top),left:Math.round(a.left)})}},b),0),e.addClass("in");var j=e[0].offsetWidth,k=e[0].offsetHeight;if("top"==c&&k!=g&&(d=!0,b.top=b.top+g-k),/bottom|top/.test(c)){var l=0;b.left<0&&(l=-2*b.left,b.left=0,e.offset(b),j=e[0].offsetWidth,k=e[0].offsetHeight),this.replaceArrow(l-f+j,j,"left")}else this.replaceArrow(k-g,k,"top");d&&e.offset(b)},b.prototype.replaceArrow=function(a,b,c){this.arrow().css(c,a?50*(1-a/b)+"%":"")},b.prototype.setContent=function(){var a=this.tip(),b=this.getTitle();a.find(".tooltip-inner")[this.options.html?"html":"text"](b),a.removeClass("fade in top bottom left right")},b.prototype.hide=function(){function b(){"in"!=c.hoverState&&d.detach(),c.$element.trigger("hidden.bs."+c.type)}var c=this,d=this.tip(),e=a.Event("hide.bs."+this.type);return this.$element.trigger(e),e.isDefaultPrevented()?void 0:(d.removeClass("in"),a.support.transition&&this.$tip.hasClass("fade")?d.one(a.support.transition.end,b).emulateTransitionEnd(150):b(),this.hoverState=null,this)},b.prototype.fixTitle=function(){var a=this.$element;(a.attr("title")||"string"!=typeof a.attr("data-original-title"))&&a.attr("data-original-title",a.attr("title")||"").attr("title","")},b.prototype.hasContent=function(){return this.getTitle()},b.prototype.getPosition=function(){var b=this.$element[0];return a.extend({},"function"==typeof b.getBoundingClientRect?b.getBoundingClientRect():{width:b.offsetWidth,height:b.offsetHeight},this.$element.offset())},b.prototype.getCalculatedOffset=function(a,b,c,d){return"bottom"==a?{top:b.top+b.height,left:b.left+b.width/2-c/2}:"top"==a?{top:b.top-d,left:b.left+b.width/2-c/2}:"left"==a?{top:b.top+b.height/2-d/2,left:b.left-c}:{top:b.top+b.height/2-d/2,left:b.left+b.width}},b.prototype.getTitle=function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||("function"==typeof c.title?c.title.call(b[0]):c.title)},b.prototype.tip=function(){return this.$tip=this.$tip||a(this.options.template)},b.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},b.prototype.validate=function(){this.$element[0].parentNode||(this.hide(),this.$element=null,this.options=null)},b.prototype.enable=function(){this.enabled=!0},b.prototype.disable=function(){this.enabled=!1},b.prototype.toggleEnabled=function(){this.enabled=!this.enabled},b.prototype.toggle=function(b){var c=b?a(b.currentTarget)[this.type](this.getDelegateOptions()).data("bs."+this.type):this;c.tip().hasClass("in")?c.leave(c):c.enter(c)},b.prototype.destroy=function(){clearTimeout(this.timeout),this.hide().$element.off("."+this.type).removeData("bs."+this.type)};var c=a.fn.tooltip;a.fn.tooltip=function(c){return this.each(function(){var d=a(this),e=d.data("bs.tooltip"),f="object"==typeof c&&c;(e||"destroy"!=c)&&(e||d.data("bs.tooltip",e=new b(this,f)),"string"==typeof c&&e[c]())})},a.fn.tooltip.Constructor=b,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=c,this}}(jQuery),+function(a){"use strict";var b=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");b.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:'<div class="popover"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'}),b.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),b.prototype.constructor=b,b.prototype.getDefaults=function(){return b.DEFAULTS},b.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content")[this.options.html?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},b.prototype.hasContent=function(){return this.getTitle()||this.getContent()},b.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},b.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")},b.prototype.tip=function(){return this.$tip||(this.$tip=a(this.options.template)),this.$tip};var c=a.fn.popover;a.fn.popover=function(c){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof c&&c;(e||"destroy"!=c)&&(e||d.data("bs.popover",e=new b(this,f)),"string"==typeof c&&e[c]())})},a.fn.popover.Constructor=b,a.fn.popover.noConflict=function(){return a.fn.popover=c,this}}(jQuery),+function(a){"use strict";function b(c,d){var e,f=a.proxy(this.process,this);this.$element=a(a(c).is("body")?window:c),this.$body=a("body"),this.$scrollElement=this.$element.on("scroll.bs.scroll-spy.data-api",f),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||(e=a(c).attr("href"))&&e.replace(/.*(?=#[^\s]+$)/,"")||"")+" .nav li > a",this.offsets=a([]),this.targets=a([]),this.activeTarget=null,this.refresh(),this.process()}b.DEFAULTS={offset:10},b.prototype.refresh=function(){var b=this.$element[0]==window?"offset":"position";this.offsets=a([]),this.targets=a([]);{var c=this;this.$body.find(this.selector).map(function(){var d=a(this),e=d.data("target")||d.attr("href"),f=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[f[b]().top+(!a.isWindow(c.$scrollElement.get(0))&&c.$scrollElement.scrollTop()),e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){c.offsets.push(this[0]),c.targets.push(this[1])})}},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.$scrollElement[0].scrollHeight||this.$body[0].scrollHeight,d=c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(b>=d)return g!=(a=f.last()[0])&&this.activate(a);if(g&&b<=e[0])return g!=(a=f[0])&&this.activate(a);for(a=e.length;a--;)g!=f[a]&&b>=e[a]&&(!e[a+1]||b<=e[a+1])&&this.activate(f[a])},b.prototype.activate=function(b){this.activeTarget=b,a(this.selector).parentsUntil(this.options.target,".active").removeClass("active");var c=this.selector+'[data-target="'+b+'"],'+this.selector+'[href="'+b+'"]',d=a(c).parents("li").addClass("active");d.parent(".dropdown-menu").length&&(d=d.closest("li.dropdown").addClass("active")),d.trigger("activate.bs.scrollspy")};var c=a.fn.scrollspy;a.fn.scrollspy=function(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.scrollspy.Constructor=b,a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=c,this},a(window).on("load",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);b.scrollspy(b.data())})})}(jQuery),+function(a){"use strict";var b=function(b){this.element=a(b)};b.prototype.show=function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.data("target");if(d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),!b.parent("li").hasClass("active")){var e=c.find(".active:last a")[0],f=a.Event("show.bs.tab",{relatedTarget:e});if(b.trigger(f),!f.isDefaultPrevented()){var g=a(d);this.activate(b.parent("li"),c),this.activate(g,g.parent(),function(){b.trigger({type:"shown.bs.tab",relatedTarget:e})})}}},b.prototype.activate=function(b,c,d){function e(){f.removeClass("active").find("> .dropdown-menu > .active").removeClass("active"),b.addClass("active"),g?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu")&&b.closest("li.dropdown").addClass("active"),d&&d()}var f=c.find("> .active"),g=d&&a.support.transition&&f.hasClass("fade");g?f.one(a.support.transition.end,e).emulateTransitionEnd(150):e(),f.removeClass("in")};var c=a.fn.tab;a.fn.tab=function(c){return this.each(function(){var d=a(this),e=d.data("bs.tab");e||d.data("bs.tab",e=new b(this)),"string"==typeof c&&e[c]()})},a.fn.tab.Constructor=b,a.fn.tab.noConflict=function(){return a.fn.tab=c,this},a(document).on("click.bs.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"]',function(b){b.preventDefault(),a(this).tab("show")})}(jQuery),+function(a){"use strict";var b=function(c,d){this.options=a.extend({},b.DEFAULTS,d),this.$window=a(window).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(c),this.affixed=this.unpin=this.pinnedOffset=null,this.checkPosition()};b.RESET="affix affix-top affix-bottom",b.DEFAULTS={offset:0},b.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(b.RESET).addClass("affix");var a=this.$window.scrollTop(),c=this.$element.offset();return this.pinnedOffset=c.top-a},b.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},b.prototype.checkPosition=function(){if(this.$element.is(":visible")){var c=a(document).height(),d=this.$window.scrollTop(),e=this.$element.offset(),f=this.options.offset,g=f.top,h=f.bottom;"top"==this.affixed&&(e.top+=d),"object"!=typeof f&&(h=g=f),"function"==typeof g&&(g=f.top(this.$element)),"function"==typeof h&&(h=f.bottom(this.$element));var i=null!=this.unpin&&d+this.unpin<=e.top?!1:null!=h&&e.top+this.$element.height()>=c-h?"bottom":null!=g&&g>=d?"top":!1;if(this.affixed!==i){this.unpin&&this.$element.css("top","");var j="affix"+(i?"-"+i:""),k=a.Event(j+".bs.affix");this.$element.trigger(k),k.isDefaultPrevented()||(this.affixed=i,this.unpin="bottom"==i?this.getPinnedOffset():null,this.$element.removeClass(b.RESET).addClass(j).trigger(a.Event(j.replace("affix","affixed"))),"bottom"==i&&this.$element.offset({top:c-h-this.$element.height()}))}}};var c=a.fn.affix;a.fn.affix=function(c){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof c&&c;e||d.data("bs.affix",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.affix.Constructor=b,a.fn.affix.noConflict=function(){return a.fn.affix=c,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var b=a(this),c=b.data();c.offset=c.offset||{},c.offsetBottom&&(c.offset.bottom=c.offsetBottom),c.offsetTop&&(c.offset.top=c.offsetTop),b.affix(c)})})}(jQuery); | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
js/holder.js
0 → 100644
1 | /* | ||
2 | |||
3 | Holder - 2.0 - client side image placeholders | ||
4 | (c) 2012-2013 Ivan Malopinsky / http://imsky.co | ||
5 | |||
6 | Provided under the Apache 2.0 License: http://www.apache.org/licenses/LICENSE-2.0 | ||
7 | Commercial use requires attribution. | ||
8 | |||
9 | */ | ||
10 | |||
11 | var Holder = Holder || {}; | ||
12 | (function (app, win) { | ||
13 | |||
14 | var preempted = false, | ||
15 | fallback = false, | ||
16 | canvas = document.createElement('canvas'); | ||
17 | |||
18 | //getElementsByClassName polyfill | ||
19 | document.getElementsByClassName||(document.getElementsByClassName=function(e){var t=document,n,r,i,s=[];if(t.querySelectorAll)return t.querySelectorAll("."+e);if(t.evaluate){r=".//*[contains(concat(' ', @class, ' '), ' "+e+" ')]",n=t.evaluate(r,t,null,0,null);while(i=n.iterateNext())s.push(i)}else{n=t.getElementsByTagName("*"),r=new RegExp("(^|\\s)"+e+"(\\s|$)");for(i=0;i<n.length;i++)r.test(n[i].className)&&s.push(n[i])}return s}) | ||
20 | |||
21 | //getComputedStyle polyfill | ||
22 | window.getComputedStyle||(window.getComputedStyle=function(e,t){return this.el=e,this.getPropertyValue=function(t){var n=/(\-([a-z]){1})/g;return t=="float"&&(t="styleFloat"),n.test(t)&&(t=t.replace(n,function(){return arguments[2].toUpperCase()})),e.currentStyle[t]?e.currentStyle[t]:null},this}) | ||
23 | |||
24 | //http://javascript.nwbox.com/ContentLoaded by Diego Perini with modifications | ||
25 | function contentLoaded(n,t){var l="complete",s="readystatechange",u=!1,h=u,c=!0,i=n.document,a=i.documentElement,e=i.addEventListener?"addEventListener":"attachEvent",v=i.addEventListener?"removeEventListener":"detachEvent",f=i.addEventListener?"":"on",r=function(e){(e.type!=s||i.readyState==l)&&((e.type=="load"?n:i)[v](f+e.type,r,u),!h&&(h=!0)&&t.call(n,null))},o=function(){try{a.doScroll("left")}catch(n){setTimeout(o,50);return}r("poll")};if(i.readyState==l)t.call(n,"lazy");else{if(i.createEventObject&&a.doScroll){try{c=!n.frameElement}catch(y){}c&&o()}i[e](f+"DOMContentLoaded",r,u),i[e](f+s,r,u),n[e](f+"load",r,u)}}; | ||
26 | |||
27 | //https://gist.github.com/991057 by Jed Schmidt with modifications | ||
28 | function selector(a){ | ||
29 | a=a.match(/^(\W)?(.*)/);var b=document["getElement"+(a[1]?a[1]=="#"?"ById":"sByClassName":"sByTagName")](a[2]); | ||
30 | var ret=[]; b!=null&&(b.length?ret=b:b.length==0?ret=b:ret=[b]); return ret; | ||
31 | } | ||
32 | |||
33 | //shallow object property extend | ||
34 | function extend(a,b){var c={};for(var d in a)c[d]=a[d];for(var e in b)c[e]=b[e];return c} | ||
35 | |||
36 | //hasOwnProperty polyfill | ||
37 | if (!Object.prototype.hasOwnProperty) | ||
38 | Object.prototype.hasOwnProperty = function(prop) { | ||
39 | var proto = this.__proto__ || this.constructor.prototype; | ||
40 | return (prop in this) && (!(prop in proto) || proto[prop] !== this[prop]); | ||
41 | } | ||
42 | |||
43 | function text_size(width, height, template) { | ||
44 | height = parseInt(height,10); | ||
45 | width = parseInt(width,10); | ||
46 | var bigSide = Math.max(height, width) | ||
47 | var smallSide = Math.min(height, width) | ||
48 | var scale = 1 / 12; | ||
49 | var newHeight = Math.min(smallSide * 0.75, 0.75 * bigSide * scale); | ||
50 | return { | ||
51 | height: Math.round(Math.max(template.size, newHeight)) | ||
52 | } | ||
53 | } | ||
54 | |||
55 | function draw(ctx, dimensions, template, ratio) { | ||
56 | var ts = text_size(dimensions.width, dimensions.height, template); | ||
57 | var text_height = ts.height; | ||
58 | var width = dimensions.width * ratio, | ||
59 | height = dimensions.height * ratio; | ||
60 | var font = template.font ? template.font : "sans-serif"; | ||
61 | canvas.width = width; | ||
62 | canvas.height = height; | ||
63 | ctx.textAlign = "center"; | ||
64 | ctx.textBaseline = "middle"; | ||
65 | ctx.fillStyle = template.background; | ||
66 | ctx.fillRect(0, 0, width, height); | ||
67 | ctx.fillStyle = template.foreground; | ||
68 | ctx.font = "bold " + text_height + "px " + font; | ||
69 | var text = template.text ? template.text : (Math.floor(dimensions.width) + "x" + Math.floor(dimensions.height)); | ||
70 | var text_width = ctx.measureText(text).width; | ||
71 | if (text_width / width >= 0.75) { | ||
72 | text_height = Math.floor(text_height * 0.75 * (width/text_width)); | ||
73 | } | ||
74 | //Resetting font size if necessary | ||
75 | ctx.font = "bold " + (text_height * ratio) + "px " + font; | ||
76 | ctx.fillText(text, (width / 2), (height / 2), width); | ||
77 | return canvas.toDataURL("image/png"); | ||
78 | } | ||
79 | |||
80 | function render(mode, el, holder, src) { | ||
81 | var dimensions = holder.dimensions, | ||
82 | theme = holder.theme, | ||
83 | text = holder.text ? decodeURIComponent(holder.text) : holder.text; | ||
84 | var dimensions_caption = dimensions.width + "x" + dimensions.height; | ||
85 | theme = (text ? extend(theme, { | ||
86 | text: text | ||
87 | }) : theme); | ||
88 | theme = (holder.font ? extend(theme, { | ||
89 | font: holder.font | ||
90 | }) : theme); | ||
91 | if (mode == "image") { | ||
92 | el.setAttribute("data-src", src); | ||
93 | el.setAttribute("alt", text ? text : theme.text ? theme.text + " [" + dimensions_caption + "]" : dimensions_caption); | ||
94 | if (fallback || !holder.auto) { | ||
95 | el.style.width = dimensions.width + "px"; | ||
96 | el.style.height = dimensions.height + "px"; | ||
97 | } | ||
98 | if (fallback) { | ||
99 | el.style.backgroundColor = theme.background; | ||
100 | } else { | ||
101 | el.setAttribute("src", draw(ctx, dimensions, theme, ratio)); | ||
102 | } | ||
103 | } else if (mode == "background") { | ||
104 | if (!fallback) { | ||
105 | el.style.backgroundImage = "url(" + draw(ctx, dimensions, theme, ratio) + ")"; | ||
106 | el.style.backgroundSize = dimensions.width + "px " + dimensions.height + "px"; | ||
107 | } | ||
108 | } else if (mode == "fluid") { | ||
109 | el.setAttribute("data-src", src); | ||
110 | el.setAttribute("alt", text ? text : theme.text ? theme.text + " [" + dimensions_caption + "]" : dimensions_caption); | ||
111 | if (dimensions.height.substr(-1) == "%") { | ||
112 | el.style.height = dimensions.height | ||
113 | } else { | ||
114 | el.style.height = dimensions.height + "px" | ||
115 | } | ||
116 | if (dimensions.width.substr(-1) == "%") { | ||
117 | el.style.width = dimensions.width | ||
118 | } else { | ||
119 | el.style.width = dimensions.width + "px" | ||
120 | } | ||
121 | if (el.style.display == "inline" || el.style.display == "") { | ||
122 | el.style.display = "block"; | ||
123 | } | ||
124 | if (fallback) { | ||
125 | el.style.backgroundColor = theme.background; | ||
126 | } else { | ||
127 | el.holderData = holder; | ||
128 | fluid_images.push(el); | ||
129 | fluid_update(el); | ||
130 | } | ||
131 | } | ||
132 | }; | ||
133 | |||
134 | function fluid_update(element) { | ||
135 | var images; | ||
136 | if (element.nodeType == null) { | ||
137 | images = fluid_images; | ||
138 | } else { | ||
139 | images = [element] | ||
140 | } | ||
141 | for (i in images) { | ||
142 | var el = images[i] | ||
143 | if (el.holderData) { | ||
144 | var holder = el.holderData; | ||
145 | el.setAttribute("src", draw(ctx, { | ||
146 | height: el.clientHeight, | ||
147 | width: el.clientWidth | ||
148 | }, holder.theme, ratio)); | ||
149 | } | ||
150 | } | ||
151 | } | ||
152 | |||
153 | function parse_flags(flags, options) { | ||
154 | |||
155 | var ret = { | ||
156 | theme: settings.themes.gray | ||
157 | }, render = false; | ||
158 | |||
159 | for (sl = flags.length, j = 0; j < sl; j++) { | ||
160 | var flag = flags[j]; | ||
161 | if (app.flags.dimensions.match(flag)) { | ||
162 | render = true; | ||
163 | ret.dimensions = app.flags.dimensions.output(flag); | ||
164 | } else if (app.flags.fluid.match(flag)) { | ||
165 | render = true; | ||
166 | ret.dimensions = app.flags.fluid.output(flag); | ||
167 | ret.fluid = true; | ||
168 | } else if (app.flags.colors.match(flag)) { | ||
169 | ret.theme = app.flags.colors.output(flag); | ||
170 | } else if (options.themes[flag]) { | ||
171 | //If a theme is specified, it will override custom colors | ||
172 | ret.theme = options.themes[flag]; | ||
173 | } else if (app.flags.text.match(flag)) { | ||
174 | ret.text = app.flags.text.output(flag); | ||
175 | } else if (app.flags.font.match(flag)) { | ||
176 | ret.font = app.flags.font.output(flag); | ||
177 | } else if (app.flags.auto.match(flag)) { | ||
178 | ret.auto = true; | ||
179 | } | ||
180 | } | ||
181 | |||
182 | return render ? ret : false; | ||
183 | |||
184 | }; | ||
185 | |||
186 | |||
187 | |||
188 | if (!canvas.getContext) { | ||
189 | fallback = true; | ||
190 | } else { | ||
191 | if (canvas.toDataURL("image/png") | ||
192 | .indexOf("data:image/png") < 0) { | ||
193 | //Android doesn't support data URI | ||
194 | fallback = true; | ||
195 | } else { | ||
196 | var ctx = canvas.getContext("2d"); | ||
197 | } | ||
198 | } | ||
199 | |||
200 | var dpr = 1, bsr = 1; | ||
201 | |||
202 | if(!fallback){ | ||
203 | dpr = window.devicePixelRatio || 1, | ||
204 | bsr = ctx.webkitBackingStorePixelRatio || ctx.mozBackingStorePixelRatio || ctx.msBackingStorePixelRatio || ctx.oBackingStorePixelRatio || ctx.backingStorePixelRatio || 1; | ||
205 | } | ||
206 | |||
207 | var ratio = dpr / bsr; | ||
208 | |||
209 | var fluid_images = []; | ||
210 | |||
211 | var settings = { | ||
212 | domain: "holder.js", | ||
213 | images: "img", | ||
214 | bgnodes: ".holderjs", | ||
215 | themes: { | ||
216 | "gray": { | ||
217 | background: "#eee", | ||
218 | foreground: "#aaa", | ||
219 | size: 12 | ||
220 | }, | ||
221 | "social": { | ||
222 | background: "#3a5a97", | ||
223 | foreground: "#fff", | ||
224 | size: 12 | ||
225 | }, | ||
226 | "industrial": { | ||
227 | background: "#434A52", | ||
228 | foreground: "#C2F200", | ||
229 | size: 12 | ||
230 | } | ||
231 | }, | ||
232 | stylesheet: ".holderjs-fluid {font-size:16px;font-weight:bold;text-align:center;font-family:sans-serif;margin:0}" | ||
233 | }; | ||
234 | |||
235 | |||
236 | app.flags = { | ||
237 | dimensions: { | ||
238 | regex: /^(\d+)x(\d+)$/, | ||
239 | output: function (val) { | ||
240 | var exec = this.regex.exec(val); | ||
241 | return { | ||
242 | width: +exec[1], | ||
243 | height: +exec[2] | ||
244 | } | ||
245 | } | ||
246 | }, | ||
247 | fluid: { | ||
248 | regex: /^([0-9%]+)x([0-9%]+)$/, | ||
249 | output: function (val) { | ||
250 | var exec = this.regex.exec(val); | ||
251 | return { | ||
252 | width: exec[1], | ||
253 | height: exec[2] | ||
254 | } | ||
255 | } | ||
256 | }, | ||
257 | colors: { | ||
258 | regex: /#([0-9a-f]{3,})\:#([0-9a-f]{3,})/i, | ||
259 | output: function (val) { | ||
260 | var exec = this.regex.exec(val); | ||
261 | return { | ||
262 | size: settings.themes.gray.size, | ||
263 | foreground: "#" + exec[2], | ||
264 | background: "#" + exec[1] | ||
265 | } | ||
266 | } | ||
267 | }, | ||
268 | text: { | ||
269 | regex: /text\:(.*)/, | ||
270 | output: function (val) { | ||
271 | return this.regex.exec(val)[1]; | ||
272 | } | ||
273 | }, | ||
274 | font: { | ||
275 | regex: /font\:(.*)/, | ||
276 | output: function (val) { | ||
277 | return this.regex.exec(val)[1]; | ||
278 | } | ||
279 | }, | ||
280 | auto: { | ||
281 | regex: /^auto$/ | ||
282 | } | ||
283 | } | ||
284 | |||
285 | for (var flag in app.flags) { | ||
286 | if (!app.flags.hasOwnProperty(flag)) continue; | ||
287 | app.flags[flag].match = function (val) { | ||
288 | return val.match(this.regex) | ||
289 | } | ||
290 | } | ||
291 | |||
292 | app.add_theme = function (name, theme) { | ||
293 | name != null && theme != null && (settings.themes[name] = theme); | ||
294 | return app; | ||
295 | }; | ||
296 | |||
297 | app.add_image = function (src, el) { | ||
298 | var node = selector(el); | ||
299 | if (node.length) { | ||
300 | for (var i = 0, l = node.length; i < l; i++) { | ||
301 | var img = document.createElement("img") | ||
302 | img.setAttribute("data-src", src); | ||
303 | node[i].appendChild(img); | ||
304 | } | ||
305 | } | ||
306 | return app; | ||
307 | }; | ||
308 | |||
309 | app.run = function (o) { | ||
310 | var options = extend(settings, o), | ||
311 | images = [], imageNodes = [], bgnodes = []; | ||
312 | |||
313 | if(typeof(options.images) == "string"){ | ||
314 | imageNodes = selector(options.images); | ||
315 | } | ||
316 | else if (window.NodeList && options.images instanceof window.NodeList) { | ||
317 | imageNodes = options.images; | ||
318 | } else if (window.Node && options.images instanceof window.Node) { | ||
319 | imageNodes = [options.images]; | ||
320 | } | ||
321 | |||
322 | if(typeof(options.bgnodes) == "string"){ | ||
323 | bgnodes = selector(options.bgnodes); | ||
324 | } else if (window.NodeList && options.elements instanceof window.NodeList) { | ||
325 | bgnodes = options.bgnodes; | ||
326 | } else if (window.Node && options.bgnodes instanceof window.Node) { | ||
327 | bgnodes = [options.bgnodes]; | ||
328 | } | ||
329 | |||
330 | preempted = true; | ||
331 | |||
332 | for (i = 0, l = imageNodes.length; i < l; i++) images.push(imageNodes[i]); | ||
333 | |||
334 | var holdercss = document.getElementById("holderjs-style"); | ||
335 | if (!holdercss) { | ||
336 | holdercss = document.createElement("style"); | ||
337 | holdercss.setAttribute("id", "holderjs-style"); | ||
338 | holdercss.type = "text/css"; | ||
339 | document.getElementsByTagName("head")[0].appendChild(holdercss); | ||
340 | } | ||
341 | |||
342 | if (!options.nocss) { | ||
343 | if (holdercss.styleSheet) { | ||
344 | holdercss.styleSheet.cssText += options.stylesheet; | ||
345 | } else { | ||
346 | holdercss.appendChild(document.createTextNode(options.stylesheet)); | ||
347 | } | ||
348 | } | ||
349 | |||
350 | var cssregex = new RegExp(options.domain + "\/(.*?)\"?\\)"); | ||
351 | |||
352 | for (var l = bgnodes.length, i = 0; i < l; i++) { | ||
353 | var src = window.getComputedStyle(bgnodes[i], null) | ||
354 | .getPropertyValue("background-image"); | ||
355 | var flags = src.match(cssregex); | ||
356 | var bgsrc = bgnodes[i].getAttribute("data-background-src"); | ||
357 | |||
358 | if (flags) { | ||
359 | var holder = parse_flags(flags[1].split("/"), options); | ||
360 | if (holder) { | ||
361 | render("background", bgnodes[i], holder, src); | ||
362 | } | ||
363 | } | ||
364 | else if(bgsrc != null){ | ||
365 | var holder = parse_flags(bgsrc.substr(bgsrc.lastIndexOf(options.domain) + options.domain.length + 1) | ||
366 | .split("/"), options); | ||
367 | if(holder){ | ||
368 | render("background", bgnodes[i], holder, src); | ||
369 | } | ||
370 | } | ||
371 | } | ||
372 | |||
373 | for (l = images.length, i = 0; i < l; i++) { | ||
374 | |||
375 | var attr_src = attr_data_src = src = null; | ||
376 | |||
377 | try{ | ||
378 | attr_src = images[i].getAttribute("src"); | ||
379 | attr_datasrc = images[i].getAttribute("data-src"); | ||
380 | }catch(e){} | ||
381 | |||
382 | if (attr_datasrc == null && !! attr_src && attr_src.indexOf(options.domain) >= 0) { | ||
383 | src = attr_src; | ||
384 | } else if ( !! attr_datasrc && attr_datasrc.indexOf(options.domain) >= 0) { | ||
385 | src = attr_datasrc; | ||
386 | } | ||
387 | |||
388 | if (src) { | ||
389 | var holder = parse_flags(src.substr(src.lastIndexOf(options.domain) + options.domain.length + 1) | ||
390 | .split("/"), options); | ||
391 | if (holder) { | ||
392 | if (holder.fluid) { | ||
393 | render("fluid", images[i], holder, src) | ||
394 | } else { | ||
395 | render("image", images[i], holder, src); | ||
396 | } | ||
397 | } | ||
398 | } | ||
399 | } | ||
400 | return app; | ||
401 | }; | ||
402 | |||
403 | contentLoaded(win, function () { | ||
404 | if (window.addEventListener) { | ||
405 | window.addEventListener("resize", fluid_update, false); | ||
406 | window.addEventListener("orientationchange", fluid_update, false); | ||
407 | } else { | ||
408 | window.attachEvent("onresize", fluid_update) | ||
409 | } | ||
410 | preempted || app.run(); | ||
411 | }); | ||
412 | |||
413 | if (typeof define === "function" && define.amd) { | ||
414 | define("Holder", [], function () { | ||
415 | return app; | ||
416 | }); | ||
417 | } | ||
418 | |||
419 | })(Holder, window); |
js/html5shiv.js
0 → 100644
1 | /* | ||
2 | HTML5 Shiv v3.6.2pre | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed | ||
3 | */ | ||
4 | (function(l,f){function m(){var a=e.elements;return"string"==typeof a?a.split(" "):a}function i(a){var b=n[a[o]];b||(b={},h++,a[o]=h,n[h]=b);return b}function p(a,b,c){b||(b=f);if(g)return b.createElement(a);c||(c=i(b));b=c.cache[a]?c.cache[a].cloneNode():r.test(a)?(c.cache[a]=c.createElem(a)).cloneNode():c.createElem(a);return b.canHaveChildren&&!s.test(a)?c.frag.appendChild(b):b}function t(a,b){if(!b.cache)b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag(); | ||
5 | a.createElement=function(c){return!e.shivMethods?b.createElem(c):p(c,a,b)};a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+m().join().replace(/\w+/g,function(a){b.createElem(a);b.frag.createElement(a);return'c("'+a+'")'})+");return n}")(e,b.frag)}function q(a){a||(a=f);var b=i(a);if(e.shivCSS&&!j&&!b.hasCSS){var c,d=a;c=d.createElement("p");d=d.getElementsByTagName("head")[0]||d.documentElement;c.innerHTML="x<style>article,aside,figcaption,figure,footer,header,hgroup,nav,section{display:block}mark{background:#FF0;color:#000}</style>"; | ||
6 | c=d.insertBefore(c.lastChild,d.firstChild);b.hasCSS=!!c}g||t(a,b);return a}var k=l.html5||{},s=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,r=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,j,o="_html5shiv",h=0,n={},g;(function(){try{var a=f.createElement("a");a.innerHTML="<xyz></xyz>";j="hidden"in a;var b;if(!(b=1==a.childNodes.length)){f.createElement("a");var c=f.createDocumentFragment();b="undefined"==typeof c.cloneNode|| | ||
7 | "undefined"==typeof c.createDocumentFragment||"undefined"==typeof c.createElement}g=b}catch(d){g=j=!0}})();var e={elements:k.elements||"abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup mark meter nav output progress section summary time video",version:"3.6.2pre",shivCSS:!1!==k.shivCSS,supportsUnknownElements:g,shivMethods:!1!==k.shivMethods,type:"default",shivDocument:q,createElement:p,createDocumentFragment:function(a,b){a||(a=f);if(g)return a.createDocumentFragment(); | ||
8 | for(var b=b||i(a),c=b.frag.cloneNode(),d=0,e=m(),h=e.length;d<h;d++)c.createElement(e[d]);return c}};l.html5=e;q(f)})(this,document); |
js/jquery-1.10.1.min.js
0 → 100644
1 | /*! jQuery v1.10.1 | (c) 2005, 2013 jQuery Foundation, Inc. | jquery.org/license | ||
2 | //@ sourceMappingURL=jquery-1.10.1.min.map | ||
3 | */ | ||
4 | (function(e,t){var n,r,i=typeof t,o=e.location,a=e.document,s=a.documentElement,l=e.jQuery,u=e.$,c={},p=[],f="1.10.1",d=p.concat,h=p.push,g=p.slice,m=p.indexOf,y=c.toString,v=c.hasOwnProperty,b=f.trim,x=function(e,t){return new x.fn.init(e,t,r)},w=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,T=/\S+/g,C=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,N=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,k=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,E=/^[\],:{}\s]*$/,S=/(?:^|:|,)(?:\s*\[)+/g,A=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,j=/"[^"\\\r\n]*"|true|false|null|-?(?:\d+\.|)\d+(?:[eE][+-]?\d+|)/g,D=/^-ms-/,L=/-([\da-z])/gi,H=function(e,t){return t.toUpperCase()},q=function(e){(a.addEventListener||"load"===e.type||"complete"===a.readyState)&&(_(),x.ready())},_=function(){a.addEventListener?(a.removeEventListener("DOMContentLoaded",q,!1),e.removeEventListener("load",q,!1)):(a.detachEvent("onreadystatechange",q),e.detachEvent("onload",q))};x.fn=x.prototype={jquery:f,constructor:x,init:function(e,n,r){var i,o;if(!e)return this;if("string"==typeof e){if(i="<"===e.charAt(0)&&">"===e.charAt(e.length-1)&&e.length>=3?[null,e,null]:N.exec(e),!i||!i[1]&&n)return!n||n.jquery?(n||r).find(e):this.constructor(n).find(e);if(i[1]){if(n=n instanceof x?n[0]:n,x.merge(this,x.parseHTML(i[1],n&&n.nodeType?n.ownerDocument||n:a,!0)),k.test(i[1])&&x.isPlainObject(n))for(i in n)x.isFunction(this[i])?this[i](n[i]):this.attr(i,n[i]);return this}if(o=a.getElementById(i[2]),o&&o.parentNode){if(o.id!==i[2])return r.find(e);this.length=1,this[0]=o}return this.context=a,this.selector=e,this}return e.nodeType?(this.context=this[0]=e,this.length=1,this):x.isFunction(e)?r.ready(e):(e.selector!==t&&(this.selector=e.selector,this.context=e.context),x.makeArray(e,this))},selector:"",length:0,toArray:function(){return g.call(this)},get:function(e){return null==e?this.toArray():0>e?this[this.length+e]:this[e]},pushStack:function(e){var t=x.merge(this.constructor(),e);return t.prevObject=this,t.context=this.context,t},each:function(e,t){return x.each(this,e,t)},ready:function(e){return x.ready.promise().done(e),this},slice:function(){return this.pushStack(g.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(0>e?t:0);return this.pushStack(n>=0&&t>n?[this[n]]:[])},map:function(e){return this.pushStack(x.map(this,function(t,n){return e.call(t,n,t)}))},end:function(){return this.prevObject||this.constructor(null)},push:h,sort:[].sort,splice:[].splice},x.fn.init.prototype=x.fn,x.extend=x.fn.extend=function(){var e,n,r,i,o,a,s=arguments[0]||{},l=1,u=arguments.length,c=!1;for("boolean"==typeof s&&(c=s,s=arguments[1]||{},l=2),"object"==typeof s||x.isFunction(s)||(s={}),u===l&&(s=this,--l);u>l;l++)if(null!=(o=arguments[l]))for(i in o)e=s[i],r=o[i],s!==r&&(c&&r&&(x.isPlainObject(r)||(n=x.isArray(r)))?(n?(n=!1,a=e&&x.isArray(e)?e:[]):a=e&&x.isPlainObject(e)?e:{},s[i]=x.extend(c,a,r)):r!==t&&(s[i]=r));return s},x.extend({expando:"jQuery"+(f+Math.random()).replace(/\D/g,""),noConflict:function(t){return e.$===x&&(e.$=u),t&&e.jQuery===x&&(e.jQuery=l),x},isReady:!1,readyWait:1,holdReady:function(e){e?x.readyWait++:x.ready(!0)},ready:function(e){if(e===!0?!--x.readyWait:!x.isReady){if(!a.body)return setTimeout(x.ready);x.isReady=!0,e!==!0&&--x.readyWait>0||(n.resolveWith(a,[x]),x.fn.trigger&&x(a).trigger("ready").off("ready"))}},isFunction:function(e){return"function"===x.type(e)},isArray:Array.isArray||function(e){return"array"===x.type(e)},isWindow:function(e){return null!=e&&e==e.window},isNumeric:function(e){return!isNaN(parseFloat(e))&&isFinite(e)},type:function(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?c[y.call(e)]||"object":typeof e},isPlainObject:function(e){var n;if(!e||"object"!==x.type(e)||e.nodeType||x.isWindow(e))return!1;try{if(e.constructor&&!v.call(e,"constructor")&&!v.call(e.constructor.prototype,"isPrototypeOf"))return!1}catch(r){return!1}if(x.support.ownLast)for(n in e)return v.call(e,n);for(n in e);return n===t||v.call(e,n)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},error:function(e){throw Error(e)},parseHTML:function(e,t,n){if(!e||"string"!=typeof e)return null;"boolean"==typeof t&&(n=t,t=!1),t=t||a;var r=k.exec(e),i=!n&&[];return r?[t.createElement(r[1])]:(r=x.buildFragment([e],t,i),i&&x(i).remove(),x.merge([],r.childNodes))},parseJSON:function(n){return e.JSON&&e.JSON.parse?e.JSON.parse(n):null===n?n:"string"==typeof n&&(n=x.trim(n),n&&E.test(n.replace(A,"@").replace(j,"]").replace(S,"")))?Function("return "+n)():(x.error("Invalid JSON: "+n),t)},parseXML:function(n){var r,i;if(!n||"string"!=typeof n)return null;try{e.DOMParser?(i=new DOMParser,r=i.parseFromString(n,"text/xml")):(r=new ActiveXObject("Microsoft.XMLDOM"),r.async="false",r.loadXML(n))}catch(o){r=t}return r&&r.documentElement&&!r.getElementsByTagName("parsererror").length||x.error("Invalid XML: "+n),r},noop:function(){},globalEval:function(t){t&&x.trim(t)&&(e.execScript||function(t){e.eval.call(e,t)})(t)},camelCase:function(e){return e.replace(D,"ms-").replace(L,H)},nodeName:function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},each:function(e,t,n){var r,i=0,o=e.length,a=M(e);if(n){if(a){for(;o>i;i++)if(r=t.apply(e[i],n),r===!1)break}else for(i in e)if(r=t.apply(e[i],n),r===!1)break}else if(a){for(;o>i;i++)if(r=t.call(e[i],i,e[i]),r===!1)break}else for(i in e)if(r=t.call(e[i],i,e[i]),r===!1)break;return e},trim:b&&!b.call("\ufeff\u00a0")?function(e){return null==e?"":b.call(e)}:function(e){return null==e?"":(e+"").replace(C,"")},makeArray:function(e,t){var n=t||[];return null!=e&&(M(Object(e))?x.merge(n,"string"==typeof e?[e]:e):h.call(n,e)),n},inArray:function(e,t,n){var r;if(t){if(m)return m.call(t,e,n);for(r=t.length,n=n?0>n?Math.max(0,r+n):n:0;r>n;n++)if(n in t&&t[n]===e)return n}return-1},merge:function(e,n){var r=n.length,i=e.length,o=0;if("number"==typeof r)for(;r>o;o++)e[i++]=n[o];else while(n[o]!==t)e[i++]=n[o++];return e.length=i,e},grep:function(e,t,n){var r,i=[],o=0,a=e.length;for(n=!!n;a>o;o++)r=!!t(e[o],o),n!==r&&i.push(e[o]);return i},map:function(e,t,n){var r,i=0,o=e.length,a=M(e),s=[];if(a)for(;o>i;i++)r=t(e[i],i,n),null!=r&&(s[s.length]=r);else for(i in e)r=t(e[i],i,n),null!=r&&(s[s.length]=r);return d.apply([],s)},guid:1,proxy:function(e,n){var r,i,o;return"string"==typeof n&&(o=e[n],n=e,e=o),x.isFunction(e)?(r=g.call(arguments,2),i=function(){return e.apply(n||this,r.concat(g.call(arguments)))},i.guid=e.guid=e.guid||x.guid++,i):t},access:function(e,n,r,i,o,a,s){var l=0,u=e.length,c=null==r;if("object"===x.type(r)){o=!0;for(l in r)x.access(e,n,l,r[l],!0,a,s)}else if(i!==t&&(o=!0,x.isFunction(i)||(s=!0),c&&(s?(n.call(e,i),n=null):(c=n,n=function(e,t,n){return c.call(x(e),n)})),n))for(;u>l;l++)n(e[l],r,s?i:i.call(e[l],l,n(e[l],r)));return o?e:c?n.call(e):u?n(e[0],r):a},now:function(){return(new Date).getTime()},swap:function(e,t,n,r){var i,o,a={};for(o in t)a[o]=e.style[o],e.style[o]=t[o];i=n.apply(e,r||[]);for(o in t)e.style[o]=a[o];return i}}),x.ready.promise=function(t){if(!n)if(n=x.Deferred(),"complete"===a.readyState)setTimeout(x.ready);else if(a.addEventListener)a.addEventListener("DOMContentLoaded",q,!1),e.addEventListener("load",q,!1);else{a.attachEvent("onreadystatechange",q),e.attachEvent("onload",q);var r=!1;try{r=null==e.frameElement&&a.documentElement}catch(i){}r&&r.doScroll&&function o(){if(!x.isReady){try{r.doScroll("left")}catch(e){return setTimeout(o,50)}_(),x.ready()}}()}return n.promise(t)},x.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(e,t){c["[object "+t+"]"]=t.toLowerCase()});function M(e){var t=e.length,n=x.type(e);return x.isWindow(e)?!1:1===e.nodeType&&t?!0:"array"===n||"function"!==n&&(0===t||"number"==typeof t&&t>0&&t-1 in e)}r=x(a),function(e,t){var n,r,i,o,a,s,l,u,c,p,f,d,h,g,m,y,v,b="sizzle"+-new Date,w=e.document,T=0,C=0,N=lt(),k=lt(),E=lt(),S=!1,A=function(){return 0},j=typeof t,D=1<<31,L={}.hasOwnProperty,H=[],q=H.pop,_=H.push,M=H.push,O=H.slice,F=H.indexOf||function(e){var t=0,n=this.length;for(;n>t;t++)if(this[t]===e)return t;return-1},B="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",P="[\\x20\\t\\r\\n\\f]",R="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",W=R.replace("w","w#"),$="\\["+P+"*("+R+")"+P+"*(?:([*^$|!~]?=)"+P+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+W+")|)|)"+P+"*\\]",I=":("+R+")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|"+$.replace(3,8)+")*)|.*)\\)|)",z=RegExp("^"+P+"+|((?:^|[^\\\\])(?:\\\\.)*)"+P+"+$","g"),X=RegExp("^"+P+"*,"+P+"*"),U=RegExp("^"+P+"*([>+~]|"+P+")"+P+"*"),V=RegExp(P+"*[+~]"),Y=RegExp("="+P+"*([^\\]'\"]*)"+P+"*\\]","g"),J=RegExp(I),G=RegExp("^"+W+"$"),Q={ID:RegExp("^#("+R+")"),CLASS:RegExp("^\\.("+R+")"),TAG:RegExp("^("+R.replace("w","w*")+")"),ATTR:RegExp("^"+$),PSEUDO:RegExp("^"+I),CHILD:RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+P+"*(even|odd|(([+-]|)(\\d*)n|)"+P+"*(?:([+-]|)"+P+"*(\\d+)|))"+P+"*\\)|)","i"),bool:RegExp("^(?:"+B+")$","i"),needsContext:RegExp("^"+P+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+P+"*((?:-\\d)?\\d*)"+P+"*\\)|)(?=[^-]|$)","i")},K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,et=/^(?:input|select|textarea|button)$/i,tt=/^h\d$/i,nt=/'|\\/g,rt=RegExp("\\\\([\\da-f]{1,6}"+P+"?|("+P+")|.)","ig"),it=function(e,t,n){var r="0x"+t-65536;return r!==r||n?t:0>r?String.fromCharCode(r+65536):String.fromCharCode(55296|r>>10,56320|1023&r)};try{M.apply(H=O.call(w.childNodes),w.childNodes),H[w.childNodes.length].nodeType}catch(ot){M={apply:H.length?function(e,t){_.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function at(e,t,n,i){var o,a,s,l,u,c,d,m,y,x;if((t?t.ownerDocument||t:w)!==f&&p(t),t=t||f,n=n||[],!e||"string"!=typeof e)return n;if(1!==(l=t.nodeType)&&9!==l)return[];if(h&&!i){if(o=Z.exec(e))if(s=o[1]){if(9===l){if(a=t.getElementById(s),!a||!a.parentNode)return n;if(a.id===s)return n.push(a),n}else if(t.ownerDocument&&(a=t.ownerDocument.getElementById(s))&&v(t,a)&&a.id===s)return n.push(a),n}else{if(o[2])return M.apply(n,t.getElementsByTagName(e)),n;if((s=o[3])&&r.getElementsByClassName&&t.getElementsByClassName)return M.apply(n,t.getElementsByClassName(s)),n}if(r.qsa&&(!g||!g.test(e))){if(m=d=b,y=t,x=9===l&&e,1===l&&"object"!==t.nodeName.toLowerCase()){c=bt(e),(d=t.getAttribute("id"))?m=d.replace(nt,"\\$&"):t.setAttribute("id",m),m="[id='"+m+"'] ",u=c.length;while(u--)c[u]=m+xt(c[u]);y=V.test(e)&&t.parentNode||t,x=c.join(",")}if(x)try{return M.apply(n,y.querySelectorAll(x)),n}catch(T){}finally{d||t.removeAttribute("id")}}}return At(e.replace(z,"$1"),t,n,i)}function st(e){return K.test(e+"")}function lt(){var e=[];function t(n,r){return e.push(n+=" ")>o.cacheLength&&delete t[e.shift()],t[n]=r}return t}function ut(e){return e[b]=!0,e}function ct(e){var t=f.createElement("div");try{return!!e(t)}catch(n){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function pt(e,t,n){e=e.split("|");var r,i=e.length,a=n?null:t;while(i--)(r=o.attrHandle[e[i]])&&r!==t||(o.attrHandle[e[i]]=a)}function ft(e,t){var n=e.getAttributeNode(t);return n&&n.specified?n.value:e[t]===!0?t.toLowerCase():null}function dt(e,t){return e.getAttribute(t,"type"===t.toLowerCase()?1:2)}function ht(e){return"input"===e.nodeName.toLowerCase()?e.defaultValue:t}function gt(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&(~t.sourceIndex||D)-(~e.sourceIndex||D);if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function mt(e){return function(t){var n=t.nodeName.toLowerCase();return"input"===n&&t.type===e}}function yt(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function vt(e){return ut(function(t){return t=+t,ut(function(n,r){var i,o=e([],n.length,t),a=o.length;while(a--)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))})})}s=at.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return t?"HTML"!==t.nodeName:!1},r=at.support={},p=at.setDocument=function(e){var n=e?e.ownerDocument||e:w,i=n.parentWindow;return n!==f&&9===n.nodeType&&n.documentElement?(f=n,d=n.documentElement,h=!s(n),i&&i.frameElement&&i.attachEvent("onbeforeunload",function(){p()}),r.attributes=ct(function(e){return e.innerHTML="<a href='#'></a>",pt("type|href|height|width",dt,"#"===e.firstChild.getAttribute("href")),pt(B,ft,null==e.getAttribute("disabled")),e.className="i",!e.getAttribute("className")}),r.input=ct(function(e){return e.innerHTML="<input>",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")}),pt("value",ht,r.attributes&&r.input),r.getElementsByTagName=ct(function(e){return e.appendChild(n.createComment("")),!e.getElementsByTagName("*").length}),r.getElementsByClassName=ct(function(e){return e.innerHTML="<div class='a'></div><div class='a i'></div>",e.firstChild.className="i",2===e.getElementsByClassName("i").length}),r.getById=ct(function(e){return d.appendChild(e).id=b,!n.getElementsByName||!n.getElementsByName(b).length}),r.getById?(o.find.ID=function(e,t){if(typeof t.getElementById!==j&&h){var n=t.getElementById(e);return n&&n.parentNode?[n]:[]}},o.filter.ID=function(e){var t=e.replace(rt,it);return function(e){return e.getAttribute("id")===t}}):(delete o.find.ID,o.filter.ID=function(e){var t=e.replace(rt,it);return function(e){var n=typeof e.getAttributeNode!==j&&e.getAttributeNode("id");return n&&n.value===t}}),o.find.TAG=r.getElementsByTagName?function(e,n){return typeof n.getElementsByTagName!==j?n.getElementsByTagName(e):t}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},o.find.CLASS=r.getElementsByClassName&&function(e,n){return typeof n.getElementsByClassName!==j&&h?n.getElementsByClassName(e):t},m=[],g=[],(r.qsa=st(n.querySelectorAll))&&(ct(function(e){e.innerHTML="<select><option selected=''></option></select>",e.querySelectorAll("[selected]").length||g.push("\\["+P+"*(?:value|"+B+")"),e.querySelectorAll(":checked").length||g.push(":checked")}),ct(function(e){var t=n.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("t",""),e.querySelectorAll("[t^='']").length&&g.push("[*^$]="+P+"*(?:''|\"\")"),e.querySelectorAll(":enabled").length||g.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),g.push(",.*:")})),(r.matchesSelector=st(y=d.webkitMatchesSelector||d.mozMatchesSelector||d.oMatchesSelector||d.msMatchesSelector))&&ct(function(e){r.disconnectedMatch=y.call(e,"div"),y.call(e,"[s!='']:x"),m.push("!=",I)}),g=g.length&&RegExp(g.join("|")),m=m.length&&RegExp(m.join("|")),v=st(d.contains)||d.compareDocumentPosition?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},r.sortDetached=ct(function(e){return 1&e.compareDocumentPosition(n.createElement("div"))}),A=d.compareDocumentPosition?function(e,t){if(e===t)return S=!0,0;var i=t.compareDocumentPosition&&e.compareDocumentPosition&&e.compareDocumentPosition(t);return i?1&i||!r.sortDetached&&t.compareDocumentPosition(e)===i?e===n||v(w,e)?-1:t===n||v(w,t)?1:c?F.call(c,e)-F.call(c,t):0:4&i?-1:1:e.compareDocumentPosition?-1:1}:function(e,t){var r,i=0,o=e.parentNode,a=t.parentNode,s=[e],l=[t];if(e===t)return S=!0,0;if(!o||!a)return e===n?-1:t===n?1:o?-1:a?1:c?F.call(c,e)-F.call(c,t):0;if(o===a)return gt(e,t);r=e;while(r=r.parentNode)s.unshift(r);r=t;while(r=r.parentNode)l.unshift(r);while(s[i]===l[i])i++;return i?gt(s[i],l[i]):s[i]===w?-1:l[i]===w?1:0},n):f},at.matches=function(e,t){return at(e,null,null,t)},at.matchesSelector=function(e,t){if((e.ownerDocument||e)!==f&&p(e),t=t.replace(Y,"='$1']"),!(!r.matchesSelector||!h||m&&m.test(t)||g&&g.test(t)))try{var n=y.call(e,t);if(n||r.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(i){}return at(t,f,null,[e]).length>0},at.contains=function(e,t){return(e.ownerDocument||e)!==f&&p(e),v(e,t)},at.attr=function(e,n){(e.ownerDocument||e)!==f&&p(e);var i=o.attrHandle[n.toLowerCase()],a=i&&L.call(o.attrHandle,n.toLowerCase())?i(e,n,!h):t;return a===t?r.attributes||!h?e.getAttribute(n):(a=e.getAttributeNode(n))&&a.specified?a.value:null:a},at.error=function(e){throw Error("Syntax error, unrecognized expression: "+e)},at.uniqueSort=function(e){var t,n=[],i=0,o=0;if(S=!r.detectDuplicates,c=!r.sortStable&&e.slice(0),e.sort(A),S){while(t=e[o++])t===e[o]&&(i=n.push(o));while(i--)e.splice(n[i],1)}return e},a=at.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=a(e)}else if(3===i||4===i)return e.nodeValue}else for(;t=e[r];r++)n+=a(t);return n},o=at.selectors={cacheLength:50,createPseudo:ut,match:Q,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(rt,it),e[3]=(e[4]||e[5]||"").replace(rt,it),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||at.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&at.error(e[0]),e},PSEUDO:function(e){var n,r=!e[5]&&e[2];return Q.CHILD.test(e[0])?null:(e[3]&&e[4]!==t?e[2]=e[4]:r&&J.test(r)&&(n=bt(r,!0))&&(n=r.indexOf(")",r.length-n)-r.length)&&(e[0]=e[0].slice(0,n),e[2]=r.slice(0,n)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(rt,it).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=N[e+" "];return t||(t=RegExp("(^|"+P+")"+e+"("+P+"|$)"))&&N(e,function(e){return t.test("string"==typeof e.className&&e.className||typeof e.getAttribute!==j&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r){var i=at.attr(r,e);return null==i?"!="===t:t?(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i+" ").indexOf(n)>-1:"|="===t?i===n||i.slice(0,n.length+1)===n+"-":!1):!0}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,l){var u,c,p,f,d,h,g=o!==a?"nextSibling":"previousSibling",m=t.parentNode,y=s&&t.nodeName.toLowerCase(),v=!l&&!s;if(m){if(o){while(g){p=t;while(p=p[g])if(s?p.nodeName.toLowerCase()===y:1===p.nodeType)return!1;h=g="only"===e&&!h&&"nextSibling"}return!0}if(h=[a?m.firstChild:m.lastChild],a&&v){c=m[b]||(m[b]={}),u=c[e]||[],d=u[0]===T&&u[1],f=u[0]===T&&u[2],p=d&&m.childNodes[d];while(p=++d&&p&&p[g]||(f=d=0)||h.pop())if(1===p.nodeType&&++f&&p===t){c[e]=[T,d,f];break}}else if(v&&(u=(t[b]||(t[b]={}))[e])&&u[0]===T)f=u[1];else while(p=++d&&p&&p[g]||(f=d=0)||h.pop())if((s?p.nodeName.toLowerCase()===y:1===p.nodeType)&&++f&&(v&&((p[b]||(p[b]={}))[e]=[T,f]),p===t))break;return f-=i,f===r||0===f%r&&f/r>=0}}},PSEUDO:function(e,t){var n,r=o.pseudos[e]||o.setFilters[e.toLowerCase()]||at.error("unsupported pseudo: "+e);return r[b]?r(t):r.length>1?(n=[e,e,"",t],o.setFilters.hasOwnProperty(e.toLowerCase())?ut(function(e,n){var i,o=r(e,t),a=o.length;while(a--)i=F.call(e,o[a]),e[i]=!(n[i]=o[a])}):function(e){return r(e,0,n)}):r}},pseudos:{not:ut(function(e){var t=[],n=[],r=l(e.replace(z,"$1"));return r[b]?ut(function(e,t,n,i){var o,a=r(e,null,i,[]),s=e.length;while(s--)(o=a[s])&&(e[s]=!(t[s]=o))}):function(e,i,o){return t[0]=e,r(t,null,o,n),!n.pop()}}),has:ut(function(e){return function(t){return at(e,t).length>0}}),contains:ut(function(e){return function(t){return(t.textContent||t.innerText||a(t)).indexOf(e)>-1}}),lang:ut(function(e){return G.test(e||"")||at.error("unsupported lang: "+e),e=e.replace(rt,it).toLowerCase(),function(t){var n;do if(n=h?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return n=n.toLowerCase(),n===e||0===n.indexOf(e+"-");while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===d},focus:function(e){return e===f.activeElement&&(!f.hasFocus||f.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:function(e){return e.disabled===!1},disabled:function(e){return e.disabled===!0},checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,e.selected===!0},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeName>"@"||3===e.nodeType||4===e.nodeType)return!1;return!0},parent:function(e){return!o.pseudos.empty(e)},header:function(e){return tt.test(e.nodeName)},input:function(e){return et.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||t.toLowerCase()===e.type)},first:vt(function(){return[0]}),last:vt(function(e,t){return[t-1]}),eq:vt(function(e,t,n){return[0>n?n+t:n]}),even:vt(function(e,t){var n=0;for(;t>n;n+=2)e.push(n);return e}),odd:vt(function(e,t){var n=1;for(;t>n;n+=2)e.push(n);return e}),lt:vt(function(e,t,n){var r=0>n?n+t:n;for(;--r>=0;)e.push(r);return e}),gt:vt(function(e,t,n){var r=0>n?n+t:n;for(;t>++r;)e.push(r);return e})}};for(n in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})o.pseudos[n]=mt(n);for(n in{submit:!0,reset:!0})o.pseudos[n]=yt(n);function bt(e,t){var n,r,i,a,s,l,u,c=k[e+" "];if(c)return t?0:c.slice(0);s=e,l=[],u=o.preFilter;while(s){(!n||(r=X.exec(s)))&&(r&&(s=s.slice(r[0].length)||s),l.push(i=[])),n=!1,(r=U.exec(s))&&(n=r.shift(),i.push({value:n,type:r[0].replace(z," ")}),s=s.slice(n.length));for(a in o.filter)!(r=Q[a].exec(s))||u[a]&&!(r=u[a](r))||(n=r.shift(),i.push({value:n,type:a,matches:r}),s=s.slice(n.length));if(!n)break}return t?s.length:s?at.error(e):k(e,l).slice(0)}function xt(e){var t=0,n=e.length,r="";for(;n>t;t++)r+=e[t].value;return r}function wt(e,t,n){var r=t.dir,o=n&&"parentNode"===r,a=C++;return t.first?function(t,n,i){while(t=t[r])if(1===t.nodeType||o)return e(t,n,i)}:function(t,n,s){var l,u,c,p=T+" "+a;if(s){while(t=t[r])if((1===t.nodeType||o)&&e(t,n,s))return!0}else while(t=t[r])if(1===t.nodeType||o)if(c=t[b]||(t[b]={}),(u=c[r])&&u[0]===p){if((l=u[1])===!0||l===i)return l===!0}else if(u=c[r]=[p],u[1]=e(t,n,s)||i,u[1]===!0)return!0}}function Tt(e){return e.length>1?function(t,n,r){var i=e.length;while(i--)if(!e[i](t,n,r))return!1;return!0}:e[0]}function Ct(e,t,n,r,i){var o,a=[],s=0,l=e.length,u=null!=t;for(;l>s;s++)(o=e[s])&&(!n||n(o,r,i))&&(a.push(o),u&&t.push(s));return a}function Nt(e,t,n,r,i,o){return r&&!r[b]&&(r=Nt(r)),i&&!i[b]&&(i=Nt(i,o)),ut(function(o,a,s,l){var u,c,p,f=[],d=[],h=a.length,g=o||St(t||"*",s.nodeType?[s]:s,[]),m=!e||!o&&t?g:Ct(g,f,e,s,l),y=n?i||(o?e:h||r)?[]:a:m;if(n&&n(m,y,s,l),r){u=Ct(y,d),r(u,[],s,l),c=u.length;while(c--)(p=u[c])&&(y[d[c]]=!(m[d[c]]=p))}if(o){if(i||e){if(i){u=[],c=y.length;while(c--)(p=y[c])&&u.push(m[c]=p);i(null,y=[],u,l)}c=y.length;while(c--)(p=y[c])&&(u=i?F.call(o,p):f[c])>-1&&(o[u]=!(a[u]=p))}}else y=Ct(y===a?y.splice(h,y.length):y),i?i(null,a,y,l):M.apply(a,y)})}function kt(e){var t,n,r,i=e.length,a=o.relative[e[0].type],s=a||o.relative[" "],l=a?1:0,c=wt(function(e){return e===t},s,!0),p=wt(function(e){return F.call(t,e)>-1},s,!0),f=[function(e,n,r){return!a&&(r||n!==u)||((t=n).nodeType?c(e,n,r):p(e,n,r))}];for(;i>l;l++)if(n=o.relative[e[l].type])f=[wt(Tt(f),n)];else{if(n=o.filter[e[l].type].apply(null,e[l].matches),n[b]){for(r=++l;i>r;r++)if(o.relative[e[r].type])break;return Nt(l>1&&Tt(f),l>1&&xt(e.slice(0,l-1).concat({value:" "===e[l-2].type?"*":""})).replace(z,"$1"),n,r>l&&kt(e.slice(l,r)),i>r&&kt(e=e.slice(r)),i>r&&xt(e))}f.push(n)}return Tt(f)}function Et(e,t){var n=0,r=t.length>0,a=e.length>0,s=function(s,l,c,p,d){var h,g,m,y=[],v=0,b="0",x=s&&[],w=null!=d,C=u,N=s||a&&o.find.TAG("*",d&&l.parentNode||l),k=T+=null==C?1:Math.random()||.1;for(w&&(u=l!==f&&l,i=n);null!=(h=N[b]);b++){if(a&&h){g=0;while(m=e[g++])if(m(h,l,c)){p.push(h);break}w&&(T=k,i=++n)}r&&((h=!m&&h)&&v--,s&&x.push(h))}if(v+=b,r&&b!==v){g=0;while(m=t[g++])m(x,y,l,c);if(s){if(v>0)while(b--)x[b]||y[b]||(y[b]=q.call(p));y=Ct(y)}M.apply(p,y),w&&!s&&y.length>0&&v+t.length>1&&at.uniqueSort(p)}return w&&(T=k,u=C),x};return r?ut(s):s}l=at.compile=function(e,t){var n,r=[],i=[],o=E[e+" "];if(!o){t||(t=bt(e)),n=t.length;while(n--)o=kt(t[n]),o[b]?r.push(o):i.push(o);o=E(e,Et(i,r))}return o};function St(e,t,n){var r=0,i=t.length;for(;i>r;r++)at(e,t[r],n);return n}function At(e,t,n,i){var a,s,u,c,p,f=bt(e);if(!i&&1===f.length){if(s=f[0]=f[0].slice(0),s.length>2&&"ID"===(u=s[0]).type&&r.getById&&9===t.nodeType&&h&&o.relative[s[1].type]){if(t=(o.find.ID(u.matches[0].replace(rt,it),t)||[])[0],!t)return n;e=e.slice(s.shift().value.length)}a=Q.needsContext.test(e)?0:s.length;while(a--){if(u=s[a],o.relative[c=u.type])break;if((p=o.find[c])&&(i=p(u.matches[0].replace(rt,it),V.test(s[0].type)&&t.parentNode||t))){if(s.splice(a,1),e=i.length&&xt(s),!e)return M.apply(n,i),n;break}}}return l(e,f)(i,t,!h,n,V.test(e)),n}o.pseudos.nth=o.pseudos.eq;function jt(){}jt.prototype=o.filters=o.pseudos,o.setFilters=new jt,r.sortStable=b.split("").sort(A).join("")===b,p(),[0,0].sort(A),r.detectDuplicates=S,x.find=at,x.expr=at.selectors,x.expr[":"]=x.expr.pseudos,x.unique=at.uniqueSort,x.text=at.getText,x.isXMLDoc=at.isXML,x.contains=at.contains}(e);var O={};function F(e){var t=O[e]={};return x.each(e.match(T)||[],function(e,n){t[n]=!0}),t}x.Callbacks=function(e){e="string"==typeof e?O[e]||F(e):x.extend({},e);var n,r,i,o,a,s,l=[],u=!e.once&&[],c=function(t){for(r=e.memory&&t,i=!0,a=s||0,s=0,o=l.length,n=!0;l&&o>a;a++)if(l[a].apply(t[0],t[1])===!1&&e.stopOnFalse){r=!1;break}n=!1,l&&(u?u.length&&c(u.shift()):r?l=[]:p.disable())},p={add:function(){if(l){var t=l.length;(function i(t){x.each(t,function(t,n){var r=x.type(n);"function"===r?e.unique&&p.has(n)||l.push(n):n&&n.length&&"string"!==r&&i(n)})})(arguments),n?o=l.length:r&&(s=t,c(r))}return this},remove:function(){return l&&x.each(arguments,function(e,t){var r;while((r=x.inArray(t,l,r))>-1)l.splice(r,1),n&&(o>=r&&o--,a>=r&&a--)}),this},has:function(e){return e?x.inArray(e,l)>-1:!(!l||!l.length)},empty:function(){return l=[],o=0,this},disable:function(){return l=u=r=t,this},disabled:function(){return!l},lock:function(){return u=t,r||p.disable(),this},locked:function(){return!u},fireWith:function(e,t){return t=t||[],t=[e,t.slice?t.slice():t],!l||i&&!u||(n?u.push(t):c(t)),this},fire:function(){return p.fireWith(this,arguments),this},fired:function(){return!!i}};return p},x.extend({Deferred:function(e){var t=[["resolve","done",x.Callbacks("once memory"),"resolved"],["reject","fail",x.Callbacks("once memory"),"rejected"],["notify","progress",x.Callbacks("memory")]],n="pending",r={state:function(){return n},always:function(){return i.done(arguments).fail(arguments),this},then:function(){var e=arguments;return x.Deferred(function(n){x.each(t,function(t,o){var a=o[0],s=x.isFunction(e[t])&&e[t];i[o[1]](function(){var e=s&&s.apply(this,arguments);e&&x.isFunction(e.promise)?e.promise().done(n.resolve).fail(n.reject).progress(n.notify):n[a+"With"](this===r?n.promise():this,s?[e]:arguments)})}),e=null}).promise()},promise:function(e){return null!=e?x.extend(e,r):r}},i={};return r.pipe=r.then,x.each(t,function(e,o){var a=o[2],s=o[3];r[o[1]]=a.add,s&&a.add(function(){n=s},t[1^e][2].disable,t[2][2].lock),i[o[0]]=function(){return i[o[0]+"With"](this===i?r:this,arguments),this},i[o[0]+"With"]=a.fireWith}),r.promise(i),e&&e.call(i,i),i},when:function(e){var t=0,n=g.call(arguments),r=n.length,i=1!==r||e&&x.isFunction(e.promise)?r:0,o=1===i?e:x.Deferred(),a=function(e,t,n){return function(r){t[e]=this,n[e]=arguments.length>1?g.call(arguments):r,n===s?o.notifyWith(t,n):--i||o.resolveWith(t,n)}},s,l,u;if(r>1)for(s=Array(r),l=Array(r),u=Array(r);r>t;t++)n[t]&&x.isFunction(n[t].promise)?n[t].promise().done(a(t,u,n)).fail(o.reject).progress(a(t,l,s)):--i;return i||o.resolveWith(u,n),o.promise()}}),x.support=function(t){var n,r,o,s,l,u,c,p,f,d=a.createElement("div");if(d.setAttribute("className","t"),d.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",n=d.getElementsByTagName("*")||[],r=d.getElementsByTagName("a")[0],!r||!r.style||!n.length)return t;s=a.createElement("select"),u=s.appendChild(a.createElement("option")),o=d.getElementsByTagName("input")[0],r.style.cssText="top:1px;float:left;opacity:.5",t.getSetAttribute="t"!==d.className,t.leadingWhitespace=3===d.firstChild.nodeType,t.tbody=!d.getElementsByTagName("tbody").length,t.htmlSerialize=!!d.getElementsByTagName("link").length,t.style=/top/.test(r.getAttribute("style")),t.hrefNormalized="/a"===r.getAttribute("href"),t.opacity=/^0.5/.test(r.style.opacity),t.cssFloat=!!r.style.cssFloat,t.checkOn=!!o.value,t.optSelected=u.selected,t.enctype=!!a.createElement("form").enctype,t.html5Clone="<:nav></:nav>"!==a.createElement("nav").cloneNode(!0).outerHTML,t.inlineBlockNeedsLayout=!1,t.shrinkWrapBlocks=!1,t.pixelPosition=!1,t.deleteExpando=!0,t.noCloneEvent=!0,t.reliableMarginRight=!0,t.boxSizingReliable=!0,o.checked=!0,t.noCloneChecked=o.cloneNode(!0).checked,s.disabled=!0,t.optDisabled=!u.disabled;try{delete d.test}catch(h){t.deleteExpando=!1}o=a.createElement("input"),o.setAttribute("value",""),t.input=""===o.getAttribute("value"),o.value="t",o.setAttribute("type","radio"),t.radioValue="t"===o.value,o.setAttribute("checked","t"),o.setAttribute("name","t"),l=a.createDocumentFragment(),l.appendChild(o),t.appendChecked=o.checked,t.checkClone=l.cloneNode(!0).cloneNode(!0).lastChild.checked,d.attachEvent&&(d.attachEvent("onclick",function(){t.noCloneEvent=!1}),d.cloneNode(!0).click());for(f in{submit:!0,change:!0,focusin:!0})d.setAttribute(c="on"+f,"t"),t[f+"Bubbles"]=c in e||d.attributes[c].expando===!1;d.style.backgroundClip="content-box",d.cloneNode(!0).style.backgroundClip="",t.clearCloneStyle="content-box"===d.style.backgroundClip;for(f in x(t))break;return t.ownLast="0"!==f,x(function(){var n,r,o,s="padding:0;margin:0;border:0;display:block;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;",l=a.getElementsByTagName("body")[0];l&&(n=a.createElement("div"),n.style.cssText="border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px",l.appendChild(n).appendChild(d),d.innerHTML="<table><tr><td></td><td>t</td></tr></table>",o=d.getElementsByTagName("td"),o[0].style.cssText="padding:0;margin:0;border:0;display:none",p=0===o[0].offsetHeight,o[0].style.display="",o[1].style.display="none",t.reliableHiddenOffsets=p&&0===o[0].offsetHeight,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",x.swap(l,null!=l.style.zoom?{zoom:1}:{},function(){t.boxSizing=4===d.offsetWidth}),e.getComputedStyle&&(t.pixelPosition="1%"!==(e.getComputedStyle(d,null)||{}).top,t.boxSizingReliable="4px"===(e.getComputedStyle(d,null)||{width:"4px"}).width,r=d.appendChild(a.createElement("div")),r.style.cssText=d.style.cssText=s,r.style.marginRight=r.style.width="0",d.style.width="1px",t.reliableMarginRight=!parseFloat((e.getComputedStyle(r,null)||{}).marginRight)),typeof d.style.zoom!==i&&(d.innerHTML="",d.style.cssText=s+"width:1px;padding:1px;display:inline;zoom:1",t.inlineBlockNeedsLayout=3===d.offsetWidth,d.style.display="block",d.innerHTML="<div></div>",d.firstChild.style.width="5px",t.shrinkWrapBlocks=3!==d.offsetWidth,t.inlineBlockNeedsLayout&&(l.style.zoom=1)),l.removeChild(n),n=d=o=r=null) | ||
5 | }),n=s=l=u=r=o=null,t}({});var B=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,P=/([A-Z])/g;function R(e,n,r,i){if(x.acceptData(e)){var o,a,s=x.expando,l=e.nodeType,u=l?x.cache:e,c=l?e[s]:e[s]&&s;if(c&&u[c]&&(i||u[c].data)||r!==t||"string"!=typeof n)return c||(c=l?e[s]=p.pop()||x.guid++:s),u[c]||(u[c]=l?{}:{toJSON:x.noop}),("object"==typeof n||"function"==typeof n)&&(i?u[c]=x.extend(u[c],n):u[c].data=x.extend(u[c].data,n)),a=u[c],i||(a.data||(a.data={}),a=a.data),r!==t&&(a[x.camelCase(n)]=r),"string"==typeof n?(o=a[n],null==o&&(o=a[x.camelCase(n)])):o=a,o}}function W(e,t,n){if(x.acceptData(e)){var r,i,o=e.nodeType,a=o?x.cache:e,s=o?e[x.expando]:x.expando;if(a[s]){if(t&&(r=n?a[s]:a[s].data)){x.isArray(t)?t=t.concat(x.map(t,x.camelCase)):t in r?t=[t]:(t=x.camelCase(t),t=t in r?[t]:t.split(" ")),i=t.length;while(i--)delete r[t[i]];if(n?!I(r):!x.isEmptyObject(r))return}(n||(delete a[s].data,I(a[s])))&&(o?x.cleanData([e],!0):x.support.deleteExpando||a!=a.window?delete a[s]:a[s]=null)}}}x.extend({cache:{},noData:{applet:!0,embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(e){return e=e.nodeType?x.cache[e[x.expando]]:e[x.expando],!!e&&!I(e)},data:function(e,t,n){return R(e,t,n)},removeData:function(e,t){return W(e,t)},_data:function(e,t,n){return R(e,t,n,!0)},_removeData:function(e,t){return W(e,t,!0)},acceptData:function(e){if(e.nodeType&&1!==e.nodeType&&9!==e.nodeType)return!1;var t=e.nodeName&&x.noData[e.nodeName.toLowerCase()];return!t||t!==!0&&e.getAttribute("classid")===t}}),x.fn.extend({data:function(e,n){var r,i,o=null,a=0,s=this[0];if(e===t){if(this.length&&(o=x.data(s),1===s.nodeType&&!x._data(s,"parsedAttrs"))){for(r=s.attributes;r.length>a;a++)i=r[a].name,0===i.indexOf("data-")&&(i=x.camelCase(i.slice(5)),$(s,i,o[i]));x._data(s,"parsedAttrs",!0)}return o}return"object"==typeof e?this.each(function(){x.data(this,e)}):arguments.length>1?this.each(function(){x.data(this,e,n)}):s?$(s,e,x.data(s,e)):null},removeData:function(e){return this.each(function(){x.removeData(this,e)})}});function $(e,n,r){if(r===t&&1===e.nodeType){var i="data-"+n.replace(P,"-$1").toLowerCase();if(r=e.getAttribute(i),"string"==typeof r){try{r="true"===r?!0:"false"===r?!1:"null"===r?null:+r+""===r?+r:B.test(r)?x.parseJSON(r):r}catch(o){}x.data(e,n,r)}else r=t}return r}function I(e){var t;for(t in e)if(("data"!==t||!x.isEmptyObject(e[t]))&&"toJSON"!==t)return!1;return!0}x.extend({queue:function(e,n,r){var i;return e?(n=(n||"fx")+"queue",i=x._data(e,n),r&&(!i||x.isArray(r)?i=x._data(e,n,x.makeArray(r)):i.push(r)),i||[]):t},dequeue:function(e,t){t=t||"fx";var n=x.queue(e,t),r=n.length,i=n.shift(),o=x._queueHooks(e,t),a=function(){x.dequeue(e,t)};"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,a,o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return x._data(e,n)||x._data(e,n,{empty:x.Callbacks("once memory").add(function(){x._removeData(e,t+"queue"),x._removeData(e,n)})})}}),x.fn.extend({queue:function(e,n){var r=2;return"string"!=typeof e&&(n=e,e="fx",r--),r>arguments.length?x.queue(this[0],e):n===t?this:this.each(function(){var t=x.queue(this,e,n);x._queueHooks(this,e),"fx"===e&&"inprogress"!==t[0]&&x.dequeue(this,e)})},dequeue:function(e){return this.each(function(){x.dequeue(this,e)})},delay:function(e,t){return e=x.fx?x.fx.speeds[e]||e:e,t=t||"fx",this.queue(t,function(t,n){var r=setTimeout(t,e);n.stop=function(){clearTimeout(r)}})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,n){var r,i=1,o=x.Deferred(),a=this,s=this.length,l=function(){--i||o.resolveWith(a,[a])};"string"!=typeof e&&(n=e,e=t),e=e||"fx";while(s--)r=x._data(a[s],e+"queueHooks"),r&&r.empty&&(i++,r.empty.add(l));return l(),o.promise(n)}});var z,X,U=/[\t\r\n\f]/g,V=/\r/g,Y=/^(?:input|select|textarea|button|object)$/i,J=/^(?:a|area)$/i,G=/^(?:checked|selected)$/i,Q=x.support.getSetAttribute,K=x.support.input;x.fn.extend({attr:function(e,t){return x.access(this,x.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each(function(){x.removeAttr(this,e)})},prop:function(e,t){return x.access(this,x.prop,e,t,arguments.length>1)},removeProp:function(e){return e=x.propFix[e]||e,this.each(function(){try{this[e]=t,delete this[e]}catch(n){}})},addClass:function(e){var t,n,r,i,o,a=0,s=this.length,l="string"==typeof e&&e;if(x.isFunction(e))return this.each(function(t){x(this).addClass(e.call(this,t,this.className))});if(l)for(t=(e||"").match(T)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(U," "):" ")){o=0;while(i=t[o++])0>r.indexOf(" "+i+" ")&&(r+=i+" ");n.className=x.trim(r)}return this},removeClass:function(e){var t,n,r,i,o,a=0,s=this.length,l=0===arguments.length||"string"==typeof e&&e;if(x.isFunction(e))return this.each(function(t){x(this).removeClass(e.call(this,t,this.className))});if(l)for(t=(e||"").match(T)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(U," "):"")){o=0;while(i=t[o++])while(r.indexOf(" "+i+" ")>=0)r=r.replace(" "+i+" "," ");n.className=e?x.trim(r):""}return this},toggleClass:function(e,t){var n=typeof e,r="boolean"==typeof t;return x.isFunction(e)?this.each(function(n){x(this).toggleClass(e.call(this,n,this.className,t),t)}):this.each(function(){if("string"===n){var o,a=0,s=x(this),l=t,u=e.match(T)||[];while(o=u[a++])l=r?l:!s.hasClass(o),s[l?"addClass":"removeClass"](o)}else(n===i||"boolean"===n)&&(this.className&&x._data(this,"__className__",this.className),this.className=this.className||e===!1?"":x._data(this,"__className__")||"")})},hasClass:function(e){var t=" "+e+" ",n=0,r=this.length;for(;r>n;n++)if(1===this[n].nodeType&&(" "+this[n].className+" ").replace(U," ").indexOf(t)>=0)return!0;return!1},val:function(e){var n,r,i,o=this[0];{if(arguments.length)return i=x.isFunction(e),this.each(function(n){var o;1===this.nodeType&&(o=i?e.call(this,n,x(this).val()):e,null==o?o="":"number"==typeof o?o+="":x.isArray(o)&&(o=x.map(o,function(e){return null==e?"":e+""})),r=x.valHooks[this.type]||x.valHooks[this.nodeName.toLowerCase()],r&&"set"in r&&r.set(this,o,"value")!==t||(this.value=o))});if(o)return r=x.valHooks[o.type]||x.valHooks[o.nodeName.toLowerCase()],r&&"get"in r&&(n=r.get(o,"value"))!==t?n:(n=o.value,"string"==typeof n?n.replace(V,""):null==n?"":n)}}}),x.extend({valHooks:{option:{get:function(e){var t=x.find.attr(e,"value");return null!=t?t:e.text}},select:{get:function(e){var t,n,r=e.options,i=e.selectedIndex,o="select-one"===e.type||0>i,a=o?null:[],s=o?i+1:r.length,l=0>i?s:o?i:0;for(;s>l;l++)if(n=r[l],!(!n.selected&&l!==i||(x.support.optDisabled?n.disabled:null!==n.getAttribute("disabled"))||n.parentNode.disabled&&x.nodeName(n.parentNode,"optgroup"))){if(t=x(n).val(),o)return t;a.push(t)}return a},set:function(e,t){var n,r,i=e.options,o=x.makeArray(t),a=i.length;while(a--)r=i[a],(r.selected=x.inArray(x(r).val(),o)>=0)&&(n=!0);return n||(e.selectedIndex=-1),o}}},attr:function(e,n,r){var o,a,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return typeof e.getAttribute===i?x.prop(e,n,r):(1===s&&x.isXMLDoc(e)||(n=n.toLowerCase(),o=x.attrHooks[n]||(x.expr.match.bool.test(n)?X:z)),r===t?o&&"get"in o&&null!==(a=o.get(e,n))?a:(a=x.find.attr(e,n),null==a?t:a):null!==r?o&&"set"in o&&(a=o.set(e,r,n))!==t?a:(e.setAttribute(n,r+""),r):(x.removeAttr(e,n),t))},removeAttr:function(e,t){var n,r,i=0,o=t&&t.match(T);if(o&&1===e.nodeType)while(n=o[i++])r=x.propFix[n]||n,x.expr.match.bool.test(n)?K&&Q||!G.test(n)?e[r]=!1:e[x.camelCase("default-"+n)]=e[r]=!1:x.attr(e,n,""),e.removeAttribute(Q?n:r)},attrHooks:{type:{set:function(e,t){if(!x.support.radioValue&&"radio"===t&&x.nodeName(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},propFix:{"for":"htmlFor","class":"className"},prop:function(e,n,r){var i,o,a,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return a=1!==s||!x.isXMLDoc(e),a&&(n=x.propFix[n]||n,o=x.propHooks[n]),r!==t?o&&"set"in o&&(i=o.set(e,r,n))!==t?i:e[n]=r:o&&"get"in o&&null!==(i=o.get(e,n))?i:e[n]},propHooks:{tabIndex:{get:function(e){var t=x.find.attr(e,"tabindex");return t?parseInt(t,10):Y.test(e.nodeName)||J.test(e.nodeName)&&e.href?0:-1}}}}),X={set:function(e,t,n){return t===!1?x.removeAttr(e,n):K&&Q||!G.test(n)?e.setAttribute(!Q&&x.propFix[n]||n,n):e[x.camelCase("default-"+n)]=e[n]=!0,n}},x.each(x.expr.match.bool.source.match(/\w+/g),function(e,n){var r=x.expr.attrHandle[n]||x.find.attr;x.expr.attrHandle[n]=K&&Q||!G.test(n)?function(e,n,i){var o=x.expr.attrHandle[n],a=i?t:(x.expr.attrHandle[n]=t)!=r(e,n,i)?n.toLowerCase():null;return x.expr.attrHandle[n]=o,a}:function(e,n,r){return r?t:e[x.camelCase("default-"+n)]?n.toLowerCase():null}}),K&&Q||(x.attrHooks.value={set:function(e,n,r){return x.nodeName(e,"input")?(e.defaultValue=n,t):z&&z.set(e,n,r)}}),Q||(z={set:function(e,n,r){var i=e.getAttributeNode(r);return i||e.setAttributeNode(i=e.ownerDocument.createAttribute(r)),i.value=n+="","value"===r||n===e.getAttribute(r)?n:t}},x.expr.attrHandle.id=x.expr.attrHandle.name=x.expr.attrHandle.coords=function(e,n,r){var i;return r?t:(i=e.getAttributeNode(n))&&""!==i.value?i.value:null},x.valHooks.button={get:function(e,n){var r=e.getAttributeNode(n);return r&&r.specified?r.value:t},set:z.set},x.attrHooks.contenteditable={set:function(e,t,n){z.set(e,""===t?!1:t,n)}},x.each(["width","height"],function(e,n){x.attrHooks[n]={set:function(e,r){return""===r?(e.setAttribute(n,"auto"),r):t}}})),x.support.hrefNormalized||x.each(["href","src"],function(e,t){x.propHooks[t]={get:function(e){return e.getAttribute(t,4)}}}),x.support.style||(x.attrHooks.style={get:function(e){return e.style.cssText||t},set:function(e,t){return e.style.cssText=t+""}}),x.support.optSelected||(x.propHooks.selected={get:function(e){var t=e.parentNode;return t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex),null}}),x.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){x.propFix[this.toLowerCase()]=this}),x.support.enctype||(x.propFix.enctype="encoding"),x.each(["radio","checkbox"],function(){x.valHooks[this]={set:function(e,n){return x.isArray(n)?e.checked=x.inArray(x(e).val(),n)>=0:t}},x.support.checkOn||(x.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})});var Z=/^(?:input|select|textarea)$/i,et=/^key/,tt=/^(?:mouse|contextmenu)|click/,nt=/^(?:focusinfocus|focusoutblur)$/,rt=/^([^.]*)(?:\.(.+)|)$/;function it(){return!0}function ot(){return!1}function at(){try{return a.activeElement}catch(e){}}x.event={global:{},add:function(e,n,r,o,a){var s,l,u,c,p,f,d,h,g,m,y,v=x._data(e);if(v){r.handler&&(c=r,r=c.handler,a=c.selector),r.guid||(r.guid=x.guid++),(l=v.events)||(l=v.events={}),(f=v.handle)||(f=v.handle=function(e){return typeof x===i||e&&x.event.triggered===e.type?t:x.event.dispatch.apply(f.elem,arguments)},f.elem=e),n=(n||"").match(T)||[""],u=n.length;while(u--)s=rt.exec(n[u])||[],g=y=s[1],m=(s[2]||"").split(".").sort(),g&&(p=x.event.special[g]||{},g=(a?p.delegateType:p.bindType)||g,p=x.event.special[g]||{},d=x.extend({type:g,origType:y,data:o,handler:r,guid:r.guid,selector:a,needsContext:a&&x.expr.match.needsContext.test(a),namespace:m.join(".")},c),(h=l[g])||(h=l[g]=[],h.delegateCount=0,p.setup&&p.setup.call(e,o,m,f)!==!1||(e.addEventListener?e.addEventListener(g,f,!1):e.attachEvent&&e.attachEvent("on"+g,f))),p.add&&(p.add.call(e,d),d.handler.guid||(d.handler.guid=r.guid)),a?h.splice(h.delegateCount++,0,d):h.push(d),x.event.global[g]=!0);e=null}},remove:function(e,t,n,r,i){var o,a,s,l,u,c,p,f,d,h,g,m=x.hasData(e)&&x._data(e);if(m&&(c=m.events)){t=(t||"").match(T)||[""],u=t.length;while(u--)if(s=rt.exec(t[u])||[],d=g=s[1],h=(s[2]||"").split(".").sort(),d){p=x.event.special[d]||{},d=(r?p.delegateType:p.bindType)||d,f=c[d]||[],s=s[2]&&RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),l=o=f.length;while(o--)a=f[o],!i&&g!==a.origType||n&&n.guid!==a.guid||s&&!s.test(a.namespace)||r&&r!==a.selector&&("**"!==r||!a.selector)||(f.splice(o,1),a.selector&&f.delegateCount--,p.remove&&p.remove.call(e,a));l&&!f.length&&(p.teardown&&p.teardown.call(e,h,m.handle)!==!1||x.removeEvent(e,d,m.handle),delete c[d])}else for(d in c)x.event.remove(e,d+t[u],n,r,!0);x.isEmptyObject(c)&&(delete m.handle,x._removeData(e,"events"))}},trigger:function(n,r,i,o){var s,l,u,c,p,f,d,h=[i||a],g=v.call(n,"type")?n.type:n,m=v.call(n,"namespace")?n.namespace.split("."):[];if(u=f=i=i||a,3!==i.nodeType&&8!==i.nodeType&&!nt.test(g+x.event.triggered)&&(g.indexOf(".")>=0&&(m=g.split("."),g=m.shift(),m.sort()),l=0>g.indexOf(":")&&"on"+g,n=n[x.expando]?n:new x.Event(g,"object"==typeof n&&n),n.isTrigger=o?2:3,n.namespace=m.join("."),n.namespace_re=n.namespace?RegExp("(^|\\.)"+m.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,n.result=t,n.target||(n.target=i),r=null==r?[n]:x.makeArray(r,[n]),p=x.event.special[g]||{},o||!p.trigger||p.trigger.apply(i,r)!==!1)){if(!o&&!p.noBubble&&!x.isWindow(i)){for(c=p.delegateType||g,nt.test(c+g)||(u=u.parentNode);u;u=u.parentNode)h.push(u),f=u;f===(i.ownerDocument||a)&&h.push(f.defaultView||f.parentWindow||e)}d=0;while((u=h[d++])&&!n.isPropagationStopped())n.type=d>1?c:p.bindType||g,s=(x._data(u,"events")||{})[n.type]&&x._data(u,"handle"),s&&s.apply(u,r),s=l&&u[l],s&&x.acceptData(u)&&s.apply&&s.apply(u,r)===!1&&n.preventDefault();if(n.type=g,!o&&!n.isDefaultPrevented()&&(!p._default||p._default.apply(h.pop(),r)===!1)&&x.acceptData(i)&&l&&i[g]&&!x.isWindow(i)){f=i[l],f&&(i[l]=null),x.event.triggered=g;try{i[g]()}catch(y){}x.event.triggered=t,f&&(i[l]=f)}return n.result}},dispatch:function(e){e=x.event.fix(e);var n,r,i,o,a,s=[],l=g.call(arguments),u=(x._data(this,"events")||{})[e.type]||[],c=x.event.special[e.type]||{};if(l[0]=e,e.delegateTarget=this,!c.preDispatch||c.preDispatch.call(this,e)!==!1){s=x.event.handlers.call(this,e,u),n=0;while((o=s[n++])&&!e.isPropagationStopped()){e.currentTarget=o.elem,a=0;while((i=o.handlers[a++])&&!e.isImmediatePropagationStopped())(!e.namespace_re||e.namespace_re.test(i.namespace))&&(e.handleObj=i,e.data=i.data,r=((x.event.special[i.origType]||{}).handle||i.handler).apply(o.elem,l),r!==t&&(e.result=r)===!1&&(e.preventDefault(),e.stopPropagation()))}return c.postDispatch&&c.postDispatch.call(this,e),e.result}},handlers:function(e,n){var r,i,o,a,s=[],l=n.delegateCount,u=e.target;if(l&&u.nodeType&&(!e.button||"click"!==e.type))for(;u!=this;u=u.parentNode||this)if(1===u.nodeType&&(u.disabled!==!0||"click"!==e.type)){for(o=[],a=0;l>a;a++)i=n[a],r=i.selector+" ",o[r]===t&&(o[r]=i.needsContext?x(r,this).index(u)>=0:x.find(r,this,null,[u]).length),o[r]&&o.push(i);o.length&&s.push({elem:u,handlers:o})}return n.length>l&&s.push({elem:this,handlers:n.slice(l)}),s},fix:function(e){if(e[x.expando])return e;var t,n,r,i=e.type,o=e,s=this.fixHooks[i];s||(this.fixHooks[i]=s=tt.test(i)?this.mouseHooks:et.test(i)?this.keyHooks:{}),r=s.props?this.props.concat(s.props):this.props,e=new x.Event(o),t=r.length;while(t--)n=r[t],e[n]=o[n];return e.target||(e.target=o.srcElement||a),3===e.target.nodeType&&(e.target=e.target.parentNode),e.metaKey=!!e.metaKey,s.filter?s.filter(e,o):e},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(e,t){return null==e.which&&(e.which=null!=t.charCode?t.charCode:t.keyCode),e}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(e,n){var r,i,o,s=n.button,l=n.fromElement;return null==e.pageX&&null!=n.clientX&&(i=e.target.ownerDocument||a,o=i.documentElement,r=i.body,e.pageX=n.clientX+(o&&o.scrollLeft||r&&r.scrollLeft||0)-(o&&o.clientLeft||r&&r.clientLeft||0),e.pageY=n.clientY+(o&&o.scrollTop||r&&r.scrollTop||0)-(o&&o.clientTop||r&&r.clientTop||0)),!e.relatedTarget&&l&&(e.relatedTarget=l===e.target?n.toElement:l),e.which||s===t||(e.which=1&s?1:2&s?3:4&s?2:0),e}},special:{load:{noBubble:!0},focus:{trigger:function(){if(this!==at()&&this.focus)try{return this.focus(),!1}catch(e){}},delegateType:"focusin"},blur:{trigger:function(){return this===at()&&this.blur?(this.blur(),!1):t},delegateType:"focusout"},click:{trigger:function(){return x.nodeName(this,"input")&&"checkbox"===this.type&&this.click?(this.click(),!1):t},_default:function(e){return x.nodeName(e.target,"a")}},beforeunload:{postDispatch:function(e){e.result!==t&&(e.originalEvent.returnValue=e.result)}}},simulate:function(e,t,n,r){var i=x.extend(new x.Event,n,{type:e,isSimulated:!0,originalEvent:{}});r?x.event.trigger(i,null,t):x.event.dispatch.call(t,i),i.isDefaultPrevented()&&n.preventDefault()}},x.removeEvent=a.removeEventListener?function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n,!1)}:function(e,t,n){var r="on"+t;e.detachEvent&&(typeof e[r]===i&&(e[r]=null),e.detachEvent(r,n))},x.Event=function(e,n){return this instanceof x.Event?(e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||e.returnValue===!1||e.getPreventDefault&&e.getPreventDefault()?it:ot):this.type=e,n&&x.extend(this,n),this.timeStamp=e&&e.timeStamp||x.now(),this[x.expando]=!0,t):new x.Event(e,n)},x.Event.prototype={isDefaultPrevented:ot,isPropagationStopped:ot,isImmediatePropagationStopped:ot,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=it,e&&(e.preventDefault?e.preventDefault():e.returnValue=!1)},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=it,e&&(e.stopPropagation&&e.stopPropagation(),e.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=it,this.stopPropagation()}},x.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(e,t){x.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=this,i=e.relatedTarget,o=e.handleObj;return(!i||i!==r&&!x.contains(r,i))&&(e.type=o.origType,n=o.handler.apply(this,arguments),e.type=t),n}}}),x.support.submitBubbles||(x.event.special.submit={setup:function(){return x.nodeName(this,"form")?!1:(x.event.add(this,"click._submit keypress._submit",function(e){var n=e.target,r=x.nodeName(n,"input")||x.nodeName(n,"button")?n.form:t;r&&!x._data(r,"submitBubbles")&&(x.event.add(r,"submit._submit",function(e){e._submit_bubble=!0}),x._data(r,"submitBubbles",!0))}),t)},postDispatch:function(e){e._submit_bubble&&(delete e._submit_bubble,this.parentNode&&!e.isTrigger&&x.event.simulate("submit",this.parentNode,e,!0))},teardown:function(){return x.nodeName(this,"form")?!1:(x.event.remove(this,"._submit"),t)}}),x.support.changeBubbles||(x.event.special.change={setup:function(){return Z.test(this.nodeName)?(("checkbox"===this.type||"radio"===this.type)&&(x.event.add(this,"propertychange._change",function(e){"checked"===e.originalEvent.propertyName&&(this._just_changed=!0)}),x.event.add(this,"click._change",function(e){this._just_changed&&!e.isTrigger&&(this._just_changed=!1),x.event.simulate("change",this,e,!0)})),!1):(x.event.add(this,"beforeactivate._change",function(e){var t=e.target;Z.test(t.nodeName)&&!x._data(t,"changeBubbles")&&(x.event.add(t,"change._change",function(e){!this.parentNode||e.isSimulated||e.isTrigger||x.event.simulate("change",this.parentNode,e,!0)}),x._data(t,"changeBubbles",!0))}),t)},handle:function(e){var n=e.target;return this!==n||e.isSimulated||e.isTrigger||"radio"!==n.type&&"checkbox"!==n.type?e.handleObj.handler.apply(this,arguments):t},teardown:function(){return x.event.remove(this,"._change"),!Z.test(this.nodeName)}}),x.support.focusinBubbles||x.each({focus:"focusin",blur:"focusout"},function(e,t){var n=0,r=function(e){x.event.simulate(t,e.target,x.event.fix(e),!0)};x.event.special[t]={setup:function(){0===n++&&a.addEventListener(e,r,!0)},teardown:function(){0===--n&&a.removeEventListener(e,r,!0)}}}),x.fn.extend({on:function(e,n,r,i,o){var a,s;if("object"==typeof e){"string"!=typeof n&&(r=r||n,n=t);for(a in e)this.on(a,n,r,e[a],o);return this}if(null==r&&null==i?(i=n,r=n=t):null==i&&("string"==typeof n?(i=r,r=t):(i=r,r=n,n=t)),i===!1)i=ot;else if(!i)return this;return 1===o&&(s=i,i=function(e){return x().off(e),s.apply(this,arguments)},i.guid=s.guid||(s.guid=x.guid++)),this.each(function(){x.event.add(this,e,i,r,n)})},one:function(e,t,n,r){return this.on(e,t,n,r,1)},off:function(e,n,r){var i,o;if(e&&e.preventDefault&&e.handleObj)return i=e.handleObj,x(e.delegateTarget).off(i.namespace?i.origType+"."+i.namespace:i.origType,i.selector,i.handler),this;if("object"==typeof e){for(o in e)this.off(o,n,e[o]);return this}return(n===!1||"function"==typeof n)&&(r=n,n=t),r===!1&&(r=ot),this.each(function(){x.event.remove(this,e,r,n)})},trigger:function(e,t){return this.each(function(){x.event.trigger(e,t,this)})},triggerHandler:function(e,n){var r=this[0];return r?x.event.trigger(e,n,r,!0):t}});var st=/^.[^:#\[\.,]*$/,lt=/^(?:parents|prev(?:Until|All))/,ut=x.expr.match.needsContext,ct={children:!0,contents:!0,next:!0,prev:!0};x.fn.extend({find:function(e){var t,n=[],r=this,i=r.length;if("string"!=typeof e)return this.pushStack(x(e).filter(function(){for(t=0;i>t;t++)if(x.contains(r[t],this))return!0}));for(t=0;i>t;t++)x.find(e,r[t],n);return n=this.pushStack(i>1?x.unique(n):n),n.selector=this.selector?this.selector+" "+e:e,n},has:function(e){var t,n=x(e,this),r=n.length;return this.filter(function(){for(t=0;r>t;t++)if(x.contains(this,n[t]))return!0})},not:function(e){return this.pushStack(ft(this,e||[],!0))},filter:function(e){return this.pushStack(ft(this,e||[],!1))},is:function(e){return!!ft(this,"string"==typeof e&&ut.test(e)?x(e):e||[],!1).length},closest:function(e,t){var n,r=0,i=this.length,o=[],a=ut.test(e)||"string"!=typeof e?x(e,t||this.context):0;for(;i>r;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(11>n.nodeType&&(a?a.index(n)>-1:1===n.nodeType&&x.find.matchesSelector(n,e))){n=o.push(n);break}return this.pushStack(o.length>1?x.unique(o):o)},index:function(e){return e?"string"==typeof e?x.inArray(this[0],x(e)):x.inArray(e.jquery?e[0]:e,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){var n="string"==typeof e?x(e,t):x.makeArray(e&&e.nodeType?[e]:e),r=x.merge(this.get(),n);return this.pushStack(x.unique(r))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}});function pt(e,t){do e=e[t];while(e&&1!==e.nodeType);return e}x.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return x.dir(e,"parentNode")},parentsUntil:function(e,t,n){return x.dir(e,"parentNode",n)},next:function(e){return pt(e,"nextSibling")},prev:function(e){return pt(e,"previousSibling")},nextAll:function(e){return x.dir(e,"nextSibling")},prevAll:function(e){return x.dir(e,"previousSibling")},nextUntil:function(e,t,n){return x.dir(e,"nextSibling",n)},prevUntil:function(e,t,n){return x.dir(e,"previousSibling",n)},siblings:function(e){return x.sibling((e.parentNode||{}).firstChild,e)},children:function(e){return x.sibling(e.firstChild)},contents:function(e){return x.nodeName(e,"iframe")?e.contentDocument||e.contentWindow.document:x.merge([],e.childNodes)}},function(e,t){x.fn[e]=function(n,r){var i=x.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=x.filter(r,i)),this.length>1&&(ct[e]||(i=x.unique(i)),lt.test(e)&&(i=i.reverse())),this.pushStack(i)}}),x.extend({filter:function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?x.find.matchesSelector(r,e)?[r]:[]:x.find.matches(e,x.grep(t,function(e){return 1===e.nodeType}))},dir:function(e,n,r){var i=[],o=e[n];while(o&&9!==o.nodeType&&(r===t||1!==o.nodeType||!x(o).is(r)))1===o.nodeType&&i.push(o),o=o[n];return i},sibling:function(e,t){var n=[];for(;e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n}});function ft(e,t,n){if(x.isFunction(t))return x.grep(e,function(e,r){return!!t.call(e,r,e)!==n});if(t.nodeType)return x.grep(e,function(e){return e===t!==n});if("string"==typeof t){if(st.test(t))return x.filter(t,e,n);t=x.filter(t,e)}return x.grep(e,function(e){return x.inArray(e,t)>=0!==n})}function dt(e){var t=ht.split("|"),n=e.createDocumentFragment();if(n.createElement)while(t.length)n.createElement(t.pop());return n}var ht="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",gt=/ jQuery\d+="(?:null|\d+)"/g,mt=RegExp("<(?:"+ht+")[\\s/>]","i"),yt=/^\s+/,vt=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bt=/<([\w:]+)/,xt=/<tbody/i,wt=/<|&#?\w+;/,Tt=/<(?:script|style|link)/i,Ct=/^(?:checkbox|radio)$/i,Nt=/checked\s*(?:[^=]|=\s*.checked.)/i,kt=/^$|\/(?:java|ecma)script/i,Et=/^true\/(.*)/,St=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,At={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],area:[1,"<map>","</map>"],param:[1,"<object>","</object>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:x.support.htmlSerialize?[0,"",""]:[1,"X<div>","</div>"]},jt=dt(a),Dt=jt.appendChild(a.createElement("div"));At.optgroup=At.option,At.tbody=At.tfoot=At.colgroup=At.caption=At.thead,At.th=At.td,x.fn.extend({text:function(e){return x.access(this,function(e){return e===t?x.text(this):this.empty().append((this[0]&&this[0].ownerDocument||a).createTextNode(e))},null,e,arguments.length)},append:function(){return this.domManip(arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=Lt(this,e);t.appendChild(e)}})},prepend:function(){return this.domManip(arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=Lt(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},remove:function(e,t){var n,r=e?x.filter(e,this):this,i=0;for(;null!=(n=r[i]);i++)t||1!==n.nodeType||x.cleanData(Ft(n)),n.parentNode&&(t&&x.contains(n.ownerDocument,n)&&_t(Ft(n,"script")),n.parentNode.removeChild(n));return this},empty:function(){var e,t=0;for(;null!=(e=this[t]);t++){1===e.nodeType&&x.cleanData(Ft(e,!1));while(e.firstChild)e.removeChild(e.firstChild);e.options&&x.nodeName(e,"select")&&(e.options.length=0)}return this},clone:function(e,t){return e=null==e?!1:e,t=null==t?e:t,this.map(function(){return x.clone(this,e,t)})},html:function(e){return x.access(this,function(e){var n=this[0]||{},r=0,i=this.length;if(e===t)return 1===n.nodeType?n.innerHTML.replace(gt,""):t;if(!("string"!=typeof e||Tt.test(e)||!x.support.htmlSerialize&&mt.test(e)||!x.support.leadingWhitespace&&yt.test(e)||At[(bt.exec(e)||["",""])[1].toLowerCase()])){e=e.replace(vt,"<$1></$2>");try{for(;i>r;r++)n=this[r]||{},1===n.nodeType&&(x.cleanData(Ft(n,!1)),n.innerHTML=e);n=0}catch(o){}}n&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var e=x.map(this,function(e){return[e.nextSibling,e.parentNode]}),t=0;return this.domManip(arguments,function(n){var r=e[t++],i=e[t++];i&&(r&&r.parentNode!==i&&(r=this.nextSibling),x(this).remove(),i.insertBefore(n,r))},!0),t?this:this.remove()},detach:function(e){return this.remove(e,!0)},domManip:function(e,t,n){e=d.apply([],e);var r,i,o,a,s,l,u=0,c=this.length,p=this,f=c-1,h=e[0],g=x.isFunction(h);if(g||!(1>=c||"string"!=typeof h||x.support.checkClone)&&Nt.test(h))return this.each(function(r){var i=p.eq(r);g&&(e[0]=h.call(this,r,i.html())),i.domManip(e,t,n)});if(c&&(l=x.buildFragment(e,this[0].ownerDocument,!1,!n&&this),r=l.firstChild,1===l.childNodes.length&&(l=r),r)){for(a=x.map(Ft(l,"script"),Ht),o=a.length;c>u;u++)i=l,u!==f&&(i=x.clone(i,!0,!0),o&&x.merge(a,Ft(i,"script"))),t.call(this[u],i,u);if(o)for(s=a[a.length-1].ownerDocument,x.map(a,qt),u=0;o>u;u++)i=a[u],kt.test(i.type||"")&&!x._data(i,"globalEval")&&x.contains(s,i)&&(i.src?x._evalUrl(i.src):x.globalEval((i.text||i.textContent||i.innerHTML||"").replace(St,"")));l=r=null}return this}});function Lt(e,t){return x.nodeName(e,"table")&&x.nodeName(1===t.nodeType?t:t.firstChild,"tr")?e.getElementsByTagName("tbody")[0]||e.appendChild(e.ownerDocument.createElement("tbody")):e}function Ht(e){return e.type=(null!==x.find.attr(e,"type"))+"/"+e.type,e}function qt(e){var t=Et.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function _t(e,t){var n,r=0;for(;null!=(n=e[r]);r++)x._data(n,"globalEval",!t||x._data(t[r],"globalEval"))}function Mt(e,t){if(1===t.nodeType&&x.hasData(e)){var n,r,i,o=x._data(e),a=x._data(t,o),s=o.events;if(s){delete a.handle,a.events={};for(n in s)for(r=0,i=s[n].length;i>r;r++)x.event.add(t,n,s[n][r])}a.data&&(a.data=x.extend({},a.data))}}function Ot(e,t){var n,r,i;if(1===t.nodeType){if(n=t.nodeName.toLowerCase(),!x.support.noCloneEvent&&t[x.expando]){i=x._data(t);for(r in i.events)x.removeEvent(t,r,i.handle);t.removeAttribute(x.expando)}"script"===n&&t.text!==e.text?(Ht(t).text=e.text,qt(t)):"object"===n?(t.parentNode&&(t.outerHTML=e.outerHTML),x.support.html5Clone&&e.innerHTML&&!x.trim(t.innerHTML)&&(t.innerHTML=e.innerHTML)):"input"===n&&Ct.test(e.type)?(t.defaultChecked=t.checked=e.checked,t.value!==e.value&&(t.value=e.value)):"option"===n?t.defaultSelected=t.selected=e.defaultSelected:("input"===n||"textarea"===n)&&(t.defaultValue=e.defaultValue)}}x.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,t){x.fn[e]=function(e){var n,r=0,i=[],o=x(e),a=o.length-1;for(;a>=r;r++)n=r===a?this:this.clone(!0),x(o[r])[t](n),h.apply(i,n.get());return this.pushStack(i)}});function Ft(e,n){var r,o,a=0,s=typeof e.getElementsByTagName!==i?e.getElementsByTagName(n||"*"):typeof e.querySelectorAll!==i?e.querySelectorAll(n||"*"):t;if(!s)for(s=[],r=e.childNodes||e;null!=(o=r[a]);a++)!n||x.nodeName(o,n)?s.push(o):x.merge(s,Ft(o,n));return n===t||n&&x.nodeName(e,n)?x.merge([e],s):s}function Bt(e){Ct.test(e.type)&&(e.defaultChecked=e.checked)}x.extend({clone:function(e,t,n){var r,i,o,a,s,l=x.contains(e.ownerDocument,e);if(x.support.html5Clone||x.isXMLDoc(e)||!mt.test("<"+e.nodeName+">")?o=e.cloneNode(!0):(Dt.innerHTML=e.outerHTML,Dt.removeChild(o=Dt.firstChild)),!(x.support.noCloneEvent&&x.support.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||x.isXMLDoc(e)))for(r=Ft(o),s=Ft(e),a=0;null!=(i=s[a]);++a)r[a]&&Ot(i,r[a]);if(t)if(n)for(s=s||Ft(e),r=r||Ft(o),a=0;null!=(i=s[a]);a++)Mt(i,r[a]);else Mt(e,o);return r=Ft(o,"script"),r.length>0&&_t(r,!l&&Ft(e,"script")),r=s=i=null,o},buildFragment:function(e,t,n,r){var i,o,a,s,l,u,c,p=e.length,f=dt(t),d=[],h=0;for(;p>h;h++)if(o=e[h],o||0===o)if("object"===x.type(o))x.merge(d,o.nodeType?[o]:o);else if(wt.test(o)){s=s||f.appendChild(t.createElement("div")),l=(bt.exec(o)||["",""])[1].toLowerCase(),c=At[l]||At._default,s.innerHTML=c[1]+o.replace(vt,"<$1></$2>")+c[2],i=c[0];while(i--)s=s.lastChild;if(!x.support.leadingWhitespace&&yt.test(o)&&d.push(t.createTextNode(yt.exec(o)[0])),!x.support.tbody){o="table"!==l||xt.test(o)?"<table>"!==c[1]||xt.test(o)?0:s:s.firstChild,i=o&&o.childNodes.length;while(i--)x.nodeName(u=o.childNodes[i],"tbody")&&!u.childNodes.length&&o.removeChild(u)}x.merge(d,s.childNodes),s.textContent="";while(s.firstChild)s.removeChild(s.firstChild);s=f.lastChild}else d.push(t.createTextNode(o));s&&f.removeChild(s),x.support.appendChecked||x.grep(Ft(d,"input"),Bt),h=0;while(o=d[h++])if((!r||-1===x.inArray(o,r))&&(a=x.contains(o.ownerDocument,o),s=Ft(f.appendChild(o),"script"),a&&_t(s),n)){i=0;while(o=s[i++])kt.test(o.type||"")&&n.push(o)}return s=null,f},cleanData:function(e,t){var n,r,o,a,s=0,l=x.expando,u=x.cache,c=x.support.deleteExpando,f=x.event.special;for(;null!=(n=e[s]);s++)if((t||x.acceptData(n))&&(o=n[l],a=o&&u[o])){if(a.events)for(r in a.events)f[r]?x.event.remove(n,r):x.removeEvent(n,r,a.handle); | ||
6 | u[o]&&(delete u[o],c?delete n[l]:typeof n.removeAttribute!==i?n.removeAttribute(l):n[l]=null,p.push(o))}},_evalUrl:function(e){return x.ajax({url:e,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0})}}),x.fn.extend({wrapAll:function(e){if(x.isFunction(e))return this.each(function(t){x(this).wrapAll(e.call(this,t))});if(this[0]){var t=x(e,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstChild&&1===e.firstChild.nodeType)e=e.firstChild;return e}).append(this)}return this},wrapInner:function(e){return x.isFunction(e)?this.each(function(t){x(this).wrapInner(e.call(this,t))}):this.each(function(){var t=x(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=x.isFunction(e);return this.each(function(n){x(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(){return this.parent().each(function(){x.nodeName(this,"body")||x(this).replaceWith(this.childNodes)}).end()}});var Pt,Rt,Wt,$t=/alpha\([^)]*\)/i,It=/opacity\s*=\s*([^)]*)/,zt=/^(top|right|bottom|left)$/,Xt=/^(none|table(?!-c[ea]).+)/,Ut=/^margin/,Vt=RegExp("^("+w+")(.*)$","i"),Yt=RegExp("^("+w+")(?!px)[a-z%]+$","i"),Jt=RegExp("^([+-])=("+w+")","i"),Gt={BODY:"block"},Qt={position:"absolute",visibility:"hidden",display:"block"},Kt={letterSpacing:0,fontWeight:400},Zt=["Top","Right","Bottom","Left"],en=["Webkit","O","Moz","ms"];function tn(e,t){if(t in e)return t;var n=t.charAt(0).toUpperCase()+t.slice(1),r=t,i=en.length;while(i--)if(t=en[i]+n,t in e)return t;return r}function nn(e,t){return e=t||e,"none"===x.css(e,"display")||!x.contains(e.ownerDocument,e)}function rn(e,t){var n,r,i,o=[],a=0,s=e.length;for(;s>a;a++)r=e[a],r.style&&(o[a]=x._data(r,"olddisplay"),n=r.style.display,t?(o[a]||"none"!==n||(r.style.display=""),""===r.style.display&&nn(r)&&(o[a]=x._data(r,"olddisplay",ln(r.nodeName)))):o[a]||(i=nn(r),(n&&"none"!==n||!i)&&x._data(r,"olddisplay",i?n:x.css(r,"display"))));for(a=0;s>a;a++)r=e[a],r.style&&(t&&"none"!==r.style.display&&""!==r.style.display||(r.style.display=t?o[a]||"":"none"));return e}x.fn.extend({css:function(e,n){return x.access(this,function(e,n,r){var i,o,a={},s=0;if(x.isArray(n)){for(o=Rt(e),i=n.length;i>s;s++)a[n[s]]=x.css(e,n[s],!1,o);return a}return r!==t?x.style(e,n,r):x.css(e,n)},e,n,arguments.length>1)},show:function(){return rn(this,!0)},hide:function(){return rn(this)},toggle:function(e){var t="boolean"==typeof e;return this.each(function(){(t?e:nn(this))?x(this).show():x(this).hide()})}}),x.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Wt(e,"opacity");return""===n?"1":n}}}},cssNumber:{columnCount:!0,fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":x.support.cssFloat?"cssFloat":"styleFloat"},style:function(e,n,r,i){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var o,a,s,l=x.camelCase(n),u=e.style;if(n=x.cssProps[l]||(x.cssProps[l]=tn(u,l)),s=x.cssHooks[n]||x.cssHooks[l],r===t)return s&&"get"in s&&(o=s.get(e,!1,i))!==t?o:u[n];if(a=typeof r,"string"===a&&(o=Jt.exec(r))&&(r=(o[1]+1)*o[2]+parseFloat(x.css(e,n)),a="number"),!(null==r||"number"===a&&isNaN(r)||("number"!==a||x.cssNumber[l]||(r+="px"),x.support.clearCloneStyle||""!==r||0!==n.indexOf("background")||(u[n]="inherit"),s&&"set"in s&&(r=s.set(e,r,i))===t)))try{u[n]=r}catch(c){}}},css:function(e,n,r,i){var o,a,s,l=x.camelCase(n);return n=x.cssProps[l]||(x.cssProps[l]=tn(e.style,l)),s=x.cssHooks[n]||x.cssHooks[l],s&&"get"in s&&(a=s.get(e,!0,r)),a===t&&(a=Wt(e,n,i)),"normal"===a&&n in Kt&&(a=Kt[n]),""===r||r?(o=parseFloat(a),r===!0||x.isNumeric(o)?o||0:a):a}}),e.getComputedStyle?(Rt=function(t){return e.getComputedStyle(t,null)},Wt=function(e,n,r){var i,o,a,s=r||Rt(e),l=s?s.getPropertyValue(n)||s[n]:t,u=e.style;return s&&(""!==l||x.contains(e.ownerDocument,e)||(l=x.style(e,n)),Yt.test(l)&&Ut.test(n)&&(i=u.width,o=u.minWidth,a=u.maxWidth,u.minWidth=u.maxWidth=u.width=l,l=s.width,u.width=i,u.minWidth=o,u.maxWidth=a)),l}):a.documentElement.currentStyle&&(Rt=function(e){return e.currentStyle},Wt=function(e,n,r){var i,o,a,s=r||Rt(e),l=s?s[n]:t,u=e.style;return null==l&&u&&u[n]&&(l=u[n]),Yt.test(l)&&!zt.test(n)&&(i=u.left,o=e.runtimeStyle,a=o&&o.left,a&&(o.left=e.currentStyle.left),u.left="fontSize"===n?"1em":l,l=u.pixelLeft+"px",u.left=i,a&&(o.left=a)),""===l?"auto":l});function on(e,t,n){var r=Vt.exec(t);return r?Math.max(0,r[1]-(n||0))+(r[2]||"px"):t}function an(e,t,n,r,i){var o=n===(r?"border":"content")?4:"width"===t?1:0,a=0;for(;4>o;o+=2)"margin"===n&&(a+=x.css(e,n+Zt[o],!0,i)),r?("content"===n&&(a-=x.css(e,"padding"+Zt[o],!0,i)),"margin"!==n&&(a-=x.css(e,"border"+Zt[o]+"Width",!0,i))):(a+=x.css(e,"padding"+Zt[o],!0,i),"padding"!==n&&(a+=x.css(e,"border"+Zt[o]+"Width",!0,i)));return a}function sn(e,t,n){var r=!0,i="width"===t?e.offsetWidth:e.offsetHeight,o=Rt(e),a=x.support.boxSizing&&"border-box"===x.css(e,"boxSizing",!1,o);if(0>=i||null==i){if(i=Wt(e,t,o),(0>i||null==i)&&(i=e.style[t]),Yt.test(i))return i;r=a&&(x.support.boxSizingReliable||i===e.style[t]),i=parseFloat(i)||0}return i+an(e,t,n||(a?"border":"content"),r,o)+"px"}function ln(e){var t=a,n=Gt[e];return n||(n=un(e,t),"none"!==n&&n||(Pt=(Pt||x("<iframe frameborder='0' width='0' height='0'/>").css("cssText","display:block !important")).appendTo(t.documentElement),t=(Pt[0].contentWindow||Pt[0].contentDocument).document,t.write("<!doctype html><html><body>"),t.close(),n=un(e,t),Pt.detach()),Gt[e]=n),n}function un(e,t){var n=x(t.createElement(e)).appendTo(t.body),r=x.css(n[0],"display");return n.remove(),r}x.each(["height","width"],function(e,n){x.cssHooks[n]={get:function(e,r,i){return r?0===e.offsetWidth&&Xt.test(x.css(e,"display"))?x.swap(e,Qt,function(){return sn(e,n,i)}):sn(e,n,i):t},set:function(e,t,r){var i=r&&Rt(e);return on(e,t,r?an(e,n,r,x.support.boxSizing&&"border-box"===x.css(e,"boxSizing",!1,i),i):0)}}}),x.support.opacity||(x.cssHooks.opacity={get:function(e,t){return It.test((t&&e.currentStyle?e.currentStyle.filter:e.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":t?"1":""},set:function(e,t){var n=e.style,r=e.currentStyle,i=x.isNumeric(t)?"alpha(opacity="+100*t+")":"",o=r&&r.filter||n.filter||"";n.zoom=1,(t>=1||""===t)&&""===x.trim(o.replace($t,""))&&n.removeAttribute&&(n.removeAttribute("filter"),""===t||r&&!r.filter)||(n.filter=$t.test(o)?o.replace($t,i):o+" "+i)}}),x(function(){x.support.reliableMarginRight||(x.cssHooks.marginRight={get:function(e,n){return n?x.swap(e,{display:"inline-block"},Wt,[e,"marginRight"]):t}}),!x.support.pixelPosition&&x.fn.position&&x.each(["top","left"],function(e,n){x.cssHooks[n]={get:function(e,r){return r?(r=Wt(e,n),Yt.test(r)?x(e).position()[n]+"px":r):t}}})}),x.expr&&x.expr.filters&&(x.expr.filters.hidden=function(e){return 0>=e.offsetWidth&&0>=e.offsetHeight||!x.support.reliableHiddenOffsets&&"none"===(e.style&&e.style.display||x.css(e,"display"))},x.expr.filters.visible=function(e){return!x.expr.filters.hidden(e)}),x.each({margin:"",padding:"",border:"Width"},function(e,t){x.cssHooks[e+t]={expand:function(n){var r=0,i={},o="string"==typeof n?n.split(" "):[n];for(;4>r;r++)i[e+Zt[r]+t]=o[r]||o[r-2]||o[0];return i}},Ut.test(e)||(x.cssHooks[e+t].set=on)});var cn=/%20/g,pn=/\[\]$/,fn=/\r?\n/g,dn=/^(?:submit|button|image|reset|file)$/i,hn=/^(?:input|select|textarea|keygen)/i;x.fn.extend({serialize:function(){return x.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=x.prop(this,"elements");return e?x.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!x(this).is(":disabled")&&hn.test(this.nodeName)&&!dn.test(e)&&(this.checked||!Ct.test(e))}).map(function(e,t){var n=x(this).val();return null==n?null:x.isArray(n)?x.map(n,function(e){return{name:t.name,value:e.replace(fn,"\r\n")}}):{name:t.name,value:n.replace(fn,"\r\n")}}).get()}}),x.param=function(e,n){var r,i=[],o=function(e,t){t=x.isFunction(t)?t():null==t?"":t,i[i.length]=encodeURIComponent(e)+"="+encodeURIComponent(t)};if(n===t&&(n=x.ajaxSettings&&x.ajaxSettings.traditional),x.isArray(e)||e.jquery&&!x.isPlainObject(e))x.each(e,function(){o(this.name,this.value)});else for(r in e)gn(r,e[r],n,o);return i.join("&").replace(cn,"+")};function gn(e,t,n,r){var i;if(x.isArray(t))x.each(t,function(t,i){n||pn.test(e)?r(e,i):gn(e+"["+("object"==typeof i?t:"")+"]",i,n,r)});else if(n||"object"!==x.type(t))r(e,t);else for(i in t)gn(e+"["+i+"]",t[i],n,r)}x.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(e,t){x.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}}),x.fn.extend({hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)},bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)}});var mn,yn,vn=x.now(),bn=/\?/,xn=/#.*$/,wn=/([?&])_=[^&]*/,Tn=/^(.*?):[ \t]*([^\r\n]*)\r?$/gm,Cn=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Nn=/^(?:GET|HEAD)$/,kn=/^\/\//,En=/^([\w.+-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,Sn=x.fn.load,An={},jn={},Dn="*/".concat("*");try{yn=o.href}catch(Ln){yn=a.createElement("a"),yn.href="",yn=yn.href}mn=En.exec(yn.toLowerCase())||[];function Hn(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,i=0,o=t.toLowerCase().match(T)||[];if(x.isFunction(n))while(r=o[i++])"+"===r[0]?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function qn(e,n,r,i){var o={},a=e===jn;function s(l){var u;return o[l]=!0,x.each(e[l]||[],function(e,l){var c=l(n,r,i);return"string"!=typeof c||a||o[c]?a?!(u=c):t:(n.dataTypes.unshift(c),s(c),!1)}),u}return s(n.dataTypes[0])||!o["*"]&&s("*")}function _n(e,n){var r,i,o=x.ajaxSettings.flatOptions||{};for(i in n)n[i]!==t&&((o[i]?e:r||(r={}))[i]=n[i]);return r&&x.extend(!0,e,r),e}x.fn.load=function(e,n,r){if("string"!=typeof e&&Sn)return Sn.apply(this,arguments);var i,o,a,s=this,l=e.indexOf(" ");return l>=0&&(i=e.slice(l,e.length),e=e.slice(0,l)),x.isFunction(n)?(r=n,n=t):n&&"object"==typeof n&&(a="POST"),s.length>0&&x.ajax({url:e,type:a,dataType:"html",data:n}).done(function(e){o=arguments,s.html(i?x("<div>").append(x.parseHTML(e)).find(i):e)}).complete(r&&function(e,t){s.each(r,o||[e.responseText,t,e])}),this},x.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){x.fn[t]=function(e){return this.on(t,e)}}),x.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:yn,type:"GET",isLocal:Cn.test(mn[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Dn,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":x.parseJSON,"text xml":x.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?_n(_n(e,x.ajaxSettings),t):_n(x.ajaxSettings,e)},ajaxPrefilter:Hn(An),ajaxTransport:Hn(jn),ajax:function(e,n){"object"==typeof e&&(n=e,e=t),n=n||{};var r,i,o,a,s,l,u,c,p=x.ajaxSetup({},n),f=p.context||p,d=p.context&&(f.nodeType||f.jquery)?x(f):x.event,h=x.Deferred(),g=x.Callbacks("once memory"),m=p.statusCode||{},y={},v={},b=0,w="canceled",C={readyState:0,getResponseHeader:function(e){var t;if(2===b){if(!c){c={};while(t=Tn.exec(a))c[t[1].toLowerCase()]=t[2]}t=c[e.toLowerCase()]}return null==t?null:t},getAllResponseHeaders:function(){return 2===b?a:null},setRequestHeader:function(e,t){var n=e.toLowerCase();return b||(e=v[n]=v[n]||e,y[e]=t),this},overrideMimeType:function(e){return b||(p.mimeType=e),this},statusCode:function(e){var t;if(e)if(2>b)for(t in e)m[t]=[m[t],e[t]];else C.always(e[C.status]);return this},abort:function(e){var t=e||w;return u&&u.abort(t),k(0,t),this}};if(h.promise(C).complete=g.add,C.success=C.done,C.error=C.fail,p.url=((e||p.url||yn)+"").replace(xn,"").replace(kn,mn[1]+"//"),p.type=n.method||n.type||p.method||p.type,p.dataTypes=x.trim(p.dataType||"*").toLowerCase().match(T)||[""],null==p.crossDomain&&(r=En.exec(p.url.toLowerCase()),p.crossDomain=!(!r||r[1]===mn[1]&&r[2]===mn[2]&&(r[3]||("http:"===r[1]?"80":"443"))===(mn[3]||("http:"===mn[1]?"80":"443")))),p.data&&p.processData&&"string"!=typeof p.data&&(p.data=x.param(p.data,p.traditional)),qn(An,p,n,C),2===b)return C;l=p.global,l&&0===x.active++&&x.event.trigger("ajaxStart"),p.type=p.type.toUpperCase(),p.hasContent=!Nn.test(p.type),o=p.url,p.hasContent||(p.data&&(o=p.url+=(bn.test(o)?"&":"?")+p.data,delete p.data),p.cache===!1&&(p.url=wn.test(o)?o.replace(wn,"$1_="+vn++):o+(bn.test(o)?"&":"?")+"_="+vn++)),p.ifModified&&(x.lastModified[o]&&C.setRequestHeader("If-Modified-Since",x.lastModified[o]),x.etag[o]&&C.setRequestHeader("If-None-Match",x.etag[o])),(p.data&&p.hasContent&&p.contentType!==!1||n.contentType)&&C.setRequestHeader("Content-Type",p.contentType),C.setRequestHeader("Accept",p.dataTypes[0]&&p.accepts[p.dataTypes[0]]?p.accepts[p.dataTypes[0]]+("*"!==p.dataTypes[0]?", "+Dn+"; q=0.01":""):p.accepts["*"]);for(i in p.headers)C.setRequestHeader(i,p.headers[i]);if(p.beforeSend&&(p.beforeSend.call(f,C,p)===!1||2===b))return C.abort();w="abort";for(i in{success:1,error:1,complete:1})C[i](p[i]);if(u=qn(jn,p,n,C)){C.readyState=1,l&&d.trigger("ajaxSend",[C,p]),p.async&&p.timeout>0&&(s=setTimeout(function(){C.abort("timeout")},p.timeout));try{b=1,u.send(y,k)}catch(N){if(!(2>b))throw N;k(-1,N)}}else k(-1,"No Transport");function k(e,n,r,i){var c,y,v,w,T,N=n;2!==b&&(b=2,s&&clearTimeout(s),u=t,a=i||"",C.readyState=e>0?4:0,c=e>=200&&300>e||304===e,r&&(w=Mn(p,C,r)),w=On(p,w,C,c),c?(p.ifModified&&(T=C.getResponseHeader("Last-Modified"),T&&(x.lastModified[o]=T),T=C.getResponseHeader("etag"),T&&(x.etag[o]=T)),204===e||"HEAD"===p.type?N="nocontent":304===e?N="notmodified":(N=w.state,y=w.data,v=w.error,c=!v)):(v=N,(e||!N)&&(N="error",0>e&&(e=0))),C.status=e,C.statusText=(n||N)+"",c?h.resolveWith(f,[y,N,C]):h.rejectWith(f,[C,N,v]),C.statusCode(m),m=t,l&&d.trigger(c?"ajaxSuccess":"ajaxError",[C,p,c?y:v]),g.fireWith(f,[C,N]),l&&(d.trigger("ajaxComplete",[C,p]),--x.active||x.event.trigger("ajaxStop")))}return C},getJSON:function(e,t,n){return x.get(e,t,n,"json")},getScript:function(e,n){return x.get(e,t,n,"script")}}),x.each(["get","post"],function(e,n){x[n]=function(e,r,i,o){return x.isFunction(r)&&(o=o||i,i=r,r=t),x.ajax({url:e,type:n,dataType:o,data:r,success:i})}});function Mn(e,n,r){var i,o,a,s,l=e.contents,u=e.dataTypes;while("*"===u[0])u.shift(),o===t&&(o=e.mimeType||n.getResponseHeader("Content-Type"));if(o)for(s in l)if(l[s]&&l[s].test(o)){u.unshift(s);break}if(u[0]in r)a=u[0];else{for(s in r){if(!u[0]||e.converters[s+" "+u[0]]){a=s;break}i||(i=s)}a=a||i}return a?(a!==u[0]&&u.unshift(a),r[a]):t}function On(e,t,n,r){var i,o,a,s,l,u={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)u[a.toLowerCase()]=e.converters[a];o=c.shift();while(o)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!l&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),l=o,o=c.shift())if("*"===o)o=l;else if("*"!==l&&l!==o){if(a=u[l+" "+o]||u["* "+o],!a)for(i in u)if(s=i.split(" "),s[1]===o&&(a=u[l+" "+s[0]]||u["* "+s[0]])){a===!0?a=u[i]:u[i]!==!0&&(o=s[0],c.unshift(s[1]));break}if(a!==!0)if(a&&e["throws"])t=a(t);else try{t=a(t)}catch(p){return{state:"parsererror",error:a?p:"No conversion from "+l+" to "+o}}}return{state:"success",data:t}}x.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(e){return x.globalEval(e),e}}}),x.ajaxPrefilter("script",function(e){e.cache===t&&(e.cache=!1),e.crossDomain&&(e.type="GET",e.global=!1)}),x.ajaxTransport("script",function(e){if(e.crossDomain){var n,r=a.head||x("head")[0]||a.documentElement;return{send:function(t,i){n=a.createElement("script"),n.async=!0,e.scriptCharset&&(n.charset=e.scriptCharset),n.src=e.url,n.onload=n.onreadystatechange=function(e,t){(t||!n.readyState||/loaded|complete/.test(n.readyState))&&(n.onload=n.onreadystatechange=null,n.parentNode&&n.parentNode.removeChild(n),n=null,t||i(200,"success"))},r.insertBefore(n,r.firstChild)},abort:function(){n&&n.onload(t,!0)}}}});var Fn=[],Bn=/(=)\?(?=&|$)|\?\?/;x.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Fn.pop()||x.expando+"_"+vn++;return this[e]=!0,e}}),x.ajaxPrefilter("json jsonp",function(n,r,i){var o,a,s,l=n.jsonp!==!1&&(Bn.test(n.url)?"url":"string"==typeof n.data&&!(n.contentType||"").indexOf("application/x-www-form-urlencoded")&&Bn.test(n.data)&&"data");return l||"jsonp"===n.dataTypes[0]?(o=n.jsonpCallback=x.isFunction(n.jsonpCallback)?n.jsonpCallback():n.jsonpCallback,l?n[l]=n[l].replace(Bn,"$1"+o):n.jsonp!==!1&&(n.url+=(bn.test(n.url)?"&":"?")+n.jsonp+"="+o),n.converters["script json"]=function(){return s||x.error(o+" was not called"),s[0]},n.dataTypes[0]="json",a=e[o],e[o]=function(){s=arguments},i.always(function(){e[o]=a,n[o]&&(n.jsonpCallback=r.jsonpCallback,Fn.push(o)),s&&x.isFunction(a)&&a(s[0]),s=a=t}),"script"):t});var Pn,Rn,Wn=0,$n=e.ActiveXObject&&function(){var e;for(e in Pn)Pn[e](t,!0)};function In(){try{return new e.XMLHttpRequest}catch(t){}}function zn(){try{return new e.ActiveXObject("Microsoft.XMLHTTP")}catch(t){}}x.ajaxSettings.xhr=e.ActiveXObject?function(){return!this.isLocal&&In()||zn()}:In,Rn=x.ajaxSettings.xhr(),x.support.cors=!!Rn&&"withCredentials"in Rn,Rn=x.support.ajax=!!Rn,Rn&&x.ajaxTransport(function(n){if(!n.crossDomain||x.support.cors){var r;return{send:function(i,o){var a,s,l=n.xhr();if(n.username?l.open(n.type,n.url,n.async,n.username,n.password):l.open(n.type,n.url,n.async),n.xhrFields)for(s in n.xhrFields)l[s]=n.xhrFields[s];n.mimeType&&l.overrideMimeType&&l.overrideMimeType(n.mimeType),n.crossDomain||i["X-Requested-With"]||(i["X-Requested-With"]="XMLHttpRequest");try{for(s in i)l.setRequestHeader(s,i[s])}catch(u){}l.send(n.hasContent&&n.data||null),r=function(e,i){var s,u,c,p;try{if(r&&(i||4===l.readyState))if(r=t,a&&(l.onreadystatechange=x.noop,$n&&delete Pn[a]),i)4!==l.readyState&&l.abort();else{p={},s=l.status,u=l.getAllResponseHeaders(),"string"==typeof l.responseText&&(p.text=l.responseText);try{c=l.statusText}catch(f){c=""}s||!n.isLocal||n.crossDomain?1223===s&&(s=204):s=p.text?200:404}}catch(d){i||o(-1,d)}p&&o(s,c,p,u)},n.async?4===l.readyState?setTimeout(r):(a=++Wn,$n&&(Pn||(Pn={},x(e).unload($n)),Pn[a]=r),l.onreadystatechange=r):r()},abort:function(){r&&r(t,!0)}}}});var Xn,Un,Vn=/^(?:toggle|show|hide)$/,Yn=RegExp("^(?:([+-])=|)("+w+")([a-z%]*)$","i"),Jn=/queueHooks$/,Gn=[nr],Qn={"*":[function(e,t){var n=this.createTween(e,t),r=n.cur(),i=Yn.exec(t),o=i&&i[3]||(x.cssNumber[e]?"":"px"),a=(x.cssNumber[e]||"px"!==o&&+r)&&Yn.exec(x.css(n.elem,e)),s=1,l=20;if(a&&a[3]!==o){o=o||a[3],i=i||[],a=+r||1;do s=s||".5",a/=s,x.style(n.elem,e,a+o);while(s!==(s=n.cur()/r)&&1!==s&&--l)}return i&&(a=n.start=+a||+r||0,n.unit=o,n.end=i[1]?a+(i[1]+1)*i[2]:+i[2]),n}]};function Kn(){return setTimeout(function(){Xn=t}),Xn=x.now()}function Zn(e,t,n){var r,i=(Qn[t]||[]).concat(Qn["*"]),o=0,a=i.length;for(;a>o;o++)if(r=i[o].call(n,t,e))return r}function er(e,t,n){var r,i,o=0,a=Gn.length,s=x.Deferred().always(function(){delete l.elem}),l=function(){if(i)return!1;var t=Xn||Kn(),n=Math.max(0,u.startTime+u.duration-t),r=n/u.duration||0,o=1-r,a=0,l=u.tweens.length;for(;l>a;a++)u.tweens[a].run(o);return s.notifyWith(e,[u,o,n]),1>o&&l?n:(s.resolveWith(e,[u]),!1)},u=s.promise({elem:e,props:x.extend({},t),opts:x.extend(!0,{specialEasing:{}},n),originalProperties:t,originalOptions:n,startTime:Xn||Kn(),duration:n.duration,tweens:[],createTween:function(t,n){var r=x.Tween(e,u.opts,t,n,u.opts.specialEasing[t]||u.opts.easing);return u.tweens.push(r),r},stop:function(t){var n=0,r=t?u.tweens.length:0;if(i)return this;for(i=!0;r>n;n++)u.tweens[n].run(1);return t?s.resolveWith(e,[u,t]):s.rejectWith(e,[u,t]),this}}),c=u.props;for(tr(c,u.opts.specialEasing);a>o;o++)if(r=Gn[o].call(u,e,c,u.opts))return r;return x.map(c,Zn,u),x.isFunction(u.opts.start)&&u.opts.start.call(e,u),x.fx.timer(x.extend(l,{elem:e,anim:u,queue:u.opts.queue})),u.progress(u.opts.progress).done(u.opts.done,u.opts.complete).fail(u.opts.fail).always(u.opts.always)}function tr(e,t){var n,r,i,o,a;for(n in e)if(r=x.camelCase(n),i=t[r],o=e[n],x.isArray(o)&&(i=o[1],o=e[n]=o[0]),n!==r&&(e[r]=o,delete e[n]),a=x.cssHooks[r],a&&"expand"in a){o=a.expand(o),delete e[r];for(n in o)n in e||(e[n]=o[n],t[n]=i)}else t[r]=i}x.Animation=x.extend(er,{tweener:function(e,t){x.isFunction(e)?(t=e,e=["*"]):e=e.split(" ");var n,r=0,i=e.length;for(;i>r;r++)n=e[r],Qn[n]=Qn[n]||[],Qn[n].unshift(t)},prefilter:function(e,t){t?Gn.unshift(e):Gn.push(e)}});function nr(e,t,n){var r,i,o,a,s,l,u=this,c={},p=e.style,f=e.nodeType&&nn(e),d=x._data(e,"fxshow");n.queue||(s=x._queueHooks(e,"fx"),null==s.unqueued&&(s.unqueued=0,l=s.empty.fire,s.empty.fire=function(){s.unqueued||l()}),s.unqueued++,u.always(function(){u.always(function(){s.unqueued--,x.queue(e,"fx").length||s.empty.fire()})})),1===e.nodeType&&("height"in t||"width"in t)&&(n.overflow=[p.overflow,p.overflowX,p.overflowY],"inline"===x.css(e,"display")&&"none"===x.css(e,"float")&&(x.support.inlineBlockNeedsLayout&&"inline"!==ln(e.nodeName)?p.zoom=1:p.display="inline-block")),n.overflow&&(p.overflow="hidden",x.support.shrinkWrapBlocks||u.always(function(){p.overflow=n.overflow[0],p.overflowX=n.overflow[1],p.overflowY=n.overflow[2]}));for(r in t)if(i=t[r],Vn.exec(i)){if(delete t[r],o=o||"toggle"===i,i===(f?"hide":"show"))continue;c[r]=d&&d[r]||x.style(e,r)}if(!x.isEmptyObject(c)){d?"hidden"in d&&(f=d.hidden):d=x._data(e,"fxshow",{}),o&&(d.hidden=!f),f?x(e).show():u.done(function(){x(e).hide()}),u.done(function(){var t;x._removeData(e,"fxshow");for(t in c)x.style(e,t,c[t])});for(r in c)a=Zn(f?d[r]:0,r,u),r in d||(d[r]=a.start,f&&(a.end=a.start,a.start="width"===r||"height"===r?1:0))}}function rr(e,t,n,r,i){return new rr.prototype.init(e,t,n,r,i)}x.Tween=rr,rr.prototype={constructor:rr,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||"swing",this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(x.cssNumber[n]?"":"px")},cur:function(){var e=rr.propHooks[this.prop];return e&&e.get?e.get(this):rr.propHooks._default.get(this)},run:function(e){var t,n=rr.propHooks[this.prop];return this.pos=t=this.options.duration?x.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):rr.propHooks._default.set(this),this}},rr.prototype.init.prototype=rr.prototype,rr.propHooks={_default:{get:function(e){var t;return null==e.elem[e.prop]||e.elem.style&&null!=e.elem.style[e.prop]?(t=x.css(e.elem,e.prop,""),t&&"auto"!==t?t:0):e.elem[e.prop]},set:function(e){x.fx.step[e.prop]?x.fx.step[e.prop](e):e.elem.style&&(null!=e.elem.style[x.cssProps[e.prop]]||x.cssHooks[e.prop])?x.style(e.elem,e.prop,e.now+e.unit):e.elem[e.prop]=e.now}}},rr.propHooks.scrollTop=rr.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},x.each(["toggle","show","hide"],function(e,t){var n=x.fn[t];x.fn[t]=function(e,r,i){return null==e||"boolean"==typeof e?n.apply(this,arguments):this.animate(ir(t,!0),e,r,i)}}),x.fn.extend({fadeTo:function(e,t,n,r){return this.filter(nn).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(e,t,n,r){var i=x.isEmptyObject(e),o=x.speed(t,n,r),a=function(){var t=er(this,x.extend({},e),o);(i||x._data(this,"finish"))&&t.stop(!0)};return a.finish=a,i||o.queue===!1?this.each(a):this.queue(o.queue,a)},stop:function(e,n,r){var i=function(e){var t=e.stop;delete e.stop,t(r)};return"string"!=typeof e&&(r=n,n=e,e=t),n&&e!==!1&&this.queue(e||"fx",[]),this.each(function(){var t=!0,n=null!=e&&e+"queueHooks",o=x.timers,a=x._data(this);if(n)a[n]&&a[n].stop&&i(a[n]);else for(n in a)a[n]&&a[n].stop&&Jn.test(n)&&i(a[n]);for(n=o.length;n--;)o[n].elem!==this||null!=e&&o[n].queue!==e||(o[n].anim.stop(r),t=!1,o.splice(n,1));(t||!r)&&x.dequeue(this,e)})},finish:function(e){return e!==!1&&(e=e||"fx"),this.each(function(){var t,n=x._data(this),r=n[e+"queue"],i=n[e+"queueHooks"],o=x.timers,a=r?r.length:0;for(n.finish=!0,x.queue(this,e,[]),i&&i.stop&&i.stop.call(this,!0),t=o.length;t--;)o[t].elem===this&&o[t].queue===e&&(o[t].anim.stop(!0),o.splice(t,1));for(t=0;a>t;t++)r[t]&&r[t].finish&&r[t].finish.call(this);delete n.finish})}});function ir(e,t){var n,r={height:e},i=0;for(t=t?1:0;4>i;i+=2-t)n=Zt[i],r["margin"+n]=r["padding"+n]=e;return t&&(r.opacity=r.width=e),r}x.each({slideDown:ir("show"),slideUp:ir("hide"),slideToggle:ir("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,t){x.fn[e]=function(e,n,r){return this.animate(t,e,n,r)}}),x.speed=function(e,t,n){var r=e&&"object"==typeof e?x.extend({},e):{complete:n||!n&&t||x.isFunction(e)&&e,duration:e,easing:n&&t||t&&!x.isFunction(t)&&t};return r.duration=x.fx.off?0:"number"==typeof r.duration?r.duration:r.duration in x.fx.speeds?x.fx.speeds[r.duration]:x.fx.speeds._default,(null==r.queue||r.queue===!0)&&(r.queue="fx"),r.old=r.complete,r.complete=function(){x.isFunction(r.old)&&r.old.call(this),r.queue&&x.dequeue(this,r.queue)},r},x.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2}},x.timers=[],x.fx=rr.prototype.init,x.fx.tick=function(){var e,n=x.timers,r=0;for(Xn=x.now();n.length>r;r++)e=n[r],e()||n[r]!==e||n.splice(r--,1);n.length||x.fx.stop(),Xn=t},x.fx.timer=function(e){e()&&x.timers.push(e)&&x.fx.start()},x.fx.interval=13,x.fx.start=function(){Un||(Un=setInterval(x.fx.tick,x.fx.interval))},x.fx.stop=function(){clearInterval(Un),Un=null},x.fx.speeds={slow:600,fast:200,_default:400},x.fx.step={},x.expr&&x.expr.filters&&(x.expr.filters.animated=function(e){return x.grep(x.timers,function(t){return e===t.elem}).length}),x.fn.offset=function(e){if(arguments.length)return e===t?this:this.each(function(t){x.offset.setOffset(this,e,t)});var n,r,o={top:0,left:0},a=this[0],s=a&&a.ownerDocument;if(s)return n=s.documentElement,x.contains(n,a)?(typeof a.getBoundingClientRect!==i&&(o=a.getBoundingClientRect()),r=or(s),{top:o.top+(r.pageYOffset||n.scrollTop)-(n.clientTop||0),left:o.left+(r.pageXOffset||n.scrollLeft)-(n.clientLeft||0)}):o},x.offset={setOffset:function(e,t,n){var r=x.css(e,"position");"static"===r&&(e.style.position="relative");var i=x(e),o=i.offset(),a=x.css(e,"top"),s=x.css(e,"left"),l=("absolute"===r||"fixed"===r)&&x.inArray("auto",[a,s])>-1,u={},c={},p,f;l?(c=i.position(),p=c.top,f=c.left):(p=parseFloat(a)||0,f=parseFloat(s)||0),x.isFunction(t)&&(t=t.call(e,n,o)),null!=t.top&&(u.top=t.top-o.top+p),null!=t.left&&(u.left=t.left-o.left+f),"using"in t?t.using.call(e,u):i.css(u)}},x.fn.extend({position:function(){if(this[0]){var e,t,n={top:0,left:0},r=this[0];return"fixed"===x.css(r,"position")?t=r.getBoundingClientRect():(e=this.offsetParent(),t=this.offset(),x.nodeName(e[0],"html")||(n=e.offset()),n.top+=x.css(e[0],"borderTopWidth",!0),n.left+=x.css(e[0],"borderLeftWidth",!0)),{top:t.top-n.top-x.css(r,"marginTop",!0),left:t.left-n.left-x.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent||s;while(e&&!x.nodeName(e,"html")&&"static"===x.css(e,"position"))e=e.offsetParent;return e||s})}}),x.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(e,n){var r=/Y/.test(n);x.fn[e]=function(i){return x.access(this,function(e,i,o){var a=or(e);return o===t?a?n in a?a[n]:a.document.documentElement[i]:e[i]:(a?a.scrollTo(r?x(a).scrollLeft():o,r?o:x(a).scrollTop()):e[i]=o,t)},e,i,arguments.length,null)}});function or(e){return x.isWindow(e)?e:9===e.nodeType?e.defaultView||e.parentWindow:!1}x.each({Height:"height",Width:"width"},function(e,n){x.each({padding:"inner"+e,content:n,"":"outer"+e},function(r,i){x.fn[i]=function(i,o){var a=arguments.length&&(r||"boolean"!=typeof i),s=r||(i===!0||o===!0?"margin":"border");return x.access(this,function(n,r,i){var o;return x.isWindow(n)?n.document.documentElement["client"+e]:9===n.nodeType?(o=n.documentElement,Math.max(n.body["scroll"+e],o["scroll"+e],n.body["offset"+e],o["offset"+e],o["client"+e])):i===t?x.css(n,r,s):x.style(n,r,i,s)},n,a?i:t,a,null)}})}),x.fn.size=function(){return this.length},x.fn.andSelf=x.fn.addBack,"object"==typeof module&&module&&"object"==typeof module.exports?module.exports=x:(e.jQuery=e.$=x,"function"==typeof define&&define.amd&&define("jquery",[],function(){return x}))})(window); |
js/respond.min.js
0 → 100644
1 | /*! matchMedia() polyfill - Test a CSS media type/query in JS. Authors & copyright (c) 2012: Scott Jehl, Paul Irish, Nicholas Zakas. Dual MIT/BSD license */ | ||
2 | /*! NOTE: If you're already including a window.matchMedia polyfill via Modernizr or otherwise, you don't need this part */ | ||
3 | window.matchMedia=window.matchMedia||function(a){"use strict";var c,d=a.documentElement,e=d.firstElementChild||d.firstChild,f=a.createElement("body"),g=a.createElement("div");return g.id="mq-test-1",g.style.cssText="position:absolute;top:-100em",f.style.background="none",f.appendChild(g),function(a){return g.innerHTML='­<style media="'+a+'"> #mq-test-1 { width: 42px; }</style>',d.insertBefore(f,e),c=42===g.offsetWidth,d.removeChild(f),{matches:c,media:a}}}(document); | ||
4 | |||
5 | /*! Respond.js v1.1.0: min/max-width media query polyfill. (c) Scott Jehl. MIT/GPLv2 Lic. j.mp/respondjs */ | ||
6 | (function(a){"use strict";function x(){u(!0)}var b={};if(a.respond=b,b.update=function(){},b.mediaQueriesSupported=a.matchMedia&&a.matchMedia("only all").matches,!b.mediaQueriesSupported){var q,r,t,c=a.document,d=c.documentElement,e=[],f=[],g=[],h={},i=30,j=c.getElementsByTagName("head")[0]||d,k=c.getElementsByTagName("base")[0],l=j.getElementsByTagName("link"),m=[],n=function(){for(var b=0;l.length>b;b++){var c=l[b],d=c.href,e=c.media,f=c.rel&&"stylesheet"===c.rel.toLowerCase();d&&f&&!h[d]&&(c.styleSheet&&c.styleSheet.rawCssText?(p(c.styleSheet.rawCssText,d,e),h[d]=!0):(!/^([a-zA-Z:]*\/\/)/.test(d)&&!k||d.replace(RegExp.$1,"").split("/")[0]===a.location.host)&&m.push({href:d,media:e}))}o()},o=function(){if(m.length){var b=m.shift();v(b.href,function(c){p(c,b.href,b.media),h[b.href]=!0,a.setTimeout(function(){o()},0)})}},p=function(a,b,c){var d=a.match(/@media[^\{]+\{([^\{\}]*\{[^\}\{]*\})+/gi),g=d&&d.length||0;b=b.substring(0,b.lastIndexOf("/"));var h=function(a){return a.replace(/(url\()['"]?([^\/\)'"][^:\)'"]+)['"]?(\))/g,"$1"+b+"$2$3")},i=!g&&c;b.length&&(b+="/"),i&&(g=1);for(var j=0;g>j;j++){var k,l,m,n;i?(k=c,f.push(h(a))):(k=d[j].match(/@media *([^\{]+)\{([\S\s]+?)$/)&&RegExp.$1,f.push(RegExp.$2&&h(RegExp.$2))),m=k.split(","),n=m.length;for(var o=0;n>o;o++)l=m[o],e.push({media:l.split("(")[0].match(/(only\s+)?([a-zA-Z]+)\s?/)&&RegExp.$2||"all",rules:f.length-1,hasquery:l.indexOf("(")>-1,minw:l.match(/\(\s*min\-width\s*:\s*(\s*[0-9\.]+)(px|em)\s*\)/)&&parseFloat(RegExp.$1)+(RegExp.$2||""),maxw:l.match(/\(\s*max\-width\s*:\s*(\s*[0-9\.]+)(px|em)\s*\)/)&&parseFloat(RegExp.$1)+(RegExp.$2||"")})}u()},s=function(){var a,b=c.createElement("div"),e=c.body,f=!1;return b.style.cssText="position:absolute;font-size:1em;width:1em",e||(e=f=c.createElement("body"),e.style.background="none"),e.appendChild(b),d.insertBefore(e,d.firstChild),a=b.offsetWidth,f?d.removeChild(e):e.removeChild(b),a=t=parseFloat(a)},u=function(b){var h="clientWidth",k=d[h],m="CSS1Compat"===c.compatMode&&k||c.body[h]||k,n={},o=l[l.length-1],p=(new Date).getTime();if(b&&q&&i>p-q)return a.clearTimeout(r),r=a.setTimeout(u,i),void 0;q=p;for(var v in e)if(e.hasOwnProperty(v)){var w=e[v],x=w.minw,y=w.maxw,z=null===x,A=null===y,B="em";x&&(x=parseFloat(x)*(x.indexOf(B)>-1?t||s():1)),y&&(y=parseFloat(y)*(y.indexOf(B)>-1?t||s():1)),w.hasquery&&(z&&A||!(z||m>=x)||!(A||y>=m))||(n[w.media]||(n[w.media]=[]),n[w.media].push(f[w.rules]))}for(var C in g)g.hasOwnProperty(C)&&g[C]&&g[C].parentNode===j&&j.removeChild(g[C]);for(var D in n)if(n.hasOwnProperty(D)){var E=c.createElement("style"),F=n[D].join("\n");E.type="text/css",E.media=D,j.insertBefore(E,o.nextSibling),E.styleSheet?E.styleSheet.cssText=F:E.appendChild(c.createTextNode(F)),g.push(E)}},v=function(a,b){var c=w();c&&(c.open("GET",a,!0),c.onreadystatechange=function(){4!==c.readyState||200!==c.status&&304!==c.status||b(c.responseText)},4!==c.readyState&&c.send(null))},w=function(){var b=!1;try{b=new a.XMLHttpRequest}catch(c){b=new a.ActiveXObject("Microsoft.XMLHTTP")}return function(){return b}}();n(),b.update=n,a.addEventListener?a.addEventListener("resize",x,!1):a.attachEvent&&a.attachEvent("onresize",x)}})(this); |
js/site.min.js
0 → 100644
This diff could not be displayed because it is too large.
package.json
0 → 100644
1 | { | ||
2 | "name": "Bootflat", | ||
3 | "private": false, | ||
4 | "version": "2.0.0", | ||
5 | "description": "BOOTFLAT is an open source Flat UI KIT based on Twitter Bootstrap 3.1.0 css framework. It provides a faster, easier and less repetitive way for web developers to create elegant web app.", | ||
6 | "author":"Flathemes", | ||
7 | "license": "MIT", | ||
8 | "devDependencies": { | ||
9 | "grunt": "~0.4.1", | ||
10 | "grunt-contrib-cssmin": "~0.7.0", | ||
11 | "grunt-contrib-copy": "~0.4.1", | ||
12 | "grunt-contrib-concat": "~0.3.0", | ||
13 | "grunt-contrib-uglify": "~0.2.4", | ||
14 | "grunt-contrib-jshint": "~0.6.4", | ||
15 | "grunt-contrib-sass": "~0.5.0", | ||
16 | "load-grunt-tasks": "~0.2.0" | ||
17 | } | ||
18 | } | ||
... | \ No newline at end of file | ... | \ No newline at end of file |
-
Please register or sign in to post a comment