├── .gitignore
├── README.md
├── css
├── demo.css
└── normalize.css
├── favicon.ico
├── fonts
├── codropsicons
│ ├── codropsicons.eot
│ ├── codropsicons.svg
│ ├── codropsicons.ttf
│ ├── codropsicons.woff
│ └── license.txt
└── font-awesome-4.3.0
│ ├── css
│ ├── font-awesome.css
│ └── font-awesome.min.css
│ └── fonts
│ ├── FontAwesome.otf
│ ├── fontawesome-webfont.eot
│ ├── fontawesome-webfont.svg
│ ├── fontawesome-webfont.ttf
│ ├── fontawesome-webfont.woff
│ └── fontawesome-webfont.woff2
├── img
├── drag.svg
├── drop_reset.svg
├── related
│ ├── DragDropInteractions.png
│ └── SVGDrawingAnimation.png
└── time.svg
├── index.html
└── js
├── classie.js
├── interact-1.2.4.min.js
├── main.js
└── modernizr.custom.js
/.gitignore:
--------------------------------------------------------------------------------
1 | *.DS_Store
2 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | Interactive Coloring Concept
2 | =========
3 |
4 | A fun experimental coloring concept where a color droplet can be dragged from a palette and dropped on designated areas in a website mockup.
5 |
6 | [Article on Codrops](http://tympanus.net/codrops/?p=23913)
7 |
8 | [Demo](http://tympanus.net/Development/InteractiveColoringConcept/)
9 |
10 | Integrate or build upon it for free in your personal or commercial projects. Don't republish, redistribute or sell "as-is".
11 |
12 | Read more here: [License](http://tympanus.net/codrops/licensing/)
13 |
14 | Follow us: [Twitter](http://www.twitter.com/codrops), [Facebook](http://www.facebook.com/pages/Codrops/159107397912), [Google+](https://plus.google.com/101095823814290637419), [GitHub](https://github.com/codrops), [Pinterest](http://www.pinterest.com/codrops/)
15 |
16 | [© Codrops 2015](http://www.codrops.com)
17 |
18 | Google Material Design Icons licensed under [Attribution 4.0 International](http://creativecommons.org/licenses/by/4.0/)
19 |
20 | Gesture icons made by [Yannick](http://yanlu.de "Yannick") from [www.flaticon.com](http://www.flaticon.com "Flaticon") is licensed under [CC BY 3.0](http://creativecommons.org/licenses/by/3.0/ "Creative Commons BY 3.0")
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/css/demo.css:
--------------------------------------------------------------------------------
1 | @import url(http://fonts.googleapis.com/css?family=Raleway:400,500,700);
2 |
3 | @font-face {
4 | font-weight: normal;
5 | font-style: normal;
6 | font-family: 'codropsicons';
7 | src:url('../fonts/codropsicons/codropsicons.eot');
8 | src:url('../fonts/codropsicons/codropsicons.eot?#iefix') format('embedded-opentype'),
9 | url('../fonts/codropsicons/codropsicons.woff') format('woff'),
10 | url('../fonts/codropsicons/codropsicons.ttf') format('truetype'),
11 | url('../fonts/codropsicons/codropsicons.svg#codropsicons') format('svg');
12 | }
13 |
14 | *, *:after, *:before { -webkit-box-sizing: border-box; box-sizing: border-box; }
15 | .clearfix:before, .clearfix:after {display: table; content: ''; }
16 | .clearfix:after { clear: both; }
17 |
18 | body {
19 | background: #525252;
20 | color: #fff;
21 | font-weight: 500;
22 | font-size: 1em;
23 | font-family: 'Raleway', Arial, sans-serif;
24 | }
25 |
26 | a {
27 | outline: none;
28 | color: #f2e0b1;
29 | text-decoration: none;
30 | }
31 |
32 | a:hover, a:focus {
33 | color: #fff;
34 | }
35 |
36 | button:focus {
37 | outline: none;
38 | }
39 |
40 | .hidden {
41 | position: absolute;
42 | overflow: hidden;
43 | width: 0;
44 | height: 0;
45 | pointer-events: none;
46 | }
47 |
48 | /* Header */
49 | .codrops-header {
50 | padding: 1.5em 1em;
51 | text-align: center;
52 | }
53 |
54 | .codrops-header h1 {
55 | margin: 0.5em 0 0 0;
56 | font-weight: 500;
57 | font-size: 2em;
58 | line-height: 1;
59 | }
60 |
61 | .codrops-header h1 span {
62 | display: block;
63 | padding: 1em;
64 | color: #999;
65 | font-weight: 700;
66 | font-size: 0.45em;
67 | }
68 |
69 | /* Top Navigation Style */
70 | .codrops-links {
71 | position: relative;
72 | display: inline-block;
73 | text-align: center;
74 | white-space: nowrap;
75 | font-size: 0.95em;
76 | }
77 |
78 | .codrops-links::after {
79 | position: absolute;
80 | top: 0;
81 | left: 50%;
82 | margin-left: -1px;
83 | width: 2px;
84 | height: 100%;
85 | background: #ddd;
86 | content: '';
87 | -webkit-transform: rotate3d(0,0,1,22.5deg);
88 | transform: rotate3d(0,0,1,22.5deg);
89 | }
90 |
91 | .codrops-icon {
92 | display: inline-block;
93 | margin: 0.5em;
94 | padding: 0em 0;
95 | width: 1.5em;
96 | text-decoration: none;
97 | }
98 |
99 | .codrops-icon span {
100 | display: none;
101 | }
102 |
103 | .codrops-icon:before {
104 | margin: 0 5px;
105 | text-transform: none;
106 | font-weight: normal;
107 | font-style: normal;
108 | font-variant: normal;
109 | font-family: 'codropsicons';
110 | line-height: 1;
111 | speak: none;
112 | -webkit-font-smoothing: antialiased;
113 | }
114 |
115 | .codrops-icon--drop:before {
116 | content: "\e001";
117 | }
118 |
119 | .codrops-icon--prev:before {
120 | content: "\e004";
121 | }
122 |
123 | /* Demo links */
124 | .codrops-demos {
125 | margin: 2em 0 0;
126 | }
127 |
128 | .codrops-demos a {
129 | display: inline-block;
130 | margin: 0 0.5em;
131 | }
132 |
133 | .codrops-demos a.current-demo {
134 | color: #333;
135 | }
136 |
137 | /* Content */
138 | .content {
139 | padding: 0 40px 1em 100px;
140 | }
141 |
142 | /* Mockup */
143 | .mockup-browser {
144 | position: relative;
145 | max-width: 1800px;
146 | margin: 0 auto;
147 | background: #fff;
148 | border-top: 30px solid #ACADAE;
149 | border-bottom: 20px solid #ACADAE;
150 | border-radius: 10px;
151 | color: #7B7B7F;
152 | -webkit-touch-callout: none;
153 | -webkit-user-select: none;
154 | -khtml-user-select: none;
155 | -moz-user-select: none;
156 | -ms-user-select: none;
157 | user-select: none;
158 | }
159 |
160 | .mockup-browser::before {
161 | content: '';
162 | position: absolute;
163 | top: -20px;
164 | left: 15px;
165 | width: 10px;
166 | height: 10px;
167 | border-radius: 50%;
168 | background: #fdb0ad;
169 | box-shadow: 20px 0 0 #fdeaa2, 40px 0 0 #d7edb4;
170 | }
171 |
172 | .mockup-header {
173 | padding: 2em 0;
174 | }
175 |
176 | .mockup-nav {
177 | padding: 0 10px;
178 | line-height: 2.25;
179 | }
180 |
181 | .mockup-nav span {
182 | font-weight: bold;
183 | display: inline-block;
184 | margin: 0 10px;
185 | }
186 |
187 | .mockup-logo {
188 | display: block;
189 | font-weight: bold;
190 | padding: 0 20px;
191 | font-size: 1.5em;
192 | line-height: 1.5;
193 | }
194 |
195 | .mockup-logo .fa {
196 | margin-right: 10px;
197 | }
198 |
199 | .mockup-section {
200 | padding: 80px 0;
201 | min-height: 400px;
202 | }
203 |
204 | .mockup-section--dark {
205 | background: #f4f4f4;
206 | }
207 |
208 | .mockup-content {
209 | max-width: 1100px;
210 | margin: 0 auto;
211 | padding: 0 2em;
212 | }
213 |
214 | .mockup-grid {
215 | display: -webkit-flex;
216 | display: flex;
217 | -webkit-flex-wrap: wrap;
218 | flex-wrap: wrap;
219 | }
220 |
221 | .mockup-grid--spread {
222 | -webkit-justify-content: space-between;
223 | justify-content: space-between;
224 | }
225 |
226 | .mockup-heading {
227 | width: 100%;
228 | margin: 0;
229 | }
230 |
231 | .mockup-heading__subline {
232 | display: block;
233 | font-size: 45%;
234 | margin: 25px 0 15px;
235 | }
236 |
237 | .mockup-heading--single {
238 | padding: 0 20px 1.5em;
239 | }
240 |
241 | .mockup-heading--box {
242 | background: #aaa;
243 | padding: 30px;
244 | color: #fff;
245 | }
246 |
247 | .mockup-heading--box > span {
248 | display: block;
249 | }
250 |
251 | .mockup-heading--large {
252 | font-size: 3.25em;
253 | }
254 |
255 | .mockup-grid__item {
256 | position: relative;
257 | float: left;
258 | width: 100%;
259 | margin: 0 0 30px;
260 | padding: 0 20px;
261 | }
262 |
263 | .mockup-blockquote {
264 | font-size: 2.25em;
265 | line-height: 1.5;
266 | text-align: center;
267 | padding: 0;
268 | margin: 0;
269 | }
270 |
271 | .mockup-blockquote p {
272 | padding: 1.5em 0 0.25em;
273 | margin: 0;
274 | }
275 |
276 | .mockup-blockquote p::before {
277 | content: '“';
278 | font-family: serif;
279 | font-size: 3em;
280 | line-height: 0;
281 | display: block;
282 | margin: 0 0 20px 0;
283 | }
284 |
285 | .mockup-blockquote p {
286 | margin: 0 0 30px 0;
287 | }
288 |
289 | .mockup-blockquote footer {
290 | font-size: 50%;
291 | }
292 |
293 | .mockup-blockquote footer::before {
294 | content: '\2015 ';
295 | }
296 |
297 | /* width classes */
298 |
299 | .mockup-width--half {
300 | width: 50%;
301 | }
302 |
303 | .mockup-width--third {
304 | width: 33%;
305 | }
306 |
307 | .mockup-width--forth {
308 | width: 25%;
309 | }
310 |
311 | .mockup-img {
312 | background: rgba(0,0,0,0.08);
313 | text-align: center;
314 | line-height: 200px;
315 | height: 200px;
316 | font-size: 40px;
317 | color: rgba(0, 0, 0, 0.1);
318 | }
319 |
320 | .mockup-img--large {
321 | height: 300px;
322 | line-height: 300px;
323 | }
324 |
325 | .mockup-grid__item > p {
326 | line-height: 1.65;
327 | margin: 0;
328 | }
329 |
330 | .mockup-caption > h3 {
331 | margin: 0;
332 | padding: 1em 0 0.5em;
333 | }
334 |
335 | .mockup-caption--box {
336 | background: rgba(181, 183, 188, 0.5);
337 | padding: 20px 20px 30px 20px;
338 | text-align: center;
339 | }
340 |
341 | .mockup-section--dark .mockup-caption--box {
342 | background: #fff;
343 | }
344 |
345 | .mockup-pricing {
346 | background: #fff;
347 | text-align: center;
348 | padding: 0 0 20px;
349 | }
350 |
351 | .mockup-bigtext {
352 | font-size: 3em;
353 | font-weight: bold;
354 | padding: 30px 0;
355 | }
356 |
357 | .mockup-list-wrap {
358 | background: #DBDBDB;
359 | margin: 0 0 15px 0;
360 | padding: 10px 0;
361 | }
362 |
363 | .mockup-list {
364 | list-style: none;
365 | padding: 0;
366 | margin: 0 20px;
367 | }
368 |
369 | .mockup-list li {
370 | padding: 10px;
371 | }
372 |
373 | .mockup-button {
374 | border: none;
375 | background: #A8A8A9;
376 | color: #fff;
377 | line-height: 1;
378 | text-transform: uppercase;
379 | letter-spacing: 2px;
380 | font-weight: bold;
381 | font-size: 0.85em;
382 | padding: 1.5em 2.5em;
383 | margin: 20px 0;
384 | white-space: nowrap;
385 | }
386 |
387 | .mockup-button .fa {
388 | margin-left: 10px;
389 | }
390 |
391 | /* Set element that can be painted to overflow hidden */
392 | .paint-area {
393 | overflow: hidden;
394 | position: relative;
395 | -webkit-transition: background 0.2s, color 0.2s;
396 | transition: background 0.2s, color 0.2s;
397 | }
398 |
399 | .paint--active.paint-area {
400 | -webkit-transition: none;
401 | transition: none;
402 | }
403 |
404 | .paint--active.paint-area--text {
405 | -webkit-transition: color 0.3s;
406 | transition: color 0.3s;
407 | }
408 |
409 | .paint-area.paint-area--highlight:not(.paint-area--text) {
410 | box-shadow: inset 0 0 0 3px rgb(133,125,255);
411 | }
412 |
413 | .paint-area--text.paint-area--highlight {
414 | text-shadow:
415 | -1px -1px 0 rgba(133,125,255,0.5),
416 | 1px -1px 0 rgba(133,125,255,0.5),
417 | -1px 1px 0 rgba(133,125,255,0.5),
418 | 1px 1px 0 rgba(133,125,255,0.5);
419 | }
420 |
421 | .paint-area * {
422 | position: relative;
423 | z-index: 10;
424 | cursor: default;
425 | }
426 |
427 | .paint {
428 | position: absolute;
429 | top: 0;
430 | left: 0;
431 | z-index: 0;
432 | }
433 |
434 | .paint circle {
435 | fill-opacity: 0;
436 | -webkit-transform: scale3d(0,0,1);
437 | transform: scale3d(0,0,1);
438 | -webkit-transition: -webkit-transform 0.8s, fill-opacity 0.4s;
439 | transition: transform 0.8s, fill-opacity 0.4s;
440 | -webkit-transition-timing-function: ease-out;
441 | transition-timing-function: ease-out;
442 | }
443 |
444 | .paint--active .paint circle {
445 | fill-opacity: 1;
446 | -webkit-transform: scale3d(1,1,1);
447 | transform: scale3d(1,1,1);
448 | }
449 |
450 | /* Customizer */
451 | .customizer {
452 | background: #444;
453 | position: fixed;
454 | top: 50%;
455 | left: 0;
456 | max-height: 100%;
457 | z-index: 10000;
458 | padding: 15px 10px;
459 | border-radius: 0 5px 5px 0;
460 | -webkit-transform: translate3d(0, -50%, 0);
461 | transform: translate3d(0, -50%, 0);
462 | }
463 |
464 | .color-tool {
465 | list-style: none;
466 | margin: 0;
467 | padding: 0;
468 | display: -webkit-flex;
469 | display: flex;
470 | -webkit-flex-direction: column;
471 | flex-direction: column;
472 | }
473 |
474 | .color-tool li {
475 | width: 30px;
476 | height: 30px;
477 | display: block;
478 | margin: 5px;
479 | }
480 |
481 | .color-1 { background: #333; color: #333;}
482 | .color-2 { background: #f0f0f0; color: #f0f0f0; }
483 | .color-3 { background: #c0c3d5; color: #c0c3d5; }
484 | .color-4 { background: #5FA1E0; color: #5FA1E0; }
485 | .color-5 { background: #c1d5c0; color: #c1d5c0; }
486 | .color-6 { background: #47AE73; color: #47AE73; }
487 | .color-7 { background: #eae7c4; color: #eae7c4; }
488 | .color-8 { background: #FB6964; color: #FB6964; }
489 |
490 | .drag-element {
491 | display: block;
492 | position: relative;
493 | width: 100%;
494 | height: 100%;
495 | }
496 |
497 | .drag-element:hover {
498 | cursor: move;
499 | cursor: -webkit-grab;
500 | cursor: grab;
501 | }
502 |
503 | .drag-element:active {
504 | cursor: -webkit-grabbing;
505 | cursor: grabbing;
506 | }
507 |
508 | .drop {
509 | width: 20px;
510 | height: 20px;
511 | top: 5px;
512 | left: 5px;
513 | position: absolute;
514 | border-radius: 80% 0 55% 50% / 55% 0 80% 50%;
515 | -webkit-transform: rotate3d(0,0,1,-45deg);
516 | transform: rotate3d(0,0,1,-45deg);
517 | }
518 |
519 | .drop-helper-1,
520 | .drop-helper-2,
521 | .drop-helper-3,
522 | .drop-helper-4 {
523 | position: absolute;
524 | display: block;
525 | width: 6px;
526 | height: 6px;
527 | bottom: -10px;
528 | left: 50%;
529 | margin-left: -3px;
530 | border-radius: 50%;
531 | pointer-events: none;
532 | opacity: 0;
533 | }
534 |
535 | .drop-helper-3,
536 | .drop-helper-4 {
537 | width: 10px;
538 | height: 10px;
539 | margin-left: -5px;
540 | }
541 |
542 | .drop-helper-1 {
543 | -webkit-transform-origin: -33px 50%;
544 | transform-origin: -33px 50%;
545 | }
546 |
547 | .drop-helper-2 {
548 | -webkit-transform-origin: 45px 50%;
549 | transform-origin: 45px 50%;
550 | }
551 |
552 | .drop-helper-3 {
553 | -webkit-transform-origin: -18px 50%;
554 | transform-origin: -18px 50%;
555 | }
556 |
557 | .drop-helper-4 {
558 | -webkit-transform-origin: 30px 50%;
559 | transform-origin: 30px 50%;
560 | }
561 |
562 | .drag-element--dropped .drop {
563 | -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
564 | transition: transform 0.2s, opacity 0.2s;
565 | -webkit-transition-timing-function: cubic-bezier(0.6,0.04,0.98,0.335);
566 | transition-timing-function: cubic-bezier(0.6,0.04,0.98,0.335);
567 | -webkit-transform: translate3d(0,25px,0) rotate3d(0,0,1,-45deg) scale3d(0.2,0.2,1);
568 | transform: translate3d(0,25px,0) rotate3d(0,0,1,-45deg) scale3d(0.2,0.2,1);
569 | opacity: 0;
570 | }
571 |
572 | .drag-element--dropped .drop-helper-1,
573 | .drag-element--dropped .drop-helper-3 {
574 | -webkit-animation: drop-anim-1 0.3s ease-out 0.15s forwards;
575 | animation: drop-anim-1 0.3s ease-out 0.15s forwards;
576 | }
577 |
578 | .drag-element--dropped .drop-helper-2,
579 | .drag-element--dropped .drop-helper-4 {
580 | -webkit-animation: drop-anim-2 0.3s ease-out 0.15s forwards;
581 | animation: drop-anim-2 0.3s ease-out 0.15s forwards;
582 | }
583 |
584 | .drag-element--dropped .drop-helper-4 {
585 | -webkit-animation-duration: 0.2s;
586 | animation-duration: 0.2s;
587 | }
588 |
589 | @-webkit-keyframes drop-anim-1 {
590 | 0% {
591 | -webkit-transform: rotate3d(0,0,1,5deg);
592 | transform: rotate3d(0,0,1,5deg);
593 | opacity: 0;
594 | }
595 | 50% {
596 | opacity: 0.5;
597 | }
598 | 100% {
599 | -webkit-transform: rotate3d(0,0,1,-90deg);
600 | transform: rotate3d(0,0,1,-90deg);
601 | opacity: 0;
602 | }
603 | }
604 |
605 | @keyframes drop-anim-1 {
606 | 0% {
607 | -webkit-transform: rotate3d(0,0,1,5deg);
608 | transform: rotate3d(0,0,1,5deg);
609 | opacity: 0;
610 | }
611 | 50% {
612 | opacity: 0.5;
613 | }
614 | 100% {
615 | -webkit-transform: rotate3d(0,0,1,-90deg);
616 | transform: rotate3d(0,0,1,-90deg);
617 | opacity: 0;
618 | }
619 | }
620 |
621 | @-webkit-keyframes drop-anim-2 {
622 | 0% {
623 | -webkit-transform: rotate3d(0,0,1,-5deg);
624 | transform: rotate3d(0,0,1,-5deg);
625 | opacity: 0;
626 | }
627 | 50% {
628 | opacity: 0.5;
629 | }
630 | 100% {
631 | -webkit-transform: rotate3d(0,0,1,90deg);
632 | transform: rotate3d(0,0,1,90deg);
633 | opacity: 0;
634 | }
635 | }
636 |
637 | @keyframes drop-anim-2 {
638 | 0% {
639 | -webkit-transform: rotate3d(0,0,1,-5deg);
640 | transform: rotate3d(0,0,1,-5deg);
641 | opacity: 0;
642 | }
643 | 50% {
644 | opacity: 0.5;
645 | }
646 | 100% {
647 | -webkit-transform: rotate3d(0,0,1,90deg);
648 | transform: rotate3d(0,0,1,90deg);
649 | opacity: 0;
650 | }
651 | }
652 |
653 | .drag-element--dropped-text .drop {
654 | -webkit-transition: opacity 0.3s;
655 | transition: opacity 0.3s;
656 | opacity: 0;
657 | }
658 |
659 | .reset-button {
660 | background: none;
661 | padding: 0;
662 | margin: 0;
663 | border: none;
664 | width: 30px;
665 | height: 30px;
666 | margin: 0;
667 | color: transparent;
668 | font-size: 0px;
669 | background: url(../img/drop_reset.svg) no-repeat center center;
670 | background-size: 100%;
671 | }
672 |
673 | /* Related demos */
674 | .content--related {
675 | text-align: center;
676 | font-weight: bold;
677 | }
678 |
679 | .media-item {
680 | display: inline-block;
681 | padding: 1em;
682 | vertical-align: top;
683 | -webkit-transition: color 0.3s;
684 | transition: color 0.3s;
685 | }
686 |
687 | .media-item__img {
688 | max-width: 100%;
689 | opacity: 0.3;
690 | -webkit-transition: opacity 0.3s;
691 | transition: opacity 0.3s;
692 | }
693 |
694 | .media-item:hover .media-item__img,
695 | .media-item:focus .media-item__img {
696 | opacity: 1;
697 | }
698 |
699 | .media-item__title {
700 | margin: 0;
701 | padding: 0.5em;
702 | font-size: 1em;
703 | }
704 |
705 | .info-wrap {
706 | position: fixed;
707 | width: 100%;
708 | height: 100%;
709 | top: 0;
710 | left: 0;
711 | display: -webkit-flex;
712 | display: flex;
713 | -webkit-align-items: center;
714 | align-items: center;
715 | -webkit-justify-content: center;
716 | justify-content: center;
717 | background: rgba(0,0,0,0.7);
718 | z-index: 999999;
719 | font-family: "Avenir", "Helvetica Neue", Arial, sans-serif;
720 | }
721 |
722 | .info {
723 | width: 90%;
724 | max-width: 500px;
725 | background: #333;
726 | padding: 2.5em 2em;
727 | font-size: 15px;
728 | line-height: 1.5;
729 | text-align: center;
730 | box-shadow: 0 0 30px rgba(0,0,0,0.2);
731 | }
732 |
733 | .info h3 {
734 | margin: 0;
735 | font-size: 1.5em;
736 | }
737 |
738 | .info img {
739 | width: 52px;
740 | height: 52px;
741 | display: block;
742 | margin: 0 auto 20px;
743 | }
744 |
745 | .info-close {
746 | border: 3px solid #fff;
747 | color: #fff;
748 | background: none;
749 | text-transform: uppercase;
750 | font-weight: bold;
751 | padding: 1em 2em;
752 | letter-spacing: 1px;
753 | margin: 1em 0 0 0;
754 | }
755 |
756 | @media screen and (max-width: 70em) {
757 | .mockup-width--forth {
758 | width: 50%;
759 | }
760 | }
761 |
762 | @media screen and (max-width: 60em) {
763 | .mockup-width--third {
764 | width: 100%;
765 | }
766 | }
767 |
768 | @media screen and (max-width: 50em) {
769 | body {
770 | padding-top: 100px;
771 | }
772 | .customizer {
773 | top: 0;
774 | width: 100%;
775 | height: auto;
776 | padding: 30px 0;
777 | -webkit-transform: none;
778 | transform: none;
779 | border-radius: 0;
780 | }
781 | .color-tool {
782 | -webkit-flex-direction: row;
783 | flex-direction: row;
784 | -webkit-justify-content: center;
785 | justify-content: center;
786 | }
787 | .color-tool li {
788 | margin: 3px;
789 | }
790 | .content {
791 | padding: 1em 0;
792 | }
793 | .mockup-section {
794 | padding: 40px 0;
795 | }
796 | .mockup-content {
797 | padding: 0 10px;
798 | }
799 | .mockup-width--forth,
800 | .mockup-width--half {
801 | width: 100%;
802 | }
803 | .mockup-logo,
804 | .mockup-nav {
805 | width: 100%;
806 | text-align: center;
807 | }
808 | .mockup-nav {
809 | line-height: 1.5;
810 | padding: 20px 0 0;
811 | }
812 | .mockup-heading--large {
813 | font-size: 2.25em;
814 | }
815 | .mockup-blockquote {
816 | font-size: 1.5em;
817 | }
818 | }
819 |
820 |
821 |
--------------------------------------------------------------------------------
/css/normalize.css:
--------------------------------------------------------------------------------
1 | article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block;}audio,canvas,video{display:inline-block;}audio:not([controls]){display:none;height:0;}[hidden]{display:none;}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;}body{margin:0;}a:focus{outline:thin dotted;}a:active,a:hover{outline:0;}h1{font-size:2em;margin:0.67em 0;}abbr[title]{border-bottom:1px dotted;}b,strong{font-weight:bold;}dfn{font-style:italic;}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0;}mark{background:#ff0;color:#000;}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em;}pre{white-space:pre-wrap;}q{quotes:"\201C" "\201D" "\2018" "\2019";}small{font-size:80%;}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;}sup{top:-0.5em;}sub{bottom:-0.25em;}img{border:0;}svg:not(:root){overflow:hidden;}figure{margin:0;}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em;}legend{border:0;padding:0;}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0;}button,input{line-height:normal;}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;}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0;}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;}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0;}textarea{overflow:auto;vertical-align:top;}table{border-collapse:collapse;border-spacing:0;}
--------------------------------------------------------------------------------
/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codrops/InteractiveColoringConcept/92cc1956c0047091863c3e021dd2f8f9733300e1/favicon.ico
--------------------------------------------------------------------------------
/fonts/codropsicons/codropsicons.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codrops/InteractiveColoringConcept/92cc1956c0047091863c3e021dd2f8f9733300e1/fonts/codropsicons/codropsicons.eot
--------------------------------------------------------------------------------
/fonts/codropsicons/codropsicons.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | This is a custom SVG font generated by IcoMoon.
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
17 |
18 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/fonts/codropsicons/codropsicons.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codrops/InteractiveColoringConcept/92cc1956c0047091863c3e021dd2f8f9733300e1/fonts/codropsicons/codropsicons.ttf
--------------------------------------------------------------------------------
/fonts/codropsicons/codropsicons.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codrops/InteractiveColoringConcept/92cc1956c0047091863c3e021dd2f8f9733300e1/fonts/codropsicons/codropsicons.woff
--------------------------------------------------------------------------------
/fonts/codropsicons/license.txt:
--------------------------------------------------------------------------------
1 | Icon Set: Font Awesome -- http://fortawesome.github.com/Font-Awesome/
2 | License: SIL -- http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL
3 |
4 |
5 | Icon Set: Eco Ico -- http://dribbble.com/shots/665585-Eco-Ico
6 | License: CC0 -- http://creativecommons.org/publicdomain/zero/1.0/
--------------------------------------------------------------------------------
/fonts/font-awesome-4.3.0/css/font-awesome.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome
3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4 | */
5 | /* FONT PATH
6 | * -------------------------- */
7 | @font-face {
8 | font-family: 'FontAwesome';
9 | src: url('../fonts/fontawesome-webfont.eot?v=4.3.0');
10 | src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.3.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.3.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.3.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg');
11 | font-weight: normal;
12 | font-style: normal;
13 | }
14 | .fa {
15 | display: inline-block;
16 | font: normal normal normal 14px/1 FontAwesome;
17 | font-size: inherit;
18 | text-rendering: auto;
19 | -webkit-font-smoothing: antialiased;
20 | -moz-osx-font-smoothing: grayscale;
21 | transform: translate(0, 0);
22 | }
23 | /* makes the font 33% larger relative to the icon container */
24 | .fa-lg {
25 | font-size: 1.33333333em;
26 | line-height: 0.75em;
27 | vertical-align: -15%;
28 | }
29 | .fa-2x {
30 | font-size: 2em;
31 | }
32 | .fa-3x {
33 | font-size: 3em;
34 | }
35 | .fa-4x {
36 | font-size: 4em;
37 | }
38 | .fa-5x {
39 | font-size: 5em;
40 | }
41 | .fa-fw {
42 | width: 1.28571429em;
43 | text-align: center;
44 | }
45 | .fa-ul {
46 | padding-left: 0;
47 | margin-left: 2.14285714em;
48 | list-style-type: none;
49 | }
50 | .fa-ul > li {
51 | position: relative;
52 | }
53 | .fa-li {
54 | position: absolute;
55 | left: -2.14285714em;
56 | width: 2.14285714em;
57 | top: 0.14285714em;
58 | text-align: center;
59 | }
60 | .fa-li.fa-lg {
61 | left: -1.85714286em;
62 | }
63 | .fa-border {
64 | padding: .2em .25em .15em;
65 | border: solid 0.08em #eeeeee;
66 | border-radius: .1em;
67 | }
68 | .pull-right {
69 | float: right;
70 | }
71 | .pull-left {
72 | float: left;
73 | }
74 | .fa.pull-left {
75 | margin-right: .3em;
76 | }
77 | .fa.pull-right {
78 | margin-left: .3em;
79 | }
80 | .fa-spin {
81 | -webkit-animation: fa-spin 2s infinite linear;
82 | animation: fa-spin 2s infinite linear;
83 | }
84 | .fa-pulse {
85 | -webkit-animation: fa-spin 1s infinite steps(8);
86 | animation: fa-spin 1s infinite steps(8);
87 | }
88 | @-webkit-keyframes fa-spin {
89 | 0% {
90 | -webkit-transform: rotate(0deg);
91 | transform: rotate(0deg);
92 | }
93 | 100% {
94 | -webkit-transform: rotate(359deg);
95 | transform: rotate(359deg);
96 | }
97 | }
98 | @keyframes fa-spin {
99 | 0% {
100 | -webkit-transform: rotate(0deg);
101 | transform: rotate(0deg);
102 | }
103 | 100% {
104 | -webkit-transform: rotate(359deg);
105 | transform: rotate(359deg);
106 | }
107 | }
108 | .fa-rotate-90 {
109 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
110 | -webkit-transform: rotate(90deg);
111 | -ms-transform: rotate(90deg);
112 | transform: rotate(90deg);
113 | }
114 | .fa-rotate-180 {
115 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
116 | -webkit-transform: rotate(180deg);
117 | -ms-transform: rotate(180deg);
118 | transform: rotate(180deg);
119 | }
120 | .fa-rotate-270 {
121 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
122 | -webkit-transform: rotate(270deg);
123 | -ms-transform: rotate(270deg);
124 | transform: rotate(270deg);
125 | }
126 | .fa-flip-horizontal {
127 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
128 | -webkit-transform: scale(-1, 1);
129 | -ms-transform: scale(-1, 1);
130 | transform: scale(-1, 1);
131 | }
132 | .fa-flip-vertical {
133 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
134 | -webkit-transform: scale(1, -1);
135 | -ms-transform: scale(1, -1);
136 | transform: scale(1, -1);
137 | }
138 | :root .fa-rotate-90,
139 | :root .fa-rotate-180,
140 | :root .fa-rotate-270,
141 | :root .fa-flip-horizontal,
142 | :root .fa-flip-vertical {
143 | filter: none;
144 | }
145 | .fa-stack {
146 | position: relative;
147 | display: inline-block;
148 | width: 2em;
149 | height: 2em;
150 | line-height: 2em;
151 | vertical-align: middle;
152 | }
153 | .fa-stack-1x,
154 | .fa-stack-2x {
155 | position: absolute;
156 | left: 0;
157 | width: 100%;
158 | text-align: center;
159 | }
160 | .fa-stack-1x {
161 | line-height: inherit;
162 | }
163 | .fa-stack-2x {
164 | font-size: 2em;
165 | }
166 | .fa-inverse {
167 | color: #ffffff;
168 | }
169 | /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
170 | readers do not read off random characters that represent icons */
171 | .fa-glass:before {
172 | content: "\f000";
173 | }
174 | .fa-music:before {
175 | content: "\f001";
176 | }
177 | .fa-search:before {
178 | content: "\f002";
179 | }
180 | .fa-envelope-o:before {
181 | content: "\f003";
182 | }
183 | .fa-heart:before {
184 | content: "\f004";
185 | }
186 | .fa-star:before {
187 | content: "\f005";
188 | }
189 | .fa-star-o:before {
190 | content: "\f006";
191 | }
192 | .fa-user:before {
193 | content: "\f007";
194 | }
195 | .fa-film:before {
196 | content: "\f008";
197 | }
198 | .fa-th-large:before {
199 | content: "\f009";
200 | }
201 | .fa-th:before {
202 | content: "\f00a";
203 | }
204 | .fa-th-list:before {
205 | content: "\f00b";
206 | }
207 | .fa-check:before {
208 | content: "\f00c";
209 | }
210 | .fa-remove:before,
211 | .fa-close:before,
212 | .fa-times:before {
213 | content: "\f00d";
214 | }
215 | .fa-search-plus:before {
216 | content: "\f00e";
217 | }
218 | .fa-search-minus:before {
219 | content: "\f010";
220 | }
221 | .fa-power-off:before {
222 | content: "\f011";
223 | }
224 | .fa-signal:before {
225 | content: "\f012";
226 | }
227 | .fa-gear:before,
228 | .fa-cog:before {
229 | content: "\f013";
230 | }
231 | .fa-trash-o:before {
232 | content: "\f014";
233 | }
234 | .fa-home:before {
235 | content: "\f015";
236 | }
237 | .fa-file-o:before {
238 | content: "\f016";
239 | }
240 | .fa-clock-o:before {
241 | content: "\f017";
242 | }
243 | .fa-road:before {
244 | content: "\f018";
245 | }
246 | .fa-download:before {
247 | content: "\f019";
248 | }
249 | .fa-arrow-circle-o-down:before {
250 | content: "\f01a";
251 | }
252 | .fa-arrow-circle-o-up:before {
253 | content: "\f01b";
254 | }
255 | .fa-inbox:before {
256 | content: "\f01c";
257 | }
258 | .fa-play-circle-o:before {
259 | content: "\f01d";
260 | }
261 | .fa-rotate-right:before,
262 | .fa-repeat:before {
263 | content: "\f01e";
264 | }
265 | .fa-refresh:before {
266 | content: "\f021";
267 | }
268 | .fa-list-alt:before {
269 | content: "\f022";
270 | }
271 | .fa-lock:before {
272 | content: "\f023";
273 | }
274 | .fa-flag:before {
275 | content: "\f024";
276 | }
277 | .fa-headphones:before {
278 | content: "\f025";
279 | }
280 | .fa-volume-off:before {
281 | content: "\f026";
282 | }
283 | .fa-volume-down:before {
284 | content: "\f027";
285 | }
286 | .fa-volume-up:before {
287 | content: "\f028";
288 | }
289 | .fa-qrcode:before {
290 | content: "\f029";
291 | }
292 | .fa-barcode:before {
293 | content: "\f02a";
294 | }
295 | .fa-tag:before {
296 | content: "\f02b";
297 | }
298 | .fa-tags:before {
299 | content: "\f02c";
300 | }
301 | .fa-book:before {
302 | content: "\f02d";
303 | }
304 | .fa-bookmark:before {
305 | content: "\f02e";
306 | }
307 | .fa-print:before {
308 | content: "\f02f";
309 | }
310 | .fa-camera:before {
311 | content: "\f030";
312 | }
313 | .fa-font:before {
314 | content: "\f031";
315 | }
316 | .fa-bold:before {
317 | content: "\f032";
318 | }
319 | .fa-italic:before {
320 | content: "\f033";
321 | }
322 | .fa-text-height:before {
323 | content: "\f034";
324 | }
325 | .fa-text-width:before {
326 | content: "\f035";
327 | }
328 | .fa-align-left:before {
329 | content: "\f036";
330 | }
331 | .fa-align-center:before {
332 | content: "\f037";
333 | }
334 | .fa-align-right:before {
335 | content: "\f038";
336 | }
337 | .fa-align-justify:before {
338 | content: "\f039";
339 | }
340 | .fa-list:before {
341 | content: "\f03a";
342 | }
343 | .fa-dedent:before,
344 | .fa-outdent:before {
345 | content: "\f03b";
346 | }
347 | .fa-indent:before {
348 | content: "\f03c";
349 | }
350 | .fa-video-camera:before {
351 | content: "\f03d";
352 | }
353 | .fa-photo:before,
354 | .fa-image:before,
355 | .fa-picture-o:before {
356 | content: "\f03e";
357 | }
358 | .fa-pencil:before {
359 | content: "\f040";
360 | }
361 | .fa-map-marker:before {
362 | content: "\f041";
363 | }
364 | .fa-adjust:before {
365 | content: "\f042";
366 | }
367 | .fa-tint:before {
368 | content: "\f043";
369 | }
370 | .fa-edit:before,
371 | .fa-pencil-square-o:before {
372 | content: "\f044";
373 | }
374 | .fa-share-square-o:before {
375 | content: "\f045";
376 | }
377 | .fa-check-square-o:before {
378 | content: "\f046";
379 | }
380 | .fa-arrows:before {
381 | content: "\f047";
382 | }
383 | .fa-step-backward:before {
384 | content: "\f048";
385 | }
386 | .fa-fast-backward:before {
387 | content: "\f049";
388 | }
389 | .fa-backward:before {
390 | content: "\f04a";
391 | }
392 | .fa-play:before {
393 | content: "\f04b";
394 | }
395 | .fa-pause:before {
396 | content: "\f04c";
397 | }
398 | .fa-stop:before {
399 | content: "\f04d";
400 | }
401 | .fa-forward:before {
402 | content: "\f04e";
403 | }
404 | .fa-fast-forward:before {
405 | content: "\f050";
406 | }
407 | .fa-step-forward:before {
408 | content: "\f051";
409 | }
410 | .fa-eject:before {
411 | content: "\f052";
412 | }
413 | .fa-chevron-left:before {
414 | content: "\f053";
415 | }
416 | .fa-chevron-right:before {
417 | content: "\f054";
418 | }
419 | .fa-plus-circle:before {
420 | content: "\f055";
421 | }
422 | .fa-minus-circle:before {
423 | content: "\f056";
424 | }
425 | .fa-times-circle:before {
426 | content: "\f057";
427 | }
428 | .fa-check-circle:before {
429 | content: "\f058";
430 | }
431 | .fa-question-circle:before {
432 | content: "\f059";
433 | }
434 | .fa-info-circle:before {
435 | content: "\f05a";
436 | }
437 | .fa-crosshairs:before {
438 | content: "\f05b";
439 | }
440 | .fa-times-circle-o:before {
441 | content: "\f05c";
442 | }
443 | .fa-check-circle-o:before {
444 | content: "\f05d";
445 | }
446 | .fa-ban:before {
447 | content: "\f05e";
448 | }
449 | .fa-arrow-left:before {
450 | content: "\f060";
451 | }
452 | .fa-arrow-right:before {
453 | content: "\f061";
454 | }
455 | .fa-arrow-up:before {
456 | content: "\f062";
457 | }
458 | .fa-arrow-down:before {
459 | content: "\f063";
460 | }
461 | .fa-mail-forward:before,
462 | .fa-share:before {
463 | content: "\f064";
464 | }
465 | .fa-expand:before {
466 | content: "\f065";
467 | }
468 | .fa-compress:before {
469 | content: "\f066";
470 | }
471 | .fa-plus:before {
472 | content: "\f067";
473 | }
474 | .fa-minus:before {
475 | content: "\f068";
476 | }
477 | .fa-asterisk:before {
478 | content: "\f069";
479 | }
480 | .fa-exclamation-circle:before {
481 | content: "\f06a";
482 | }
483 | .fa-gift:before {
484 | content: "\f06b";
485 | }
486 | .fa-leaf:before {
487 | content: "\f06c";
488 | }
489 | .fa-fire:before {
490 | content: "\f06d";
491 | }
492 | .fa-eye:before {
493 | content: "\f06e";
494 | }
495 | .fa-eye-slash:before {
496 | content: "\f070";
497 | }
498 | .fa-warning:before,
499 | .fa-exclamation-triangle:before {
500 | content: "\f071";
501 | }
502 | .fa-plane:before {
503 | content: "\f072";
504 | }
505 | .fa-calendar:before {
506 | content: "\f073";
507 | }
508 | .fa-random:before {
509 | content: "\f074";
510 | }
511 | .fa-comment:before {
512 | content: "\f075";
513 | }
514 | .fa-magnet:before {
515 | content: "\f076";
516 | }
517 | .fa-chevron-up:before {
518 | content: "\f077";
519 | }
520 | .fa-chevron-down:before {
521 | content: "\f078";
522 | }
523 | .fa-retweet:before {
524 | content: "\f079";
525 | }
526 | .fa-shopping-cart:before {
527 | content: "\f07a";
528 | }
529 | .fa-folder:before {
530 | content: "\f07b";
531 | }
532 | .fa-folder-open:before {
533 | content: "\f07c";
534 | }
535 | .fa-arrows-v:before {
536 | content: "\f07d";
537 | }
538 | .fa-arrows-h:before {
539 | content: "\f07e";
540 | }
541 | .fa-bar-chart-o:before,
542 | .fa-bar-chart:before {
543 | content: "\f080";
544 | }
545 | .fa-twitter-square:before {
546 | content: "\f081";
547 | }
548 | .fa-facebook-square:before {
549 | content: "\f082";
550 | }
551 | .fa-camera-retro:before {
552 | content: "\f083";
553 | }
554 | .fa-key:before {
555 | content: "\f084";
556 | }
557 | .fa-gears:before,
558 | .fa-cogs:before {
559 | content: "\f085";
560 | }
561 | .fa-comments:before {
562 | content: "\f086";
563 | }
564 | .fa-thumbs-o-up:before {
565 | content: "\f087";
566 | }
567 | .fa-thumbs-o-down:before {
568 | content: "\f088";
569 | }
570 | .fa-star-half:before {
571 | content: "\f089";
572 | }
573 | .fa-heart-o:before {
574 | content: "\f08a";
575 | }
576 | .fa-sign-out:before {
577 | content: "\f08b";
578 | }
579 | .fa-linkedin-square:before {
580 | content: "\f08c";
581 | }
582 | .fa-thumb-tack:before {
583 | content: "\f08d";
584 | }
585 | .fa-external-link:before {
586 | content: "\f08e";
587 | }
588 | .fa-sign-in:before {
589 | content: "\f090";
590 | }
591 | .fa-trophy:before {
592 | content: "\f091";
593 | }
594 | .fa-github-square:before {
595 | content: "\f092";
596 | }
597 | .fa-upload:before {
598 | content: "\f093";
599 | }
600 | .fa-lemon-o:before {
601 | content: "\f094";
602 | }
603 | .fa-phone:before {
604 | content: "\f095";
605 | }
606 | .fa-square-o:before {
607 | content: "\f096";
608 | }
609 | .fa-bookmark-o:before {
610 | content: "\f097";
611 | }
612 | .fa-phone-square:before {
613 | content: "\f098";
614 | }
615 | .fa-twitter:before {
616 | content: "\f099";
617 | }
618 | .fa-facebook-f:before,
619 | .fa-facebook:before {
620 | content: "\f09a";
621 | }
622 | .fa-github:before {
623 | content: "\f09b";
624 | }
625 | .fa-unlock:before {
626 | content: "\f09c";
627 | }
628 | .fa-credit-card:before {
629 | content: "\f09d";
630 | }
631 | .fa-rss:before {
632 | content: "\f09e";
633 | }
634 | .fa-hdd-o:before {
635 | content: "\f0a0";
636 | }
637 | .fa-bullhorn:before {
638 | content: "\f0a1";
639 | }
640 | .fa-bell:before {
641 | content: "\f0f3";
642 | }
643 | .fa-certificate:before {
644 | content: "\f0a3";
645 | }
646 | .fa-hand-o-right:before {
647 | content: "\f0a4";
648 | }
649 | .fa-hand-o-left:before {
650 | content: "\f0a5";
651 | }
652 | .fa-hand-o-up:before {
653 | content: "\f0a6";
654 | }
655 | .fa-hand-o-down:before {
656 | content: "\f0a7";
657 | }
658 | .fa-arrow-circle-left:before {
659 | content: "\f0a8";
660 | }
661 | .fa-arrow-circle-right:before {
662 | content: "\f0a9";
663 | }
664 | .fa-arrow-circle-up:before {
665 | content: "\f0aa";
666 | }
667 | .fa-arrow-circle-down:before {
668 | content: "\f0ab";
669 | }
670 | .fa-globe:before {
671 | content: "\f0ac";
672 | }
673 | .fa-wrench:before {
674 | content: "\f0ad";
675 | }
676 | .fa-tasks:before {
677 | content: "\f0ae";
678 | }
679 | .fa-filter:before {
680 | content: "\f0b0";
681 | }
682 | .fa-briefcase:before {
683 | content: "\f0b1";
684 | }
685 | .fa-arrows-alt:before {
686 | content: "\f0b2";
687 | }
688 | .fa-group:before,
689 | .fa-users:before {
690 | content: "\f0c0";
691 | }
692 | .fa-chain:before,
693 | .fa-link:before {
694 | content: "\f0c1";
695 | }
696 | .fa-cloud:before {
697 | content: "\f0c2";
698 | }
699 | .fa-flask:before {
700 | content: "\f0c3";
701 | }
702 | .fa-cut:before,
703 | .fa-scissors:before {
704 | content: "\f0c4";
705 | }
706 | .fa-copy:before,
707 | .fa-files-o:before {
708 | content: "\f0c5";
709 | }
710 | .fa-paperclip:before {
711 | content: "\f0c6";
712 | }
713 | .fa-save:before,
714 | .fa-floppy-o:before {
715 | content: "\f0c7";
716 | }
717 | .fa-square:before {
718 | content: "\f0c8";
719 | }
720 | .fa-navicon:before,
721 | .fa-reorder:before,
722 | .fa-bars:before {
723 | content: "\f0c9";
724 | }
725 | .fa-list-ul:before {
726 | content: "\f0ca";
727 | }
728 | .fa-list-ol:before {
729 | content: "\f0cb";
730 | }
731 | .fa-strikethrough:before {
732 | content: "\f0cc";
733 | }
734 | .fa-underline:before {
735 | content: "\f0cd";
736 | }
737 | .fa-table:before {
738 | content: "\f0ce";
739 | }
740 | .fa-magic:before {
741 | content: "\f0d0";
742 | }
743 | .fa-truck:before {
744 | content: "\f0d1";
745 | }
746 | .fa-pinterest:before {
747 | content: "\f0d2";
748 | }
749 | .fa-pinterest-square:before {
750 | content: "\f0d3";
751 | }
752 | .fa-google-plus-square:before {
753 | content: "\f0d4";
754 | }
755 | .fa-google-plus:before {
756 | content: "\f0d5";
757 | }
758 | .fa-money:before {
759 | content: "\f0d6";
760 | }
761 | .fa-caret-down:before {
762 | content: "\f0d7";
763 | }
764 | .fa-caret-up:before {
765 | content: "\f0d8";
766 | }
767 | .fa-caret-left:before {
768 | content: "\f0d9";
769 | }
770 | .fa-caret-right:before {
771 | content: "\f0da";
772 | }
773 | .fa-columns:before {
774 | content: "\f0db";
775 | }
776 | .fa-unsorted:before,
777 | .fa-sort:before {
778 | content: "\f0dc";
779 | }
780 | .fa-sort-down:before,
781 | .fa-sort-desc:before {
782 | content: "\f0dd";
783 | }
784 | .fa-sort-up:before,
785 | .fa-sort-asc:before {
786 | content: "\f0de";
787 | }
788 | .fa-envelope:before {
789 | content: "\f0e0";
790 | }
791 | .fa-linkedin:before {
792 | content: "\f0e1";
793 | }
794 | .fa-rotate-left:before,
795 | .fa-undo:before {
796 | content: "\f0e2";
797 | }
798 | .fa-legal:before,
799 | .fa-gavel:before {
800 | content: "\f0e3";
801 | }
802 | .fa-dashboard:before,
803 | .fa-tachometer:before {
804 | content: "\f0e4";
805 | }
806 | .fa-comment-o:before {
807 | content: "\f0e5";
808 | }
809 | .fa-comments-o:before {
810 | content: "\f0e6";
811 | }
812 | .fa-flash:before,
813 | .fa-bolt:before {
814 | content: "\f0e7";
815 | }
816 | .fa-sitemap:before {
817 | content: "\f0e8";
818 | }
819 | .fa-umbrella:before {
820 | content: "\f0e9";
821 | }
822 | .fa-paste:before,
823 | .fa-clipboard:before {
824 | content: "\f0ea";
825 | }
826 | .fa-lightbulb-o:before {
827 | content: "\f0eb";
828 | }
829 | .fa-exchange:before {
830 | content: "\f0ec";
831 | }
832 | .fa-cloud-download:before {
833 | content: "\f0ed";
834 | }
835 | .fa-cloud-upload:before {
836 | content: "\f0ee";
837 | }
838 | .fa-user-md:before {
839 | content: "\f0f0";
840 | }
841 | .fa-stethoscope:before {
842 | content: "\f0f1";
843 | }
844 | .fa-suitcase:before {
845 | content: "\f0f2";
846 | }
847 | .fa-bell-o:before {
848 | content: "\f0a2";
849 | }
850 | .fa-coffee:before {
851 | content: "\f0f4";
852 | }
853 | .fa-cutlery:before {
854 | content: "\f0f5";
855 | }
856 | .fa-file-text-o:before {
857 | content: "\f0f6";
858 | }
859 | .fa-building-o:before {
860 | content: "\f0f7";
861 | }
862 | .fa-hospital-o:before {
863 | content: "\f0f8";
864 | }
865 | .fa-ambulance:before {
866 | content: "\f0f9";
867 | }
868 | .fa-medkit:before {
869 | content: "\f0fa";
870 | }
871 | .fa-fighter-jet:before {
872 | content: "\f0fb";
873 | }
874 | .fa-beer:before {
875 | content: "\f0fc";
876 | }
877 | .fa-h-square:before {
878 | content: "\f0fd";
879 | }
880 | .fa-plus-square:before {
881 | content: "\f0fe";
882 | }
883 | .fa-angle-double-left:before {
884 | content: "\f100";
885 | }
886 | .fa-angle-double-right:before {
887 | content: "\f101";
888 | }
889 | .fa-angle-double-up:before {
890 | content: "\f102";
891 | }
892 | .fa-angle-double-down:before {
893 | content: "\f103";
894 | }
895 | .fa-angle-left:before {
896 | content: "\f104";
897 | }
898 | .fa-angle-right:before {
899 | content: "\f105";
900 | }
901 | .fa-angle-up:before {
902 | content: "\f106";
903 | }
904 | .fa-angle-down:before {
905 | content: "\f107";
906 | }
907 | .fa-desktop:before {
908 | content: "\f108";
909 | }
910 | .fa-laptop:before {
911 | content: "\f109";
912 | }
913 | .fa-tablet:before {
914 | content: "\f10a";
915 | }
916 | .fa-mobile-phone:before,
917 | .fa-mobile:before {
918 | content: "\f10b";
919 | }
920 | .fa-circle-o:before {
921 | content: "\f10c";
922 | }
923 | .fa-quote-left:before {
924 | content: "\f10d";
925 | }
926 | .fa-quote-right:before {
927 | content: "\f10e";
928 | }
929 | .fa-spinner:before {
930 | content: "\f110";
931 | }
932 | .fa-circle:before {
933 | content: "\f111";
934 | }
935 | .fa-mail-reply:before,
936 | .fa-reply:before {
937 | content: "\f112";
938 | }
939 | .fa-github-alt:before {
940 | content: "\f113";
941 | }
942 | .fa-folder-o:before {
943 | content: "\f114";
944 | }
945 | .fa-folder-open-o:before {
946 | content: "\f115";
947 | }
948 | .fa-smile-o:before {
949 | content: "\f118";
950 | }
951 | .fa-frown-o:before {
952 | content: "\f119";
953 | }
954 | .fa-meh-o:before {
955 | content: "\f11a";
956 | }
957 | .fa-gamepad:before {
958 | content: "\f11b";
959 | }
960 | .fa-keyboard-o:before {
961 | content: "\f11c";
962 | }
963 | .fa-flag-o:before {
964 | content: "\f11d";
965 | }
966 | .fa-flag-checkered:before {
967 | content: "\f11e";
968 | }
969 | .fa-terminal:before {
970 | content: "\f120";
971 | }
972 | .fa-code:before {
973 | content: "\f121";
974 | }
975 | .fa-mail-reply-all:before,
976 | .fa-reply-all:before {
977 | content: "\f122";
978 | }
979 | .fa-star-half-empty:before,
980 | .fa-star-half-full:before,
981 | .fa-star-half-o:before {
982 | content: "\f123";
983 | }
984 | .fa-location-arrow:before {
985 | content: "\f124";
986 | }
987 | .fa-crop:before {
988 | content: "\f125";
989 | }
990 | .fa-code-fork:before {
991 | content: "\f126";
992 | }
993 | .fa-unlink:before,
994 | .fa-chain-broken:before {
995 | content: "\f127";
996 | }
997 | .fa-question:before {
998 | content: "\f128";
999 | }
1000 | .fa-info:before {
1001 | content: "\f129";
1002 | }
1003 | .fa-exclamation:before {
1004 | content: "\f12a";
1005 | }
1006 | .fa-superscript:before {
1007 | content: "\f12b";
1008 | }
1009 | .fa-subscript:before {
1010 | content: "\f12c";
1011 | }
1012 | .fa-eraser:before {
1013 | content: "\f12d";
1014 | }
1015 | .fa-puzzle-piece:before {
1016 | content: "\f12e";
1017 | }
1018 | .fa-microphone:before {
1019 | content: "\f130";
1020 | }
1021 | .fa-microphone-slash:before {
1022 | content: "\f131";
1023 | }
1024 | .fa-shield:before {
1025 | content: "\f132";
1026 | }
1027 | .fa-calendar-o:before {
1028 | content: "\f133";
1029 | }
1030 | .fa-fire-extinguisher:before {
1031 | content: "\f134";
1032 | }
1033 | .fa-rocket:before {
1034 | content: "\f135";
1035 | }
1036 | .fa-maxcdn:before {
1037 | content: "\f136";
1038 | }
1039 | .fa-chevron-circle-left:before {
1040 | content: "\f137";
1041 | }
1042 | .fa-chevron-circle-right:before {
1043 | content: "\f138";
1044 | }
1045 | .fa-chevron-circle-up:before {
1046 | content: "\f139";
1047 | }
1048 | .fa-chevron-circle-down:before {
1049 | content: "\f13a";
1050 | }
1051 | .fa-html5:before {
1052 | content: "\f13b";
1053 | }
1054 | .fa-css3:before {
1055 | content: "\f13c";
1056 | }
1057 | .fa-anchor:before {
1058 | content: "\f13d";
1059 | }
1060 | .fa-unlock-alt:before {
1061 | content: "\f13e";
1062 | }
1063 | .fa-bullseye:before {
1064 | content: "\f140";
1065 | }
1066 | .fa-ellipsis-h:before {
1067 | content: "\f141";
1068 | }
1069 | .fa-ellipsis-v:before {
1070 | content: "\f142";
1071 | }
1072 | .fa-rss-square:before {
1073 | content: "\f143";
1074 | }
1075 | .fa-play-circle:before {
1076 | content: "\f144";
1077 | }
1078 | .fa-ticket:before {
1079 | content: "\f145";
1080 | }
1081 | .fa-minus-square:before {
1082 | content: "\f146";
1083 | }
1084 | .fa-minus-square-o:before {
1085 | content: "\f147";
1086 | }
1087 | .fa-level-up:before {
1088 | content: "\f148";
1089 | }
1090 | .fa-level-down:before {
1091 | content: "\f149";
1092 | }
1093 | .fa-check-square:before {
1094 | content: "\f14a";
1095 | }
1096 | .fa-pencil-square:before {
1097 | content: "\f14b";
1098 | }
1099 | .fa-external-link-square:before {
1100 | content: "\f14c";
1101 | }
1102 | .fa-share-square:before {
1103 | content: "\f14d";
1104 | }
1105 | .fa-compass:before {
1106 | content: "\f14e";
1107 | }
1108 | .fa-toggle-down:before,
1109 | .fa-caret-square-o-down:before {
1110 | content: "\f150";
1111 | }
1112 | .fa-toggle-up:before,
1113 | .fa-caret-square-o-up:before {
1114 | content: "\f151";
1115 | }
1116 | .fa-toggle-right:before,
1117 | .fa-caret-square-o-right:before {
1118 | content: "\f152";
1119 | }
1120 | .fa-euro:before,
1121 | .fa-eur:before {
1122 | content: "\f153";
1123 | }
1124 | .fa-gbp:before {
1125 | content: "\f154";
1126 | }
1127 | .fa-dollar:before,
1128 | .fa-usd:before {
1129 | content: "\f155";
1130 | }
1131 | .fa-rupee:before,
1132 | .fa-inr:before {
1133 | content: "\f156";
1134 | }
1135 | .fa-cny:before,
1136 | .fa-rmb:before,
1137 | .fa-yen:before,
1138 | .fa-jpy:before {
1139 | content: "\f157";
1140 | }
1141 | .fa-ruble:before,
1142 | .fa-rouble:before,
1143 | .fa-rub:before {
1144 | content: "\f158";
1145 | }
1146 | .fa-won:before,
1147 | .fa-krw:before {
1148 | content: "\f159";
1149 | }
1150 | .fa-bitcoin:before,
1151 | .fa-btc:before {
1152 | content: "\f15a";
1153 | }
1154 | .fa-file:before {
1155 | content: "\f15b";
1156 | }
1157 | .fa-file-text:before {
1158 | content: "\f15c";
1159 | }
1160 | .fa-sort-alpha-asc:before {
1161 | content: "\f15d";
1162 | }
1163 | .fa-sort-alpha-desc:before {
1164 | content: "\f15e";
1165 | }
1166 | .fa-sort-amount-asc:before {
1167 | content: "\f160";
1168 | }
1169 | .fa-sort-amount-desc:before {
1170 | content: "\f161";
1171 | }
1172 | .fa-sort-numeric-asc:before {
1173 | content: "\f162";
1174 | }
1175 | .fa-sort-numeric-desc:before {
1176 | content: "\f163";
1177 | }
1178 | .fa-thumbs-up:before {
1179 | content: "\f164";
1180 | }
1181 | .fa-thumbs-down:before {
1182 | content: "\f165";
1183 | }
1184 | .fa-youtube-square:before {
1185 | content: "\f166";
1186 | }
1187 | .fa-youtube:before {
1188 | content: "\f167";
1189 | }
1190 | .fa-xing:before {
1191 | content: "\f168";
1192 | }
1193 | .fa-xing-square:before {
1194 | content: "\f169";
1195 | }
1196 | .fa-youtube-play:before {
1197 | content: "\f16a";
1198 | }
1199 | .fa-dropbox:before {
1200 | content: "\f16b";
1201 | }
1202 | .fa-stack-overflow:before {
1203 | content: "\f16c";
1204 | }
1205 | .fa-instagram:before {
1206 | content: "\f16d";
1207 | }
1208 | .fa-flickr:before {
1209 | content: "\f16e";
1210 | }
1211 | .fa-adn:before {
1212 | content: "\f170";
1213 | }
1214 | .fa-bitbucket:before {
1215 | content: "\f171";
1216 | }
1217 | .fa-bitbucket-square:before {
1218 | content: "\f172";
1219 | }
1220 | .fa-tumblr:before {
1221 | content: "\f173";
1222 | }
1223 | .fa-tumblr-square:before {
1224 | content: "\f174";
1225 | }
1226 | .fa-long-arrow-down:before {
1227 | content: "\f175";
1228 | }
1229 | .fa-long-arrow-up:before {
1230 | content: "\f176";
1231 | }
1232 | .fa-long-arrow-left:before {
1233 | content: "\f177";
1234 | }
1235 | .fa-long-arrow-right:before {
1236 | content: "\f178";
1237 | }
1238 | .fa-apple:before {
1239 | content: "\f179";
1240 | }
1241 | .fa-windows:before {
1242 | content: "\f17a";
1243 | }
1244 | .fa-android:before {
1245 | content: "\f17b";
1246 | }
1247 | .fa-linux:before {
1248 | content: "\f17c";
1249 | }
1250 | .fa-dribbble:before {
1251 | content: "\f17d";
1252 | }
1253 | .fa-skype:before {
1254 | content: "\f17e";
1255 | }
1256 | .fa-foursquare:before {
1257 | content: "\f180";
1258 | }
1259 | .fa-trello:before {
1260 | content: "\f181";
1261 | }
1262 | .fa-female:before {
1263 | content: "\f182";
1264 | }
1265 | .fa-male:before {
1266 | content: "\f183";
1267 | }
1268 | .fa-gittip:before,
1269 | .fa-gratipay:before {
1270 | content: "\f184";
1271 | }
1272 | .fa-sun-o:before {
1273 | content: "\f185";
1274 | }
1275 | .fa-moon-o:before {
1276 | content: "\f186";
1277 | }
1278 | .fa-archive:before {
1279 | content: "\f187";
1280 | }
1281 | .fa-bug:before {
1282 | content: "\f188";
1283 | }
1284 | .fa-vk:before {
1285 | content: "\f189";
1286 | }
1287 | .fa-weibo:before {
1288 | content: "\f18a";
1289 | }
1290 | .fa-renren:before {
1291 | content: "\f18b";
1292 | }
1293 | .fa-pagelines:before {
1294 | content: "\f18c";
1295 | }
1296 | .fa-stack-exchange:before {
1297 | content: "\f18d";
1298 | }
1299 | .fa-arrow-circle-o-right:before {
1300 | content: "\f18e";
1301 | }
1302 | .fa-arrow-circle-o-left:before {
1303 | content: "\f190";
1304 | }
1305 | .fa-toggle-left:before,
1306 | .fa-caret-square-o-left:before {
1307 | content: "\f191";
1308 | }
1309 | .fa-dot-circle-o:before {
1310 | content: "\f192";
1311 | }
1312 | .fa-wheelchair:before {
1313 | content: "\f193";
1314 | }
1315 | .fa-vimeo-square:before {
1316 | content: "\f194";
1317 | }
1318 | .fa-turkish-lira:before,
1319 | .fa-try:before {
1320 | content: "\f195";
1321 | }
1322 | .fa-plus-square-o:before {
1323 | content: "\f196";
1324 | }
1325 | .fa-space-shuttle:before {
1326 | content: "\f197";
1327 | }
1328 | .fa-slack:before {
1329 | content: "\f198";
1330 | }
1331 | .fa-envelope-square:before {
1332 | content: "\f199";
1333 | }
1334 | .fa-wordpress:before {
1335 | content: "\f19a";
1336 | }
1337 | .fa-openid:before {
1338 | content: "\f19b";
1339 | }
1340 | .fa-institution:before,
1341 | .fa-bank:before,
1342 | .fa-university:before {
1343 | content: "\f19c";
1344 | }
1345 | .fa-mortar-board:before,
1346 | .fa-graduation-cap:before {
1347 | content: "\f19d";
1348 | }
1349 | .fa-yahoo:before {
1350 | content: "\f19e";
1351 | }
1352 | .fa-google:before {
1353 | content: "\f1a0";
1354 | }
1355 | .fa-reddit:before {
1356 | content: "\f1a1";
1357 | }
1358 | .fa-reddit-square:before {
1359 | content: "\f1a2";
1360 | }
1361 | .fa-stumbleupon-circle:before {
1362 | content: "\f1a3";
1363 | }
1364 | .fa-stumbleupon:before {
1365 | content: "\f1a4";
1366 | }
1367 | .fa-delicious:before {
1368 | content: "\f1a5";
1369 | }
1370 | .fa-digg:before {
1371 | content: "\f1a6";
1372 | }
1373 | .fa-pied-piper:before {
1374 | content: "\f1a7";
1375 | }
1376 | .fa-pied-piper-alt:before {
1377 | content: "\f1a8";
1378 | }
1379 | .fa-drupal:before {
1380 | content: "\f1a9";
1381 | }
1382 | .fa-joomla:before {
1383 | content: "\f1aa";
1384 | }
1385 | .fa-language:before {
1386 | content: "\f1ab";
1387 | }
1388 | .fa-fax:before {
1389 | content: "\f1ac";
1390 | }
1391 | .fa-building:before {
1392 | content: "\f1ad";
1393 | }
1394 | .fa-child:before {
1395 | content: "\f1ae";
1396 | }
1397 | .fa-paw:before {
1398 | content: "\f1b0";
1399 | }
1400 | .fa-spoon:before {
1401 | content: "\f1b1";
1402 | }
1403 | .fa-cube:before {
1404 | content: "\f1b2";
1405 | }
1406 | .fa-cubes:before {
1407 | content: "\f1b3";
1408 | }
1409 | .fa-behance:before {
1410 | content: "\f1b4";
1411 | }
1412 | .fa-behance-square:before {
1413 | content: "\f1b5";
1414 | }
1415 | .fa-steam:before {
1416 | content: "\f1b6";
1417 | }
1418 | .fa-steam-square:before {
1419 | content: "\f1b7";
1420 | }
1421 | .fa-recycle:before {
1422 | content: "\f1b8";
1423 | }
1424 | .fa-automobile:before,
1425 | .fa-car:before {
1426 | content: "\f1b9";
1427 | }
1428 | .fa-cab:before,
1429 | .fa-taxi:before {
1430 | content: "\f1ba";
1431 | }
1432 | .fa-tree:before {
1433 | content: "\f1bb";
1434 | }
1435 | .fa-spotify:before {
1436 | content: "\f1bc";
1437 | }
1438 | .fa-deviantart:before {
1439 | content: "\f1bd";
1440 | }
1441 | .fa-soundcloud:before {
1442 | content: "\f1be";
1443 | }
1444 | .fa-database:before {
1445 | content: "\f1c0";
1446 | }
1447 | .fa-file-pdf-o:before {
1448 | content: "\f1c1";
1449 | }
1450 | .fa-file-word-o:before {
1451 | content: "\f1c2";
1452 | }
1453 | .fa-file-excel-o:before {
1454 | content: "\f1c3";
1455 | }
1456 | .fa-file-powerpoint-o:before {
1457 | content: "\f1c4";
1458 | }
1459 | .fa-file-photo-o:before,
1460 | .fa-file-picture-o:before,
1461 | .fa-file-image-o:before {
1462 | content: "\f1c5";
1463 | }
1464 | .fa-file-zip-o:before,
1465 | .fa-file-archive-o:before {
1466 | content: "\f1c6";
1467 | }
1468 | .fa-file-sound-o:before,
1469 | .fa-file-audio-o:before {
1470 | content: "\f1c7";
1471 | }
1472 | .fa-file-movie-o:before,
1473 | .fa-file-video-o:before {
1474 | content: "\f1c8";
1475 | }
1476 | .fa-file-code-o:before {
1477 | content: "\f1c9";
1478 | }
1479 | .fa-vine:before {
1480 | content: "\f1ca";
1481 | }
1482 | .fa-codepen:before {
1483 | content: "\f1cb";
1484 | }
1485 | .fa-jsfiddle:before {
1486 | content: "\f1cc";
1487 | }
1488 | .fa-life-bouy:before,
1489 | .fa-life-buoy:before,
1490 | .fa-life-saver:before,
1491 | .fa-support:before,
1492 | .fa-life-ring:before {
1493 | content: "\f1cd";
1494 | }
1495 | .fa-circle-o-notch:before {
1496 | content: "\f1ce";
1497 | }
1498 | .fa-ra:before,
1499 | .fa-rebel:before {
1500 | content: "\f1d0";
1501 | }
1502 | .fa-ge:before,
1503 | .fa-empire:before {
1504 | content: "\f1d1";
1505 | }
1506 | .fa-git-square:before {
1507 | content: "\f1d2";
1508 | }
1509 | .fa-git:before {
1510 | content: "\f1d3";
1511 | }
1512 | .fa-hacker-news:before {
1513 | content: "\f1d4";
1514 | }
1515 | .fa-tencent-weibo:before {
1516 | content: "\f1d5";
1517 | }
1518 | .fa-qq:before {
1519 | content: "\f1d6";
1520 | }
1521 | .fa-wechat:before,
1522 | .fa-weixin:before {
1523 | content: "\f1d7";
1524 | }
1525 | .fa-send:before,
1526 | .fa-paper-plane:before {
1527 | content: "\f1d8";
1528 | }
1529 | .fa-send-o:before,
1530 | .fa-paper-plane-o:before {
1531 | content: "\f1d9";
1532 | }
1533 | .fa-history:before {
1534 | content: "\f1da";
1535 | }
1536 | .fa-genderless:before,
1537 | .fa-circle-thin:before {
1538 | content: "\f1db";
1539 | }
1540 | .fa-header:before {
1541 | content: "\f1dc";
1542 | }
1543 | .fa-paragraph:before {
1544 | content: "\f1dd";
1545 | }
1546 | .fa-sliders:before {
1547 | content: "\f1de";
1548 | }
1549 | .fa-share-alt:before {
1550 | content: "\f1e0";
1551 | }
1552 | .fa-share-alt-square:before {
1553 | content: "\f1e1";
1554 | }
1555 | .fa-bomb:before {
1556 | content: "\f1e2";
1557 | }
1558 | .fa-soccer-ball-o:before,
1559 | .fa-futbol-o:before {
1560 | content: "\f1e3";
1561 | }
1562 | .fa-tty:before {
1563 | content: "\f1e4";
1564 | }
1565 | .fa-binoculars:before {
1566 | content: "\f1e5";
1567 | }
1568 | .fa-plug:before {
1569 | content: "\f1e6";
1570 | }
1571 | .fa-slideshare:before {
1572 | content: "\f1e7";
1573 | }
1574 | .fa-twitch:before {
1575 | content: "\f1e8";
1576 | }
1577 | .fa-yelp:before {
1578 | content: "\f1e9";
1579 | }
1580 | .fa-newspaper-o:before {
1581 | content: "\f1ea";
1582 | }
1583 | .fa-wifi:before {
1584 | content: "\f1eb";
1585 | }
1586 | .fa-calculator:before {
1587 | content: "\f1ec";
1588 | }
1589 | .fa-paypal:before {
1590 | content: "\f1ed";
1591 | }
1592 | .fa-google-wallet:before {
1593 | content: "\f1ee";
1594 | }
1595 | .fa-cc-visa:before {
1596 | content: "\f1f0";
1597 | }
1598 | .fa-cc-mastercard:before {
1599 | content: "\f1f1";
1600 | }
1601 | .fa-cc-discover:before {
1602 | content: "\f1f2";
1603 | }
1604 | .fa-cc-amex:before {
1605 | content: "\f1f3";
1606 | }
1607 | .fa-cc-paypal:before {
1608 | content: "\f1f4";
1609 | }
1610 | .fa-cc-stripe:before {
1611 | content: "\f1f5";
1612 | }
1613 | .fa-bell-slash:before {
1614 | content: "\f1f6";
1615 | }
1616 | .fa-bell-slash-o:before {
1617 | content: "\f1f7";
1618 | }
1619 | .fa-trash:before {
1620 | content: "\f1f8";
1621 | }
1622 | .fa-copyright:before {
1623 | content: "\f1f9";
1624 | }
1625 | .fa-at:before {
1626 | content: "\f1fa";
1627 | }
1628 | .fa-eyedropper:before {
1629 | content: "\f1fb";
1630 | }
1631 | .fa-paint-brush:before {
1632 | content: "\f1fc";
1633 | }
1634 | .fa-birthday-cake:before {
1635 | content: "\f1fd";
1636 | }
1637 | .fa-area-chart:before {
1638 | content: "\f1fe";
1639 | }
1640 | .fa-pie-chart:before {
1641 | content: "\f200";
1642 | }
1643 | .fa-line-chart:before {
1644 | content: "\f201";
1645 | }
1646 | .fa-lastfm:before {
1647 | content: "\f202";
1648 | }
1649 | .fa-lastfm-square:before {
1650 | content: "\f203";
1651 | }
1652 | .fa-toggle-off:before {
1653 | content: "\f204";
1654 | }
1655 | .fa-toggle-on:before {
1656 | content: "\f205";
1657 | }
1658 | .fa-bicycle:before {
1659 | content: "\f206";
1660 | }
1661 | .fa-bus:before {
1662 | content: "\f207";
1663 | }
1664 | .fa-ioxhost:before {
1665 | content: "\f208";
1666 | }
1667 | .fa-angellist:before {
1668 | content: "\f209";
1669 | }
1670 | .fa-cc:before {
1671 | content: "\f20a";
1672 | }
1673 | .fa-shekel:before,
1674 | .fa-sheqel:before,
1675 | .fa-ils:before {
1676 | content: "\f20b";
1677 | }
1678 | .fa-meanpath:before {
1679 | content: "\f20c";
1680 | }
1681 | .fa-buysellads:before {
1682 | content: "\f20d";
1683 | }
1684 | .fa-connectdevelop:before {
1685 | content: "\f20e";
1686 | }
1687 | .fa-dashcube:before {
1688 | content: "\f210";
1689 | }
1690 | .fa-forumbee:before {
1691 | content: "\f211";
1692 | }
1693 | .fa-leanpub:before {
1694 | content: "\f212";
1695 | }
1696 | .fa-sellsy:before {
1697 | content: "\f213";
1698 | }
1699 | .fa-shirtsinbulk:before {
1700 | content: "\f214";
1701 | }
1702 | .fa-simplybuilt:before {
1703 | content: "\f215";
1704 | }
1705 | .fa-skyatlas:before {
1706 | content: "\f216";
1707 | }
1708 | .fa-cart-plus:before {
1709 | content: "\f217";
1710 | }
1711 | .fa-cart-arrow-down:before {
1712 | content: "\f218";
1713 | }
1714 | .fa-diamond:before {
1715 | content: "\f219";
1716 | }
1717 | .fa-ship:before {
1718 | content: "\f21a";
1719 | }
1720 | .fa-user-secret:before {
1721 | content: "\f21b";
1722 | }
1723 | .fa-motorcycle:before {
1724 | content: "\f21c";
1725 | }
1726 | .fa-street-view:before {
1727 | content: "\f21d";
1728 | }
1729 | .fa-heartbeat:before {
1730 | content: "\f21e";
1731 | }
1732 | .fa-venus:before {
1733 | content: "\f221";
1734 | }
1735 | .fa-mars:before {
1736 | content: "\f222";
1737 | }
1738 | .fa-mercury:before {
1739 | content: "\f223";
1740 | }
1741 | .fa-transgender:before {
1742 | content: "\f224";
1743 | }
1744 | .fa-transgender-alt:before {
1745 | content: "\f225";
1746 | }
1747 | .fa-venus-double:before {
1748 | content: "\f226";
1749 | }
1750 | .fa-mars-double:before {
1751 | content: "\f227";
1752 | }
1753 | .fa-venus-mars:before {
1754 | content: "\f228";
1755 | }
1756 | .fa-mars-stroke:before {
1757 | content: "\f229";
1758 | }
1759 | .fa-mars-stroke-v:before {
1760 | content: "\f22a";
1761 | }
1762 | .fa-mars-stroke-h:before {
1763 | content: "\f22b";
1764 | }
1765 | .fa-neuter:before {
1766 | content: "\f22c";
1767 | }
1768 | .fa-facebook-official:before {
1769 | content: "\f230";
1770 | }
1771 | .fa-pinterest-p:before {
1772 | content: "\f231";
1773 | }
1774 | .fa-whatsapp:before {
1775 | content: "\f232";
1776 | }
1777 | .fa-server:before {
1778 | content: "\f233";
1779 | }
1780 | .fa-user-plus:before {
1781 | content: "\f234";
1782 | }
1783 | .fa-user-times:before {
1784 | content: "\f235";
1785 | }
1786 | .fa-hotel:before,
1787 | .fa-bed:before {
1788 | content: "\f236";
1789 | }
1790 | .fa-viacoin:before {
1791 | content: "\f237";
1792 | }
1793 | .fa-train:before {
1794 | content: "\f238";
1795 | }
1796 | .fa-subway:before {
1797 | content: "\f239";
1798 | }
1799 | .fa-medium:before {
1800 | content: "\f23a";
1801 | }
1802 |
--------------------------------------------------------------------------------
/fonts/font-awesome-4.3.0/css/font-awesome.min.css:
--------------------------------------------------------------------------------
1 | /*!
2 | * Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome
3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4 | */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.3.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.3.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.3.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.3.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;transform:translate(0, 0)}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-genderless:before,.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}
--------------------------------------------------------------------------------
/fonts/font-awesome-4.3.0/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codrops/InteractiveColoringConcept/92cc1956c0047091863c3e021dd2f8f9733300e1/fonts/font-awesome-4.3.0/fonts/FontAwesome.otf
--------------------------------------------------------------------------------
/fonts/font-awesome-4.3.0/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codrops/InteractiveColoringConcept/92cc1956c0047091863c3e021dd2f8f9733300e1/fonts/font-awesome-4.3.0/fonts/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/fonts/font-awesome-4.3.0/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codrops/InteractiveColoringConcept/92cc1956c0047091863c3e021dd2f8f9733300e1/fonts/font-awesome-4.3.0/fonts/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/fonts/font-awesome-4.3.0/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codrops/InteractiveColoringConcept/92cc1956c0047091863c3e021dd2f8f9733300e1/fonts/font-awesome-4.3.0/fonts/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/fonts/font-awesome-4.3.0/fonts/fontawesome-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codrops/InteractiveColoringConcept/92cc1956c0047091863c3e021dd2f8f9733300e1/fonts/font-awesome-4.3.0/fonts/fontawesome-webfont.woff2
--------------------------------------------------------------------------------
/img/drag.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
7 |
8 |
11 |
12 |
13 |
14 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/img/drop_reset.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/img/related/DragDropInteractions.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codrops/InteractiveColoringConcept/92cc1956c0047091863c3e021dd2f8f9733300e1/img/related/DragDropInteractions.png
--------------------------------------------------------------------------------
/img/related/SVGDrawingAnimation.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codrops/InteractiveColoringConcept/92cc1956c0047091863c3e021dd2f8f9733300e1/img/related/SVGDrawingAnimation.png
--------------------------------------------------------------------------------
/img/time.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
6 |
7 |
8 |
12 |
22 |
23 |
24 |
25 |
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Interactive Coloring Concept
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
26 |
27 |
28 |
41 |
42 |
43 |
44 |
We help tell your brand's story The most efficient toolset for businesses
45 | Discover more
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
Custom solutions
57 |
58 |
59 |
60 | Reactive tools
61 | Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
62 |
63 |
64 |
65 |
66 |
67 | Invisible guides
68 | Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
69 |
70 |
71 |
72 |
73 |
74 | Fancy other stuff
75 | Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 | There are two types of people who will tell you that you cannot make a difference in this world: those who are afraid to try and those who are afraid you will succeed.
84 |
85 |
86 |
87 |
88 |
89 |
90 |
Our philosophy
91 |
92 |
93 |
94 |
95 |
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
96 | tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
97 | quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
98 | consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
99 | cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
100 | proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
101 |
Read more
102 |
103 |
104 |
105 |
106 |
107 |
Meet the amazing team
108 |
109 |
110 | Jerry McIntosh
111 |
112 |
113 |
114 | Ben McLovin
115 |
116 |
117 |
118 | Sarah Connor
119 |
120 |
121 |
122 | Fred Guhlman
123 |
124 |
125 |
126 |
127 |
128 |
Learn about our product
129 |
130 |
131 |
132 |
133 |
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
134 | tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
135 | quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
136 | consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
137 | cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
138 | proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
139 |
Read more
140 |
141 |
142 |
143 |
144 |
145 |
From the blog
146 |
147 |
148 |
149 | Reactive tools
150 | Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
151 |
152 |
153 |
154 |
155 |
156 | Invisible guides
157 | Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.
158 |
159 |
160 |
161 |
162 |
163 |
164 |
Pricing
165 |
166 |
167 |
Basic
168 |
$39
169 |
170 |
171 | 1 brand
172 | 10 projects
173 | Basic toolset
174 |
175 |
176 |
Sign up
177 |
178 |
179 |
180 |
181 |
Professional
182 |
$99
183 |
184 |
185 | 10 brands
186 | 50 projects
187 | Advanced toolset
188 |
189 |
190 |
Sign up
191 |
192 |
193 |
194 |
195 |
Premium
196 |
$199
197 |
198 |
199 | Unlimited brands
200 | Unlimited projects
201 | Full toolset
202 |
203 |
204 |
Sign up
205 |
206 |
207 |
208 |
209 |
210 |
211 |
224 |
225 |
236 |
237 |
238 |
Interactive Coloring Concept
239 |
Drag any color from the left toolbar to an area or text in the mockup. A blue outline will indicate a droppable element.
240 |
On mobile, wait a tiny bit until you drag the color drop.
241 |
Got it!
242 |
243 |
244 |
245 |
246 |
247 |
248 |
249 |
250 |
--------------------------------------------------------------------------------
/js/classie.js:
--------------------------------------------------------------------------------
1 | /*!
2 | * classie v1.0.1
3 | * class helper functions
4 | * from bonzo https://github.com/ded/bonzo
5 | * MIT license
6 | *
7 | * classie.has( elem, 'my-class' ) -> true/false
8 | * classie.add( elem, 'my-new-class' )
9 | * classie.remove( elem, 'my-unwanted-class' )
10 | * classie.toggle( elem, 'my-class' )
11 | */
12 |
13 | /*jshint browser: true, strict: true, undef: true, unused: true */
14 | /*global define: false, module: false */
15 |
16 | ( function( window ) {
17 |
18 | 'use strict';
19 |
20 | // class helper functions from bonzo https://github.com/ded/bonzo
21 |
22 | function classReg( className ) {
23 | return new RegExp("(^|\\s+)" + className + "(\\s+|$)");
24 | }
25 |
26 | // classList support for class management
27 | // altho to be fair, the api sucks because it won't accept multiple classes at once
28 | var hasClass, addClass, removeClass;
29 |
30 | if ( 'classList' in document.documentElement ) {
31 | hasClass = function( elem, c ) {
32 | return elem.classList.contains( c );
33 | };
34 | addClass = function( elem, c ) {
35 | elem.classList.add( c );
36 | };
37 | removeClass = function( elem, c ) {
38 | elem.classList.remove( c );
39 | };
40 | }
41 | else {
42 | hasClass = function( elem, c ) {
43 | return classReg( c ).test( elem.className );
44 | };
45 | addClass = function( elem, c ) {
46 | if ( !hasClass( elem, c ) ) {
47 | elem.className = elem.className + ' ' + c;
48 | }
49 | };
50 | removeClass = function( elem, c ) {
51 | elem.className = elem.className.replace( classReg( c ), ' ' );
52 | };
53 | }
54 |
55 | function toggleClass( elem, c ) {
56 | var fn = hasClass( elem, c ) ? removeClass : addClass;
57 | fn( elem, c );
58 | }
59 |
60 | var classie = {
61 | // full names
62 | hasClass: hasClass,
63 | addClass: addClass,
64 | removeClass: removeClass,
65 | toggleClass: toggleClass,
66 | // short names
67 | has: hasClass,
68 | add: addClass,
69 | remove: removeClass,
70 | toggle: toggleClass
71 | };
72 |
73 | // transport
74 | if ( typeof define === 'function' && define.amd ) {
75 | // AMD
76 | define( classie );
77 | } else if ( typeof exports === 'object' ) {
78 | // CommonJS
79 | module.exports = classie;
80 | } else {
81 | // browser global
82 | window.classie = classie;
83 | }
84 |
85 | })( window );
--------------------------------------------------------------------------------
/js/interact-1.2.4.min.js:
--------------------------------------------------------------------------------
1 | /* interact.js v1.2.4 | https://raw.github.com/taye/interact.js/master/LICENSE */
2 | !function(t){"use strict";function e(){}function i(t){if(!t||"object"!=typeof t)return!1;var e=b(t)||ue;return/object|function/.test(typeof e.Element)?t instanceof e.Element:1===t.nodeType&&"string"==typeof t.nodeName}function r(t){return!(!t||!t.Window)&&t instanceof t.Window}function s(t){return!!t&&t instanceof ve}function n(t){return o(t)&&void 0!==typeof t.length&&a(t.splice)}function o(t){return!!t&&"object"==typeof t}function a(t){return"function"==typeof t}function h(t){return"number"==typeof t}function p(t){return"boolean"==typeof t}function l(t){return"string"==typeof t}function c(t){return l(t)?(ge.querySelector(t),!0):!1}function d(t,e){for(var i in e)t[i]=e[i];return t}function u(t,e){t.page=t.page||{},t.page.x=e.page.x,t.page.y=e.page.y,t.client=t.client||{},t.client.x=e.client.x,t.client.y=e.client.y,t.timeStamp=e.timeStamp}function g(t,e,i){e||(e=i.pointerIds.length>1?z(i.pointers):i.pointers[0]),f(e,be,i),t.page.x=be.x,t.page.y=be.y,y(e,be,i),t.client.x=be.x,t.client.y=be.y,t.timeStamp=(new Date).getTime()}function v(t,e,i){t.page.x=i.page.x-e.page.x,t.page.y=i.page.y-e.page.y,t.client.x=i.client.x-e.client.x,t.client.y=i.client.y-e.client.y,t.timeStamp=(new Date).getTime()-e.timeStamp;var r=Math.max(t.timeStamp/1e3,.001);t.page.speed=Se(t.page.x,t.page.y)/r,t.page.vx=t.page.x/r,t.page.vy=t.page.y/r,t.client.speed=Se(t.client.x,t.page.y)/r,t.client.vx=t.client.x/r,t.client.vy=t.client.y/r}function m(t,e,i){return i=i||{},t=t||"page",i.x=e[t+"X"],i.y=e[t+"Y"],i}function f(t,e,i){return e=e||{},t instanceof B?/inertiastart/.test(t.type)?(i=i||t.interaction,d(e,i.inertiaStatus.upCoords.page),e.x+=i.inertiaStatus.sx,e.y+=i.inertiaStatus.sy):(e.x=t.pageX,e.y=t.pageY):He?(m("screen",t,e),e.x+=ue.scrollX,e.y+=ue.scrollY):m("page",t,e),e}function y(t,e,i){return e=e||{},t instanceof B?/inertiastart/.test(t.type)?(d(e,i.inertiaStatus.upCoords.client),e.x+=i.inertiaStatus.sx,e.y+=i.inertiaStatus.sy):(e.x=t.clientX,e.y=t.clientY):m(He?"screen":"client",t,e),e}function x(t){return t=t||ue,{x:t.scrollX||t.document.documentElement.scrollLeft,y:t.scrollY||t.document.documentElement.scrollTop}}function E(t){return h(t.pointerId)?t.pointerId:t.identifier}function S(t){return t instanceof ye?t.correspondingUseElement:t}function b(t){if(r(t))return t;var e=t.ownerDocument||t;return e.defaultView||e.parentWindow||ue}function w(t){var e=We?{x:0,y:0}:x(b(t)),i=t instanceof me?t.getBoundingClientRect():t.getClientRects()[0];return i&&{left:i.left+e.x,right:i.right+e.x,top:i.top+e.y,bottom:i.bottom+e.y,width:i.width||i.right-i.left,height:i.heigh||i.bottom-i.top}}function D(t){var e=[];return n(t)?(e[0]=t[0],e[1]=t[1]):"touchend"===t.type?1===t.touches.length?(e[0]=t.touches[0],e[1]=t.changedTouches[0]):0===t.touches.length&&(e[0]=t.changedTouches[0],e[1]=t.changedTouches[1]):(e[0]=t.touches[0],e[1]=t.touches[1]),e}function z(t){var e=D(t);return{pageX:(e[0].pageX+e[1].pageX)/2,pageY:(e[0].pageY+e[1].pageY)/2,clientX:(e[0].clientX+e[1].clientX)/2,clientY:(e[0].clientY+e[1].clientY)/2}}function T(t){if(t.length||t.touches&&t.touches.length>1){var e=D(t),i=Math.min(e[0].pageX,e[1].pageX),r=Math.min(e[0].pageY,e[1].pageY),s=Math.max(e[0].pageX,e[1].pageX),n=Math.max(e[0].pageY,e[1].pageY);return{x:i,y:r,left:i,top:r,width:s-i,height:n-r}}}function C(t,e){e=e||Me.deltaSource;var i=e+"X",r=e+"Y",s=D(t),n=s[0][i]-s[1][i],o=s[0][r]-s[1][r];return Se(n,o)}function M(t,e,i){i=i||Me.deltaSource;var r=i+"X",s=i+"Y",n=D(t),o=n[0][r]-n[1][r],a=n[0][s]-n[1][s],p=180*Math.atan(a/o)/Math.PI;if(h(e)){var l=p-e,c=l%360;c>315?p-=360+p/360|0:c>135?p-=180+p/360|0:-315>c?p+=360+p/360|0:-135>c&&(p+=180+p/360|0)}return p}function P(t,e){var r=t?t.options.origin:Me.origin;return"parent"===r?r=k(e):"self"===r?r=t.getRect(e):c(r)&&(r=Y(e,r)||{x:0,y:0}),a(r)&&(r=r(t&&e)),i(r)&&(r=w(r)),r.x="x"in r?r.x:r.left,r.y="y"in r?r.y:r.top,r}function O(t,e,i,r){var s=1-t;return s*s*e+2*s*t*i+t*t*r}function _(t,e,i,r,s,n,o){return{x:O(o,t,i,s),y:O(o,e,r,n)}}function A(t,e,i,r){return t/=r,-i*t*(t-2)+e}function X(t,e){for(;e;){if(e===t)return!0;e=e.parentNode}return!1}function Y(t,e){for(var r=k(t);i(r);){if(pe(r,e))return r;r=k(r)}return null}function k(t){var e=t.parentNode;if(s(e)){for(;(e=e.host)&&s(e););return e}return e}function I(t,e){return t._context===e.ownerDocument||X(t._context,e)}function R(t,e,r){var s=t.options.ignoreFrom;return s&&i(r)?l(s)?le(r,s,e):i(s)?X(s,r):!1:!1}function F(t,e,r){var s=t.options.allowFrom;return s?i(r)?l(s)?le(r,s,e):i(s)?X(s,r):!1:!1:!0}function q(t,e){if(!e)return!1;var i=e.options.drag.axis;return"xy"===t||"xy"===i||i===t}function N(t,e){var i=t.options;return/^resize/.test(e)&&(e="resize"),i[e].snap&&i[e].snap.enabled}function H(t,e){var i=t.options;return/^resize/.test(e)&&(e="resize"),i[e].restrict&&i[e].restrict.enabled}function W(t,e){var i=t.options;return/^resize/.test(e)&&(e="resize"),i[e].autoScroll&&i[e].autoScroll.enabled}function U(t,e,i){for(var r=t.options,s=r[i.name].max,n=r[i.name].maxPerElement,o=0,a=0,h=0,p=0,l=ze.length;l>p;p++){var c=ze[p],d=c.prepared.name,u=c.interacting();if(u){if(o++,o>=ke)return!1;if(c.target===t){if(a+=d===i.name|0,a>=s)return!1;if(c.element===e&&(h++,d!==i.name||h>=n))return!1}}}return ke>0}function V(t){var e,i,r,s,n,o=t[0],a=o?0:-1,h=[],p=[];for(s=1;ss;s++){r=ze[s];var h=i;if(r.inertiaStatus.active&&r.target.options[r.prepared.name].inertia.allowResume&&r.mouse===o)for(;h;){if(h===r.element)return r.pointers[0]&&r.removePointer(r.pointers[0]),r.addPointer(t),r;h=k(h)}}if(o||!Oe&&!_e){for(s=0;n>s;s++)if(ze[s].mouse&&!ze[s].inertiaStatus.active)return ze[s];for(s=0;n>s;s++)if(ze[s].mouse&&(!/down/.test(e)||!ze[s].inertiaStatus.active))return r;return r=new $,r.mouse=!0,r}for(s=0;n>s;s++)if(he(ze[s].pointerIds,a))return ze[s];if(/up|end|out/i.test(e))return null;for(s=0;n>s;s++)if(r=ze[s],!(r.prepared.name&&!r.target.options.gesture.enabled||r.interacting()||!o&&r.mouse))return r.addPointer(t),r;return new $}function L(t){return function(e){var i,r,s=S(e.path?e.path[0]:e.target),n=S(e.currentTarget);if(Oe&&/touch/.test(e.type))for(Ye=(new Date).getTime(),r=0;r600&&this.timeStamp-t.prevEvent.timeStamp<150){var O=180*Math.atan2(t.prevEvent.velocityY,t.prevEvent.velocityX)/Math.PI,_=22.5;0>O&&(O+=360);var A=O>=135-_&&225+_>O,X=O>=225-_&&315+_>O,Y=!A&&(O>=315-_||45+_>O),k=!X&&O>=45-_&&135+_>O;this.swipe={up:X,down:k,left:A,right:Y,angle:O,speed:t.prevEvent.speed,velocity:{x:t.prevEvent.velocityX,y:t.prevEvent.velocityY}}}}function K(){this.originalEvent.preventDefault()}function j(t){var e="";if("drag"===t.name&&(e=Ie.drag),"resize"===t.name)if(t.axis)e=Ie[t.name+t.axis];else if(t.edges){for(var i="resize",r=["top","bottom","left","right"],s=0;4>s;s++)t.edges[r[s]]&&(i+=r[s]);e=Ie[i]}return e}function J(t,e,r,s,n,o){if(!e)return!1;if(e===!0){var a=h(o.width)?o.width:o.right-o.left,p=h(o.height)?o.height:o.bottom-o.top;if(0>a&&("left"===t?t="right":"right"===t&&(t="left")),0>p&&("top"===t?t="bottom":"bottom"===t&&(t="top")),"left"===t)return r.x<(a>=0?o.left:o.right)+Ae;if("top"===t)return r.y<(p>=0?o.top:o.bottom)+Ae;if("right"===t)return r.x>(a>=0?o.right:o.left)-Ae;if("bottom"===t)return r.y>(p>=0?o.bottom:o.top)-Ae}return i(s)?i(e)?e===s:le(s,e,n):!1}function Q(t,e,i){var r,s=this.getRect(i),n=!1,a=null,h=null,p=d({},e.curCoords.page),l=this.options;if(!s)return null;if(Re.resize&&l.resize.enabled){var c=l.resize;if(r={left:!1,right:!1,top:!1,bottom:!1},o(c.edges)){for(var u in r)r[u]=J(u,c.edges[u],p,e._eventTarget,i,s);r.left=r.left&&!r.right,r.top=r.top&&!r.bottom,n=r.left||r.right||r.top||r.bottom}else{var g="y"!==l.resize.axis&&p.x>s.right-Ae,v="x"!==l.resize.axis&&p.y>s.bottom-Ae;n=g||v,h=(g?"x":"")+(v?"y":"")}}return a=n?"resize":Re.drag&&l.drag.enabled?"drag":null,Re.gesture&&e.pointerIds.length>=2&&!e.dragging&&!e.resizing&&(a="gesture"),a?{name:a,axis:h,edges:r}:null}function Z(t,e){if(!o(t))return null;var i=t.name,r=e.options;return("resize"===i&&r.resize.enabled||"drag"===i&&r.drag.enabled||"gesture"===i&&r.gesture.enabled)&&Re[i]?(("resize"===i||"resizeyx"===i)&&(i="resizexy"),t):null}function te(t,e){var r={},s=Ce[t.type],n=S(t.path?t.path[0]:t.target),o=n;e=e?!0:!1;for(var a in t)r[a]=t[a];for(r.originalEvent=t,r.preventDefault=K;i(o);){for(var h=0;hi;i++)if(t[i]===e)return i;return-1}function he(t,e){return-1!==ae(t,e)}function pe(e,i,r){return de?de(e,i,r):(ue!==t&&(i=i.replace(/\/deep\//g," ")),e[Ue](i))}function le(t,e,r){for(;i(t);){if(pe(t,e))return!0;if(t=k(t),t===r)return pe(t,e)}return!1}var ce,de,ue=function(){var e=t.document.createTextNode("");return e.ownerDocument!==t.document&&"function"==typeof t.wrap&&t.wrap(e)===e?t.wrap(t):t}(),ge=ue.document,ve=ue.DocumentFragment||e,me=ue.SVGElement||e,fe=ue.SVGSVGElement||e,ye=ue.SVGElementInstance||e,xe=ue.HTMLElement||ue.Element,Ee=ue.PointerEvent||ue.MSPointerEvent,Se=Math.hypot||function(t,e){return Math.sqrt(t*t+e*e)},be={},we=[],De=[],ze=[],Te=!1,Ce={},Me={base:{accept:null,actionChecker:null,styleCursor:!0,preventDefault:"auto",origin:{x:0,y:0},deltaSource:"page",allowFrom:null,ignoreFrom:null,_context:ge,dropChecker:null},drag:{enabled:!1,manualStart:!0,max:1/0,maxPerElement:1,snap:null,restrict:null,inertia:null,autoScroll:null,axis:"xy"},drop:{enabled:!1,accept:null,overlap:"pointer"},resize:{enabled:!1,manualStart:!1,max:1/0,maxPerElement:1,snap:null,restrict:null,inertia:null,autoScroll:null,square:!1,axis:"xy",edges:null,invert:"none"},gesture:{manualStart:!1,enabled:!1,max:1/0,maxPerElement:1,restrict:null},perAction:{manualStart:!1,max:1/0,maxPerElement:1,snap:{enabled:!1,endOnly:!1,range:1/0,targets:null,offsets:null,relativePoints:null},restrict:{enabled:!1,endOnly:!1},autoScroll:{enabled:!1,container:null,margin:60,speed:300},inertia:{enabled:!1,resistance:10,minSpeed:100,endSpeed:10,allowResume:!0,zeroResumeDelta:!0,smoothEndDuration:300}},_holdDuration:600},Pe={interaction:null,i:null,x:0,y:0,scroll:function(){var t=Pe.interaction.target.options[Pe.interaction.prepared.name].autoScroll,e=t.container||b(Pe.interaction.element),i=(new Date).getTime(),s=(i-Pe.prevTime)/1e3,n=t.speed*s;n>=1&&(r(e)?e.scrollBy(Pe.x*n,Pe.y*n):e&&(e.scrollLeft+=Pe.x*n,e.scrollTop+=Pe.y*n),Pe.prevTime=i),Pe.isScrolling&&($e(Pe.i),Pe.i=Ve(Pe.scroll))},edgeMove:function(t){for(var e,i,s=!1,n=0;nc.innerWidth-Pe.margin,h=t.clientY>c.innerHeight-Pe.margin;else{var d=w(c);p=t.clientXd.right-Pe.margin,h=t.clientY>d.bottom-Pe.margin}Pe.x=a?1:p?-1:0,Pe.y=h?1:o?-1:0,Pe.isScrolling||(Pe.margin=l.margin,Pe.speed=l.speed,Pe.start(e))}},isScrolling:!1,prevTime:0,start:function(t){Pe.isScrolling=!0,$e(Pe.i),Pe.interaction=t,Pe.prevTime=(new Date).getTime(),Pe.i=Ve(Pe.scroll)},stop:function(){Pe.isScrolling=!1,$e(Pe.i)}},Oe="ontouchstart"in ue||ue.DocumentTouch&&ge instanceof ue.DocumentTouch,_e=!!Ee,Ae=Oe||_e?20:10,Xe=1,Ye=0,ke=1/0,Ie=ge.all&&!ue.atob?{drag:"move",resizex:"e-resize",resizey:"s-resize",resizexy:"se-resize",resizetop:"n-resize",resizeleft:"w-resize",resizebottom:"s-resize",resizeright:"e-resize",resizetopleft:"se-resize",resizebottomright:"se-resize",resizetopright:"ne-resize",resizebottomleft:"ne-resize",gesture:""}:{drag:"move",resizex:"ew-resize",resizey:"ns-resize",resizexy:"nwse-resize",resizetop:"ns-resize",resizeleft:"ew-resize",resizebottom:"ns-resize",resizeright:"ew-resize",resizetopleft:"nwse-resize",resizebottomright:"nwse-resize",resizetopright:"nesw-resize",resizebottomleft:"nesw-resize",gesture:""},Re={drag:!0,resize:!0,gesture:!0},Fe="onmousewheel"in ge?"mousewheel":"wheel",qe=["dragstart","dragmove","draginertiastart","dragend","dragenter","dragleave","dropactivate","dropdeactivate","dropmove","drop","resizestart","resizemove","resizeinertiastart","resizeend","gesturestart","gesturemove","gestureinertiastart","gestureend","down","move","up","cancel","tap","doubletap","hold"],Ne={},He="Opera"==navigator.appName&&Oe&&navigator.userAgent.match("Presto"),We=/iP(hone|od|ad)/.test(navigator.platform)&&/OS [1-7][^\d]/.test(navigator.appVersion),Ue="matches"in Element.prototype?"matches":"webkitMatchesSelector"in Element.prototype?"webkitMatchesSelector":"mozMatchesSelector"in Element.prototype?"mozMatchesSelector":"oMatchesSelector"in Element.prototype?"oMatchesSelector":"msMatchesSelector",Ve=t.requestAnimationFrame,$e=t.cancelAnimationFrame,Ge=function(){function t(t,e,a,d){var u=ae(p,t),g=l[u];if(g||(g={events:{},typeCount:0},u=p.push(t)-1,l.push(g),c.push(n?{supplied:[],wrapped:[],useCount:[]}:null)),g.events[e]||(g.events[e]=[],g.typeCount++),!he(g.events[e],a)){var v;if(n){var m=c[u],f=ae(m.supplied,a),y=m.wrapped[f]||function(e){e.immediatePropagationStopped||(e.target=e.srcElement,e.currentTarget=t,e.preventDefault=e.preventDefault||i,e.stopPropagation=e.stopPropagation||r,e.stopImmediatePropagation=e.stopImmediatePropagation||s,/mouse|click/.test(e.type)&&(e.pageX=e.clientX+b(t).document.documentElement.scrollLeft,e.pageY=e.clientY+b(t).document.documentElement.scrollTop),a(e))};v=t[o](h+e,y,Boolean(d)),-1===f?(m.supplied.push(a),m.wrapped.push(y),m.useCount.push(1)):m.useCount[f]++}else v=t[o](e,a,d||!1);return g.events[e].push(a),v}}function e(t,i,r,s){var o,d,u,g=ae(p,t),v=l[g],m=r;if(v&&v.events)if(n&&(d=c[g],u=ae(d.supplied,r),m=d.wrapped[u]),"all"!==i){if(v.events[i]){var f=v.events[i].length;if("all"===r)for(o=0;f>o;o++)e(t,i,v.events[i][o],Boolean(s));else for(o=0;f>o;o++)if(v.events[i][o]===r){t[a](h+i,m,s||!1),v.events[i].splice(o,1),n&&d&&(d.useCount[u]--,0===d.useCount[u]&&(d.supplied.splice(u,1),d.wrapped.splice(u,1),d.useCount.splice(u,1)));break}v.events[i]&&0===v.events[i].length&&(v.events[i]=null,v.typeCount--)}v.typeCount||(l.splice(g),p.splice(g),c.splice(g))}else for(i in v.events)v.events.hasOwnProperty(i)&&e(t,i,"all")}function i(){this.returnValue=!1}function r(){this.cancelBubble=!0}function s(){this.cancelBubble=!0,this.immediatePropagationStopped=!0}var n="attachEvent"in ue&&!("addEventListener"in ue),o=n?"attachEvent":"addEventListener",a=n?"detachEvent":"removeEventListener",h=n?"on":"",p=[],l=[],c=[];return{add:t,remove:e,useAttachEvent:n,_elements:p,_targets:l,_attachedListeners:c}}();$.prototype={getPageXY:function(t,e){return f(t,e,this)},getClientXY:function(t,e){return y(t,e,this)},setEventXY:function(t,e){return g(t,e,this)},pointerOver:function(t,e,i){function r(t,e){t&&I(t,i)&&!R(t,i,i)&&F(t,i,i)&&pe(i,e)&&(s.push(t),n.push(i))}if(!this.prepared.name&&this.mouse){var s=[],n=[],o=this.element;this.addPointer(t),!this.target||!R(this.target,this.element,i)&&F(this.target,this.element,i)||(this.target=null,this.element=null,this.matches=[],this.matchElements=[]);var a=De.get(i),h=a&&!R(a,i,i)&&F(a,i,i)&&Z(a.getAction(t,this,i),a);h&&!U(a,i,h)&&(h=null),h?(this.target=a,this.element=i,this.matches=[],this.matchElements=[]):(De.forEachSelector(r),this.validateSelector(t,s,n)?(this.matches=s,this.matchElements=n,this.pointerHover(t,e,this.matches,this.matchElements),Ge.add(i,Ee?ce.move:"mousemove",Le.pointerHover)):this.target&&(X(o,i)?(this.pointerHover(t,e,this.matches,this.matchElements),Ge.add(this.element,Ee?ce.move:"mousemove",Le.pointerHover)):(this.target=null,this.element=null,this.matches=[],this.matchElements=[])))}},pointerHover:function(t,e,i,r,s,n){var o=this.target;if(!this.prepared.name&&this.mouse){var a;this.setEventXY(this.curCoords,t),s?a=this.validateSelector(t,s,n):o&&(a=Z(o.getAction(this.pointers[0],this,this.element),this.target)),o&&o.options.styleCursor&&(o._doc.documentElement.style.cursor=a?j(a):"")}else this.prepared.name&&this.checkAndPreventDefault(e,o,this.element)},pointerOut:function(t,e,i){this.prepared.name||(De.get(i)||Ge.remove(i,Ee?ce.move:"mousemove",Le.pointerHover),this.target&&this.target.options.styleCursor&&!this.interacting()&&(this.target._doc.documentElement.style.cursor=""))},selectorDown:function(t,e,r,s){function n(t,e,i){var s=de?i.querySelectorAll(e):void 0;I(t,p)&&!R(t,p,r)&&F(t,p,r)&&pe(p,e,s)&&(a.matches.push(t),a.matchElements.push(p))}var o,a=this,h=Ge.useAttachEvent?d({},e):e,p=r,l=this.addPointer(t);if(this.holdTimers[l]=setTimeout(function(){a.pointerHold(Ge.useAttachEvent?h:t,h,r,s)},Me._holdDuration),this.pointerIsDown=!0,this.inertiaStatus.active&&this.target.selector)for(;i(p);){if(p===this.element&&Z(this.target.getAction(t,this,this.element),this.target).name===this.prepared.name)return $e(this.inertiaStatus.i),this.inertiaStatus.active=!1,void this.collectEventTargets(t,e,r,"down");p=k(p)}if(this.interacting())return void this.collectEventTargets(t,e,r,"down");for(this.setEventXY(this.curCoords,t);i(p)&&!o;)this.matches=[],this.matchElements=[],De.forEachSelector(n),o=this.validateSelector(t,this.matches,this.matchElements),p=k(p);return o?(this.prepared.name=o.name,this.prepared.axis=o.axis,this.prepared.edges=o.edges,this.collectEventTargets(t,e,r,"down"),this.pointerDown(t,e,r,s,o)):(this.downTimes[l]=(new Date).getTime(),this.downTargets[l]=r,this.downEvent=e,d(this.downPointer,t),u(this.prevCoords,this.curCoords),this.pointerWasMoved=!1,void this.collectEventTargets(t,e,r,"down"))},pointerDown:function(t,e,i,r,s){if(!s&&!this.inertiaStatus.active&&this.pointerWasMoved&&this.prepared.name)return void this.checkAndPreventDefault(e,this.target,this.element);this.pointerIsDown=!0;var n,o=this.addPointer(t);if(this.pointerIds.length<2&&!this.target||!this.prepared.name){var a=De.get(r);a&&!R(a,r,i)&&F(a,r,i)&&(n=Z(s||a.getAction(t,this,r),a,i))&&U(a,r,n)&&(this.target=a,this.element=r)}var h=this.target,p=h&&h.options;if(h&&!this.interacting()){if(n=n||Z(s||h.getAction(t,this,r),h,this.element),this.setEventXY(this.startCoords),!n)return;p.styleCursor&&(h._doc.documentElement.style.cursor=j(n)),this.resizeAxes="resize"===n.name?n.axis:null,"gesture"===n&&this.pointerIds.length<2&&(n=null),this.prepared.name=n.name,this.prepared.axis=n.axis,this.prepared.edges=n.edges,this.snapStatus.snappedX=this.snapStatus.snappedY=this.restrictStatus.restrictedX=this.restrictStatus.restrictedY=0/0,this.downTimes[o]=(new Date).getTime(),this.downTargets[o]=i,this.downEvent=e,d(this.downPointer,t),this.setEventXY(this.prevCoords),this.pointerWasMoved=!1,this.checkAndPreventDefault(e,h,this.element)}else this.inertiaStatus.active&&r===this.element&&Z(h.getAction(t,this,this.element),h).name===this.prepared.name&&($e(this.inertiaStatus.i),this.inertiaStatus.active=!1,this.checkAndPreventDefault(e,h,this.element))},setModifications:function(t,e){var i=this.target,r=!0,s=N(i,this.prepared.name)&&(!i.options[this.prepared.name].snap.endOnly||e),n=H(i,this.prepared.name)&&(!i.options[this.prepared.name].restrict.endOnly||e);return s?this.setSnapping(t):this.snapStatus.locked=!1,n?this.setRestriction(t):this.restrictStatus.restricted=!1,s&&this.snapStatus.locked&&!this.snapStatus.changed?r=n&&this.restrictStatus.restricted&&this.restrictStatus.changed:n&&this.restrictStatus.restricted&&!this.restrictStatus.changed&&(r=!1),r},setStartOffsets:function(t,e,i){var r,s,n=e.getRect(i),o=P(e,i),a=e.options[this.prepared.name].snap,h=e.options[this.prepared.name].restrict;n?(this.startOffset.left=this.startCoords.page.x-n.left,this.startOffset.top=this.startCoords.page.y-n.top,this.startOffset.right=n.right-this.startCoords.page.x,this.startOffset.bottom=n.bottom-this.startCoords.page.y,r="width"in n?n.width:n.right-n.left,s="height"in n?n.height:n.bottom-n.top):this.startOffset.left=this.startOffset.top=this.startOffset.right=this.startOffset.bottom=0,this.snapOffsets.splice(0);var p=a&&"startCoords"===a.offset?{x:this.startCoords.page.x-o.x,y:this.startCoords.page.y-o.y}:a&&a.offset||{x:0,y:0};if(n&&a&&a.relativePoints&&a.relativePoints.length)for(var l=0;lXe),h||this.pointerIsDown&&!this.pointerWasMoved||(this.pointerIsDown&&clearTimeout(this.holdTimers[p]),this.collectEventTargets(t,e,r,"move")),this.pointerIsDown){if(h&&this.pointerWasMoved&&!n)return void this.checkAndPreventDefault(e,this.target,this.element);if(v(this.pointerDelta,this.prevCoords,this.curCoords),this.prepared.name){if(this.pointerWasMoved&&(!this.inertiaStatus.active||t instanceof B&&/inertiastart/.test(t.type))){if(!this.interacting()&&(v(this.pointerDelta,this.prevCoords,this.curCoords),"drag"===this.prepared.name)){var l=Math.abs(o),c=Math.abs(a),d=this.target.options.drag.axis,g=l>c?"x":c>l?"y":"xy";if("xy"!==g&&"xy"!==d&&d!==g){this.prepared.name=null;for(var m=r;i(m);){var f=De.get(m);if(f&&f!==this.target&&!f.options.drag.manualStart&&"drag"===f.getAction(this.downPointer,this,m).name&&q(g,f)){this.prepared.name="drag",this.target=f,this.element=m;break}m=k(m)}if(!this.prepared.name){var y=function(t,e,i){var s=de?i.querySelectorAll(e):void 0;if(t!==this.target)return I(t,r)&&!t.options.drag.manualStart&&!R(t,m,r)&&F(t,m,r)&&pe(m,e,s)&&"drag"===t.getAction(this.downPointer,this,m).name&&q(g,t)&&U(t,m,"drag")?t:void 0};for(m=r;i(m);){var x=De.forEachSelector(y);if(x){this.prepared.name="drag",this.target=x,this.element=m;break}m=k(m)}}}}var S=!!this.prepared.name&&!this.interacting();if(S&&(this.target.options[this.prepared.name].manualStart||!U(this.target,this.element,this.prepared)))return void this.stop();if(this.prepared.name&&this.target){S&&this.start(this.prepared,this.target,this.element);var b=this.setModifications(this.curCoords.page,n);(b||S)&&(this.prevEvent=this[this.prepared.name+"Move"](e)),this.checkAndPreventDefault(e,this.target,this.element)}}u(this.prevCoords,this.curCoords),(this.dragging||this.resizing)&&Pe.edgeMove(e)}}},dragStart:function(t){var e=new B(this,t,"drag","start",this.element);
3 | this.dragging=!0,this.target.fire(e),this.activeDrops.dropzones=[],this.activeDrops.elements=[],this.activeDrops.rects=[],this.dynamicDrop||this.setActiveDrops(this.element);var i=this.getDropEvents(t,e);return i.activate&&this.fireActiveDrops(i.activate),e},dragMove:function(t){var e=this.target,i=new B(this,t,"drag","move",this.element),r=this.element,s=this.getDrop(i,r);this.dropTarget=s.dropzone,this.dropElement=s.element;var n=this.getDropEvents(t,i);return e.fire(i),n.leave&&this.prevDropTarget.fire(n.leave),n.enter&&this.dropTarget.fire(n.enter),n.move&&this.dropTarget.fire(n.move),this.prevDropTarget=this.dropTarget,this.prevDropElement=this.dropElement,i},resizeStart:function(t){var e=new B(this,t,"resize","start",this.element);if(this.prepared.edges){var i=this.target.getRect(this.element);if(this.target.options.resize.square){var r=d({},this.prepared.edges);r.top=r.top||r.left&&!r.bottom,r.left=r.left||r.top&&!r.right,r.bottom=r.bottom||r.right&&!r.top,r.right=r.right||r.bottom&&!r.left,this.prepared._squareEdges=r}else this.prepared._squareEdges=null;this.resizeRects={start:i,current:d({},i),restricted:d({},i),previous:d({},i),delta:{left:0,right:0,width:0,top:0,bottom:0,height:0}},e.rect=this.resizeRects.restricted,e.deltaRect=this.resizeRects.delta}return this.target.fire(e),this.resizing=!0,e},resizeMove:function(t){var e=new B(this,t,"resize","move",this.element),i=this.prepared.edges,r=this.target.options.resize.invert,s="reposition"===r||"negate"===r;if(i){var n=e.dx,o=e.dy,a=this.resizeRects.start,h=this.resizeRects.current,p=this.resizeRects.restricted,l=this.resizeRects.delta,c=d(this.resizeRects.previous,p);if(this.target.options.resize.square){var u=i;i=this.prepared._squareEdges,u.left&&u.bottom||u.right&&u.top?o=-n:u.left||u.right?o=n:(u.top||u.bottom)&&(n=o)}if(i.top&&(h.top+=o),i.bottom&&(h.bottom+=o),i.left&&(h.left+=n),i.right&&(h.right+=n),s){if(d(p,h),"reposition"===r){var g;p.top>p.bottom&&(g=p.top,p.top=p.bottom,p.bottom=g),p.left>p.right&&(g=p.left,p.left=p.right,p.right=g)}}else p.top=Math.min(h.top,a.bottom),p.bottom=Math.max(h.bottom,a.top),p.left=Math.min(h.left,a.right),p.right=Math.max(h.right,a.left);p.width=p.right-p.left,p.height=p.bottom-p.top;for(var v in p)l[v]=p[v]-c[v];e.edges=this.prepared.edges,e.rect=p,e.deltaRect=l}return this.target.fire(e),e},gestureStart:function(t){var e=new B(this,t,"gesture","start",this.element);return e.ds=0,this.gesture.startDistance=this.gesture.prevDistance=e.distance,this.gesture.startAngle=this.gesture.prevAngle=e.angle,this.gesture.scale=1,this.gesturing=!0,this.target.fire(e),e},gestureMove:function(t){if(!this.pointerIds.length)return this.prevEvent;var e;return e=new B(this,t,"gesture","move",this.element),e.ds=e.scale-this.gesture.scale,this.target.fire(e),this.gesture.prevAngle=e.angle,this.gesture.prevDistance=e.distance,1/0===e.scale||null===e.scale||void 0===e.scale||isNaN(e.scale)||(this.gesture.scale=e.scale),e},pointerHold:function(t,e,i){this.collectEventTargets(t,e,i,"hold")},pointerUp:function(t,e,i,r){var s=this.mouse?0:ae(this.pointerIds,E(t));clearTimeout(this.holdTimers[s]),this.collectEventTargets(t,e,i,"up"),this.collectEventTargets(t,e,i,"tap"),this.pointerEnd(t,e,i,r),this.removePointer(t)},pointerCancel:function(t,e,i,r){var s=this.mouse?0:ae(this.pointerIds,E(t));clearTimeout(this.holdTimers[s]),this.collectEventTargets(t,e,i,"cancel"),this.pointerEnd(t,e,i,r),this.removePointer(t)},ie8Dblclick:function(t,e,i){this.prevTap&&e.clientX===this.prevTap.clientX&&e.clientY===this.prevTap.clientY&&i===this.prevTap.target&&(this.downTargets[0]=i,this.downTimes[0]=(new Date).getTime(),this.collectEventTargets(t,e,i,"tap"))},pointerEnd:function(t,e,i,r){var s,n=this.target,o=n&&n.options,a=o&&this.prepared.name&&o[this.prepared.name].inertia,h=this.inertiaStatus;if(this.interacting()){if(h.active)return;var p,l,c=(new Date).getTime(),g=!1,v=!1,m=!1,f=N(n,this.prepared.name)&&o[this.prepared.name].snap.endOnly,y=H(n,this.prepared.name)&&o[this.prepared.name].restrict.endOnly,x=0,E=0;if(p=this.dragging?"x"===o.drag.axis?Math.abs(this.pointerDelta.client.vx):"y"===o.drag.axis?Math.abs(this.pointerDelta.client.vy):this.pointerDelta.client.speed:this.pointerDelta.client.speed,g=a&&a.enabled&&"gesture"!==this.prepared.name&&e!==h.startEvent,v=g&&c-this.curCoords.timeStamp<50&&p>a.minSpeed&&p>a.endSpeed,g&&!v&&(f||y)){var S={};S.snap=S.restrict=S,f&&(this.setSnapping(this.curCoords.page,S),S.locked&&(x+=S.dx,E+=S.dy)),y&&(this.setRestriction(this.curCoords.page,S),S.restricted&&(x+=S.dx,E+=S.dy)),(x||E)&&(m=!0)}if(v||m){if(u(h.upCoords,this.curCoords),this.pointers[0]=h.startEvent=l=new B(this,e,this.prepared.name,"inertiastart",this.element),h.t0=c,n.fire(h.startEvent),v){h.vx0=this.pointerDelta.client.vx,h.vy0=this.pointerDelta.client.vy,h.v0=p,this.calcInertia(h);var b,w=d({},this.curCoords.page),D=P(n,this.element);if(w.x=w.x+h.xe-D.x,w.y=w.y+h.ye-D.y,b={useStatusXY:!0,x:w.x,y:w.y,dx:0,dy:0,snap:null},b.snap=b,x=E=0,f){var z=this.setSnapping(this.curCoords.page,b);z.locked&&(x+=z.dx,E+=z.dy)}if(y){var T=this.setRestriction(this.curCoords.page,b);T.restricted&&(x+=T.dx,E+=T.dy)}h.modifiedXe+=x,h.modifiedYe+=E,h.i=Ve(this.boundInertiaFrame)}else h.smoothEnd=!0,h.xe=x,h.ye=E,h.sx=h.sy=0,h.i=Ve(this.boundSmoothEndFrame);return void(h.active=!0)}(f||y)&&this.pointerMove(t,e,i,r,!0)}if(this.dragging){s=new B(this,e,"drag","end",this.element);var C=this.element,M=this.getDrop(s,C);this.dropTarget=M.dropzone,this.dropElement=M.element;var O=this.getDropEvents(e,s);O.leave&&this.prevDropTarget.fire(O.leave),O.enter&&this.dropTarget.fire(O.enter),O.drop&&this.dropTarget.fire(O.drop),O.deactivate&&this.fireActiveDrops(O.deactivate),n.fire(s)}else this.resizing?(s=new B(this,e,"resize","end",this.element),n.fire(s)):this.gesturing&&(s=new B(this,e,"gesture","end",this.element),n.fire(s));this.stop(e)},collectDrops:function(t){var e,r=[],s=[];for(t=t||this.element,e=0;eh;h++){var c=a[h];c!==t&&(r.push(n),s.push(c))}}return{dropzones:r,elements:s}},fireActiveDrops:function(t){var e,i,r,s;for(e=0;e1&&ze.splice(ae(ze,this),1)},inertiaFrame:function(){var t=this.inertiaStatus,e=this.target.options[this.prepared.name].inertia,i=e.resistance,r=(new Date).getTime()/1e3-t.t0;if(re?(t.sx=A(e,0,t.xe,i),t.sy=A(e,0,t.ye,i),this.pointerMove(t.startEvent,t.startEvent),t.i=Ve(this.boundSmoothEndFrame)):(t.sx=t.xe,t.sy=t.ye,this.pointerMove(t.startEvent,t.startEvent),t.active=!1,t.smoothEnd=!1,this.pointerEnd(t.startEvent,t.startEvent))},addPointer:function(t){var e=E(t),i=this.mouse?0:ae(this.pointerIds,e);return-1===i&&(i=this.pointerIds.length),this.pointerIds[i]=e,this.pointers[i]=t,i},removePointer:function(t){var e=E(t),i=this.mouse?0:ae(this.pointerIds,e);-1!==i&&(this.interacting()||this.pointers.splice(i,1),this.pointerIds.splice(i,1),this.downTargets.splice(i,1),this.downTimes.splice(i,1),this.holdTimers.splice(i,1))},recordPointer:function(t){if(!this.inertiaStatus.active){var e=this.mouse?0:ae(this.pointerIds,E(t));-1!==e&&(this.pointers[e]=t)}},collectEventTargets:function(t,e,r,s){function n(t,e,n){var o=de?n.querySelectorAll(e):void 0;t._iEvents[s]&&i(p)&&I(t,p)&&!R(t,p,r)&&F(t,p,r)&&pe(p,e,o)&&(a.push(t),h.push(p))}var o=this.mouse?0:ae(this.pointerIds,E(t));if("tap"!==s||!this.pointerWasMoved&&this.downTargets[o]&&this.downTargets[o]===r){for(var a=[],h=[],p=r;p;)ie.isSet(p)&&ie(p)._iEvents[s]&&(a.push(ie(p)),h.push(p)),De.forEachSelector(n),p=k(p);(a.length||"tap"===s)&&this.firePointers(t,e,r,a,h,s)}},firePointers:function(t,e,i,r,s,n){var o,a,h,p=this.mouse?0:ae(E(t)),c={};for("doubletap"===n?c=t:(d(c,e),e!==t&&d(c,t),c.preventDefault=K,c.stopPropagation=B.prototype.stopPropagation,c.stopImmediatePropagation=B.prototype.stopImmediatePropagation,c.interaction=this,c.timeStamp=(new Date).getTime(),c.originalEvent=e,c.type=n,c.pointerId=E(t),c.pointerType=this.mouse?"mouse":_e?l(t.pointerType)?t.pointerType:[,,"touch","pen","mouse"][t.pointerType]:"touch"),"tap"===n&&(c.dt=c.timeStamp-this.downTimes[p],a=c.timeStamp-this.tapTime,h=!!(this.prevTap&&"doubletap"!==this.prevTap.type&&this.prevTap.target===c.target&&500>a),c.double=h,this.tapTime=c.timeStamp),o=0;or;r++){var n=e[r],o=i[r],a=Z(n.getAction(t,this,o),n);if(a&&U(n,o,a))return this.target=n,this.element=o,a}},setSnapping:function(t,e){var i,r,s,n=this.target.options[this.prepared.name].snap,o=[];if(e=e||this.snapStatus,e.useStatusXY)r={x:e.x,y:e.y};else{var p=P(this.target,this.element);r=d({},t),r.x-=p.x,r.y-=p.y}e.realX=r.x,e.realY=r.y,r.x=r.x-this.inertiaStatus.resumeDx,r.y=r.y-this.inertiaStatus.resumeDy;for(var l=n.targets?n.targets.length:0,c=0;cs;s++)i=a(n.targets[s])?n.targets[s](u.x,u.y,this):n.targets[s],i&&o.push({x:h(i.x)?i.x+this.snapOffsets[c].x:u.x,y:h(i.y)?i.y+this.snapOffsets[c].y:u.y,range:h(i.range)?i.range:n.range})}var g={target:null,inRange:!1,distance:0,range:0,dx:0,dy:0};for(s=0,l=o.length;l>s;s++){i=o[s];var v=i.range,m=i.x-r.x,f=i.y-r.y,y=Se(m,f),x=v>=y;1/0===v&&g.inRange&&1/0!==g.range&&(x=!1),(!g.target||(x?g.inRange&&1/0!==v?y/vKe;Ke++){var Je=Be[Ke];Le[Je]=L(Je)}De.indexOfElement=function(t,e){e=e||ge;for(var i=0;is.left&&l.xs.top&&l.y=s.left&&u<=s.right&&g>=s.top&&g<=s.bottom}if(h(o)){var v=Math.max(0,Math.min(s.right,d.right)-Math.max(s.left,d.left))*Math.max(0,Math.min(s.bottom,d.bottom)-Math.max(s.top,d.top)),m=v/(d.width*d.height);n=m>=o}return this.options.dropChecker&&(n=this.options.dropChecker(t,n,this,r,e,i)),n},dropChecker:function(t){return a(t)?(this.options.dropChecker=t,this):null===t?(delete this.options.getRect,this):this.options.dropChecker},accept:function(t){return i(t)?(this.options.drop.accept=t,this):c(t)?(this.options.drop.accept=t,this):null===t?(delete this.options.drop.accept,this):this.options.drop.accept},resizable:function(t){return o(t)?(this.options.resize.enabled=t.enabled===!1?!1:!0,this.setPerAction("resize",t),this.setOnEvents("resize",t),/^x$|^y$|^xy$/.test(t.axis)?this.options.resize.axis=t.axis:null===t.axis&&(this.options.resize.axis=Me.resize.axis),p(t.square)&&(this.options.resize.square=t.square),this):p(t)?(this.options.resize.enabled=t,this):this.options.resize},squareResize:function(t){return p(t)?(this.options.resize.square=t,this):null===t?(delete this.options.resize.square,this):this.options.resize.square},gesturable:function(t){return o(t)?(this.options.gesture.enabled=t.enabled===!1?!1:!0,this.setPerAction("gesture",t),this.setOnEvents("gesture",t),this):p(t)?(this.options.gesture.enabled=t,this):this.options.gesture},autoScroll:function(t){return o(t)?t=d({actions:["drag","resize"]},t):p(t)&&(t={actions:["drag","resize"],enabled:t}),this.setOptions("autoScroll",t)},snap:function(t){var e=this.setOptions("snap",t);return e===this?this:e.drag},setOptions:function(t,e){var i,r=e&&n(e.actions)?e.actions:["drag"];if(o(e)||p(e)){for(i=0;ii&&!t.immediatePropagationStopped;i++)n=e[i].name,e[i](t);if(a(this[s])&&(n=this[s].name,this[s](t)),t.type in Ne&&(e=Ne[t.type]))for(i=0,r=e.length;r>i&&!t.immediatePropagationStopped;i++)n=e[i].name,e[i](t);return this},on:function(t,e,i){var r;if(l(t)&&-1!==t.search(" ")&&(t=t.trim().split(/ +/)),n(t)){for(r=0;r=0&&(h.selectors[a]!==this.selector||h.contexts[a]!==this._context);a--);-1===a&&(a=h.selectors.length,h.selectors.push(this.selector),h.contexts.push(this._context),h.listeners.push([])),h.listeners[a].push([e,i])}else Ge.add(this._element,t,e,i);return this},off:function(t,e,i){var r;if(l(t)&&-1!==t.search(" ")&&(t=t.trim().split(/ +/)),n(t)){for(r=0;r=0;h--)if(p.selectors[h]===this.selector&&p.contexts[h]===this._context){var d=p.listeners[h];for(r=d.length-1;r>=0;r--){var u=d[r][0],g=d[r][1];if(u===e&&g===i){d.splice(r,1),d.length||(p.selectors.splice(h,1),p.contexts.splice(h,1),p.listeners.splice(h,1),Ge.remove(this._context,t,te),Ge.remove(this._context,t,ee,!0),p.selectors.length||(Ce[t]=null)),c=!0;break}}if(c)break}}else Ge.remove(this._element,t,e,i);return this},set:function(t){o(t)||(t={}),this.options=d({},Me.base);var e,i=["drag","drop","resize","gesture"],r=["draggable","dropzone","resizable","gesturable"],s=d(d({},Me.perAction),t[n]||{});for(e=0;ee;e++){var h=a[e];this.options[h]=Me.base[h],h in t&&this[h](t[h])}return this},unset:function(){if(Ge.remove(this,"all"),l(this.selector))for(var t in Ce)for(var e=Ce[t],i=0;i0;e--)ze[e].stop(t);return ie},ie.dynamicDrop=function(t){return p(t)?(Te=t,ie):Te},ie.pointerMoveTolerance=function(t){return h(t)?(Xe=t,this):Xe},ie.maxInteractions=function(t){return h(t)?(ke=t,this):ke},ie.createSnapGrid=function(t){return function(e,i){var r=0,s=0;o(t.offset)&&(r=t.offset.x,s=t.offset.y);var n=Math.round((e-r)/t.x),a=Math.round((i-s)/t.y),h=n*t.x+r,p=a*t.y+s;return{x:h,y:p,range:t.range}}},oe(ge),Ue in Element.prototype&&a(Element.prototype[Ue])||(de=function(t,e,i){i=i||t.parentNode.querySelectorAll(e);for(var r=0,s=i.length;s>r;r++)if(i[r]===t)return!0;return!1}),function(){for(var e=0,i=["ms","moz","webkit","o"],r=0;r",d.insertBefore(c.lastChild,d.firstChild)}function m(){var a=s.elements;return typeof a=="string"?a.split(" "):a}function n(a){var b=j[a[h]];return b||(b={},i++,a[h]=i,j[i]=b),b}function o(a,c,d){c||(c=b);if(k)return c.createElement(a);d||(d=n(c));var g;return d.cache[a]?g=d.cache[a].cloneNode():f.test(a)?g=(d.cache[a]=d.createElem(a)).cloneNode():g=d.createElem(a),g.canHaveChildren&&!e.test(a)&&!g.tagUrn?d.frag.appendChild(g):g}function p(a,c){a||(a=b);if(k)return a.createDocumentFragment();c=c||n(a);var d=c.frag.cloneNode(),e=0,f=m(),g=f.length;for(;e",g="hidden"in a,k=a.childNodes.length==1||function(){b.createElement("a");var a=b.createDocumentFragment();return typeof a.cloneNode=="undefined"||typeof a.createDocumentFragment=="undefined"||typeof a.createElement=="undefined"}()}catch(c){g=!0,k=!0}})();var s={elements:d.elements||"abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output progress section summary template time video",version:c,shivCSS:d.shivCSS!==!1,supportsUnknownElements:k,shivMethods:d.shivMethods!==!1,type:"default",shivDocument:r,createElement:o,createDocumentFragment:p};a.html5=s,r(b)}(this,b),e._version=d,e._domPrefixes=o,e._cssomPrefixes=n,e.testProp=function(a){return B([a])},e.testAllProps=D,e.prefixed=function(a,b,c){return b?D(a,b,c):D(a,"pfx")},g.className=g.className.replace(/(^|\s)no-js(\s|$)/,"$1$2")+(f?" js "+s.join(" "):""),e}(this,this.document),function(a,b,c){function d(a){return"[object Function]"==o.call(a)}function e(a){return"string"==typeof a}function f(){}function g(a){return!a||"loaded"==a||"complete"==a||"uninitialized"==a}function h(){var a=p.shift();q=1,a?a.t?m(function(){("c"==a.t?B.injectCss:B.injectJs)(a.s,0,a.a,a.x,a.e,1)},0):(a(),h()):q=0}function i(a,c,d,e,f,i,j){function k(b){if(!o&&g(l.readyState)&&(u.r=o=1,!q&&h(),l.onload=l.onreadystatechange=null,b)){"img"!=a&&m(function(){t.removeChild(l)},50);for(var d in y[c])y[c].hasOwnProperty(d)&&y[c][d].onload()}}var j=j||B.errorTimeout,l=b.createElement(a),o=0,r=0,u={t:d,s:c,e:f,a:i,x:j};1===y[c]&&(r=1,y[c]=[]),"object"==a?l.data=c:(l.src=c,l.type=a),l.width=l.height="0",l.onerror=l.onload=l.onreadystatechange=function(){k.call(this,r)},p.splice(e,0,u),"img"!=a&&(r||2===y[c]?(t.insertBefore(l,s?null:n),m(k,j)):y[c].push(l))}function j(a,b,c,d,f){return q=0,b=b||"j",e(a)?i("c"==b?v:u,a,b,this.i++,c,d,f):(p.splice(this.i++,0,a),1==p.length&&h()),this}function k(){var a=B;return a.loader={load:j,i:0},a}var l=b.documentElement,m=a.setTimeout,n=b.getElementsByTagName("script")[0],o={}.toString,p=[],q=0,r="MozAppearance"in l.style,s=r&&!!b.createRange().compareNode,t=s?l:n.parentNode,l=a.opera&&"[object Opera]"==o.call(a.opera),l=!!b.attachEvent&&!l,u=r?"object":l?"script":"img",v=l?"script":u,w=Array.isArray||function(a){return"[object Array]"==o.call(a)},x=[],y={},z={timeout:function(a,b){return b.length&&(a.timeout=b[0]),a}},A,B;B=function(a){function b(a){var a=a.split("!"),b=x.length,c=a.pop(),d=a.length,c={url:c,origUrl:c,prefixes:a},e,f,g;for(f=0;f