├── .gitignore ├── LICENSE.txt ├── README.txt ├── _config.yml ├── _includes ├── banner.html ├── cta.html ├── footer.html ├── header.html └── nav.html ├── _layouts ├── default.html └── post.html ├── _posts ├── 2014-08-20-another-post.md ├── 2014-08-25-test-post.md └── 2014-08-31-hello-word.md ├── assets ├── css │ ├── font-awesome.min.css │ ├── ie │ │ ├── PIE.htc │ │ ├── backgroundsize.min.htc │ │ ├── html5shiv.js │ │ └── v8.css │ ├── images │ │ └── overlay.png │ ├── skel.css │ ├── style-mobile.css │ ├── style-mobilep.css │ ├── style-narrow.css │ ├── style-narrower.css │ ├── style-normal.css │ ├── style-wide.css │ └── style.css ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ └── fontawesome-webfont.woff ├── images │ ├── banner.jpg │ ├── pic01.jpg │ ├── pic02.jpg │ ├── pic03.jpg │ ├── pic04.jpg │ ├── pic05.jpg │ ├── pic06.jpg │ └── pic07.jpg ├── js │ ├── init.js │ ├── jquery.dropotron.min.js │ ├── jquery.min.js │ ├── jquery.scrollgress.min.js │ ├── skel-layers.min.js │ └── skel.min.js └── sass │ ├── _mixins.scss │ ├── _vars.scss │ ├── ie │ └── v8.scss │ ├── style-mobile.scss │ ├── style-mobilep.scss │ ├── style-narrow.scss │ ├── style-narrower.scss │ ├── style-normal.scss │ ├── style-wide.scss │ └── style.scss ├── blog └── index.html └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | _site/ 2 | .sass-cache/ 3 | 4 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | Creative Commons Attribution 3.0 Unported 2 | http://creativecommons.org/licenses/by/3.0/ 3 | 4 | License 5 | 6 | THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. 7 | 8 | BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. 9 | 10 | 1. Definitions 11 | 12 | 1. "Adaptation" means a work based upon the Work, or upon the Work and other pre-existing works, such as a translation, adaptation, derivative work, arrangement of music or other alterations of a literary or artistic work, or phonogram or performance and includes cinematographic adaptations or any other form in which the Work may be recast, transformed, or adapted including in any form recognizably derived from the original, except that a work that constitutes a Collection will not be considered an Adaptation for the purpose of this License. For the avoidance of doubt, where the Work is a musical work, performance or phonogram, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered an Adaptation for the purpose of this License. 13 | 2. "Collection" means a collection of literary or artistic works, such as encyclopedias and anthologies, or performances, phonograms or broadcasts, or other works or subject matter other than works listed in Section 1(f) below, which, by reason of the selection and arrangement of their contents, constitute intellectual creations, in which the Work is included in its entirety in unmodified form along with one or more other contributions, each constituting separate and independent works in themselves, which together are assembled into a collective whole. A work that constitutes a Collection will not be considered an Adaptation (as defined above) for the purposes of this License. 14 | 3. "Distribute" means to make available to the public the original and copies of the Work or Adaptation, as appropriate, through sale or other transfer of ownership. 15 | 4. "Licensor" means the individual, individuals, entity or entities that offer(s) the Work under the terms of this License. 16 | 5. "Original Author" means, in the case of a literary or artistic work, the individual, individuals, entity or entities who created the Work or if no individual or entity can be identified, the publisher; and in addition (i) in the case of a performance the actors, singers, musicians, dancers, and other persons who act, sing, deliver, declaim, play in, interpret or otherwise perform literary or artistic works or expressions of folklore; (ii) in the case of a phonogram the producer being the person or legal entity who first fixes the sounds of a performance or other sounds; and, (iii) in the case of broadcasts, the organization that transmits the broadcast. 17 | 6. "Work" means the literary and/or artistic work offered under the terms of this License including without limitation any production in the literary, scientific and artistic domain, whatever may be the mode or form of its expression including digital form, such as a book, pamphlet and other writing; a lecture, address, sermon or other work of the same nature; a dramatic or dramatico-musical work; a choreographic work or entertainment in dumb show; a musical composition with or without words; a cinematographic work to which are assimilated works expressed by a process analogous to cinematography; a work of drawing, painting, architecture, sculpture, engraving or lithography; a photographic work to which are assimilated works expressed by a process analogous to photography; a work of applied art; an illustration, map, plan, sketch or three-dimensional work relative to geography, topography, architecture or science; a performance; a broadcast; a phonogram; a compilation of data to the extent it is protected as a copyrightable work; or a work performed by a variety or circus performer to the extent it is not otherwise considered a literary or artistic work. 18 | 7. "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation. 19 | 8. "Publicly Perform" means to perform public recitations of the Work and to communicate to the public those public recitations, by any means or process, including by wire or wireless means or public digital performances; to make available to the public Works in such a way that members of the public may access these Works from a place and at a place individually chosen by them; to perform the Work to the public by any means or process and the communication to the public of the performances of the Work, including by public digital performance; to broadcast and rebroadcast the Work by any means including signs, sounds or images. 20 | 9. "Reproduce" means to make copies of the Work by any means including without limitation by sound or visual recordings and the right of fixation and reproducing fixations of the Work, including storage of a protected performance or phonogram in digital form or other electronic medium. 21 | 22 | 2. Fair Dealing Rights. Nothing in this License is intended to reduce, limit, or restrict any uses free from copyright or rights arising from limitations or exceptions that are provided for in connection with the copyright protection under copyright law or other applicable laws. 23 | 24 | 3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: 25 | 26 | 1. to Reproduce the Work, to incorporate the Work into one or more Collections, and to Reproduce the Work as incorporated in the Collections; 27 | 2. to create and Reproduce Adaptations provided that any such Adaptation, including any translation in any medium, takes reasonable steps to clearly label, demarcate or otherwise identify that changes were made to the original Work. For example, a translation could be marked "The original work was translated from English to Spanish," or a modification could indicate "The original work has been modified."; 28 | 3. to Distribute and Publicly Perform the Work including as incorporated in Collections; and, 29 | 4. to Distribute and Publicly Perform Adaptations. 30 | 5. 31 | 32 | For the avoidance of doubt: 33 | 1. Non-waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme cannot be waived, the Licensor reserves the exclusive right to collect such royalties for any exercise by You of the rights granted under this License; 34 | 2. Waivable Compulsory License Schemes. In those jurisdictions in which the right to collect royalties through any statutory or compulsory licensing scheme can be waived, the Licensor waives the exclusive right to collect such royalties for any exercise by You of the rights granted under this License; and, 35 | 3. Voluntary License Schemes. The Licensor waives the right to collect royalties, whether individually or, in the event that the Licensor is a member of a collecting society that administers voluntary licensing schemes, via that society, from any exercise by You of the rights granted under this License. 36 | 37 | The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. Subject to Section 8(f), all rights not expressly granted by Licensor are hereby reserved. 38 | 39 | 4. Restrictions. The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: 40 | 41 | 1. You may Distribute or Publicly Perform the Work only under the terms of this License. You must include a copy of, or the Uniform Resource Identifier (URI) for, this License with every copy of the Work You Distribute or Publicly Perform. You may not offer or impose any terms on the Work that restrict the terms of this License or the ability of the recipient of the Work to exercise the rights granted to that recipient under the terms of the License. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties with every copy of the Work You Distribute or Publicly Perform. When You Distribute or Publicly Perform the Work, You may not impose any effective technological measures on the Work that restrict the ability of a recipient of the Work from You to exercise the rights granted to that recipient under the terms of the License. This Section 4(a) applies to the Work as incorporated in a Collection, but this does not require the Collection apart from the Work itself to be made subject to the terms of this License. If You create a Collection, upon notice from any Licensor You must, to the extent practicable, remove from the Collection any credit as required by Section 4(b), as requested. If You create an Adaptation, upon notice from any Licensor You must, to the extent practicable, remove from the Adaptation any credit as required by Section 4(b), as requested. 42 | 2. If You Distribute, or Publicly Perform the Work or any Adaptations or Collections, You must, unless a request has been made pursuant to Section 4(a), keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or if the Original Author and/or Licensor designate another party or parties (e.g., a sponsor institute, publishing entity, journal) for attribution ("Attribution Parties") in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; (ii) the title of the Work if supplied; (iii) to the extent reasonably practicable, the URI, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and (iv) , consistent with Section 3(b), in the case of an Adaptation, a credit identifying the use of the Work in the Adaptation (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). The credit required by this Section 4 (b) may be implemented in any reasonable manner; provided, however, that in the case of a Adaptation or Collection, at a minimum such credit will appear, if a credit for all contributing authors of the Adaptation or Collection appears, then as part of these credits and in a manner at least as prominent as the credits for the other contributing authors. For the avoidance of doubt, You may only use the credit required by this Section for the purpose of attribution in the manner set out above and, by exercising Your rights under this License, You may not implicitly or explicitly assert or imply any connection with, sponsorship or endorsement by the Original Author, Licensor and/or Attribution Parties, as appropriate, of You or Your use of the Work, without the separate, express prior written permission of the Original Author, Licensor and/or Attribution Parties. 43 | 3. Except as otherwise agreed in writing by the Licensor or as may be otherwise permitted by applicable law, if You Reproduce, Distribute or Publicly Perform the Work either by itself or as part of any Adaptations or Collections, You must not distort, mutilate, modify or take other derogatory action in relation to the Work which would be prejudicial to the Original Author's honor or reputation. Licensor agrees that in those jurisdictions (e.g. Japan), in which any exercise of the right granted in Section 3(b) of this License (the right to make Adaptations) would be deemed to be a distortion, mutilation, modification or other derogatory action prejudicial to the Original Author's honor and reputation, the Licensor will waive or not assert, as appropriate, this Section, to the fullest extent permitted by the applicable national law, to enable You to reasonably exercise Your right under Section 3(b) of this License (right to make Adaptations) but not otherwise. 44 | 45 | 5. Representations, Warranties and Disclaimer 46 | 47 | UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. 48 | 49 | 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 50 | 51 | 7. Termination 52 | 53 | 1. This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Adaptations or Collections from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. 54 | 2. Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. 55 | 56 | 8. Miscellaneous 57 | 58 | 1. Each time You Distribute or Publicly Perform the Work or a Collection, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License. 59 | 2. Each time You Distribute or Publicly Perform an Adaptation, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License. 60 | 3. If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. 61 | 4. No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. 62 | 5. This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You. 63 | 6. The rights granted under, and the subject matter referenced, in this License were drafted utilizing the terminology of the Berne Convention for the Protection of Literary and Artistic Works (as amended on September 28, 1979), the Rome Convention of 1961, the WIPO Copyright Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 and the Universal Copyright Convention (as revised on July 24, 1971). These rights and subject matter take effect in the relevant jurisdiction in which the License terms are sought to be enforced according to the corresponding provisions of the implementation of those treaty provisions in the applicable national law. If the standard suite of rights granted under applicable copyright law includes additional rights not granted under this License, such additional rights are deemed to be included in the License; this License is not intended to restrict the license of any rights under applicable law. 64 | -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- 1 | Alpha by HTML5 UP 2 | html5up.net | @n33co 3 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 4 | 5 | 6 | A clean, super minimal responsive template geared towards startups, app devs, and other 7 | dedicated folks working tirelessly to launch their products. Includes a landing page, 8 | generic page, contact page, and a page with a whole mess of pre-styled elements (something 9 | new I'm trying out). Sass sources are also included. 10 | 11 | Demo images* courtesy of Unsplash, a radtastic collection of CC0 (public domain) images 12 | you can use for pretty much whatever. 13 | 14 | (* = Not included) 15 | 16 | Feedback, bug reports, and comments are not only welcome, but strongly encouraged :) 17 | 18 | AJ 19 | n33.co @n33co dribbble.com/n33 20 | 21 | 22 | Credits: 23 | 24 | Demo Images: 25 | Unsplash (unsplash.com) 26 | 27 | Icons: 28 | Font Awesome (fortawesome.github.com/Font-Awesome) 29 | 30 | Other: 31 | jQuery (jquery.com) 32 | html5shiv.js (@afarkas @jdalton @jon_neal @rem) 33 | CSS3 Pie (css3pie.com) 34 | background-size polyfill (github.com/louisremi) 35 | skel (n33.co) -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | name: Alpha 2 | description: Alphs template for Jekyll 3 | baseurl: '/Alpha-Jekyll-Theme' 4 | 5 | url: "http://localhost:4000" 6 | 7 | paginate: 10 8 | 9 | -------------------------------------------------------------------------------- /_includes/banner.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_includes/cta.html: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 |

Sign up for beta access

5 |

Blandit varius ut praesent nascetur eu penatibus nisi risus faucibus nunc.

6 | 7 |
8 |
9 |
10 | 11 |
12 |
13 | 14 |
15 |
16 |
17 | 18 |
-------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /_includes/header.html: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | {{ page.title }} 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 25 | 26 | 27 | {% if page.url == "/index.html" %} 28 | 29 | 30 | 38 | {% else %} 39 | 40 | 41 | {% endif %} 42 | {% include nav.html %} 43 | 44 |
45 | -------------------------------------------------------------------------------- /_includes/nav.html: -------------------------------------------------------------------------------- 1 | 2 | 29 | -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- 1 | {% include header.html %} 2 | {{ content }} 3 | {% include footer.html %} -------------------------------------------------------------------------------- /_layouts/post.html: -------------------------------------------------------------------------------- 1 | {% include header.html %} 2 |
3 |

{{ page.title }}

4 | {{ page.date | date_to_string }} 5 | {{ page.content }} 6 |
7 | {% include footer.html %} -------------------------------------------------------------------------------- /_posts/2014-08-20-another-post.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Lorem Ipsum Dolor Sit Amet 3 | layout: post 4 | --- 5 | 6 | 7 |

Non aute irure

8 |

Integer volutpat ante et accumsan commophasellus sed aliquam feugiat lorem aliquet ut enim rutrum phasellus iaculis accumsan dolore magna aliquam veroeros.

9 |

Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

10 | -------------------------------------------------------------------------------- /_posts/2014-08-25-test-post.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Sunt in culpa qui 3 | layout: post 4 | --- 5 | 6 | 7 |

Sed lorem adipiscing

8 |

Integer volutpat ante et accumsan commophasellus sed aliquam feugiat lorem aliquet ut enim rutrum phasellus iaculis accumsan dolore magna aliquam veroeros.

9 |

Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.

10 | -------------------------------------------------------------------------------- /_posts/2014-08-31-hello-word.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Ullamco Laboris minim veniam 3 | layout: post 4 | --- 5 | 6 | ![]({{ site.baseurl }}/assets/images/pic03.jpg) 7 | {: .image.featured} 8 | 9 | ### Consectetur tempor ut dolore 10 | 11 | Ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.. 12 | 13 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. -------------------------------------------------------------------------------- /assets/css/font-awesome.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.2.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.2.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.2.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff?v=4.2.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.2.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.2.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}.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}@-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: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{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-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"} -------------------------------------------------------------------------------- /assets/css/ie/backgroundsize.min.htc: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /assets/css/ie/html5shiv.js: -------------------------------------------------------------------------------- 1 | /* 2 | HTML5 Shiv v3.6.2 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed 3 | */ 4 | (function(l,f){function m(){var a=e.elements;return"string"==typeof a?a.split(" "):a}function i(a){var b=n[a[o]];b||(b={},h++,a[o]=h,n[h]=b);return b}function p(a,b,c){b||(b=f);if(g)return b.createElement(a);c||(c=i(b));b=c.cache[a]?c.cache[a].cloneNode():r.test(a)?(c.cache[a]=c.createElem(a)).cloneNode():c.createElem(a);return b.canHaveChildren&&!s.test(a)?c.frag.appendChild(b):b}function t(a,b){if(!b.cache)b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag(); 5 | a.createElement=function(c){return!e.shivMethods?b.createElem(c):p(c,a,b)};a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+m().join().replace(/\w+/g,function(a){b.createElem(a);b.frag.createElement(a);return'c("'+a+'")'})+");return n}")(e,b.frag)}function q(a){a||(a=f);var b=i(a);if(e.shivCSS&&!j&&!b.hasCSS){var c,d=a;c=d.createElement("p");d=d.getElementsByTagName("head")[0]||d.documentElement;c.innerHTML="x"; 6 | c=d.insertBefore(c.lastChild,d.firstChild);b.hasCSS=!!c}g||t(a,b);return a}var k=l.html5||{},s=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,r=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,j,o="_html5shiv",h=0,n={},g;(function(){try{var a=f.createElement("a");a.innerHTML="";j="hidden"in a;var b;if(!(b=1==a.childNodes.length)){f.createElement("a");var c=f.createDocumentFragment();b="undefined"==typeof c.cloneNode|| 7 | "undefined"==typeof c.createDocumentFragment||"undefined"==typeof c.createElement}g=b}catch(d){g=j=!0}})();var e={elements:k.elements||"abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup main mark meter nav output progress section summary time video",version:"3.6.2",shivCSS:!1!==k.shivCSS,supportsUnknownElements:g,shivMethods:!1!==k.shivMethods,type:"default",shivDocument:q,createElement:p,createDocumentFragment:function(a,b){a||(a=f);if(g)return a.createDocumentFragment(); 8 | for(var b=b||i(a),c=b.frag.cloneNode(),d=0,e=m(),h=e.length;d ul > li a { 88 | color: #fff; 89 | display: inline-block; 90 | text-decoration: none; 91 | border: 0; 92 | } 93 | 94 | #header nav > ul > li a.icon:before { 95 | color: #fff; 96 | margin-right: 0.5em; 97 | } 98 | 99 | #header.alt { 100 | color: #fff; 101 | } 102 | 103 | #header.alt nav > ul > li a:not(.button).icon:before { 104 | color: rgba(255, 255, 255, 0.75); 105 | } 106 | 107 | #header.alt nav > ul > li.active a:not(.button) { 108 | background-color: rgba(255, 255, 255, 0.2); 109 | } 110 | 111 | .dropotron { 112 | border: solid 1px #e5e5e5; 113 | } 114 | 115 | .dropotron.level-0 { 116 | margin-top: 0; 117 | } 118 | 119 | .dropotron.level-0:before { 120 | display: none; 121 | } 122 | 123 | /* Banner */ 124 | 125 | #banner { 126 | background-attachment: scroll; 127 | background-image: url("../../images/banner.jpg"); 128 | background-position: auto; 129 | background-repeat: no-repeat; 130 | background-size: cover; 131 | -ms-behavior: url("css/ie/backgroundsize.min.htc"); 132 | } 133 | 134 | #banner input[type="submit"], 135 | #banner input[type="reset"], 136 | #banner input[type="button"], 137 | #banner .button { 138 | border: solid 2px #fff; 139 | } 140 | 141 | /* Main */ 142 | 143 | #main { 144 | position: relative; 145 | z-index: 1; 146 | } 147 | 148 | /* CTA */ 149 | 150 | #cta input[type="text"], 151 | #cta input[type="password"], 152 | #cta input[type="email"], 153 | #cta select, 154 | #cta textarea { 155 | background: #e89980; 156 | border: solid 2px #fff; 157 | } 158 | 159 | #cta .formerize-placeholder { 160 | color: #fff !important; 161 | } -------------------------------------------------------------------------------- /assets/css/images/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-jekyll-templates/Alpha-Jekyll-Theme/e753ce08c1cce685767dafe7eeaf92add1a587a8/assets/css/images/overlay.png -------------------------------------------------------------------------------- /assets/css/skel.css: -------------------------------------------------------------------------------- 1 | /* Resets (http://meyerweb.com/eric/tools/css/reset/ | v2.0 | 20110126 | License: none (public domain)) */ 2 | 3 | html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}body{line-height:1;}ol,ul{list-style:none;}blockquote,q{quotes:none;}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none;}table{border-collapse:collapse;border-spacing:0;}body{-webkit-text-size-adjust:none} 4 | 5 | /* Box Model */ 6 | 7 | *, *:before, *:after { 8 | -moz-box-sizing: border-box; 9 | -webkit-box-sizing: border-box; 10 | box-sizing: border-box; 11 | } 12 | 13 | /* Container */ 14 | 15 | body { 16 | /* min-width: (containers) */ 17 | min-width: 60em; 18 | } 19 | 20 | .container { 21 | margin-left: auto; 22 | margin-right: auto; 23 | 24 | /* width: (containers) */ 25 | width: 60em; 26 | } 27 | 28 | /* Modifiers */ 29 | 30 | .container.small { 31 | /* width: (containers) * 0.75; */ 32 | width: 45em; 33 | } 34 | 35 | .container.big { 36 | width: 100%; 37 | 38 | /* max-width: (containers) * 1.25; */ 39 | max-width: 75em; 40 | 41 | /* min-width: (containers); */ 42 | min-width: 60em; 43 | } 44 | 45 | /* Grid */ 46 | 47 | .\31 2u { width: 100% } 48 | .\31 1u { width: 91.6666666667% } 49 | .\31 0u { width: 83.3333333333% } 50 | .\39 u { width: 75% } 51 | .\38 u { width: 66.6666666667% } 52 | .\37 u { width: 58.3333333333% } 53 | .\36 u { width: 50% } 54 | .\35 u { width: 41.6666666667% } 55 | .\34 u { width: 33.3333333333% } 56 | .\33 u { width: 25% } 57 | .\32 u { width: 16.6666666667% } 58 | .\31 u { width: 8.3333333333% } 59 | .\-11u { margin-left: 91.6666666667% } 60 | .\-10u { margin-left: 83.3333333333% } 61 | .\-9u { margin-left: 75% } 62 | .\-8u { margin-left: 66.6666666667% } 63 | .\-7u { margin-left: 58.3333333333% } 64 | .\-6u { margin-left: 50% } 65 | .\-5u { margin-left: 41.6666666667% } 66 | .\-4u { margin-left: 33.3333333333% } 67 | .\-3u { margin-left: 25% } 68 | .\-2u { margin-left: 16.6666666667% } 69 | .\-1u { margin-left: 8.3333333333% } 70 | 71 | /* Rows */ 72 | 73 | .row > * { 74 | float: left; 75 | } 76 | 77 | .row:after { 78 | content: ''; 79 | display: block; 80 | clear: both; 81 | height: 0; 82 | } 83 | 84 | .row:first-child > * { 85 | padding-top: 0 !important; 86 | } 87 | 88 | /* Normal */ 89 | 90 | .row > * { 91 | /* padding-left: (gutters.vertical) */ 92 | padding-left: 2em; 93 | } 94 | 95 | .row + .row > * { 96 | /* padding: (gutters.horizontal) 0 0 (gutters.vertical) */ 97 | padding: 0 0 0 2em; 98 | } 99 | 100 | .row { 101 | /* margin-left: -(gutters.vertical) */ 102 | margin-left: -2em; 103 | } 104 | 105 | .row + .row.uniform > * { 106 | /* padding: (gutters.vertical) 0 0 (gutters.vertical) */ 107 | padding: 0 0 0 2em; 108 | } 109 | 110 | /* Flush */ 111 | 112 | .row.flush > * { 113 | padding-left: 0; 114 | } 115 | 116 | .row + .row.flush > * { 117 | padding: 0; 118 | } 119 | 120 | .row.flush { 121 | margin-left: 0; 122 | } 123 | 124 | .row + .row.uniform.flush > * { 125 | padding: 0; 126 | } 127 | 128 | /* Quarter */ 129 | 130 | .row.quarter > * { 131 | /* padding-left: (gutters.vertical * 0.25) */ 132 | padding-left: 0.5em; 133 | } 134 | 135 | .row + .row.quarter > * { 136 | /* padding: (gutters.horizontal * 0.25) 0 0 (gutters.vertical * 0.25) */ 137 | padding: 0 0 0 0.5em; 138 | } 139 | 140 | .row.quarter { 141 | /* margin-left: -(gutters.vertical * 0.25) */ 142 | margin-left: -0.5em; 143 | } 144 | 145 | .row + .row.uniform.quarter > * { 146 | /* padding: (gutters.vertical * 0.25) 0 0 (gutters.vertical * 0.25) */ 147 | padding: 0 0 0 0.5em; 148 | } 149 | 150 | /* Half */ 151 | 152 | .row.half > * { 153 | /* padding-left: (gutters.vertical * 0.5) */ 154 | padding-left: 1em; 155 | } 156 | 157 | .row + .row.half > * { 158 | /* padding: (gutters.horizontal * 0.5) 0 0 (gutters.vertical * 0.5) */ 159 | padding: 0 0 0 1em; 160 | } 161 | 162 | .row.half { 163 | /* margin-left: -(gutters.vertical * 0.5) */ 164 | margin-left: -1em; 165 | } 166 | 167 | .row + .row.uniform.half > * { 168 | /* padding: (gutters.vertical * 0.5) 0 0 (gutters.vertical * 0.5) */ 169 | padding: 0 0 0 1em; 170 | } 171 | 172 | /* One and (a) Half */ 173 | 174 | .row.oneandhalf > * { 175 | /* padding-left: (gutters.vertical * 1.5) */ 176 | padding-left: 3em; 177 | } 178 | 179 | .row + .row.oneandhalf > * { 180 | /* padding: (gutters.horizontal * 1.5) 0 0 (gutters.vertical * 1.5) */ 181 | padding: 0 0 0 3em; 182 | } 183 | 184 | .row.oneandhalf { 185 | /* margin-left: -(gutters.vertical * 1.5) */ 186 | margin-left: -3em; 187 | } 188 | 189 | .row + .row.uniform.oneandhalf > * { 190 | /* padding: (gutters.vertical * 1.5) 0 0 (gutters.vertical * 1.5) */ 191 | padding: 0 0 0 3em; 192 | } 193 | 194 | /* Double */ 195 | 196 | .row.double > * { 197 | /* padding-left: (gutters.vertical * 2) */ 198 | padding-left: 4em; 199 | } 200 | 201 | .row + .row.double > * { 202 | /* padding: (gutters.horizontal * 2) 0 0 (gutters.vertical * 2) */ 203 | padding: 0 0 0 4em; 204 | } 205 | 206 | .row.double { 207 | /* margin-left: -(gutters.vertical * 2) */ 208 | margin-left: -4em; 209 | } 210 | 211 | .row + .row.uniform.double > * { 212 | /* padding: (gutters.vertical * 2) 0 0 (gutters.vertical * 2) */ 213 | padding: 0 0 0 4em; 214 | } -------------------------------------------------------------------------------- /assets/css/style-mobile.css: -------------------------------------------------------------------------------- 1 | /* 2 | Alpha by HTML5 UP 3 | html5up.net | @n33co 4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 5 | */ 6 | 7 | /* Basic */ 8 | 9 | body, input, select, textarea { 10 | font-size: 11pt; 11 | } 12 | 13 | h2 { 14 | font-size: 1.75em; 15 | line-height: 1.35em; 16 | letter-spacing: -0.025em; 17 | } 18 | 19 | h3 { 20 | font-size: 1.5em; 21 | } 22 | 23 | h4 { 24 | font-size: 1em; 25 | } 26 | 27 | /* Section/Article */ 28 | 29 | header.major { 30 | padding: 1em; 31 | } 32 | 33 | header.major h2, header.major p { 34 | padding-left: 0.5em; 35 | padding-right: 0.5em; 36 | } 37 | 38 | /* Box */ 39 | 40 | .box { 41 | margin: 1em; 42 | overflow-x: hidden; 43 | padding: 2em 2em !important; 44 | } 45 | 46 | .box.features .features-row { 47 | border-top: 0; 48 | padding: 0; 49 | } 50 | 51 | .box.features .features-row section { 52 | border: 0; 53 | border-top: solid 1px #e5e5e5 !important; 54 | float: none; 55 | margin: 2em 0 0 0 !important; 56 | padding: 2em 0 0 0 !important; 57 | width: 100%; 58 | } 59 | 60 | .box.features .features-row:first-child section:first-child { 61 | border-top: 0 !important; 62 | margin-top: 0 !important; 63 | padding-top: 0 !important; 64 | } 65 | 66 | .box .image.featured { 67 | margin-left: -2em; 68 | width: calc(100% + 4em); 69 | } 70 | 71 | .box .image.featured:first-child { 72 | margin-bottom: 2em; 73 | margin-top: -2em; 74 | } 75 | 76 | .box .image.featured:last-child { 77 | margin-bottom: -2em; 78 | margin-top: 2em; 79 | } 80 | 81 | /* Banner */ 82 | 83 | #banner { 84 | padding: 4em 0; 85 | } 86 | 87 | #banner h2 { 88 | font-size: 2.25em; 89 | } 90 | 91 | #banner p { 92 | font-size: 1.25em; 93 | } 94 | 95 | /* Main */ 96 | 97 | #main { 98 | padding: 4em 0 0 0; 99 | } 100 | 101 | #main > header { 102 | margin: 0 2em 1.5em 2em; 103 | } 104 | 105 | #main > header h2 { 106 | font-size: 2em; 107 | } 108 | 109 | #main > header p { 110 | font-size: 1em; 111 | padding-bottom: 1em; 112 | } 113 | 114 | body.landing #main { 115 | padding: 0; 116 | margin-top: 0; 117 | } 118 | 119 | /* Footer */ 120 | 121 | #footer { 122 | padding: 4em 0; 123 | } 124 | 125 | #footer .copyright li { 126 | border-left: 0; 127 | display: block; 128 | line-height: 2em; 129 | margin-left: 0; 130 | padding-left: 0; 131 | } -------------------------------------------------------------------------------- /assets/css/style-mobilep.css: -------------------------------------------------------------------------------- 1 | /* 2 | Alpha by HTML5 UP 3 | html5up.net | @n33co 4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 5 | */ 6 | 7 | /* Basic */ 8 | 9 | html, body { 10 | min-width: 320px; 11 | } 12 | 13 | body, input, select, textarea { 14 | font-size: 11pt; 15 | } 16 | 17 | /* Section/Article */ 18 | 19 | header.major { 20 | padding: 0; 21 | } 22 | 23 | /* List */ 24 | 25 | ul.actions { 26 | margin: 0 0 2em 0; 27 | } 28 | 29 | ul.actions li { 30 | display: block; 31 | padding: 1em 0 0 0; 32 | text-align: center; 33 | width: 100%; 34 | } 35 | 36 | ul.actions li:first-child { 37 | padding-top: 0; 38 | } 39 | 40 | ul.actions li > * { 41 | width: 100%; 42 | margin: 0 !important; 43 | } 44 | 45 | ul.actions li > *.icon:before { 46 | margin-left: -2em; 47 | } 48 | 49 | ul.actions.small li { 50 | padding: 0.5em 0 0 0; 51 | } 52 | 53 | ul.actions.small li:first-child { 54 | padding-top: 0; 55 | } 56 | 57 | /* Box */ 58 | 59 | .box { 60 | border-radius: 0; 61 | box-shadow: none; 62 | margin: 1em 0 0 0; 63 | padding: 3em 1em !important; 64 | } 65 | 66 | .box.features .features-row section { 67 | margin: 3em 0 0 0 !important; 68 | padding: 3em 0 0 0 !important; 69 | } 70 | 71 | .box .image.featured { 72 | border-radius: 0; 73 | margin-left: -1em; 74 | width: calc(100% + 2em); 75 | } 76 | 77 | .box .image.featured img { 78 | border-radius: 0 !important; 79 | } 80 | 81 | .box .image.featured:first-child { 82 | margin-bottom: 3em; 83 | margin-top: -3em; 84 | } 85 | 86 | .box .image.featured:last-child { 87 | margin-bottom: -3em; 88 | margin-top: 3em; 89 | } 90 | 91 | /* Banner */ 92 | 93 | #banner { 94 | padding: 5em 1em 4em 1em; 95 | } 96 | 97 | /* Main */ 98 | 99 | #main > .box:first-child { 100 | margin-top: 0; 101 | } 102 | 103 | /* CTA */ 104 | 105 | #cta { 106 | padding: 2.5em 1em 3em 1em; 107 | } -------------------------------------------------------------------------------- /assets/css/style-narrow.css: -------------------------------------------------------------------------------- 1 | /* 2 | Alpha by HTML5 UP 3 | html5up.net | @n33co 4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 5 | */ 6 | 7 | /* Basic */ 8 | 9 | body, input, select, textarea { 10 | font-size: 11pt; 11 | } -------------------------------------------------------------------------------- /assets/css/style-narrower.css: -------------------------------------------------------------------------------- 1 | /* 2 | Alpha by HTML5 UP 3 | html5up.net | @n33co 4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 5 | */ 6 | 7 | /* Basic */ 8 | 9 | body, input, select, textarea { 10 | font-size: 11pt; 11 | } 12 | 13 | h2 br, h3 br, h4 br, h5 br, h6 br { 14 | display: none; 15 | } 16 | 17 | /* Section/Article */ 18 | 19 | header br { 20 | display: none; 21 | } 22 | 23 | header.major { 24 | padding: 0 4em; 25 | } 26 | 27 | /* Box */ 28 | 29 | .box { 30 | padding: 3em 2em; 31 | } 32 | 33 | .box.features > section { 34 | padding: 3em 2em; 35 | } 36 | 37 | .box .image.featured { 38 | margin-left: -2em; 39 | width: calc(100% + 4em); 40 | } 41 | 42 | .box .image.featured:first-child { 43 | margin-bottom: 3em; 44 | margin-top: -3em; 45 | } 46 | 47 | .box .image.featured:last-child { 48 | margin-bottom: -3em; 49 | margin-top: 3em; 50 | } 51 | 52 | /* Header */ 53 | 54 | #skel-layers-wrapper { 55 | padding-top: 0; 56 | } 57 | 58 | #header { 59 | display: none; 60 | } 61 | 62 | /* Banner */ 63 | 64 | /* Layers */ 65 | 66 | #navButton .toggle { 67 | text-decoration: none; 68 | height: 100%; 69 | left: 0; 70 | position: absolute; 71 | top: 0; 72 | width: 100%; 73 | } 74 | 75 | #navButton .toggle:before { 76 | -moz-osx-font-smoothing: grayscale; 77 | -webkit-font-smoothing: antialiased; 78 | font-family: FontAwesome; 79 | font-style: normal; 80 | font-weight: normal; 81 | text-transform: none !important; 82 | } 83 | 84 | #navButton .toggle:before { 85 | background: rgba(192, 192, 192, 0.75); 86 | border-radius: 6px; 87 | color: #fff; 88 | content: '\f0c9'; 89 | display: block; 90 | font-size: 16px; 91 | height: 2.25em; 92 | left: 0.5em; 93 | line-height: 2.25em; 94 | position: absolute; 95 | text-align: center; 96 | top: 0.5em; 97 | width: 3.5em; 98 | } 99 | 100 | #navPanel { 101 | background: #2b2b2b; 102 | color: #bbb; 103 | } 104 | 105 | #navPanel .link { 106 | border-bottom: 0; 107 | border-top: solid 1px rgba(255, 255, 255, 0.05); 108 | color: #bbb; 109 | display: block; 110 | height: 44px; 111 | line-height: 44px; 112 | padding: 0 1em 0 1em; 113 | text-decoration: none; 114 | } 115 | 116 | #navPanel .link:first-child { 117 | border-top: 0; 118 | } 119 | 120 | #navPanel .link.depth-0 { 121 | color: #fff; 122 | } 123 | 124 | #navPanel .link .indent-1 { 125 | display: inline-block; 126 | width: 1em; 127 | } 128 | 129 | #navPanel .link .indent-2 { 130 | display: inline-block; 131 | width: 2em; 132 | } 133 | 134 | #navPanel .link .indent-3 { 135 | display: inline-block; 136 | width: 3em; 137 | } 138 | 139 | #navPanel .link .indent-4 { 140 | display: inline-block; 141 | width: 4em; 142 | } 143 | 144 | #navPanel .link .indent-5 { 145 | display: inline-block; 146 | width: 5em; 147 | } -------------------------------------------------------------------------------- /assets/css/style-normal.css: -------------------------------------------------------------------------------- 1 | /* 2 | Alpha by HTML5 UP 3 | html5up.net | @n33co 4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 5 | */ 6 | 7 | /* Basic */ 8 | 9 | body, input, select, textarea { 10 | font-size: 11pt; 11 | } 12 | 13 | /* Header */ 14 | 15 | .dropotron.level-0 { 16 | font-size: 1em; 17 | } 18 | 19 | /* Banner */ 20 | 21 | #banner { 22 | background-attachment: scroll; 23 | } 24 | 25 | #banner h2 { 26 | font-size: 3.5em; 27 | } -------------------------------------------------------------------------------- /assets/css/style-wide.css: -------------------------------------------------------------------------------- 1 | /* 2 | Alpha by HTML5 UP 3 | html5up.net | @n33co 4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 5 | */ 6 | 7 | /* Basic */ 8 | 9 | body, input, select, textarea { 10 | font-size: 13pt; 11 | } 12 | 13 | /* Banner */ 14 | 15 | #banner { 16 | padding: 10em 0 18em 0; 17 | } -------------------------------------------------------------------------------- /assets/css/style.css: -------------------------------------------------------------------------------- 1 | @import url(font-awesome.min.css); 2 | @import url("http://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,300italic,400italic"); 3 | 4 | 5 | /* 6 | ok 7 | Alpha by HTML5 UP 8 | html5up.net | @n33co 9 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 10 | */ 11 | 12 | /* Basic */ 13 | 14 | body { 15 | background: #f5f5f5; 16 | } 17 | 18 | body, input, select, textarea { 19 | color: #777; 20 | font-family: "Source Sans Pro", sans-serif; 21 | font-size: 16pt; 22 | font-weight: 300; 23 | line-height: 1.65em; 24 | letter-spacing: -0.015em; 25 | } 26 | 27 | a { 28 | -moz-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out; 29 | -webkit-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out; 30 | -o-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out; 31 | -ms-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out; 32 | transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out; 33 | border-bottom: dotted 1px; 34 | color: #e89980; 35 | text-decoration: none; 36 | } 37 | 38 | a:hover { 39 | border-bottom-color: transparent; 40 | } 41 | 42 | strong, b { 43 | color: #646464; 44 | font-weight: 400; 45 | } 46 | 47 | em, i { 48 | font-style: italic; 49 | } 50 | 51 | p { 52 | margin: 0 0 2em 0; 53 | } 54 | 55 | h1, h2, h3, h4, h5, h6 { 56 | color: #646464; 57 | font-weight: 300; 58 | line-height: 1em; 59 | margin: 0 0 0.5em 0; 60 | } 61 | 62 | h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { 63 | color: inherit; 64 | text-decoration: none; 65 | } 66 | 67 | h2 { 68 | font-size: 2.25em; 69 | line-height: 1.5em; 70 | letter-spacing: -0.035em; 71 | } 72 | 73 | h3 { 74 | font-size: 1.75em; 75 | line-height: 1.5em; 76 | letter-spacing: -0.025em; 77 | } 78 | 79 | h4 { 80 | font-size: 1.1em; 81 | line-height: 1.5em; 82 | letter-spacing: 0; 83 | } 84 | 85 | h5 { 86 | font-size: 0.9em; 87 | line-height: 1.5em; 88 | letter-spacing: 0; 89 | } 90 | 91 | h6 { 92 | font-size: 0.7em; 93 | line-height: 1.5em; 94 | letter-spacing: 0; 95 | } 96 | 97 | sub { 98 | font-size: 0.8em; 99 | position: relative; 100 | top: 0.5em; 101 | } 102 | 103 | sup { 104 | font-size: 0.8em; 105 | position: relative; 106 | top: -0.5em; 107 | } 108 | 109 | hr { 110 | border: 0; 111 | border-bottom: solid 2px #e5e5e5; 112 | margin: 2em 0; 113 | } 114 | 115 | hr.major { 116 | margin: 3em 0; 117 | } 118 | 119 | blockquote { 120 | border-left: solid 4px #e5e5e5; 121 | font-style: italic; 122 | margin: 0 0 2em 0; 123 | padding: 0.5em 0 0.5em 2em; 124 | } 125 | 126 | pre { 127 | -webkit-overflow-scrolling: touch; 128 | background: #f8f8f8; 129 | border-radius: 6px; 130 | border: solid 1px #e5e5e5; 131 | font-family: monospace; 132 | font-size: 0.9em; 133 | line-height: 1.75em; 134 | margin: 0 0 2em 0; 135 | overflow-x: auto; 136 | padding: 1em 1.5em; 137 | } 138 | 139 | code { 140 | background: #f8f8f8; 141 | border-radius: 6px; 142 | border: solid 1px #e5e5e5; 143 | font-family: monospace; 144 | font-size: 0.9em; 145 | margin: 0 0.25em; 146 | padding: 0.25em 0.65em; 147 | } 148 | 149 | .align-left { 150 | text-align: left; 151 | } 152 | 153 | .align-center { 154 | text-align: center; 155 | } 156 | 157 | .align-right { 158 | text-align: right; 159 | } 160 | 161 | /* Section/Article */ 162 | 163 | section.special, article.special { 164 | text-align: center; 165 | } 166 | 167 | header p { 168 | color: #999; 169 | position: relative; 170 | margin: 0 0 1.5em 0; 171 | font-style: italic; 172 | } 173 | 174 | header h2 + p { 175 | font-size: 1.25em; 176 | margin-top: -1em; 177 | line-height: 1.5em; 178 | } 179 | 180 | header h3 + p { 181 | font-size: 1.1em; 182 | margin-top: -0.85em; 183 | line-height: 1.5em; 184 | } 185 | 186 | header h4 + p, 187 | header h5 + p, 188 | header h6 + p { 189 | font-size: 0.8em; 190 | margin-top: -0.5em; 191 | line-height: 1.5em; 192 | } 193 | 194 | header.major { 195 | padding: 1em 0; 196 | text-align: center; 197 | } 198 | 199 | header.major h2 { 200 | margin: 0; 201 | } 202 | 203 | header.major p { 204 | display: inline-block; 205 | border-top: solid 2px #e5e5e5; 206 | color: #777; 207 | margin: 1.5em 0 0 0; 208 | padding: 1.5em 0 0 0; 209 | font-style: normal; 210 | } 211 | 212 | /* Form */ 213 | 214 | form { 215 | margin: 0 0 2em 0; 216 | } 217 | 218 | label { 219 | color: #646464; 220 | display: block; 221 | font-size: 0.9em; 222 | font-weight: 300; 223 | margin: 0 0 1em 0; 224 | } 225 | 226 | input[type="text"], 227 | input[type="password"], 228 | input[type="email"], 229 | select, 230 | textarea { 231 | -moz-appearance: none; 232 | -webkit-appearance: none; 233 | -o-appearance: none; 234 | -ms-appearance: none; 235 | appearance: none; 236 | background: #f8f8f8; 237 | border-radius: 6px; 238 | border: solid 1px #e5e5e5; 239 | color: inherit; 240 | display: block; 241 | outline: 0; 242 | padding: 0 1em; 243 | text-decoration: none; 244 | width: 100%; 245 | } 246 | 247 | input[type="text"]:invalid, 248 | input[type="password"]:invalid, 249 | input[type="email"]:invalid, 250 | select:invalid, 251 | textarea:invalid { 252 | box-shadow: none; 253 | } 254 | 255 | input[type="text"]:focus, 256 | input[type="password"]:focus, 257 | input[type="email"]:focus, 258 | select:focus, 259 | textarea:focus { 260 | border-color: #e89980; 261 | box-shadow: 0 0 0 2px #e89980; 262 | } 263 | 264 | .select-wrapper { 265 | text-decoration: none; 266 | display: block; 267 | position: relative; 268 | } 269 | 270 | .select-wrapper:before { 271 | -moz-osx-font-smoothing: grayscale; 272 | -webkit-font-smoothing: antialiased; 273 | font-family: FontAwesome; 274 | font-style: normal; 275 | font-weight: normal; 276 | text-transform: none !important; 277 | } 278 | 279 | .select-wrapper:before { 280 | color: #e5e5e5; 281 | content: '\f078'; 282 | display: block; 283 | height: 3em; 284 | line-height: 3em; 285 | pointer-events: none; 286 | position: absolute; 287 | right: 0; 288 | text-align: center; 289 | top: 0; 290 | width: 3em; 291 | } 292 | 293 | .select-wrapper select::-ms-expand { 294 | display: none; 295 | } 296 | 297 | input[type="text"], 298 | input[type="password"], 299 | input[type="email"], 300 | select { 301 | height: 3em; 302 | } 303 | 304 | textarea { 305 | padding: 0.75em 1em; 306 | } 307 | 308 | input[type="checkbox"], 309 | input[type="radio"] { 310 | -moz-appearance: none; 311 | -webkit-appearance: none; 312 | -o-appearance: none; 313 | -ms-appearance: none; 314 | appearance: none; 315 | display: block; 316 | float: left; 317 | margin-right: -2em; 318 | opacity: 0; 319 | width: 1em; 320 | z-index: -1; 321 | } 322 | 323 | input[type="checkbox"] + label, 324 | input[type="radio"] + label { 325 | text-decoration: none; 326 | color: #777; 327 | cursor: pointer; 328 | display: inline-block; 329 | font-size: 1em; 330 | font-weight: 300; 331 | padding-left: 2.55em; 332 | padding-right: 0.75em; 333 | position: relative; 334 | } 335 | 336 | input[type="checkbox"] + label:before, 337 | input[type="radio"] + label:before { 338 | -moz-osx-font-smoothing: grayscale; 339 | -webkit-font-smoothing: antialiased; 340 | font-family: FontAwesome; 341 | font-style: normal; 342 | font-weight: normal; 343 | text-transform: none !important; 344 | } 345 | 346 | input[type="checkbox"] + label:before, 347 | input[type="radio"] + label:before { 348 | background: #f8f8f8; 349 | border-radius: 6px; 350 | border: solid 1px #e5e5e5; 351 | content: ''; 352 | display: inline-block; 353 | height: 1.8em; 354 | left: 0; 355 | line-height: 1.725em; 356 | position: absolute; 357 | text-align: center; 358 | top: 0; 359 | width: 1.8em; 360 | } 361 | 362 | input[type="checkbox"]:checked + label:before, 363 | input[type="radio"]:checked + label:before { 364 | background: #666; 365 | border-color: #666; 366 | color: #ffffff; 367 | content: '\f00c'; 368 | } 369 | 370 | input[type="checkbox"]:focus + label:before, 371 | input[type="radio"]:focus + label:before { 372 | border-color: #e89980; 373 | box-shadow: 0 0 0 1px #e89980; 374 | } 375 | 376 | input[type="checkbox"] + label:before { 377 | border-radius: 6px; 378 | } 379 | 380 | input[type="radio"] + label:before { 381 | border-radius: 100%; 382 | } 383 | 384 | ::-webkit-input-placeholder { 385 | color: #999 !important; 386 | opacity: 1.0; 387 | } 388 | 389 | :-moz-placeholder { 390 | color: #999 !important; 391 | opacity: 1.0; 392 | } 393 | 394 | ::-moz-placeholder { 395 | color: #999 !important; 396 | opacity: 1.0; 397 | } 398 | 399 | :-ms-input-placeholder { 400 | color: #999 !important; 401 | opacity: 1.0; 402 | } 403 | 404 | .formerize-placeholder { 405 | color: #999 !important; 406 | opacity: 1.0; 407 | } 408 | 409 | /* Box */ 410 | 411 | .box { 412 | background: #fff; 413 | border-radius: 6px; 414 | box-shadow: 0 2px 0 0 #e5e5e5; 415 | margin: 0 0 2em 0; 416 | padding: 3em; 417 | } 418 | 419 | .box > :last-child { 420 | margin-bottom: 0; 421 | } 422 | 423 | .box.alt { 424 | background: none !important; 425 | border-radius: 0 !important; 426 | box-shadow: none !important; 427 | margin: 0 0 2em 0; 428 | padding: 0 !important; 429 | } 430 | 431 | .box.features .features-row { 432 | border-top: solid 2px #e5e5e5; 433 | position: relative; 434 | } 435 | 436 | .box.features .features-row:after { 437 | clear: both; 438 | content: ''; 439 | display: block; 440 | } 441 | 442 | .box.features .features-row section { 443 | float: left; 444 | padding: 3em; 445 | width: 50%; 446 | } 447 | 448 | .box.features .features-row section :last-child { 449 | margin-bottom: 0; 450 | } 451 | 452 | .box.features .features-row section:nth-child(2n) { 453 | padding-right: 0; 454 | } 455 | 456 | .box.features .features-row section:nth-child(2n):before { 457 | background: #e5e5e5; 458 | content: ''; 459 | display: block; 460 | height: 100%; 461 | margin-left: -3em; 462 | position: absolute; 463 | top: 0; 464 | width: 2px; 465 | } 466 | 467 | .box.features .features-row section:nth-child(2n-1) { 468 | padding-left: 0; 469 | } 470 | 471 | .box.features .features-row:first-child { 472 | border-top: 0; 473 | } 474 | 475 | .box.features .features-row:first-child section { 476 | padding-top: 0; 477 | } 478 | 479 | .box.features .features-row:last-child { 480 | padding-bottom: 0; 481 | } 482 | 483 | .box.features .features-row:last-child section { 484 | padding-bottom: 0; 485 | } 486 | 487 | .box.special { 488 | text-align: center; 489 | } 490 | 491 | .box .image.featured { 492 | border-radius: 0; 493 | display: block; 494 | margin: 3em 0 3em -3em; 495 | position: relative; 496 | width: calc(100% + 6em); 497 | } 498 | 499 | .box .image.featured img { 500 | border-radius: 0; 501 | display: block; 502 | width: 100%; 503 | } 504 | 505 | .box .image.featured:first-child { 506 | border-radius: 6px 6px 0 0; 507 | margin-bottom: 3em; 508 | margin-top: -3em; 509 | } 510 | 511 | .box .image.featured:first-child img { 512 | border-radius: 6px 6px 0 0; 513 | } 514 | 515 | .box .image.featured:last-child { 516 | border-radius: 0 0 6px 6px; 517 | margin-bottom: -3em; 518 | margin-top: 3em; 519 | } 520 | 521 | .box .image.featured:last-child img { 522 | border-radius: 0 0 6px 6px; 523 | } 524 | 525 | /* Icon */ 526 | 527 | .icon { 528 | text-decoration: none; 529 | border-bottom: none; 530 | position: relative; 531 | } 532 | 533 | .icon:before { 534 | -moz-osx-font-smoothing: grayscale; 535 | -webkit-font-smoothing: antialiased; 536 | font-family: FontAwesome; 537 | font-style: normal; 538 | font-weight: normal; 539 | text-transform: none !important; 540 | } 541 | 542 | .icon > .label { 543 | display: none; 544 | } 545 | 546 | .icon.major { 547 | background: #666; 548 | border-radius: 100%; 549 | color: #ffffff; 550 | cursor: default; 551 | display: inline-block; 552 | height: 5.5em; 553 | line-height: 5.5em; 554 | margin: 0 0 2em 0; 555 | width: 5.5em; 556 | } 557 | 558 | .icon.major:before { 559 | font-size: 2.5em; 560 | } 561 | 562 | .icon.major.accent1 { 563 | background: #666; 564 | color: #ffffff; 565 | } 566 | 567 | .icon.major.accent2 { 568 | background: #e89980; 569 | color: #ffffff; 570 | } 571 | 572 | .icon.major.accent3 { 573 | background: #7fcdb8; 574 | color: #ffffff; 575 | } 576 | 577 | .icon.major.accent4 { 578 | background: #90b0ba; 579 | color: #ffffff; 580 | } 581 | 582 | .icon.major.accent5 { 583 | background: #e5cb95; 584 | color: #ffffff; 585 | } 586 | 587 | /* Image */ 588 | 589 | .image { 590 | border-radius: 6px; 591 | border: 0; 592 | display: inline-block; 593 | position: relative; 594 | } 595 | 596 | .image img { 597 | border-radius: 6px; 598 | display: block; 599 | } 600 | 601 | .image.left { 602 | float: left; 603 | padding: 0 1.5em 1em 0; 604 | top: 0.25em; 605 | } 606 | 607 | .image.right { 608 | float: right; 609 | padding: 0 0 1em 1.5em; 610 | top: 0.25em; 611 | } 612 | 613 | .image.fit { 614 | display: block; 615 | margin: 0 0 2em 0; 616 | width: 100%; 617 | } 618 | 619 | .image.fit img { 620 | display: block; 621 | width: 100%; 622 | } 623 | 624 | /* List */ 625 | 626 | ol { 627 | list-style: decimal; 628 | margin: 0 0 2em 0; 629 | padding-left: 1.25em; 630 | } 631 | 632 | ol li { 633 | padding-left: 0.25em; 634 | } 635 | 636 | ul { 637 | list-style: disc; 638 | margin: 0 0 2em 0; 639 | padding-left: 1em; 640 | } 641 | 642 | ul li { 643 | padding-left: 0.5em; 644 | } 645 | 646 | ul.alt { 647 | list-style: none; 648 | padding-left: 0; 649 | } 650 | 651 | ul.alt li { 652 | border-top: solid 1px #e5e5e5; 653 | padding: 0.5em 0; 654 | } 655 | 656 | ul.alt li:first-child { 657 | border-top: 0; 658 | padding-top: 0; 659 | } 660 | 661 | ul.icons { 662 | cursor: default; 663 | list-style: none; 664 | padding-left: 0; 665 | } 666 | 667 | ul.icons li { 668 | display: inline-block; 669 | padding: 0 1.25em 0 0; 670 | } 671 | 672 | ul.icons li:last-child { 673 | padding-right: 0; 674 | } 675 | 676 | ul.icons li .icon { 677 | color: inherit; 678 | } 679 | 680 | ul.icons li .icon:before { 681 | font-size: 1.75em; 682 | } 683 | 684 | ul.actions { 685 | cursor: default; 686 | list-style: none; 687 | padding-left: 0; 688 | } 689 | 690 | ul.actions li { 691 | display: inline-block; 692 | padding: 0 1em 0 0; 693 | vertical-align: middle; 694 | } 695 | 696 | ul.actions li:last-child { 697 | padding-right: 0; 698 | } 699 | 700 | ul.actions.small li { 701 | padding: 0 0.5em 0 0; 702 | } 703 | 704 | ul.actions.vertical li { 705 | display: block; 706 | padding: 1em 0 0 0; 707 | } 708 | 709 | ul.actions.vertical li:first-child { 710 | padding-top: 0; 711 | } 712 | 713 | ul.actions.vertical li > * { 714 | margin-bottom: 0; 715 | } 716 | 717 | ul.actions.vertical.small li { 718 | padding: 0.5em 0 0 0; 719 | } 720 | 721 | ul.actions.vertical.small li:first-child { 722 | padding-top: 0; 723 | } 724 | 725 | ul.actions.fit { 726 | display: table; 727 | margin-left: -1em; 728 | padding: 0; 729 | table-layout: fixed; 730 | width: calc(100% + 1em); 731 | } 732 | 733 | ul.actions.fit li { 734 | display: table-cell; 735 | padding: 0 0 0 1em; 736 | } 737 | 738 | ul.actions.fit li > * { 739 | margin-bottom: 0; 740 | } 741 | 742 | ul.actions.fit.small { 743 | margin-left: -0.5em; 744 | width: calc(100% + 0.5em); 745 | } 746 | 747 | ul.actions.fit.small li { 748 | padding: 0 0 0 0.5em; 749 | } 750 | 751 | dl { 752 | margin: 0 0 2em 0; 753 | } 754 | 755 | /* Table */ 756 | 757 | .table-wrapper { 758 | -webkit-overflow-scrolling: touch; 759 | overflow-x: auto; 760 | } 761 | 762 | table { 763 | margin: 0 0 2em 0; 764 | width: 100%; 765 | } 766 | 767 | table tbody tr { 768 | border: solid 1px #e5e5e5; 769 | border-left: 0; 770 | border-right: 0; 771 | } 772 | 773 | table tbody tr:nth-child(2n + 1) { 774 | background-color: #f8f8f8; 775 | } 776 | 777 | table td { 778 | padding: 0.75em 0.75em; 779 | } 780 | 781 | table th { 782 | color: #646464; 783 | font-size: 0.9em; 784 | font-weight: 300; 785 | padding: 0 0.75em 0.75em 0.75em; 786 | text-align: left; 787 | } 788 | 789 | table thead { 790 | border-bottom: solid 2px #e5e5e5; 791 | } 792 | 793 | table tfoot { 794 | border-top: solid 2px #e5e5e5; 795 | } 796 | 797 | table.alt { 798 | border-collapse: separate; 799 | } 800 | 801 | table.alt tbody tr td { 802 | border: solid 1px #e5e5e5; 803 | border-left-width: 0; 804 | border-top-width: 0; 805 | } 806 | 807 | table.alt tbody tr td:first-child { 808 | border-left-width: 1px; 809 | } 810 | 811 | table.alt tbody tr:first-child td { 812 | border-top-width: 1px; 813 | } 814 | 815 | table.alt thead { 816 | border-bottom: 0; 817 | } 818 | 819 | table.alt tfoot { 820 | border-top: 0; 821 | } 822 | 823 | /* Button */ 824 | 825 | input[type="submit"], 826 | input[type="reset"], 827 | input[type="button"], 828 | .button { 829 | -moz-appearance: none; 830 | -webkit-appearance: none; 831 | -o-appearance: none; 832 | -ms-appearance: none; 833 | appearance: none; 834 | -moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out; 835 | -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out; 836 | -o-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out; 837 | -ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out; 838 | transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out; 839 | background-color: #666; 840 | border-radius: 6px; 841 | border: 0; 842 | color: #ffffff; 843 | cursor: pointer; 844 | display: inline-block; 845 | font-weight: 400; 846 | height: 3em; 847 | line-height: 3em; 848 | padding: 0 2em; 849 | text-align: center; 850 | text-decoration: none; 851 | white-space: nowrap; 852 | } 853 | 854 | input[type="submit"]:hover, 855 | input[type="reset"]:hover, 856 | input[type="button"]:hover, 857 | .button:hover { 858 | background-color: #737373; 859 | } 860 | 861 | input[type="submit"]:active, 862 | input[type="reset"]:active, 863 | input[type="button"]:active, 864 | .button:active { 865 | background-color: #595959; 866 | } 867 | 868 | input[type="submit"].icon, 869 | input[type="reset"].icon, 870 | input[type="button"].icon, 871 | .button.icon { 872 | padding-left: 1.35em; 873 | } 874 | 875 | input[type="submit"].icon:before, 876 | input[type="reset"].icon:before, 877 | input[type="button"].icon:before, 878 | .button.icon:before { 879 | margin-right: 0.5em; 880 | } 881 | 882 | input[type="submit"].fit, 883 | input[type="reset"].fit, 884 | input[type="button"].fit, 885 | .button.fit { 886 | display: block; 887 | margin: 0 0 1em 0; 888 | width: 100%; 889 | } 890 | 891 | input[type="submit"].small, 892 | input[type="reset"].small, 893 | input[type="button"].small, 894 | .button.small { 895 | font-size: 0.8em; 896 | height: 2.7em; 897 | line-height: 2.7em; 898 | } 899 | 900 | input[type="submit"].big, 901 | input[type="reset"].big, 902 | input[type="button"].big, 903 | .button.big { 904 | font-size: 1.25em; 905 | height: 2.7em; 906 | line-height: 2.7em; 907 | } 908 | 909 | input[type="submit"].alt, 910 | input[type="reset"].alt, 911 | input[type="button"].alt, 912 | .button.alt { 913 | background-color: transparent; 914 | box-shadow: inset 0 0 0 2px #e5e5e5; 915 | color: #777; 916 | } 917 | 918 | input[type="submit"].alt:hover, 919 | input[type="reset"].alt:hover, 920 | input[type="button"].alt:hover, 921 | .button.alt:hover { 922 | background-color: #f8f8f8; 923 | } 924 | 925 | input[type="submit"].alt:active, 926 | input[type="reset"].alt:active, 927 | input[type="button"].alt:active, 928 | .button.alt:active { 929 | background-color: #f0f0f0; 930 | } 931 | 932 | input[type="submit"].alt.icon:before, 933 | input[type="reset"].alt.icon:before, 934 | input[type="button"].alt.icon:before, 935 | .button.alt.icon:before { 936 | color: #999; 937 | } 938 | 939 | input[type="submit"].special, 940 | input[type="reset"].special, 941 | input[type="button"].special, 942 | .button.special { 943 | background-color: #e89980; 944 | color: #ffffff !important; 945 | } 946 | 947 | input[type="submit"].special:hover, 948 | input[type="reset"].special:hover, 949 | input[type="button"].special:hover, 950 | .button.special:hover { 951 | background-color: #ecaa96; 952 | } 953 | 954 | input[type="submit"].special:active, 955 | input[type="reset"].special:active, 956 | input[type="button"].special:active, 957 | .button.special:active { 958 | background-color: #e4886a; 959 | } 960 | 961 | input[type="submit"].disabled, input[type="submit"]:disabled, 962 | input[type="reset"].disabled, 963 | input[type="reset"]:disabled, 964 | input[type="button"].disabled, 965 | input[type="button"]:disabled, 966 | .button.disabled, 967 | .button:disabled { 968 | background-color: #777 !important; 969 | box-shadow: inset 0 -0.15em 0 0 rgba(0, 0, 0, 0.15); 970 | color: #f5f5f5 !important; 971 | cursor: default; 972 | opacity: 0.25; 973 | } 974 | 975 | /* Header */ 976 | 977 | #skel-layers-wrapper { 978 | padding-top: 3em; 979 | } 980 | 981 | body.landing #skel-layers-wrapper, body #skel-layers-wrapper { 982 | padding-top: 0; 983 | } 984 | @-moz-keyframes reveal-header { 0% { top: -5em; } 100% { top: 0; } } 985 | @-webkit-keyframes reveal-header { 0% { top: -5em; } 100% { top: 0; } } 986 | @-o-keyframes reveal-header { 0% { top: -5em; } 100% { top: 0; } } 987 | @-ms-keyframes reveal-header { 0% { top: -5em; } 100% { top: 0; } } 988 | @keyframes reveal-header { 0% { top: -5em; } 100% { top: 0; } } 989 | 990 | #header { 991 | background: #444; 992 | color: #bbb; 993 | cursor: default; 994 | height: 3.25em; 995 | left: 0; 996 | line-height: 3.25em; 997 | position: fixed; 998 | top: 0; 999 | width: 100%; 1000 | z-index: 10000; 1001 | } 1002 | 1003 | #header h1 { 1004 | color: inherit; 1005 | height: inherit; 1006 | left: 1.25em; 1007 | line-height: inherit; 1008 | margin: 0; 1009 | padding: 0; 1010 | position: absolute; 1011 | top: 0; 1012 | } 1013 | 1014 | #header h1 a { 1015 | color: #fff; 1016 | font-weight: 400; 1017 | border: 0; 1018 | } 1019 | 1020 | #header nav { 1021 | height: inherit; 1022 | line-height: inherit; 1023 | position: absolute; 1024 | right: 0.75em; 1025 | top: 0; 1026 | vertical-align: middle; 1027 | } 1028 | 1029 | #header nav > ul { 1030 | list-style: none; 1031 | margin: 0; 1032 | padding-left: 0; 1033 | } 1034 | 1035 | #header nav > ul > li { 1036 | display: inline-block; 1037 | padding-left: 0; 1038 | } 1039 | 1040 | #header nav > ul > li > ul { 1041 | display: none; 1042 | } 1043 | 1044 | #header nav > ul > li a { 1045 | display: inline-block; 1046 | height: 2em; 1047 | line-height: 1.95em; 1048 | padding: 0 1em; 1049 | border-radius: 6px; 1050 | } 1051 | 1052 | #header nav > ul > li a:not(.button) { 1053 | color: #fff; 1054 | display: inline-block; 1055 | text-decoration: none; 1056 | border: 0; 1057 | } 1058 | 1059 | #header nav > ul > li a:not(.button).icon:before { 1060 | color: #999; 1061 | margin-right: 0.5em; 1062 | } 1063 | 1064 | #header nav > ul > li:first-child { 1065 | margin-left: 0; 1066 | } 1067 | 1068 | #header nav > ul > li.active a:not(.button) { 1069 | background-color: rgba(153, 153, 153, 0.25); 1070 | } 1071 | 1072 | #header nav > ul > li .button { 1073 | margin: 0 0 0 0.5em; 1074 | position: relative; 1075 | } 1076 | 1077 | #header input[type="submit"], 1078 | #header input[type="reset"], 1079 | #header input[type="button"], 1080 | #header .button { 1081 | background-color: transparent; 1082 | box-shadow: inset 0 0 0 2px #999; 1083 | color: #fff; 1084 | } 1085 | 1086 | #header input[type="submit"]:hover, 1087 | #header input[type="reset"]:hover, 1088 | #header input[type="button"]:hover, 1089 | #header .button:hover { 1090 | background-color: rgba(153, 153, 153, 0.25); 1091 | } 1092 | 1093 | #header input[type="submit"]:active, 1094 | #header input[type="reset"]:active, 1095 | #header input[type="button"]:active, 1096 | #header .button:active { 1097 | background-color: rgba(153, 153, 153, 0.5); 1098 | } 1099 | 1100 | #header .container { 1101 | position: relative; 1102 | } 1103 | 1104 | #header .container h1 { 1105 | left: 0; 1106 | } 1107 | 1108 | #header .container nav { 1109 | right: 0; 1110 | } 1111 | 1112 | #header.reveal { 1113 | -moz-animation: reveal-header 0.5s; 1114 | -webkit-animation: reveal-header 0.5s; 1115 | -o-animation: reveal-header 0.5s; 1116 | -ms-animation: reveal-header 0.5s; 1117 | animation: reveal-header 0.5s; 1118 | } 1119 | 1120 | #header.alt { 1121 | -moz-animation: none; 1122 | -webkit-animation: none; 1123 | -o-animation: none; 1124 | -ms-animation: none; 1125 | animation: none; 1126 | background: none; 1127 | color: rgba(255, 255, 255, 0.75); 1128 | position: absolute; 1129 | } 1130 | 1131 | #header.alt nav > ul > li a:not(.button).icon:before { 1132 | color: rgba(255, 255, 255, 0.75); 1133 | } 1134 | 1135 | #header.alt nav > ul > li.active a:not(.button) { 1136 | background-color: rgba(255, 255, 255, 0.2); 1137 | } 1138 | 1139 | #header.alt input[type="submit"], 1140 | #header.alt input[type="reset"], 1141 | #header.alt input[type="button"], 1142 | #header.alt .button { 1143 | box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); 1144 | } 1145 | 1146 | #header.alt input[type="submit"]:hover, 1147 | #header.alt input[type="reset"]:hover, 1148 | #header.alt input[type="button"]:hover, 1149 | #header.alt .button:hover { 1150 | background-color: rgba(255, 255, 255, 0.1); 1151 | } 1152 | 1153 | #header.alt input[type="submit"]:active, 1154 | #header.alt input[type="reset"]:active, 1155 | #header.alt input[type="button"]:active, 1156 | #header.alt .button:active { 1157 | background-color: rgba(255, 255, 255, 0.2); 1158 | } 1159 | 1160 | .dropotron { 1161 | background: #fff; 1162 | border-radius: 6px; 1163 | box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.065), inset 0 -1px 0 0 #fff, inset 0 0 0 1px rgba(229, 229, 229, 0.5); 1164 | list-style: none; 1165 | margin: calc(-0.5em + 1px) 0 0 1px; 1166 | padding: 0.5em 0; 1167 | width: 11em; 1168 | } 1169 | 1170 | .dropotron li { 1171 | padding: 0; 1172 | } 1173 | 1174 | .dropotron li a, .dropotron li span { 1175 | -moz-transition: none; 1176 | -webkit-transition: none; 1177 | -o-transition: none; 1178 | -ms-transition: none; 1179 | transition: none; 1180 | border: 0; 1181 | border-top: solid 1px #f2f2f2; 1182 | color: inherit; 1183 | display: block; 1184 | padding: 0.15em 1em; 1185 | } 1186 | 1187 | .dropotron li:first-child > a, .dropotron li:first-child > span { 1188 | border-top: 0; 1189 | } 1190 | 1191 | .dropotron li.active > a, .dropotron li.active > span, .dropotron li:hover > a, .dropotron li:hover > span { 1192 | background: #e89980; 1193 | color: #ffffff; 1194 | } 1195 | 1196 | .dropotron.level-0 { 1197 | font-size: 0.9em; 1198 | margin: 1em 0 0 0; 1199 | } 1200 | 1201 | .dropotron.level-0:before { 1202 | -moz-transform: rotate(45deg); 1203 | -webkit-transform: rotate(45deg); 1204 | -o-transform: rotate(45deg); 1205 | -ms-transform: rotate(45deg); 1206 | transform: rotate(45deg); 1207 | background: #fff; 1208 | border: solid 1px rgba(229, 229, 229, 0.5); 1209 | border-bottom: 0; 1210 | border-right: 0; 1211 | box-shadow: -0.25em -0.125em 0.125em 0 rgba(0, 0, 0, 0.015); 1212 | content: ''; 1213 | display: block; 1214 | height: 0.75em; 1215 | position: absolute; 1216 | right: 1.25em; 1217 | top: -0.375em; 1218 | width: 0.75em; 1219 | z-index: 0; 1220 | } 1221 | 1222 | /* Banner */ 1223 | 1224 | #banner { 1225 | background-attachment: scroll, fixed; 1226 | background-color: #666; 1227 | background-image: url("images/overlay.png"), url("../images/banner.jpg"); 1228 | background-position: top left, center center; 1229 | background-repeat: repeat, no-repeat; 1230 | background-size: auto, cover; 1231 | color: #fff; 1232 | padding: 12em 0 20em 0; 1233 | text-align: center; 1234 | } 1235 | 1236 | #banner :last-child { 1237 | margin-bottom: 0; 1238 | } 1239 | 1240 | #banner h2, #banner h3, #banner h4, #banner h5, #banner h6 { 1241 | color: #fff; 1242 | } 1243 | 1244 | #banner h2 { 1245 | font-size: 3.5em; 1246 | line-height: 1em; 1247 | margin: 0 0 0.5em 0; 1248 | padding: 0; 1249 | } 1250 | 1251 | #banner p { 1252 | font-size: 1.25em; 1253 | margin-bottom: 1.75em; 1254 | } 1255 | 1256 | #banner input[type="submit"], 1257 | #banner input[type="reset"], 1258 | #banner input[type="button"], 1259 | #banner .button { 1260 | background-color: transparent; 1261 | box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5); 1262 | color: #fff; 1263 | min-width: 12em; 1264 | } 1265 | 1266 | #banner input[type="submit"]:hover, 1267 | #banner input[type="reset"]:hover, 1268 | #banner input[type="button"]:hover, 1269 | #banner .button:hover { 1270 | background-color: rgba(255, 255, 255, 0.1); 1271 | } 1272 | 1273 | #banner input[type="submit"]:active, 1274 | #banner input[type="reset"]:active, 1275 | #banner input[type="button"]:active, 1276 | #banner .button:active { 1277 | background-color: rgba(255, 255, 255, 0.2); 1278 | } 1279 | 1280 | #banner input[type="submit"].special, 1281 | #banner input[type="reset"].special, 1282 | #banner input[type="button"].special, 1283 | #banner .button.special { 1284 | background: #fff; 1285 | color: #666 !important; 1286 | } 1287 | 1288 | /* Main */ 1289 | 1290 | #main { 1291 | padding: 4em 0; 1292 | } 1293 | 1294 | #main > header { 1295 | text-align: center; 1296 | margin: 0 0 3em 0; 1297 | } 1298 | 1299 | #main > header h2 { 1300 | font-size: 2.75em; 1301 | margin: 0; 1302 | } 1303 | 1304 | #main > header p { 1305 | border-top: solid 2px #e5e5e5; 1306 | color: #777; 1307 | display: inline-block; 1308 | font-style: normal; 1309 | margin: 1em 0 0 0; 1310 | padding: 1em 0 1.25em 0; 1311 | } 1312 | body #main { 1313 | margin-top: -26em; 1314 | } 1315 | 1316 | body.landing #main { 1317 | margin-top: -14em; 1318 | } 1319 | 1320 | /* Footer */ 1321 | 1322 | #footer { 1323 | background: #f0f0f0; 1324 | padding: 4em 0 6em 0; 1325 | text-align: center; 1326 | } 1327 | 1328 | #footer .icons a { 1329 | -moz-transition: opacity 0.2s ease-in-out; 1330 | -webkit-transition: opacity 0.2s ease-in-out; 1331 | -o-transition: opacity 0.2s ease-in-out; 1332 | -ms-transition: opacity 0.2s ease-in-out; 1333 | transition: opacity 0.2s ease-in-out; 1334 | opacity: 0.35; 1335 | } 1336 | 1337 | #footer .icons a:hover { 1338 | opacity: 0.75; 1339 | } 1340 | 1341 | #footer .copyright { 1342 | color: #999; 1343 | font-size: 0.9em; 1344 | line-height: 1em; 1345 | margin: 2em 0 0 0; 1346 | padding: 0; 1347 | text-align: center; 1348 | } 1349 | 1350 | #footer .copyright a { 1351 | color: inherit; 1352 | } 1353 | 1354 | #footer .copyright li { 1355 | border-left: solid 1px #dddddd; 1356 | display: inline-block; 1357 | list-style: none; 1358 | margin-left: 1em; 1359 | padding-left: 1em; 1360 | } 1361 | 1362 | #footer .copyright li:first-child { 1363 | border-left: 0; 1364 | margin-left: 0; 1365 | padding-left: 0; 1366 | } 1367 | 1368 | /* CTA */ 1369 | 1370 | #cta { 1371 | background: #e89980; 1372 | color: #f9e5df; 1373 | padding: 3.5em 0 4em 0; 1374 | text-align: center; 1375 | } 1376 | 1377 | #cta h2, #cta h3, #cta h4, #cta h5, #cta h6 { 1378 | color: inherit; 1379 | } 1380 | 1381 | #cta form { 1382 | margin: 0 auto; 1383 | max-width: 100%; 1384 | width: 25em; 1385 | } 1386 | 1387 | #cta input[type="submit"], 1388 | #cta input[type="reset"], 1389 | #cta input[type="button"], 1390 | #cta .button { 1391 | box-shadow: none; 1392 | background: #fff; 1393 | color: #e89980; 1394 | } 1395 | 1396 | #cta input[type="text"], 1397 | #cta input[type="password"], 1398 | #cta input[type="email"], 1399 | #cta select, 1400 | #cta textarea { 1401 | color: #ffffff; 1402 | background: rgba(255, 255, 255, 0.15); 1403 | border: 0; 1404 | } 1405 | 1406 | #cta input[type="text"]:focus, 1407 | #cta input[type="password"]:focus, 1408 | #cta input[type="email"]:focus, 1409 | #cta select:focus, 1410 | #cta textarea:focus { 1411 | box-shadow: inset 0 0 0 2px #fff; 1412 | } 1413 | 1414 | #cta ::-webkit-input-placeholder { 1415 | color: rgba(255, 255, 255, 0.75) !important; 1416 | } 1417 | 1418 | #cta :-moz-placeholder { 1419 | color: rgba(255, 255, 255, 0.75) !important; 1420 | } 1421 | 1422 | #cta ::-moz-placeholder { 1423 | color: rgba(255, 255, 255, 0.75) !important; 1424 | } 1425 | 1426 | #cta :-ms-input-placeholder { 1427 | color: rgba(255, 255, 255, 0.75) !important; 1428 | } 1429 | 1430 | #cta .formerize-placeholder { 1431 | color: rgba(255, 255, 255, 0.75) !important; 1432 | } -------------------------------------------------------------------------------- /assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-jekyll-templates/Alpha-Jekyll-Theme/e753ce08c1cce685767dafe7eeaf92add1a587a8/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-jekyll-templates/Alpha-Jekyll-Theme/e753ce08c1cce685767dafe7eeaf92add1a587a8/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-jekyll-templates/Alpha-Jekyll-Theme/e753ce08c1cce685767dafe7eeaf92add1a587a8/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-jekyll-templates/Alpha-Jekyll-Theme/e753ce08c1cce685767dafe7eeaf92add1a587a8/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /assets/images/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-jekyll-templates/Alpha-Jekyll-Theme/e753ce08c1cce685767dafe7eeaf92add1a587a8/assets/images/banner.jpg -------------------------------------------------------------------------------- /assets/images/pic01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-jekyll-templates/Alpha-Jekyll-Theme/e753ce08c1cce685767dafe7eeaf92add1a587a8/assets/images/pic01.jpg -------------------------------------------------------------------------------- /assets/images/pic02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-jekyll-templates/Alpha-Jekyll-Theme/e753ce08c1cce685767dafe7eeaf92add1a587a8/assets/images/pic02.jpg -------------------------------------------------------------------------------- /assets/images/pic03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-jekyll-templates/Alpha-Jekyll-Theme/e753ce08c1cce685767dafe7eeaf92add1a587a8/assets/images/pic03.jpg -------------------------------------------------------------------------------- /assets/images/pic04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-jekyll-templates/Alpha-Jekyll-Theme/e753ce08c1cce685767dafe7eeaf92add1a587a8/assets/images/pic04.jpg -------------------------------------------------------------------------------- /assets/images/pic05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-jekyll-templates/Alpha-Jekyll-Theme/e753ce08c1cce685767dafe7eeaf92add1a587a8/assets/images/pic05.jpg -------------------------------------------------------------------------------- /assets/images/pic06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-jekyll-templates/Alpha-Jekyll-Theme/e753ce08c1cce685767dafe7eeaf92add1a587a8/assets/images/pic06.jpg -------------------------------------------------------------------------------- /assets/images/pic07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/old-jekyll-templates/Alpha-Jekyll-Theme/e753ce08c1cce685767dafe7eeaf92add1a587a8/assets/images/pic07.jpg -------------------------------------------------------------------------------- /assets/js/init.js: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | /* 4 | Alpha by HTML5 UP 5 | html5up.net | @n33co 6 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 7 | */ 8 | 9 | (function($) { 10 | 11 | skel.init({ 12 | reset: 'full', 13 | breakpoints: { 14 | global: { range: '*', href: '{{ site.baseurl }}/assets/css/style.css', containers: '60em', grid: { gutters: { vertical: '2em', horizontal: 0 } } }, 15 | wide: { range: '-1680', href: '{{ site.baseurl }}/assets/css/style-wide.css' }, 16 | normal: { range: '-1280', href: '{{ site.baseurl }}/assets/css/style-normal.css', grid: { gutters: { vertical: '1.5em' } }, viewport: { scalable: false } }, 17 | narrow: { range: '-980', href: '{{ site.baseurl }}/assets/css/style-narrow.css', containers: '90%' }, 18 | narrower: { range: '-840', href: '{{ site.baseurl }}/assets/css/style-narrower.css', grid: { collapse: 1 } }, 19 | mobile: { range: '-640', href: '{{ site.baseurl }}/assets/css/style-mobile.css', containers: '100%', grid: { gutters: { vertical: '1em' } } }, 20 | mobilep: { range: '-480', href: '{{ site.baseurl }}/assets/css/style-mobilep.css', grid: { collapse: 2 } } 21 | } 22 | }, { 23 | layers: { 24 | transformTest: function() { return skel.vars.isMobile; }, 25 | layers: { 26 | 27 | // Navigation Panel. 28 | navPanel: { 29 | animation: 'pushX', 30 | breakpoints: 'narrower', 31 | clickToClose: true, 32 | height: '100%', 33 | hidden: true, 34 | html: '
', 35 | orientation: 'vertical', 36 | position: 'top-left', 37 | side: 'left', 38 | width: 250 39 | }, 40 | 41 | // Navigation Button. 42 | navButton: { 43 | breakpoints: 'narrower', 44 | height: '4em', 45 | html: '', 46 | position: 'top-left', 47 | side: 'top', 48 | width: '6em' 49 | } 50 | 51 | } 52 | } 53 | }); 54 | 55 | $(function() { 56 | 57 | var $window = $(window), 58 | $body = $('body'), 59 | $header = $('#header'), 60 | $banner = $('#banner'); 61 | 62 | // Forms (IE<10). 63 | var $form = $('form'); 64 | if ($form.length > 0) { 65 | 66 | $form.find('.form-button-submit') 67 | .on('click', function() { 68 | $(this).parents('form').submit(); 69 | return false; 70 | }); 71 | 72 | if (skel.vars.IEVersion < 10) { 73 | $.fn.n33_formerize=function(){var _fakes=new Array(),_form = $(this);_form.find('input[type=text],textarea').each(function() { var e = $(this); if (e.val() == '' || e.val() == e.attr('placeholder')) { e.addClass('formerize-placeholder'); e.val(e.attr('placeholder')); } }).blur(function() { var e = $(this); if (e.attr('name').match(/_fakeformerizefield$/)) return; if (e.val() == '') { e.addClass('formerize-placeholder'); e.val(e.attr('placeholder')); } }).focus(function() { var e = $(this); if (e.attr('name').match(/_fakeformerizefield$/)) return; if (e.val() == e.attr('placeholder')) { e.removeClass('formerize-placeholder'); e.val(''); } }); _form.find('input[type=password]').each(function() { var e = $(this); var x = $($('
').append(e.clone()).remove().html().replace(/type="password"/i, 'type="text"').replace(/type=password/i, 'type=text')); if (e.attr('id') != '') x.attr('id', e.attr('id') + '_fakeformerizefield'); if (e.attr('name') != '') x.attr('name', e.attr('name') + '_fakeformerizefield'); x.addClass('formerize-placeholder').val(x.attr('placeholder')).insertAfter(e); if (e.val() == '') e.hide(); else x.hide(); e.blur(function(event) { event.preventDefault(); var e = $(this); var x = e.parent().find('input[name=' + e.attr('name') + '_fakeformerizefield]'); if (e.val() == '') { e.hide(); x.show(); } }); x.focus(function(event) { event.preventDefault(); var x = $(this); var e = x.parent().find('input[name=' + x.attr('name').replace('_fakeformerizefield', '') + ']'); x.hide(); e.show().focus(); }); x.keypress(function(event) { event.preventDefault(); x.val(''); }); }); _form.submit(function() { $(this).find('input[type=text],input[type=password],textarea').each(function(event) { var e = $(this); if (e.attr('name').match(/_fakeformerizefield$/)) e.attr('name', ''); if (e.val() == e.attr('placeholder')) { e.removeClass('formerize-placeholder'); e.val(''); } }); }).bind("reset", function(event) { event.preventDefault(); $(this).find('select').val($('option:first').val()); $(this).find('input,textarea').each(function() { var e = $(this); var x; e.removeClass('formerize-placeholder'); switch (this.type) { case 'submit': case 'reset': break; case 'password': e.val(e.attr('defaultValue')); x = e.parent().find('input[name=' + e.attr('name') + '_fakeformerizefield]'); if (e.val() == '') { e.hide(); x.show(); } else { e.show(); x.hide(); } break; case 'checkbox': case 'radio': e.attr('checked', e.attr('defaultValue')); break; case 'text': case 'textarea': e.val(e.attr('defaultValue')); if (e.val() == '') { e.addClass('formerize-placeholder'); e.val(e.attr('placeholder')); } break; default: e.val(e.attr('defaultValue')); break; } }); window.setTimeout(function() { for (x in _fakes) _fakes[x].trigger('formerize_sync'); }, 10); }); return _form; }; 74 | $form.n33_formerize(); 75 | } 76 | 77 | } 78 | 79 | // Dropdowns. 80 | $('#nav > ul').dropotron({ 81 | alignment: 'right' 82 | }); 83 | 84 | // Header. 85 | // If the header is using "alt" styling and #banner is present, use scrollwatch 86 | // to revert it back to normal styling once the user scrolls past the banner. 87 | // Note: This is disabled on mobile devices. 88 | if (!skel.vars.isMobile 89 | && $header.hasClass('alt') 90 | && $banner.length > 0) { 91 | 92 | $window.on('load', function() { 93 | 94 | $banner.scrollwatch({ 95 | delay: 0, 96 | range: 0.5, 97 | anchor: 'top', 98 | on: function() { $header.addClass('alt reveal'); }, 99 | off: function() { $header.removeClass('alt'); } 100 | }); 101 | 102 | }); 103 | 104 | } 105 | 106 | }); 107 | 108 | })(jQuery); -------------------------------------------------------------------------------- /assets/js/jquery.dropotron.min.js: -------------------------------------------------------------------------------- 1 | /* jquery.dropotron.js v1.4.2 | (c) n33 | n33.co | MIT licensed */ 2 | (function(e){var t="openerActiveClass",n="left",r="doCollapseAll",i="position",s="trigger",o="disableSelection_dropotron",u="addClass",a="doCollapse",f=!1,l="outerWidth",c="removeClass",h="preventDefault",p="dropotron",d="clearTimeout",v="length",m="right",g="speed",y=!0,b="parent",w="none",E="stopPropagation",S=":visible",x="absolute",T="click",N="doExpand",C="css",k="center",L="toggle",A="baseZIndex",O="offsetX",M="alignment",_="children",D="submenuClassPrefix",P="doToggle",H="hover",B="ul",j="relative",F="opacity",I="z-index",q="opener",R="find",U="px",z=null,W="fadeTo",X="offset";e.fn[o]=function(){return e(this)[C]("user-select",w)[C]("-khtml-user-select",w)[C]("-moz-user-select",w)[C]("-o-user-select",w)[C]("-webkit-user-select",w)},e.fn[p]=function(t){var n;if(this[v]>1)for(n=0;n0&&r.add(p).on("mouseleave",function(){window[d](ut),ut=window.setTimeout(function(){r[s](a)},et.hideDelay)}),r[o]().hide()[u](et.menuClass)[C](i,x).on("mouseenter",function(){window[d](ut)}).on(N,function(){var o,h,v,w,E,T,N,_,D,P,H;if(r.is(S))return f;window[d](ut),nt.each(function(){var t=e(this);e.contains(t.get(0),p.get(0))||t[s](a)}),o=p[X](),h=p[i](),v=p[b]()[i](),w=p[l](),E=r[l](),T=r[C](I)==et[A];if(T){et.detach?N=o:N=h,P=N.top+p.outerHeight()+et.globalOffsetY,_=et[M],r[c](n)[c](m)[c](k);switch(et[M]){case m:D=N[n]-E+w,D<0&&(D=N[n],_=n);break;case k:D=N[n]-Math.floor((E-w)/2),D<0?(D=N[n],_=n):D+E>it.width()&&(D=N[n]-E+w,_=m);break;case n:default:D=N[n],D+E>it.width()&&(D=N[n]-E+w,_=m)}r[u](_)}else{p[C](i)==j||p[C](i)==x?(P=et.offsetY,D=-1*h[n]):(P=h.top+et.offsetY,D=0);switch(et[M]){case m:D+=-1*p[b]()[l]()+et[O];break;case k:case n:default:D+=p[b]()[l]()+et[O]}}navigator.userAgent.match(/MSIE ([0-9]+)\./)&&RegExp.$1<8&&(D+=et.IEOffsetX,P+=et.IEOffsetY),r[C](n,D+U)[C]("top",P+U),r[C](F,"0.01").show(),H=f,p[C](i)==j||p[C](i)==x?D=-1*h[n]:D=0,r[X]()[n]<0?(D+=p[b]()[l]()-et[O],H=y):r[X]()[n]+E>it.width()&&(D+=-1*p[b]()[l]()-et[O],H=y),H&&r[C](n,D+U),r.hide()[C](F,"1");switch(et.mode){case"zoom":st=y,p[u](et[t]),r.animate({width:L,height:L},et[g],et.easing,function(){st=f});break;case"slide":st=y,p[u](et[t]),r.animate({height:L},et[g],et.easing,function(){st=f});break;case"fade":st=y,T&&!et.noOpenerFade?(et[g]=="slow"?H=80:et[g]=="fast"?H=40:H=Math.floor(et[g]/2),p[W](H,.01,function(){p[u](et[t]),p[W](et[g],1),r.fadeIn(et[g],function(){st=f})})):(p[u](et[t]),p[W](et[g],1),r.fadeIn(et[g],function(){st=f}));break;case"instant":default:p[u](et[t]),r.show()}return f}).on(a,function(){return r.is(S)?(r.hide(),p[c](et[t]),r[R]("."+et[t])[c](et[t]),r[R](B).hide(),f):f}).on(P,function(){return r.is(S)?r[s](a):r[s](N),f}),p[o]()[u](q)[C]("cursor","pointer").on(T,function(e){if(st)return;e[h](),e[E](),r[s](P)}),et.expandMode==H&&p[H](function(){if(st)return;ot=window.setTimeout(function(){r[s](N)},et.hoverDelay)},function(){window[d](ot)})}),nt[R]("a")[C]("display","block").on(T,function(t){if(st)return;e(this).attr("href")[v]<1&&t[h]()}),tt[R]("li")[C]("white-space","nowrap").each(function(){var t=e(this),n=t[_]("a"),i=t[_](B);n.on(T,function(t){e(this).attr("href")[v]<1?t[h]():t[E]()}),n[v]>0&&i[v]==0&&t.on(T,function(e){if(st)return;tt[s](r),e[E]()})}),tt[_]("li").each(function(){var t,n,r,i,s=e(this),o=s[_](B);if(o[v]>0){et.detach&&(et.cloneOnDetach&&(t=o.clone(),t.attr("class","").hide().appendTo(o[b]())),o.detach().appendTo(rt));for(n=et[A],r=1,i=o;i[v]>0;r++)i[C](I,n++),et[D]&&i[u](et[D]+(n-1-et[A])),i=i[R]("> li > ul")}}),it.on("scroll",function(){tt[s](r)}).on("keypress",function(e){!st&&e.keyCode==27&&(e[h](),tt[s](r))}),rt.on(T,function(){st||tt[s](r)})}})(jQuery); -------------------------------------------------------------------------------- /assets/js/jquery.scrollgress.min.js: -------------------------------------------------------------------------------- 1 | /* jquery.scrollgress vx.x | (c) n33 | n33.co @n33co | MIT */ 2 | (function(){var e="scrollwatchResume",t="length",n="removeData",r="data",i="scrollwatch-state",s="scrollwatch-suspended",o="scrollgress-suspended",u="setTimeout",a="trigger",f="scroll",l="scrollwatchSuspend",c=!0,h="scrollwatch",p=null,d="top",v="rangeMin",m="rangeMax",g="scrollgress",y=!1,b="anchor",w="unscrollwatch",E="unscrollgress",S="element",x="-id",T="scroll.",N="height",C="scrollTop",k="center",L="bottom",A=$(window),O=$(document),M=1e3;jQuery.fn[e]=function(){var l,c;if(this[t]==0)return $(this);if(this[t]>1){for(l=0;l1){for(e=0;e1){for(n=0;n=a[v],n=a[m]===y||e<=a[m];if(t&&n){f[r](i,1),a.on&&a.on(f),w&&(w(f,c),w=p);return}}if(s==1||s==-1){t=a[v]!==y&&ea[m];if(t||n){f[r](i,0),a.off&&a.off(f),w&&(w(f,y),w=p);return}}},w?0:a.delay)},{anchor:a[b]},h),f},jQuery.fn[w]=function(){var e,r;if(this[t]==0)return $(this);if(this[t]>1){for(e=0;e1){for(s=0;s0?s=Math.max(0,s-u.easing/100):s<0&&(s=Math.min(0,s+u.easing/100)),e(s,l)})[a](f),l},jQuery.fn[E]=function(e){var i,s,o,u;if(this[t]==0)return $(this);if(this[t]>1){for(i=0;i1){for(t=0;t0&&(t[dt](),t[S](E,(t.data($t)+r)/12*100+"%"))},e.fn[kt]=function(){return e(this).parents()[I]>0},e.fn[dt]=function(){var t=e(this);t[Lt]("class").match(/(\s+|^)([0-9]+)u(\s+|$)/)&&t.data($t,parseInt(RegExp.$2))},e.fn[h]=function(r){var i,s,o;if(this[I]>1){for(i=0;i-1*f&&t>l;break;case g:a=n-1*f&&t<-1*l;break;case R:a=t-1*f&&n>l;break;case y:a=t-1*f&&n<-1*l}if(a)return u[tt]=T,u[St]=T,u[w](),H}if(o[x]()==0&&n<0||s>i-2&&s0)return H}),this[s]=o},dn[L][ut]=function(){return this[s]!==T},dn[L][tn]=function(){return this[s].is(":visible")},dn[L][v]=function(){t[i][c][Ot](this[s])},dn[L][p]=function(){if(!this[s][kt]())return;t[i][B][Ot](this[s])},dn[L].resume=function(r){if(!this[ut]())return;this[s][Et](ln).each(function(){t.parseResume(e(this))}),this[n][it]||this[wt](r)},dn[L].suspend=function(){if(!this[ut]())return;this[s][r](),this[s][Et](ln).each(function(){t.parseSuspend(e(this))}),this[Qt]&&this[w]()},t={cache:{activeWrapper:T,body:T,exclusiveLayer:T,html:T,htmlbody:T,inactiveWrapper:T,layers:{},window:T,wrapper:T},config:{baseZIndex:1e4,layers:{},speed:250,transform:Ht,transformBreakpoints:T,transformTest:T},eventType:en,activate:function(e){t._[Mt](function(){t[i][At][e][wt]()})},deactivate:function(e){t._[Mt](function(){t[i][At][e][w]()})},toggle:function(e){t._[Mt](function(){var n=t[i][At][e];n[tn]()?n[w]():n[wt]()})},getBaseFontSize:function(){return t._[Kt].IEVersion<9?16.5:parseFloat(getComputedStyle(t[i][Yt].get(0)).fontSize)},getHalf:function(e){var t=parseInt(e);return typeof e=="string"&&e.charAt(e[I]-1)=="%"?Math.floor(t/2)+"%":Math.floor(t/2)+Gt},lockView:function(e){t[i][Q][jt]=t[i][Q][x](),t._[Kt][_t]&&t[i][hn][S](on+e,it),t[i][O].on(z,function(e){e[J](),e[X](),t[i][l]&&t[i][l][w]()}),t[i][Q].on(yt,function(e){t[i][l]&&t[i][l][w]()}),t._[Kt][_t]||t[i][Q].on(mt,function(e){t[i][l]&&t[i][l][w]()})},parseInit:function(n){var r,s,o=n.get(0),u=n[Lt]("data-action"),a=n[Lt]("data-args"),c,h;u&&a&&(a=a.split(","));switch(u){case"toggleLayer":case"layerToggle":n[S](st,Vt)[S]("cursor","pointer"),r=function(n){n[J](),n[X]();if(t[i][l])return t[i][l][w](),H;var r=e(this),s=t[i][At][a[0]];s[tn]()?s[w]():s[wt]()},t._[Kt][U]==pn||t._[Kt][U]=="wp"?n.on(en,r):n.on(t.eventType,r);break;case"navList":c=e(an+a[0]),r=c[Et]("a"),s=[],r.each(function(){var t=e(this),n,r;n=Math.max(0,t.parents("li")[I]-1),r=t[Lt]("href"),s.push(''+t.text()+"")}),s[I]>0&&n[It]("");break;case"copyText":c=e(an+a[0]),n[It](c.text());break;case"copyHTML":c=e(an+a[0]),n[It](c[It]());break;case"moveElementContents":c=e(an+a[0]),o[f]=function(){c[D]().each(function(){var t=e(this);n[Ot](t),t[Bt](P)})},o[C]=function(){n[D]().each(function(){var n=e(this);c[Ot](n),n[Xt](P),t.refresh(n)})},o[f]();break;case"moveElement":c=e(an+a[0]),o[f]=function(){e(V+c[Lt]("id")+'" />').insertBefore(c),n[Ot](c),c[Bt](P)},o[C]=function(){e(pt+c[Lt]("id")).replaceWith(c),c[Xt](P),t.refresh(c)},o[f]();break;case"moveCell":c=e(an+a[0]),h=e(an+a[1]),o[f]=function(){e(V+c[Lt]("id")+'" />').insertBefore(c),n[Ot](c),c[S](E,Ft),h&&h[Ct]()},o[C]=function(){e(pt+c[Lt]("id")).replaceWith(c),c[S](E,""),h&&h[S](E,"")},o[f]();break;default:}},parseResume:function(e){var t=e.get(0);t[f]&&t[f]()},parseSuspend:function(e){var t=e.get(0);t[C]&&t[C]()},recalc:function(e,n){var r=t._.parseMeasurement(e),i;switch(r[1]){case"%":i=Math.floor(n*(r[0]/100));break;case"em":i=t.getBaseFontSize()*r[0];break;default:case Gt:i=r[0]}return i},recalcH:function(n){return t.recalc(n,e(window)[q]())},recalcW:function(n){return t.recalc(n,e(window)[E]())},refresh:function(r){var s;t[n][j]&&(r?s=r.filter(F):s=e(F),s[_]()[Jt](t[i][c]))},unlockView:function(e){t._[Kt][_t]&&t[i][hn][S](on+e,Rt),t[i][O].off(z),t[i][Q].off(yt),t._[Kt][_t]||t[i][Q].off(mt)},init:function(){t[n][fn]&&(t[n][j]=t[n][fn]());if(t[n][j]){if(t._[Kt][U]==pn&&t._[Kt].deviceVersion<4||t._[Kt][U]=="wp")t[n][j]=H;t._[Kt].IEVersion<10&&(t[n][j]=H),t[n][qt]&&!t._.hasActive(t._[cn](t[n][qt]))&&(t[n][j]=H)}t.eventType=t._[Kt][_t]?"touchend":en,t.initObjects(),t.initTransforms(),t._[Mt](function(){t.initLayers(),t.initIncludes(),t._.updateState(),t.refresh()})},initIncludes:function(){e(".skel-layers-include").each(function(){t.parseInit(e(this))})},initLayers:function(){var r,s,o,u=1;t._[Wt](t[n][At],function(r){var s;if(!t[n][At][r][It]&&(s=e(an+r))[I]==0)return;o=new dn(r,t[n][At][r],u++),t[i][At][r]=o,s&&(s[D]()[Jt](o[W]),s.remove())})},initObjects:function(){t[i][Q]=e(window),t._[Mt](function(){t[i][It]=e(It),t[i][Yt]=e(Yt),t[i][hn]=e("html,body"),t[i][Yt].wrapInner('
'),t[i][O]=e("#skel-layers-wrapper"),t[i][O][S](k,un)[S](A,"0")[S](g,"0")[S](R,"0")[_](),t[i][B]=e('
')[Jt](t[i][Yt]),t[i][B][S](q,"100%"),t[i][c]=e('
')[Jt](t[i][Yt]),t[i][c][S](k,un),t._[vt](nt,t[i][B][0]),t._[vt]("skel_layers_activeWrapper",t[i][c][0]),t._[vt]("skel_layers_wrapper",t[i][O][0]),e("[autofocus]").focus()})},initTransforms:function(){if(t[n][j])e.fn[r]=function(){return e(this)[o](0,0)},e.fn[o]=function(t,n){return e(this)[S](j,"translate("+t+"px, "+n+"px)")},e.fn[_]=function(){return e(this)[S]("backface-visibility",it)[S]("perspective","500")[Ut]("transition","transform "+t[n][xt]/1e3+"s ease-in-out")};else{var s,u=[];t[i][Q].resize(function(){if(t[n][xt]!=0){var e=t[n][xt];t[n][xt]=0,window[m](function(){t[n][xt]=e,u=[]},e)}}),e.fn[r]=function(){for(var r=0;r:first-child {",Y="addEventListener",Z="getComputedStyle",et="^head",tt="padding:",nt="{display:none!important}",rt="registerLocation",it="hasOwnProperty",st="defaults",ot="IEVersion",ut="documentElement",at="attachElements",ft="horizontal",lt="attachElement",ct="DOMContentLoaded",ht="text/css",pt="change",dt="states",vt="_skel_attach",mt="firstChild",gt=":first-child>*{",yt="initial-scale=1",bt="removeEventListener",wt="placeholder",Et=">*{",St="(min-width: ",xt="applyRowTransforms",Tt="resize",Nt=".row.uniform",Ct="attached",kt=".row",Lt="vertical",At="media",Ot="forceDefaultState",Mt="html",_t="nextSibling",Dt="collapse",Pt="_skel_placeholder",Ht="querySelectorAll",Bt="max-height",jt="min-height",Ft="prototype",It="min-width",qt="max-width",Rt="innerHTML",Ut="domready",zt="href",Wt=".\\3$1 ",Xt="isStatic",Vt="priority",$t="readyState",Jt="onresize",Kt="android",Qt={breakpoints:[],breakpointList:[],cache:{elements:{},states:{},stateElements:{}},config:{breakpoints:{"skel-placeholder-breakpoint":{href:u,media:""}},containers:960,defaultState:c,events:{},grid:{collapse:u,gutters:{vertical:40,horizontal:0}},pollOnce:u,preload:u,reset:u,RTL:u,viewport:{width:"device-width"}},css:{bm:"*,*:before,*:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}",n:'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],template{display:none}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}a{background:transparent}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{font-size:2em;margin:.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:"C" "D" "8" "9"}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 silver;margin:0 2px;padding:.35em .625em .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}',r:"html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}body{-webkit-text-size-adjust:none}"},defaults:{breakpoint:{config:c,elements:c,test:c},config_breakpoint:{containers:"100%",grid:{},href:u,media:"",viewport:{}}},events:[],forceDefaultState:u,isInit:u,isStatic:u,locations:{body:c,head:c,html:c},me:c,plugins:{},sd:"/",stateId:"",vars:{},DOMReady:c,getElementsByClassName:c,indexOf:c,isArray:c,iterate:c,matchesMedia:c,extend:function(e,t){var r;Qt[n](t,function(n){Qt[$](t[n])?(Qt[$](e[n])||(e[n]=[]),Qt[X](e[n],t[n])):typeof t[n]==b?(typeof e[n]!=b&&(e[n]={}),Qt[X](e[n],t[n])):e[n]=t[n]})},getArray:function(e){return Qt[$](e)?e:[e]},getLevel:function(e){return typeof e=="boolean"?e?100:0:parseInt(e)},parseMeasurement:function(e){var t,n;if(typeof e!="string")t=[e,"px"];else if(e=="fluid")t=[100,"%"];else{var n;n=e[C](/([0-9\.]+)([^\s]*)/),n[f]<3||!n[2]?t=[parseFloat(e),"px"]:t=[parseFloat(n[1]),n[2]]}return t},canUse:function(e){return Qt[t][e]&&Qt[t][e].test()},hasActive:function(e){var t=u;return Qt[n](e,function(n){t=t||Qt.isActive(e[n])}),t},isActive:function(e){return Qt[R](Qt[r],Qt.sd+e)!==-1},useActive:function(e){if(typeof e!==b)return e;var t=c;return Qt[n](e,function(n){if(t!==c)return;Qt.isActive(n)&&(t=e[n])}),t},wasActive:function(e){return Qt[R](Qt[I].lastStateId,Qt.sd+e)!==-1},applyRowTransforms:function(t){var r,i,o,a=Qt.getLevel(t[e][E][Dt]);Qt[e].RTL&&(Qt.unreverseRows(),a>0&&Qt.reverseRows(a)),i="_skel_cell_important_placeholder",r=Qt[s]("skel-cell-important"),r&&r[f]>0&&Qt[n](r,function(t){if(t===f)return;var n=r[t],s,o=n[l],c;if(!o)return;o[m][C](/no-collapse/)?c=101:o[m][C](/collapse-at-([0-9])/)?c=parseInt(RegExp.$1):c=0;if(a>0&&c<=a){if(n[it](i)&&n[i]!==u)return;s=Qt[e].RTL?_t:"previousSibling",o=n[s];while(o&&o.nodeName=="#text")o=o[s];if(!o)return;n[l][p](n,n[l][mt]),n[i]=o}else n[it](i)||(n[i]=u),o=n[i],o!==u&&(n[l][p](n,o[_t]),n[i]=u)})},reverseRows:function(e){var t=Qt[s]("row");Qt[n](t,function(n){if(n===f)return;var r=t[n];if(r[j]||e>0&&r[m][C](/\bcollapse-at-([0-9])\b/)&&parseInt(RegExp.$1)>=e)return;var i=r.children,s;for(s=1;s0&&Qt[K](function(){Qt[n](r,function(e){Qt[lt](r[e])})})},cacheElement:function(e,t,n,r){return t[l]&&t[l].removeChild(t),Qt[D][i][e]=Qt[O](e,t,n,r)},detachAllElements:function(e){var t,r,s={};Qt[n](e,function(t){s[e[t].id]=_}),Qt[n](Qt[D][i],function(e){if(e in s)return;Qt.detachElement(e)})},detachElement:function(e){var t=Qt[D][i][e],n;if(!t[Ct])return;n=t[b];if(!n[l]||n[l]&&!n[l].tagName)return;n[l].removeChild(n),t[Ct]=u,t.onDetach&&t.onDetach()},getCachedElement:function(e){return Qt[D][i][e]?Qt[D][i][e]:c},newElement:function(e,t,n,r){return{id:e,object:t,location:n,priority:r,attached:u}},changeState:function(s){var a,l,c,p,m,b,x,T;Qt[I].lastStateId=Qt[r],Qt[r]=s;if(!Qt[D][dt][Qt[r]]){Qt[D][dt][Qt[r]]={config:{},elements:[],values:{}},c=Qt[D][dt][Qt[r]],Qt[r]===Qt.sd?a=[]:a=Qt[r][M](1).split(Qt.sd),Qt[X](c[e],Qt[st][S]),Qt[n](a,function(n){Qt[X](c[e],Qt[t][a[n]][e])}),p=[],b="mV"+Qt[r],c[e][P].content?x=c[e][P].content:(c[e][P].scalable===u?p[v]("user-scalable=no"):p[v]("user-scalable=yes"),c[e][P].width?p[v]("width="+c[e][P].width):p[v](yt),x=p.join(",")),(m=Qt[g](b))||(m=Qt[H](b,Qt.newMeta(P,x),et,4)),c[i][v](m);var C,k;p=Qt[N](c[e][q]),C=p[0],k=p[1],c.values[q]=C+k,b="iC"+c.values[q];if(!(m=Qt[g](b))){var A,O,_;A=C*.75+k,O=C+k,_=C*1.25+k,m=Qt[H](b,Qt[w]("body{min-width:"+O+B+".container{margin-left:auto;margin-right:auto;width:"+O+B+".container.small{width:"+A+B+".container.big{width:100%;max-width:"+_+";min-width:"+O+B),F,3)}c[i][v](m),b="iGG"+c[e][E][h][Lt]+"_"+c[e][E][h][ft];if(!(m=Qt[g](b))){var j,W,V,$,J,Q,Y;p=Qt[N](c[e][E][h][Lt]),j=p[0],W=p[1],V=j+W,$=j/2+W,J=j/4+W,Q=j*1.5+W,Y=j*2+W;var Z,rt,it,ot,ut,lt,ct;p=Qt[N](c[e][E][h][ft]),Z=p[0],rt=p[1],it=Z+rt,ot=Z/2+rt,ut=Z/4+rt,lt=Z*1.5+rt,ct=Z*2+rt,m=Qt[H]("iGG"+c[e][E][h][Lt]+"_"+c[e][E][h][ft],Qt[w](".row>*{padding-left:"+V+B+".row+.row>*{padding:"+it+d+V+B+".row{margin-left:-"+V+B+".row+.row.uniform>*{padding:"+V+d+V+B+".row.flush>*{padding-left:0}"+".row+.row.flush>*{padding:0}"+".row.flush{margin-left:0}"+".row+.row.uniform.flush>*{padding:0}"+".row.half>*{padding-left:"+$+B+".row+.row.half>*{padding:"+ot+d+$+B+".row.half{margin-left:-"+$+B+".row+.row.uniform.half>*{padding:"+$+d+$+B+".row.quarter>*{padding-left:"+J+B+".row+.row.quarter>*{padding:"+ut+d+J+B+".row.quarter{margin-left:-"+J+B+".row+.row.uniform.quarter>*{padding:"+J+d+J+B+".row.oneandhalf>*{padding-left:"+Q+B+".row+.row.oneandhalf>*{padding:"+lt+d+Q+B+".row.oneandhalf{margin-left:-"+Q+B+".row+.row.uniform.oneandhalf>*{padding:"+Q+d+Q+B+".row.double>*{padding-left:"+Y+B+".row+.row.double>*{padding:"+ct+d+Y+B+".row.double{margin-left:-"+Y+B+".row+.row.uniform.double>*{padding:"+Y+d+Y+B),F,3)}c[i][v](m);if(c[e][E][Dt]){var ht=Qt.getLevel(c[e][E][Dt]),vt,mt;b="iGC"+ht+"-"+c.values[q];if(!(m=Qt[g](b))){x=":not(.no-collapse)";switch(ht){case 4:break;case 3:x+=":not(.collapse-at-4)";break;case 2:x+=":not(.collapse-at-4):not(.collapse-at-3)";break;case 1:x+=":not(.collapse-at-4):not(.collapse-at-3):not(.collapse-at-2)"}p=Qt[N](c[e][E][h][Lt]),vt=p[0]+p[1],p=Qt[N](c[e][E][h][ft]),mt=p[0]+p[1],m=Qt[H](b,Qt[w](".row>*{padding-left:"+vt+y+B+".row>*:first-child{"+L+B+".row+.row>*{"+tt+mt+d+vt+y+B+".row+.row.uniform>*{"+tt+vt+d+vt+y+B+".row{"+"margin-left:-"+vt+y+B+kt+x+Et+"float:none!important;"+"width:100%!important;"+"margin-left:0!important"+B+".row:not(.flush)"+x+gt+z+mt+y+B+".row.uniform:not(.flush)"+x+gt+z+vt+y+B+kt+x+G+L+B+Nt+x+G+L+B+kt+x+Et+z+mt+B+Nt+x+Et+z+vt+B+kt+x+">*:first-child{"+"padding-top:0"+B+".row+.row"+x+Et+tt+mt+d+vt+B+".row+.row.uniform"+x+Et+tt+vt+d+vt+B+".row.flush>*{"+"padding:0!important"+B+".row.flush{"+"margin-left:0px!important"+B+".container{"+"max-width:none!important;"+"min-width:0!important;"+"width:"+c[e][q]+y+B),F,3)}c[i][v](m)}b="iCd"+Qt[r];if(!(m=Qt[g](b))){x=[],T=[],Qt[n](Qt[t],function(e){Qt[R](a,e)!==-1?x[v](".not-"+e):T[v](".only-"+e)});var bt=(x[f]>0?x.join(",")+nt:"")+(T[f]>0?T.join(",")+nt:"");m=Qt[H](b,Qt[w](bt[U](/\.([0-9])/,Wt)),F,3),c[i][v](m)}Qt[n](a,function(r){Qt[t][a[r]][e][zt]&&(b="ss"+a[r],(m=Qt[g](b))||(m=Qt[H](b,Qt.newStyleSheet(Qt[t][a[r]][e][zt]),F,5)),c[i][v](m)),Qt[t][a[r]][i][f]>0&&Qt[n](Qt[t][a[r]][i],function(e){c[i][v](Qt[t][a[r]][i][e])})}),Qt[D][o][Qt[r]]&&(Qt[n](Qt[D][o][Qt[r]],function(e){c[i][v](Qt[D][o][Qt[r]][e])}),Qt[D][o][Qt[r]]=[])}else c=Qt[D][dt][Qt[r]];Qt.detachAllElements(c[i]),Qt[at](c[i]),Qt[K](function(){Qt[xt](c)}),Qt[I].state=Qt[D][dt][Qt[r]],Qt[I][r]=Qt[r],Qt.trigger(pt)},getStateId:function(){if(Qt[Ot]&&Qt[e].defaultState)return Qt[e].defaultState;var r="";return Qt[n](Qt[t],function(e){Qt[t][e].test()&&(r+=Qt.sd+e)}),r},poll:function(){var e="";e=Qt.getStateId(),e===""&&(e=Qt.sd),e!==Qt[r]&&(Qt[Xt]?Qt.changeState(e):(Qt[T][Mt][m]=Qt[T][Mt][m][U](Qt[r][M](1)[U](new RegExp(Qt.sd,"g")," "),""),Qt.changeState(e),Qt[T][Mt][m]=Qt[T][Mt][m]+" "+Qt[r][M](1)[U](new RegExp(Qt.sd,"g")," "),Qt[T][Mt][m].charAt(0)==" "&&(Qt[T][Mt][m]=Qt[T][Mt][m][M](1))))},updateState:function(){var e,s,u,a,l=[];if(Qt[r]==Qt.sd)return;e=Qt[r][M](1).split(Qt.sd),Qt[n](e,function(o){s=Qt[t][e[o]];if(s[i][f]==0)return;Qt[n](s[i],function(e){Qt[D][dt][Qt[r]][i][v](s[i][e]),l[v](s[i][e])})}),Qt[D][o][Qt[r]]&&(Qt[n](Qt[D][o][Qt[r]],function(e){Qt[D][dt][Qt[r]][i][v](Qt[D][o][Qt[r]][e]),l[v](Qt[D][o][Qt[r]][e])}),Qt[D][o][Qt[r]]=[]),l[f]>0&&Qt[at](l)},newDiv:function(e){var t=document[k]("div");return t[Rt]=e,t},newInline:function(e){var t;return t=document[k]("style"),t.type=ht,t[Rt]=e,t},newMeta:function(e,t){var n=document[k]("meta");return n.name=e,n.content=t,n},newStyleSheet:function(e){var t=document[k]("link");return t.rel="stylesheet",t.type=ht,t[zt]=e,t},initPlugin:function(t,n){typeof n==b&&Qt[X](t[e],n),t.init&&t.init()},registerPlugin:function(e,t){if(!t)return u;Qt.plugins[e]=t,t._=this,t.register&&t.register()},init:function(e,t){Qt.initConfig(e),Qt.initElements(),Qt.initEvents(),Qt.poll(),Qt[n](Qt.plugins,function(e){Qt.initPlugin(Qt.plugins[e],typeof t==b&&e in t?t[e]:c)}),Qt.isInit=_},initAPI:function(){var e,t,r=navigator.userAgent;Qt[I][ot]=99,e="other",r[C](/Firefox/)?e="firefox":r[C](/Chrome/)?e="chrome":r[C](/Safari/)&&!r[C](/Chrome/)?e="safari":r[C](/(OPR|Opera)/)?e="opera":r[C](/MSIE ([0-9]+)/)?(e="ie",Qt[I][ot]=RegExp.$1):r[C](/Trident\/.+rv:([0-9]+)/)&&(e="ie",Qt[I][ot]=RegExp.$1),Qt[I].browser=e,Qt[I][A]="other",t={ios:"(iPad|iPhone|iPod)",android:"Android",mac:"Macintosh",wp:"Windows Phone",windows:"Windows NT"},Qt[n](t,function(e){r[C](new RegExp(t[e],"g"))&&(Qt[I][A]=e)});switch(Qt[I][A]){case"ios":r[C](/([0-9_]+) like Mac OS X/),e=parseFloat(RegExp.$1[U]("_",".")[U]("_",""));break;case Kt:r[C](/Android ([0-9\.]+)/),e=parseFloat(RegExp.$1);break;case"mac":r[C](/Mac OS X ([0-9_]+)/),e=parseFloat(RegExp.$1[U]("_",".")[U]("_",""));break;case"wp":r[C](/IEMobile\/([0-9\.]+)/),e=parseFloat(RegExp.$1);break;case"windows":r[C](/Windows NT ([0-9\.]+)/),e=parseFloat(RegExp.$1);break;default:e=99}Qt[I].deviceVersion=e,Qt[I].isTouch=Qt[I][A]=="wp"?navigator.msMaxTouchPoints>0:"ontouchstart"in window,Qt[I].isMobile=Qt[I][A]=="wp"||Qt[I][A]==Kt||Qt[I][A]=="ios"},initConfig:function(r){var s=[],o=[];typeof r==b&&(r[t]&&(Qt[e][t]={}),Qt[X](Qt[e],r)),E in Qt[e]&&h in Qt[e][E]&&typeof Qt[e][E][h]!=b&&(Qt[e][E][h]={vertical:Qt[e][E][h],horizontal:Qt[e][E][h]}),Qt[X](Qt[st][S][E],Qt[e][E]),Qt[st][S][q]=Qt[e][q],Qt[n](Qt[e][t],function(n){var r,s={},u,a;Qt[X](s,Qt[e][t][n]),zt in s||(s[zt]=Qt[st][S][zt]),At in s||(s[At]=Qt[st][S][At]),"range"in s&&(u=s.range,u=="*"?a="":u.charAt(0)=="-"?a="(max-width: "+parseInt(u[M](1))+"px)":u.charAt(u[f]-1)=="-"?a=St+parseInt(u[M](0,u[f]-1))+"px)":Qt[R](u,"-")!=-1&&(u=u.split("-"),a=St+parseInt(u[0])+"px) and (max-width: "+parseInt(u[1])+"px)"),s[At]=a),E in s&&h in s[E]&&typeof s[E][h]!=b&&(s[E][h]={vertical:s[E][h],horizontal:s[E][h]}),Qt[e][t][n]=s,r={},Qt[X](r,Qt[st].breakpoint),r[e]=Qt[e][t][n],r.test=function(){return Qt[W](s[At])},r[i]=[],Qt[e].preload&&r[e][zt]&&o[v](r[e][zt]),Qt[t][n]=r,Qt.breakpointList[v](n)}),Q in Qt[e][t]&&(Qt[Xt]=_,Qt[e][t][Q][P]=Qt[e][P]),Qt[n](Qt[e][V],function(t){Qt.bind(t,Qt[e][V][t])}),o[f]>0&&window.location.protocol!="file:"&&Qt[K](function(){var e,t=document[a](F)[0],r=new XMLHttpRequest;Qt[n](o,function(e){r.open("GET",o[e],u),r.send("")})})},initElements:function(){var t=[];t[v](Qt[O]("mV",Qt.newMeta(P,yt),et,1));switch(Qt[e].reset){case"full":t[v](Qt[O]("iR",Qt[w](Qt.css.r),et,2));break;case"normalize":t[v](Qt[O]("iN",Qt[w](Qt.css.n),et,2))}t[v](Qt[O]("iBM",Qt[w](Qt.css.bm),et,1)),t[v](Qt[O]("iG",Qt[w](".\\31 2u{width:100%}.\\31 1u{width:91.6666666667%}.\\31 0u{width:83.3333333333%}.\\39 u{width:75%}.\\38 u{width:66.6666666667%}.\\37 u{width:58.3333333333%}.\\36 u{width:50%}.\\35 u{width:41.6666666667%}.\\34 u{width:33.3333333333%}.\\33 u{width:25%}.\\32 u{width:16.6666666667%}.\\31 u{width:8.3333333333%}.\\-11u{margin-left:91.6666666667%}.\\-10u{margin-left:83.3333333333%}.\\-9u{margin-left:75%}.\\-8u{margin-left:66.6666666667%}.\\-7u{margin-left:58.3333333333%}.\\-6u{margin-left:50%}.\\-5u{margin-left:41.6666666667%}.\\-4u{margin-left:33.3333333333%}.\\-3u{margin-left:25%}.\\-2u{margin-left:16.6666666667%}.\\-1u{margin-left:8.3333333333%}"),F,3)),t[v](Qt[O]("iGR",Qt[w](".row>*{float:left}.row:after{content:'';display:block;clear:both;height:0}.row:first-child>*{padding-top:0!important}.row.uniform>*>:first-child{margin-top:0}.row.uniform>*>:last-child{margin-bottom:0}"),F,3)),Qt[at](t)},initEvents:function(){var t;!Qt[e].pollOnce&&!Qt[Xt]&&(Qt.bind(Tt,function(){Qt.poll()}),Qt.bind(x,function(){Qt.poll()})),Qt[I][A]=="ios"&&Qt[K](function(){Qt.bind(x,function(){var e=document[a]("input");Qt[n](e,function(t){e[t][Pt]=e[t][wt],e[t][wt]=""}),window.setTimeout(function(){Qt[n](e,function(t){e[t][wt]=e[t][Pt]})},100)})}),window[Jt]&&Qt.bind(Tt,window[Jt]),window[Jt]=function(){Qt.trigger(Tt)},window[J]&&Qt.bind(x,window[J]),window[J]=function(){Qt.trigger(x)}},initUtilityMethods:function(){document[Y]?!function(e,t){Qt[K]=t()}(Ut,function(){function e(e){s=1;while(e=t.shift())e()}var t=[],n,r=document,i=ct,s=/^loaded|^c/.test(r[$t]);return r[Y](i,n=function(){r[bt](i,n),e()}),function(e){s?e():t[v](e)}}):!function(e,t){Qt[K]=t()}(Ut,function(e){function t(e){p=1;while(e=n.shift())e()}var n=[],r,i=!1,s=document,o=s[ut],u=o.doScroll,a=ct,f=Y,l="onreadystatechange",c=$t,h=u?/^loaded|^c/:/^loaded|c/,p=h.test(s[c]);return s[f]&&s[f](a,r=function(){s[bt](a,r,i),t()},i),u&&s.attachEvent(l,r=function(){/^c/.test(s[c])&&(s.detachEvent(l,r),t())}),e=u?function(t){self!=top?p?t():n[v](t):function(){try{o.doScroll("left")}catch(n){return setTimeout(function(){e(t)},50)}t()}()}:function(e){p?e():n[v](e)}}),document[s]?Qt[s]=function(e){return document[s](e)}:Qt[s]=function(e){var t=document;return t[Ht]?t[Ht](("."+e[U](" "," ."))[U](/\.([0-9])/,Wt)):[]},Array[Ft][R]?Qt[R]=function(e,t){return e[R](t)}:Qt[R]=function(e,t){if(typeof e=="string")return e[R](t);var n,r=t?t:0,i;if(!this)throw new TypeError;i=this[f];if(i===0||r>=i)return-1;r<0&&(r=i-Math.abs(r));for(n=r;ns[qt]||s[jt]!==c&&ls[Bt]?u:_})},preInit:function(){var e=document[a]("script");Qt.me=e[e[f]-1],Qt.initUtilityMethods(),Qt.initAPI(),Qt[rt](Mt,document[a](Mt)[0]),Qt[rt](F,document[a](F)[0]),Qt[K](function(){Qt[rt]("body",document[a]("body")[0])}),Qt[I][ot]>=10&&Qt[lt](Qt[O]("msie-viewport-fix",Qt[w]("@-ms-viewport{width:device-width;}"),et,1))}};return Qt.preInit(),Qt[I][ot]<9&&(Qt[xt]=function(e){},Qt[w]=function(e){var t;return t=document[k]("span"),t[Rt]=' ",t}),Qt}(); -------------------------------------------------------------------------------- /assets/sass/_mixins.scss: -------------------------------------------------------------------------------- 1 | @mixin vendor-property($property, $value) { 2 | @each $vendor in ('-moz-', '-webkit-', '-o-', '-ms-', '') { 3 | #{$vendor}#{$property}: #{$value}; 4 | } 5 | } 6 | 7 | @mixin vendor-value($property, $value) { 8 | @each $vendor in ('-moz-', '-webkit-', '-o-', '-ms-', '') { 9 | #{$property}: #{$vendor}#{$value}; 10 | } 11 | } 12 | 13 | @mixin vendor-keyframes($name) { 14 | @-moz-keyframes #{$name} { @content; } 15 | @-webkit-keyframes #{$name} { @content; } 16 | @-o-keyframes #{$name} { @content; } 17 | @-ms-keyframes #{$name} { @content; } 18 | @keyframes #{$name} { @content; } 19 | } 20 | 21 | @mixin icon($content: false) { 22 | text-decoration: none; 23 | 24 | &:before { 25 | @if $content { 26 | content: $content; 27 | } 28 | -moz-osx-font-smoothing: grayscale; 29 | -webkit-font-smoothing: antialiased; 30 | font-family: FontAwesome; 31 | font-style: normal; 32 | font-weight: normal; 33 | text-transform: none !important; 34 | } 35 | } -------------------------------------------------------------------------------- /assets/sass/_vars.scss: -------------------------------------------------------------------------------- 1 | // Duration. 2 | $duration-transition: 0.2s; 3 | 4 | // Size. 5 | $size-border-radius: 6px; 6 | $size-element-height: 3em; 7 | $size-element-margin: 2em; 8 | 9 | // Font. 10 | $font-family: 'Source Sans Pro', sans-serif; 11 | $font-family-fixed: monospace; 12 | $font-weight: 300; 13 | $font-weight-bold: 400; 14 | 15 | // Color. 16 | $color-bg: #f5f5f5; 17 | $color-fg: #777; 18 | $color-fg-bold: #646464; 19 | $color-fg-light: #999; 20 | 21 | $color-accent1-bg: #666; 22 | $color-accent1-fg: mix($color-accent1-bg, #ffffff, 25%); 23 | $color-accent1-fg-bold: #ffffff; 24 | $color-accent1-fg-light: mix($color-accent1-bg, #ffffff, 40%); 25 | 26 | $color-accent2-bg: #e89980; 27 | $color-accent2-fg: mix($color-accent2-bg, #ffffff, 25%); 28 | $color-accent2-fg-bold: #ffffff; 29 | $color-accent2-fg-light: mix($color-accent2-bg, #ffffff, 40%); 30 | 31 | $color-accent3-bg: #7fcdb8; 32 | $color-accent3-fg: mix($color-accent3-bg, #ffffff, 25%); 33 | $color-accent3-fg-bold: #ffffff; 34 | $color-accent3-fg-light: mix($color-accent3-bg, #ffffff, 40%); 35 | 36 | $color-accent4-bg: #90b0ba; 37 | $color-accent4-fg: mix($color-accent4-bg, #ffffff, 25%); 38 | $color-accent4-fg-bold: #ffffff; 39 | $color-accent4-fg-light: mix($color-accent4-bg, #ffffff, 40%); 40 | 41 | $color-accent5-bg: #e5cb95; 42 | $color-accent5-fg: mix($color-accent5-bg, #ffffff, 25%); 43 | $color-accent5-fg-bold: #ffffff; 44 | $color-accent5-fg-light: mix($color-accent5-bg, #ffffff, 40%); 45 | 46 | $color-border: #e5e5e5; 47 | $color-border-bg: #f8f8f8; 48 | 49 | $color-border2: #dddddd; 50 | $color-border2-bg: #f0f0f0; 51 | 52 | $color-header-bg: #444; 53 | $color-header-fg: #bbb; 54 | $color-header-fg-bold: #fff; 55 | $color-header-fg-light: #999; -------------------------------------------------------------------------------- /assets/sass/ie/v8.scss: -------------------------------------------------------------------------------- 1 | @import 'vars'; 2 | @import 'mixins'; 3 | 4 | /* 5 | Alpha by HTML5 UP 6 | html5up.net | @n33co 7 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 8 | */ 9 | 10 | /* Basic */ 11 | 12 | pre, code { 13 | position: relative; 14 | -ms-behavior: url('css/ie/PIE.htc'); 15 | } 16 | 17 | /* Form */ 18 | 19 | input[type="text"], 20 | input[type="password"], 21 | input[type="email"], 22 | select, 23 | textarea { 24 | position: relative; 25 | -ms-behavior: url('css/ie/PIE.htc'); 26 | line-height: 3em; 27 | } 28 | 29 | input[type="checkbox"], 30 | input[type="radio"], { 31 | opacity: 1; 32 | z-index: auto; 33 | 34 | & + label { 35 | &:before { 36 | display: none; 37 | } 38 | } 39 | } 40 | 41 | /* Button */ 42 | 43 | input[type="submit"], 44 | input[type="reset"], 45 | input[type="button"], 46 | .button { 47 | position: relative; 48 | -ms-behavior: url('css/ie/PIE.htc'); 49 | 50 | &.alt { 51 | border: solid 2px $color-border; 52 | } 53 | } 54 | 55 | /* Box */ 56 | 57 | .box { 58 | position: relative; 59 | -ms-behavior: url('css/ie/PIE.htc'); 60 | 61 | .image { 62 | &.featured { 63 | margin: 2em 0; 64 | width: 100%; 65 | } 66 | } 67 | } 68 | 69 | /* Icon */ 70 | 71 | .icon { 72 | &.major { 73 | position: relative; 74 | -ms-behavior: url('css/ie/PIE.htc'); 75 | } 76 | } 77 | 78 | /* Image */ 79 | 80 | .image { 81 | position: relative; 82 | -ms-behavior: url('css/ie/PIE.htc'); 83 | 84 | img { 85 | position: relative; 86 | -ms-behavior: url('css/ie/PIE.htc'); 87 | } 88 | } 89 | 90 | /* Header */ 91 | 92 | #header { 93 | nav { 94 | > ul { 95 | > li { 96 | a { 97 | color: #fff; 98 | display: inline-block; 99 | text-decoration: none; 100 | border: 0; 101 | 102 | &.icon { 103 | &:before { 104 | color: #fff; 105 | margin-right: 0.5em; 106 | } 107 | } 108 | } 109 | } 110 | } 111 | } 112 | 113 | &.alt { 114 | color: #fff; 115 | 116 | nav { 117 | > ul { 118 | > li { 119 | a:not(.button) { 120 | &.icon { 121 | &:before { 122 | color: rgba(255,255,255,0.75); 123 | } 124 | } 125 | } 126 | 127 | &.active { 128 | a:not(.button) { 129 | background-color: rgba(255,255,255,0.2); 130 | } 131 | } 132 | } 133 | } 134 | } 135 | } 136 | } 137 | 138 | .dropotron { 139 | border: solid 1px $color-border; 140 | 141 | &.level-0 { 142 | margin-top: 0; 143 | 144 | &:before { 145 | display: none; 146 | } 147 | } 148 | } 149 | 150 | /* Banner */ 151 | 152 | #banner { 153 | background-attachment: scroll; 154 | background-image: url('../../images/banner.jpg'); 155 | background-position: auto; 156 | background-repeat: no-repeat; 157 | background-size: cover; 158 | -ms-behavior: url('css/ie/backgroundsize.min.htc'); 159 | 160 | input[type="submit"], 161 | input[type="reset"], 162 | input[type="button"], 163 | .button { 164 | border: solid 2px #fff; 165 | } 166 | } 167 | 168 | /* Main */ 169 | 170 | #main { 171 | position: relative; 172 | z-index: 1; 173 | } 174 | 175 | /* CTA */ 176 | 177 | #cta { 178 | input[type="text"], 179 | input[type="password"], 180 | input[type="email"], 181 | select, 182 | textarea { 183 | background: $color-accent2-bg; 184 | border: solid 2px #fff; 185 | } 186 | 187 | .formerize-placeholder { 188 | color: #fff !important; 189 | } 190 | } -------------------------------------------------------------------------------- /assets/sass/style-mobile.scss: -------------------------------------------------------------------------------- 1 | @import 'vars'; 2 | @import 'mixins'; 3 | 4 | /* 5 | Alpha by HTML5 UP 6 | html5up.net | @n33co 7 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 8 | */ 9 | 10 | /* Basic */ 11 | 12 | body, input, select, textarea { 13 | font-size: 11pt; 14 | } 15 | 16 | h2 { 17 | font-size: 1.75em; 18 | line-height: 1.35em; 19 | letter-spacing: -0.025em; 20 | } 21 | 22 | h3 { 23 | font-size: 1.5em; 24 | } 25 | 26 | h4 { 27 | font-size: 1em; 28 | } 29 | 30 | /* Section/Article */ 31 | 32 | header { 33 | &.major { 34 | padding: 1em; 35 | 36 | h2, p { 37 | padding-left: 0.5em; 38 | padding-right: 0.5em; 39 | } 40 | } 41 | } 42 | 43 | /* Box */ 44 | 45 | $box-padding-vertical: 2em; 46 | $box-padding-horizontal: 2em; 47 | 48 | .box { 49 | margin: ($size-element-margin * 0.5); 50 | overflow-x: hidden; 51 | padding: $box-padding-vertical $box-padding-horizontal !important; 52 | 53 | &.features { 54 | .features-row { 55 | border-top: 0; 56 | padding: 0; 57 | 58 | section { 59 | border: 0; 60 | border-top: solid 1px $color-border !important; 61 | float: none; 62 | margin: $box-padding-vertical 0 0 0 !important; 63 | padding: $box-padding-vertical 0 0 0 !important; 64 | width: 100%; 65 | } 66 | 67 | &:first-child { 68 | section { 69 | &:first-child { 70 | border-top: 0 !important; 71 | margin-top: 0 !important; 72 | padding-top: 0 !important; 73 | } 74 | } 75 | } 76 | } 77 | } 78 | 79 | .image { 80 | &.featured { 81 | margin-left: ($box-padding-horizontal * -1); 82 | width: calc(100% + #{$box-padding-horizontal * 2}); 83 | 84 | &:first-child { 85 | margin-bottom: $box-padding-vertical; 86 | margin-top: $box-padding-vertical * -1; 87 | } 88 | 89 | &:last-child { 90 | margin-bottom: $box-padding-vertical * -1; 91 | margin-top: $box-padding-vertical; 92 | } 93 | } 94 | } 95 | } 96 | 97 | /* Banner */ 98 | 99 | #banner { 100 | padding: 4em 0; 101 | 102 | h2 { 103 | font-size: 2.25em; 104 | } 105 | 106 | p { 107 | font-size: 1.25em; 108 | } 109 | } 110 | 111 | /* Main */ 112 | 113 | #main { 114 | padding: 4em 0 0 0; 115 | 116 | > header { 117 | margin: 0 2em 1.5em 2em; 118 | 119 | h2 { 120 | font-size: 2em; 121 | } 122 | 123 | p { 124 | font-size: 1em; 125 | padding-bottom: 1em; 126 | } 127 | } 128 | } 129 | 130 | body.landing { 131 | #main { 132 | padding: 0; 133 | margin-top: 0; 134 | } 135 | } 136 | 137 | /* Footer */ 138 | 139 | #footer { 140 | padding: 4em 0; 141 | 142 | .copyright { 143 | li { 144 | border-left: 0; 145 | display: block; 146 | line-height: 2em; 147 | margin-left: 0; 148 | padding-left: 0; 149 | } 150 | } 151 | } -------------------------------------------------------------------------------- /assets/sass/style-mobilep.scss: -------------------------------------------------------------------------------- 1 | @import 'vars'; 2 | @import 'mixins'; 3 | 4 | /* 5 | Alpha by HTML5 UP 6 | html5up.net | @n33co 7 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 8 | */ 9 | 10 | /* Basic */ 11 | 12 | html, body { 13 | min-width: 320px; 14 | } 15 | 16 | body, input, select, textarea { 17 | font-size: 11pt; 18 | } 19 | 20 | /* Section/Article */ 21 | 22 | header { 23 | &.major { 24 | padding: 0; 25 | } 26 | } 27 | 28 | /* List */ 29 | 30 | ul { 31 | &.actions { 32 | margin: 0 0 $size-element-margin 0; 33 | 34 | li { 35 | display: block; 36 | padding: ($size-element-margin * 0.5) 0 0 0; 37 | text-align: center; 38 | width: 100%; 39 | 40 | &:first-child { 41 | padding-top: 0; 42 | } 43 | 44 | > * { 45 | width: 100%; 46 | margin: 0 !important; 47 | 48 | &.icon { 49 | &:before { 50 | margin-left: -2em; 51 | } 52 | } 53 | } 54 | } 55 | 56 | &.small { 57 | li { 58 | padding: ($size-element-margin * 0.25) 0 0 0; 59 | 60 | &:first-child { 61 | padding-top: 0; 62 | } 63 | } 64 | } 65 | } 66 | } 67 | 68 | /* Box */ 69 | 70 | $box-padding-vertical: 3em; 71 | $box-padding-horizontal: 1em; 72 | 73 | .box { 74 | border-radius: 0; 75 | box-shadow: none; 76 | margin: ($size-element-margin * 0.5) 0 0 0; 77 | padding: $box-padding-vertical $box-padding-horizontal !important; 78 | 79 | &.features { 80 | .features-row { 81 | section { 82 | margin: $box-padding-vertical 0 0 0 !important; 83 | padding: $box-padding-vertical 0 0 0 !important; 84 | } 85 | } 86 | } 87 | 88 | .image { 89 | &.featured { 90 | border-radius: 0; 91 | margin-left: ($box-padding-horizontal * -1); 92 | width: calc(100% + #{$box-padding-horizontal * 2}); 93 | 94 | img { 95 | border-radius: 0 !important; 96 | } 97 | 98 | &:first-child { 99 | margin-bottom: $box-padding-vertical; 100 | margin-top: $box-padding-vertical * -1; 101 | } 102 | 103 | &:last-child { 104 | margin-bottom: $box-padding-vertical * -1; 105 | margin-top: $box-padding-vertical; 106 | } 107 | } 108 | } 109 | } 110 | 111 | /* Banner */ 112 | 113 | #banner { 114 | padding: 5em 1em 4em 1em; 115 | } 116 | 117 | /* Main */ 118 | 119 | #main { 120 | > .box { 121 | &:first-child { 122 | margin-top: 0; 123 | } 124 | } 125 | } 126 | 127 | /* CTA */ 128 | 129 | #cta { 130 | padding: 2.5em 1em 3em 1em; 131 | } -------------------------------------------------------------------------------- /assets/sass/style-narrow.scss: -------------------------------------------------------------------------------- 1 | @import 'vars'; 2 | @import 'mixins'; 3 | 4 | /* 5 | Alpha by HTML5 UP 6 | html5up.net | @n33co 7 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 8 | */ 9 | 10 | /* Basic */ 11 | 12 | body, input, select, textarea { 13 | font-size: 11pt; 14 | } -------------------------------------------------------------------------------- /assets/sass/style-narrower.scss: -------------------------------------------------------------------------------- 1 | @import 'vars'; 2 | @import 'mixins'; 3 | 4 | /* 5 | Alpha by HTML5 UP 6 | html5up.net | @n33co 7 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 8 | */ 9 | 10 | /* Basic */ 11 | 12 | body, input, select, textarea { 13 | font-size: 11pt; 14 | } 15 | 16 | h2, h3, h4, h5, h6 { 17 | br { 18 | display: none; 19 | } 20 | } 21 | 22 | /* Section/Article */ 23 | 24 | header { 25 | br { 26 | display: none; 27 | } 28 | 29 | &.major { 30 | padding: 0 4em; 31 | } 32 | } 33 | 34 | /* Box */ 35 | 36 | $box-padding-vertical: 3em; 37 | $box-padding-horizontal: 2em; 38 | 39 | .box { 40 | padding: $box-padding-vertical $box-padding-horizontal; 41 | 42 | &.features { 43 | > section { 44 | padding: $box-padding-vertical $box-padding-horizontal; 45 | } 46 | } 47 | 48 | .image { 49 | &.featured { 50 | margin-left: ($box-padding-horizontal * -1); 51 | width: calc(100% + #{$box-padding-horizontal * 2}); 52 | 53 | &:first-child { 54 | margin-bottom: $box-padding-vertical; 55 | margin-top: $box-padding-vertical * -1; 56 | } 57 | 58 | &:last-child { 59 | margin-bottom: $box-padding-vertical * -1; 60 | margin-top: $box-padding-vertical; 61 | } 62 | } 63 | } 64 | } 65 | 66 | /* Header */ 67 | 68 | //body { 69 | #skel-layers-wrapper { 70 | padding-top: 0; 71 | } 72 | 73 | #header { 74 | display: none; 75 | } 76 | 77 | /* Banner */ 78 | 79 | #banner { 80 | //padding: 6em 2em; 81 | } 82 | 83 | /* Layers */ 84 | 85 | #navButton { 86 | .toggle { 87 | @include icon; 88 | height: 100%; 89 | left: 0; 90 | position: absolute; 91 | top: 0; 92 | width: 100%; 93 | 94 | &:before { 95 | background: rgba(192,192,192,0.75); 96 | border-radius: $size-border-radius; 97 | color: #fff; 98 | content: '\f0c9'; 99 | display: block; 100 | font-size: 16px; 101 | height: 2.25em; 102 | left: 0.5em; 103 | line-height: 2.25em; 104 | position: absolute; 105 | text-align: center; 106 | top: 0.5em; 107 | width: 3.5em; 108 | } 109 | } 110 | } 111 | 112 | #navPanel { 113 | background: darken($color-header-bg, 10); 114 | color: $color-header-fg; 115 | 116 | .link { 117 | border-bottom: 0; 118 | border-top: solid 1px rgba(255,255,255,0.05); 119 | color: $color-header-fg; 120 | display: block; 121 | height: 44px; 122 | line-height: 44px; 123 | padding: 0 1em 0 1em; 124 | text-decoration: none; 125 | 126 | &:first-child { 127 | border-top: 0; 128 | } 129 | 130 | &.depth-0 { 131 | color: $color-header-fg-bold; 132 | } 133 | 134 | .indent-1 { display: inline-block; width: 1em; } 135 | .indent-2 { display: inline-block; width: 2em; } 136 | .indent-3 { display: inline-block; width: 3em; } 137 | .indent-4 { display: inline-block; width: 4em; } 138 | .indent-5 { display: inline-block; width: 5em; } 139 | } 140 | } -------------------------------------------------------------------------------- /assets/sass/style-normal.scss: -------------------------------------------------------------------------------- 1 | @import 'vars'; 2 | @import 'mixins'; 3 | 4 | /* 5 | Alpha by HTML5 UP 6 | html5up.net | @n33co 7 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 8 | */ 9 | 10 | /* Basic */ 11 | 12 | body, input, select, textarea { 13 | font-size: 11pt; 14 | } 15 | 16 | /* Header */ 17 | 18 | .dropotron { 19 | &.level-0 { 20 | font-size: 1em; 21 | } 22 | } 23 | 24 | /* Banner */ 25 | 26 | #banner { 27 | background-attachment: scroll; 28 | 29 | h2 { 30 | font-size: 3.5em; 31 | } 32 | } -------------------------------------------------------------------------------- /assets/sass/style-wide.scss: -------------------------------------------------------------------------------- 1 | @import 'vars'; 2 | @import 'mixins'; 3 | 4 | /* 5 | Alpha by HTML5 UP 6 | html5up.net | @n33co 7 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 8 | */ 9 | 10 | /* Basic */ 11 | 12 | body, input, select, textarea { 13 | font-size: 13pt; 14 | } 15 | 16 | /* Banner */ 17 | 18 | #banner { 19 | padding: 10em 0 18em 0; 20 | } -------------------------------------------------------------------------------- /assets/sass/style.scss: -------------------------------------------------------------------------------- 1 | @import 'vars'; 2 | @import 'mixins'; 3 | @import 'font-awesome.min.css'; 4 | @import url('http://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,300italic,400italic'); 5 | 6 | /* 7 | Alpha by HTML5 UP 8 | html5up.net | @n33co 9 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 10 | */ 11 | 12 | /* Basic */ 13 | 14 | body { 15 | background: $color-bg; 16 | } 17 | 18 | body, input, select, textarea { 19 | color: $color-fg; 20 | font-family: $font-family; 21 | font-size: 16pt; 22 | font-weight: $font-weight; 23 | line-height: 1.65em; 24 | letter-spacing: -0.015em; 25 | } 26 | 27 | a { 28 | @include vendor-property('transition', 'color #{$duration-transition} ease-in-out, border-bottom-color #{$duration-transition} ease-in-out'); 29 | border-bottom: dotted 1px; 30 | color: $color-accent2-bg; 31 | text-decoration: none; 32 | 33 | &:hover { 34 | border-bottom-color: transparent; 35 | } 36 | } 37 | 38 | strong, b { 39 | color: $color-fg-bold; 40 | font-weight: $font-weight-bold; 41 | } 42 | 43 | em, i { 44 | font-style: italic; 45 | } 46 | 47 | p { 48 | margin: 0 0 $size-element-margin 0; 49 | } 50 | 51 | h1, h2, h3, h4, h5, h6 { 52 | color: $color-fg-bold; 53 | font-weight: $font-weight; 54 | line-height: 1em; 55 | margin: 0 0 ($size-element-margin * 0.25) 0; 56 | 57 | a { 58 | color: inherit; 59 | text-decoration: none; 60 | } 61 | } 62 | 63 | h2 { 64 | font-size: 2.25em; 65 | line-height: 1.5em; 66 | letter-spacing: -0.035em; 67 | } 68 | 69 | h3 { 70 | font-size: 1.75em; 71 | line-height: 1.5em; 72 | letter-spacing: -0.025em; 73 | } 74 | 75 | h4 { 76 | font-size: 1.1em; 77 | line-height: 1.5em; 78 | letter-spacing: 0; 79 | } 80 | 81 | h5 { 82 | font-size: 0.9em; 83 | line-height: 1.5em; 84 | letter-spacing: 0; 85 | } 86 | 87 | h6 { 88 | font-size: 0.7em; 89 | line-height: 1.5em; 90 | letter-spacing: 0; 91 | } 92 | 93 | sub { 94 | font-size: 0.8em; 95 | position: relative; 96 | top: 0.5em; 97 | } 98 | 99 | sup { 100 | font-size: 0.8em; 101 | position: relative; 102 | top: -0.5em; 103 | } 104 | 105 | hr { 106 | border: 0; 107 | border-bottom: solid 2px $color-border; 108 | 109 | // This is the *only* instance where we need to rely on margin collapse. 110 | margin: $size-element-margin 0; 111 | 112 | &.major { 113 | margin: ($size-element-margin * 1.5) 0; 114 | } 115 | } 116 | 117 | blockquote { 118 | border-left: solid 4px $color-border; 119 | font-style: italic; 120 | margin: 0 0 $size-element-margin 0; 121 | padding: 0.5em 0 0.5em 2em; 122 | } 123 | 124 | pre { 125 | -webkit-overflow-scrolling: touch; 126 | background: $color-border-bg; 127 | border-radius: $size-border-radius; 128 | border: solid 1px $color-border; 129 | font-family: $font-family-fixed; 130 | font-size: 0.9em; 131 | line-height: 1.75em; 132 | margin: 0 0 $size-element-margin 0; 133 | overflow-x: auto; 134 | padding: 1em 1.5em; 135 | } 136 | 137 | code { 138 | background: $color-border-bg; 139 | border-radius: $size-border-radius; 140 | border: solid 1px $color-border; 141 | font-family: $font-family-fixed; 142 | font-size: 0.9em; 143 | margin: 0 0.25em; 144 | padding: 0.25em 0.65em; 145 | } 146 | 147 | .align-left { 148 | text-align: left; 149 | } 150 | 151 | .align-center { 152 | text-align: center; 153 | } 154 | 155 | .align-right { 156 | text-align: right; 157 | } 158 | 159 | /* Section/Article */ 160 | 161 | section, article { 162 | &.special { 163 | text-align: center; 164 | } 165 | } 166 | 167 | header { 168 | p { 169 | color: $color-fg-light; 170 | position: relative; 171 | margin: 0 0 ($size-element-margin * 0.75) 0; 172 | font-style: italic; 173 | } 174 | 175 | h2 + p { 176 | font-size: 1.25em; 177 | margin-top: -1em; 178 | line-height: 1.5em; 179 | } 180 | 181 | h3 + p { 182 | font-size: 1.1em; 183 | margin-top: -0.85em; 184 | line-height: 1.5em; 185 | } 186 | 187 | h4 + p, 188 | h5 + p, 189 | h6 + p { 190 | font-size: 0.8em; 191 | margin-top: -0.5em; 192 | line-height: 1.5em; 193 | } 194 | 195 | &.major { 196 | padding: 1em 0; 197 | text-align: center; 198 | 199 | h2 { 200 | margin: 0; 201 | } 202 | 203 | p { 204 | display: inline-block; 205 | border-top: solid 2px $color-border; 206 | color: $color-fg; 207 | margin: 1.5em 0 0 0; 208 | padding: 1.5em 0 0 0; 209 | font-style: normal; 210 | } 211 | } 212 | } 213 | 214 | footer { 215 | } 216 | 217 | /* Form */ 218 | 219 | form { 220 | margin: 0 0 $size-element-margin 0; 221 | } 222 | 223 | label { 224 | color: $color-fg-bold; 225 | display: block; 226 | font-size: 0.9em; 227 | font-weight: $font-weight; 228 | margin: 0 0 ($size-element-margin * 0.5) 0; 229 | } 230 | 231 | input[type="text"], 232 | input[type="password"], 233 | input[type="email"], 234 | select, 235 | textarea { 236 | @include vendor-property('appearance', 'none'); 237 | background: $color-border-bg; 238 | border-radius: $size-border-radius; 239 | border: solid 1px $color-border; 240 | color: inherit; 241 | display: block; 242 | outline: 0; 243 | padding: 0 1em; 244 | text-decoration: none; 245 | width: 100%; 246 | 247 | &:invalid { 248 | box-shadow: none; 249 | } 250 | 251 | &:focus { 252 | border-color: $color-accent2-bg; 253 | box-shadow: 0 0 0 2px $color-accent2-bg; 254 | } 255 | } 256 | 257 | .select-wrapper { 258 | @include icon; 259 | display: block; 260 | position: relative; 261 | 262 | &:before { 263 | color: $color-border; 264 | content: '\f078'; 265 | display: block; 266 | height: $size-element-height; 267 | line-height: $size-element-height; 268 | pointer-events: none; 269 | position: absolute; 270 | right: 0; 271 | text-align: center; 272 | top: 0; 273 | width: $size-element-height; 274 | } 275 | 276 | select::-ms-expand { 277 | display: none; 278 | } 279 | } 280 | 281 | input[type="text"], 282 | input[type="password"], 283 | input[type="email"], 284 | select { 285 | height: $size-element-height; 286 | } 287 | 288 | textarea { 289 | padding: 0.75em 1em; 290 | } 291 | 292 | input[type="checkbox"], 293 | input[type="radio"], { 294 | @include vendor-property('appearance', 'none'); 295 | display: block; 296 | float: left; 297 | margin-right: -2em; 298 | opacity: 0; 299 | width: 1em; 300 | z-index: -1; 301 | 302 | & + label { 303 | @include icon; 304 | color: $color-fg; 305 | cursor: pointer; 306 | display: inline-block; 307 | font-size: 1em; 308 | font-weight: $font-weight; 309 | padding-left: ($size-element-height * 0.6) + 0.75em; 310 | padding-right: 0.75em; 311 | position: relative; 312 | 313 | &:before { 314 | background: $color-border-bg; 315 | border-radius: $size-border-radius; 316 | border: solid 1px $color-border; 317 | content: ''; 318 | display: inline-block; 319 | height: ($size-element-height * 0.6); 320 | left: 0; 321 | line-height: ($size-element-height * 0.575); 322 | position: absolute; 323 | text-align: center; 324 | top: 0; 325 | width: ($size-element-height * 0.6); 326 | } 327 | } 328 | 329 | &:checked + label { 330 | &:before { 331 | background: $color-accent1-bg; 332 | border-color: $color-accent1-bg; 333 | color: $color-accent2-fg-bold; 334 | content: '\f00c'; 335 | } 336 | } 337 | 338 | &:focus + label { 339 | &:before { 340 | border-color: $color-accent2-bg; 341 | box-shadow: 0 0 0 1px $color-accent2-bg; 342 | } 343 | } 344 | } 345 | 346 | input[type="checkbox"] { 347 | & + label { 348 | &:before { 349 | border-radius: $size-border-radius; 350 | } 351 | } 352 | } 353 | 354 | input[type="radio"] { 355 | & + label { 356 | &:before { 357 | border-radius: 100%; 358 | } 359 | } 360 | } 361 | 362 | ::-webkit-input-placeholder { 363 | color: $color-fg-light !important; 364 | opacity: 1.0; 365 | } 366 | 367 | :-moz-placeholder { 368 | color: $color-fg-light !important; 369 | opacity: 1.0; 370 | } 371 | 372 | ::-moz-placeholder { 373 | color: $color-fg-light !important; 374 | opacity: 1.0; 375 | } 376 | 377 | :-ms-input-placeholder { 378 | color: $color-fg-light !important; 379 | opacity: 1.0; 380 | } 381 | 382 | .formerize-placeholder { 383 | color: $color-fg-light !important; 384 | opacity: 1.0; 385 | } 386 | 387 | /* Box */ 388 | 389 | $box-padding: 3em; 390 | 391 | .box { 392 | background: #fff; 393 | border-radius: $size-border-radius; 394 | box-shadow: 0 2px 0 0 $color-border; 395 | margin: 0 0 $size-element-margin 0; 396 | padding: $box-padding; 397 | 398 | > :last-child { 399 | margin-bottom: 0; 400 | } 401 | 402 | &.alt { 403 | background: none !important; 404 | border-radius: 0 !important; 405 | box-shadow: none !important; 406 | margin: 0 0 $size-element-margin 0; 407 | padding: 0 !important; 408 | } 409 | 410 | &.features { 411 | .features-row { 412 | border-top: solid 2px $color-border; 413 | position: relative; 414 | 415 | &:after { 416 | clear: both; 417 | content: ''; 418 | display: block; 419 | } 420 | 421 | section { 422 | float: left; 423 | padding: $box-padding; 424 | width: 50%; 425 | 426 | :last-child { 427 | margin-bottom: 0; 428 | } 429 | 430 | &:nth-child(2n) { 431 | &:before { 432 | background: $color-border; 433 | content: ''; 434 | display: block; 435 | height: 100%; 436 | margin-left: -3em; 437 | position: absolute; 438 | top: 0; 439 | width: 2px; 440 | } 441 | 442 | padding-right: 0; 443 | } 444 | 445 | &:nth-child(2n-1) { 446 | padding-left: 0; 447 | } 448 | } 449 | 450 | &:first-child { 451 | border-top: 0; 452 | 453 | section { 454 | padding-top: 0; 455 | } 456 | } 457 | 458 | &:last-child { 459 | padding-bottom: 0; 460 | 461 | section { 462 | padding-bottom: 0; 463 | } 464 | } 465 | } 466 | } 467 | 468 | &.special { 469 | text-align: center; 470 | } 471 | 472 | .image { 473 | &.featured { 474 | border-radius: 0; 475 | display: block; 476 | margin: $box-padding 0 $box-padding ($box-padding * -1); 477 | position: relative; 478 | width: calc(100% + #{$box-padding * 2}); 479 | 480 | img { 481 | border-radius: 0; 482 | display: block; 483 | width: 100%; 484 | } 485 | 486 | &:first-child { 487 | border-radius: $size-border-radius $size-border-radius 0 0; 488 | margin-bottom: $box-padding; 489 | margin-top: $box-padding * -1; 490 | 491 | img { 492 | border-radius: $size-border-radius $size-border-radius 0 0; 493 | } 494 | } 495 | 496 | &:last-child { 497 | border-radius: 0 0 $size-border-radius $size-border-radius; 498 | margin-bottom: $box-padding * -1; 499 | margin-top: $box-padding; 500 | 501 | img { 502 | border-radius: 0 0 $size-border-radius $size-border-radius; 503 | } 504 | } 505 | } 506 | } 507 | } 508 | 509 | /* Icon */ 510 | 511 | .icon { 512 | @include icon; 513 | border-bottom: none; 514 | position: relative; 515 | 516 | > .label { 517 | display: none; 518 | } 519 | 520 | &.major { 521 | background: $color-accent1-bg; 522 | border-radius: 100%; 523 | color: $color-accent1-fg-bold; 524 | cursor: default; 525 | display: inline-block; 526 | height: 5.5em; 527 | line-height: 5.5em; 528 | margin: 0 0 $size-element-margin 0; 529 | width: 5.5em; 530 | 531 | &:before { 532 | font-size: 2.5em; 533 | } 534 | 535 | &.accent1 { 536 | background: $color-accent1-bg; 537 | color: $color-accent1-fg-bold; 538 | } 539 | 540 | &.accent2 { 541 | background: $color-accent2-bg; 542 | color: $color-accent2-fg-bold; 543 | } 544 | 545 | &.accent3 { 546 | background: $color-accent3-bg; 547 | color: $color-accent3-fg-bold; 548 | } 549 | 550 | &.accent4 { 551 | background: $color-accent4-bg; 552 | color: $color-accent4-fg-bold; 553 | } 554 | 555 | &.accent5 { 556 | background: $color-accent5-bg; 557 | color: $color-accent5-fg-bold; 558 | } 559 | } 560 | } 561 | 562 | /* Image */ 563 | 564 | .image { 565 | border-radius: $size-border-radius; 566 | border: 0; 567 | display: inline-block; 568 | position: relative; 569 | 570 | img { 571 | border-radius: $size-border-radius; 572 | display: block; 573 | } 574 | 575 | &.left { 576 | float: left; 577 | padding: 0 1.5em 1em 0; 578 | top: 0.25em; 579 | } 580 | 581 | &.right { 582 | float: right; 583 | padding: 0 0 1em 1.5em; 584 | top: 0.25em; 585 | } 586 | 587 | &.fit { 588 | display: block; 589 | margin: 0 0 $size-element-margin 0; 590 | width: 100%; 591 | 592 | img { 593 | display: block; 594 | width: 100%; 595 | } 596 | } 597 | } 598 | 599 | /* List */ 600 | 601 | ol { 602 | list-style: decimal; 603 | margin: 0 0 $size-element-margin 0; 604 | padding-left: 1.25em; 605 | 606 | li { 607 | padding-left: 0.25em; 608 | } 609 | } 610 | 611 | ul { 612 | list-style: disc; 613 | margin: 0 0 $size-element-margin 0; 614 | padding-left: 1em; 615 | 616 | li { 617 | padding-left: 0.5em; 618 | } 619 | 620 | &.alt { 621 | list-style: none; 622 | padding-left: 0; 623 | 624 | li { 625 | border-top: solid 1px $color-border; 626 | padding: 0.5em 0; 627 | 628 | &:first-child { 629 | border-top: 0; 630 | padding-top: 0; 631 | } 632 | } 633 | } 634 | 635 | &.icons { 636 | cursor: default; 637 | list-style: none; 638 | padding-left: 0; 639 | 640 | li { 641 | display: inline-block; 642 | padding: 0 1.25em 0 0; 643 | 644 | &:last-child { 645 | padding-right: 0; 646 | } 647 | 648 | .icon { 649 | color: inherit; 650 | 651 | &:before { 652 | font-size: 1.75em; 653 | } 654 | } 655 | } 656 | } 657 | 658 | &.actions { 659 | cursor: default; 660 | list-style: none; 661 | padding-left: 0; 662 | 663 | li { 664 | display: inline-block; 665 | padding: 0 ($size-element-margin * 0.5) 0 0; 666 | vertical-align: middle; 667 | 668 | &:last-child { 669 | padding-right: 0; 670 | } 671 | } 672 | 673 | &.small { 674 | li { 675 | padding: 0 ($size-element-margin * 0.25) 0 0; 676 | } 677 | } 678 | 679 | &.vertical { 680 | li { 681 | display: block; 682 | padding: ($size-element-margin * 0.5) 0 0 0; 683 | 684 | &:first-child { 685 | padding-top: 0; 686 | } 687 | 688 | > * { 689 | margin-bottom: 0; 690 | } 691 | } 692 | 693 | &.small { 694 | li { 695 | padding: ($size-element-margin * 0.25) 0 0 0; 696 | 697 | &:first-child { 698 | padding-top: 0; 699 | } 700 | } 701 | } 702 | } 703 | 704 | &.fit { 705 | display: table; 706 | margin-left: ($size-element-margin * -0.5); 707 | padding: 0; 708 | table-layout: fixed; 709 | width: calc(100% + #{($size-element-margin * 0.5)}); 710 | 711 | li { 712 | display: table-cell; 713 | padding: 0 0 0 ($size-element-margin * 0.5); 714 | 715 | > * { 716 | margin-bottom: 0; 717 | } 718 | } 719 | 720 | &.small { 721 | margin-left: ($size-element-margin * -0.25); 722 | width: calc(100% + #{($size-element-margin * 0.25)}); 723 | 724 | li { 725 | padding: 0 0 0 ($size-element-margin * 0.25); 726 | } 727 | } 728 | } 729 | } 730 | } 731 | 732 | dl { 733 | margin: 0 0 $size-element-margin 0; 734 | } 735 | 736 | /* Table */ 737 | 738 | .table-wrapper { 739 | -webkit-overflow-scrolling: touch; 740 | overflow-x: auto; 741 | } 742 | 743 | table { 744 | margin: 0 0 $size-element-margin 0; 745 | width: 100%; 746 | 747 | tbody { 748 | tr { 749 | border: solid 1px $color-border; 750 | border-left: 0; 751 | border-right: 0; 752 | 753 | &:nth-child(2n + 1) { 754 | background-color: $color-border-bg; 755 | } 756 | } 757 | } 758 | 759 | td { 760 | padding: 0.75em 0.75em; 761 | } 762 | 763 | th { 764 | color: $color-fg-bold; 765 | font-size: 0.9em; 766 | font-weight: $font-weight; 767 | padding: 0 0.75em 0.75em 0.75em; 768 | text-align: left; 769 | } 770 | 771 | thead { 772 | border-bottom: solid 2px $color-border; 773 | } 774 | 775 | tfoot { 776 | border-top: solid 2px $color-border; 777 | } 778 | 779 | &.alt { 780 | border-collapse: separate; 781 | 782 | tbody { 783 | tr { 784 | td { 785 | border: solid 1px $color-border; 786 | border-left-width: 0; 787 | border-top-width: 0; 788 | 789 | &:first-child { 790 | border-left-width: 1px; 791 | } 792 | } 793 | 794 | &:first-child { 795 | td { 796 | border-top-width: 1px; 797 | } 798 | } 799 | } 800 | } 801 | 802 | thead { 803 | border-bottom: 0; 804 | } 805 | 806 | tfoot { 807 | border-top: 0; 808 | } 809 | } 810 | } 811 | 812 | /* Button */ 813 | 814 | input[type="submit"], 815 | input[type="reset"], 816 | input[type="button"], 817 | .button { 818 | @include vendor-property('appearance', 'none'); 819 | @include vendor-property('transition', 'background-color #{$duration-transition} ease-in-out, color #{$duration-transition} ease-in-out'); 820 | background-color: $color-accent1-bg; 821 | border-radius: $size-border-radius; 822 | border: 0; 823 | color: $color-accent1-fg-bold; 824 | cursor: pointer; 825 | display: inline-block; 826 | font-weight: $font-weight-bold; 827 | height: $size-element-height; 828 | line-height: $size-element-height; 829 | padding: 0 2em; 830 | text-align: center; 831 | text-decoration: none; 832 | white-space: nowrap; 833 | 834 | &:hover { 835 | background-color: lighten($color-accent1-bg, 5); 836 | } 837 | 838 | &:active { 839 | background-color: darken($color-accent1-bg, 5); 840 | } 841 | 842 | &.icon { 843 | padding-left: 1.35em; 844 | 845 | &:before { 846 | margin-right: 0.5em; 847 | } 848 | } 849 | 850 | &.fit { 851 | display: block; 852 | margin: 0 0 ($size-element-margin * 0.5) 0; 853 | width: 100%; 854 | } 855 | 856 | &.small { 857 | font-size: 0.8em; 858 | height: ($size-element-height * 0.9); 859 | line-height: ($size-element-height * 0.9); 860 | } 861 | 862 | &.big { 863 | font-size: 1.25em; 864 | height: ($size-element-height * 0.9); 865 | line-height: ($size-element-height * 0.9); 866 | } 867 | 868 | &.alt { 869 | background-color: transparent; 870 | box-shadow: inset 0 0 0 2px $color-border; 871 | color: $color-fg; 872 | 873 | &:hover { 874 | background-color: $color-border-bg; 875 | } 876 | 877 | &:active { 878 | background-color: $color-border2-bg; 879 | } 880 | 881 | &.icon { 882 | &:before { 883 | color: $color-fg-light; 884 | } 885 | } 886 | } 887 | 888 | &.special { 889 | background-color: $color-accent2-bg; 890 | color: $color-accent2-fg-bold !important; 891 | 892 | &:hover { 893 | background-color: lighten($color-accent2-bg, 5); 894 | } 895 | 896 | &:active { 897 | background-color: darken($color-accent2-bg, 5); 898 | } 899 | } 900 | 901 | &.disabled, 902 | &:disabled { 903 | background-color: $color-fg !important; 904 | box-shadow: inset 0 -0.15em 0 0 rgba(0,0,0,0.15); 905 | color: $color-bg !important; 906 | cursor: default; 907 | opacity: 0.25; 908 | } 909 | } 910 | 911 | /* Header */ 912 | 913 | #skel-layers-wrapper { 914 | padding-top: 3em; 915 | } 916 | 917 | body.landing { 918 | #skel-layers-wrapper { 919 | padding-top: 0; 920 | } 921 | } 922 | 923 | @include vendor-keyframes('reveal-header') { 924 | 0% { top: -5em; } 925 | 100% { top: 0; } 926 | } 927 | 928 | #header { 929 | background: $color-header-bg; 930 | color: $color-header-fg; 931 | cursor: default; 932 | height: 3.25em; 933 | left: 0; 934 | line-height: 3.25em; 935 | position: fixed; 936 | top: 0; 937 | width: 100%; 938 | z-index: 10000; 939 | 940 | h1 { 941 | color: inherit; 942 | height: inherit; 943 | left: 1.25em; 944 | line-height: inherit; 945 | margin: 0; 946 | padding: 0; 947 | position: absolute; 948 | top: 0; 949 | 950 | a { 951 | color: $color-header-fg-bold; 952 | font-weight: $font-weight-bold; 953 | border: 0; 954 | } 955 | } 956 | 957 | nav { 958 | height: inherit; 959 | line-height: inherit; 960 | position: absolute; 961 | right: 0.75em; 962 | top: 0; 963 | vertical-align: middle; 964 | 965 | > ul { 966 | list-style: none; 967 | margin: 0; 968 | padding-left: 0; 969 | 970 | > li { 971 | display: inline-block; 972 | padding-left: 0; 973 | 974 | > ul { 975 | display: none; 976 | } 977 | 978 | a { 979 | display: inline-block; 980 | height: 2em; 981 | line-height: 1.95em; 982 | padding: 0 1em; 983 | border-radius: $size-border-radius; 984 | } 985 | 986 | a:not(.button) { 987 | color: $color-header-fg-bold; 988 | display: inline-block; 989 | text-decoration: none; 990 | border: 0; 991 | 992 | &.icon { 993 | &:before { 994 | color: $color-header-fg-light; 995 | margin-right: 0.5em; 996 | } 997 | } 998 | } 999 | 1000 | &:first-child { 1001 | margin-left: 0; 1002 | } 1003 | 1004 | &.active { 1005 | a:not(.button) { 1006 | background-color: transparentize($color-header-fg-light, 0.75); 1007 | } 1008 | } 1009 | 1010 | .button { 1011 | margin: 0 0 0 0.5em; 1012 | position: relative; 1013 | } 1014 | } 1015 | } 1016 | } 1017 | 1018 | input[type="submit"], 1019 | input[type="reset"], 1020 | input[type="button"], 1021 | .button { 1022 | background-color: transparent; 1023 | box-shadow: inset 0 0 0 2px $color-header-fg-light; 1024 | color: $color-header-fg-bold; 1025 | 1026 | &:hover { 1027 | background-color: transparentize($color-header-fg-light, 0.75); 1028 | } 1029 | 1030 | &:active { 1031 | background-color: transparentize($color-header-fg-light, 0.5); 1032 | } 1033 | } 1034 | 1035 | .container { 1036 | position: relative; 1037 | 1038 | h1 { 1039 | left: 0; 1040 | } 1041 | 1042 | nav { 1043 | right: 0; 1044 | } 1045 | } 1046 | 1047 | &.reveal { 1048 | @include vendor-property('animation', 'reveal-header 0.5s'); 1049 | } 1050 | 1051 | &.alt { 1052 | @include vendor-property('animation', 'none'); 1053 | background: none; 1054 | color: rgba(255,255,255,0.75); 1055 | position: absolute; 1056 | 1057 | nav { 1058 | > ul { 1059 | > li { 1060 | a:not(.button) { 1061 | &.icon { 1062 | &:before { 1063 | color: rgba(255,255,255,0.75); 1064 | } 1065 | } 1066 | } 1067 | 1068 | &.active { 1069 | a:not(.button) { 1070 | background-color: rgba(255,255,255,0.2); 1071 | } 1072 | } 1073 | } 1074 | } 1075 | } 1076 | 1077 | input[type="submit"], 1078 | input[type="reset"], 1079 | input[type="button"], 1080 | .button { 1081 | box-shadow: inset 0 0 0 2px rgba(255,255,255,0.5); 1082 | 1083 | &:hover { 1084 | background-color: rgba(255,255,255,0.1); 1085 | } 1086 | 1087 | &:active { 1088 | background-color: rgba(255,255,255,0.2); 1089 | } 1090 | } 1091 | } 1092 | } 1093 | 1094 | .dropotron { 1095 | background: #fff; 1096 | border-radius: $size-border-radius; 1097 | box-shadow: 0 2px 0 0 rgba(0,0,0,0.065), inset 0 -1px 0 0 #fff, inset 0 0 0 1px transparentize($color-border, 0.5); 1098 | list-style: none; 1099 | margin: calc(-0.5em + 1px) 0 0 1px; 1100 | padding: 0.5em 0; 1101 | width: 11em; 1102 | 1103 | li { 1104 | padding: 0; 1105 | 1106 | a, span { 1107 | @include vendor-property('transition', 'none'); 1108 | border: 0; 1109 | border-top: solid 1px #f2f2f2; 1110 | color: inherit; 1111 | display: block; 1112 | padding: 0.15em 1em; 1113 | } 1114 | 1115 | &:first-child { 1116 | > a, > span { 1117 | border-top: 0; 1118 | } 1119 | } 1120 | 1121 | &.active, 1122 | &:hover { 1123 | > a, > span { 1124 | background: $color-accent2-bg; 1125 | color: $color-accent2-fg-bold; 1126 | } 1127 | } 1128 | } 1129 | 1130 | &.level-0 { 1131 | font-size: 0.9em; 1132 | margin: 1em 0 0 0; 1133 | 1134 | &:before { 1135 | @include vendor-property('transform', 'rotate(45deg)'); 1136 | background: #fff; 1137 | border: solid 1px transparentize($color-border, 0.5); 1138 | border-bottom: 0; 1139 | border-right: 0; 1140 | box-shadow: -0.25em -0.125em 0.125em 0 rgba(0,0,0,0.015); 1141 | content: ''; 1142 | display: block; 1143 | height: 0.75em; 1144 | position: absolute; 1145 | right: 1.25em; 1146 | top: -0.375em; 1147 | width: 0.75em; 1148 | z-index: 0; 1149 | } 1150 | } 1151 | } 1152 | 1153 | /* Banner */ 1154 | 1155 | #banner { 1156 | background-attachment: scroll, fixed; 1157 | background-color: #666; 1158 | background-image: url('images/overlay.png'), url('../images/banner.jpg'); 1159 | background-position: top left, center center; 1160 | background-repeat: repeat, no-repeat; 1161 | background-size: auto, cover; 1162 | color: #fff; 1163 | padding: 12em 0 20em 0; 1164 | text-align: center; 1165 | 1166 | :last-child { 1167 | margin-bottom: 0; 1168 | } 1169 | 1170 | h2, h3, h4, h5, h6 { 1171 | color: #fff; 1172 | } 1173 | 1174 | h2 { 1175 | font-size: 3.5em; 1176 | line-height: 1em; 1177 | margin: 0 0 0.5em 0; 1178 | padding: 0; 1179 | } 1180 | 1181 | p { 1182 | font-size: 1.25em; 1183 | margin-bottom: 1.75em; 1184 | } 1185 | 1186 | input[type="submit"], 1187 | input[type="reset"], 1188 | input[type="button"], 1189 | .button { 1190 | background-color: transparent; 1191 | box-shadow: inset 0 0 0 2px rgba(255,255,255,0.5); 1192 | color: #fff; 1193 | min-width: 12em; 1194 | 1195 | &:hover { 1196 | background-color: rgba(255,255,255,0.1); 1197 | } 1198 | 1199 | &:active { 1200 | background-color: rgba(255,255,255,0.2); 1201 | } 1202 | 1203 | &.special { 1204 | background: #fff; 1205 | color: #666 !important; 1206 | } 1207 | } 1208 | } 1209 | 1210 | /* Main */ 1211 | 1212 | #main { 1213 | padding: 4em 0; 1214 | 1215 | > header { 1216 | text-align: center; 1217 | margin: 0 0 3em 0; 1218 | 1219 | h2 { 1220 | font-size: 2.75em; 1221 | margin: 0; 1222 | } 1223 | 1224 | p { 1225 | border-top: solid 2px $color-border; 1226 | color: $color-fg; 1227 | display: inline-block; 1228 | font-style: normal; 1229 | margin: 1em 0 0 0; 1230 | padding: 1em 0 1.25em 0; 1231 | } 1232 | } 1233 | } 1234 | 1235 | body.landing { 1236 | #main { 1237 | margin-top: -14em; 1238 | } 1239 | } 1240 | 1241 | /* Footer */ 1242 | 1243 | #footer { 1244 | background: #f0f0f0; 1245 | padding: 4em 0 6em 0; 1246 | text-align: center; 1247 | 1248 | .icons { 1249 | a { 1250 | @include vendor-property('transition', 'opacity #{$duration-transition} ease-in-out'); 1251 | opacity: 0.35; 1252 | 1253 | &:hover { 1254 | opacity: 0.75; 1255 | } 1256 | } 1257 | } 1258 | 1259 | .copyright { 1260 | color: $color-fg-light; 1261 | font-size: 0.9em; 1262 | line-height: 1em; 1263 | margin: 2em 0 0 0; 1264 | padding: 0; 1265 | text-align: center; 1266 | 1267 | a { 1268 | color: inherit; 1269 | } 1270 | 1271 | li { 1272 | border-left: solid 1px $color-border2; 1273 | display: inline-block; 1274 | list-style: none; 1275 | margin-left: 1em; 1276 | padding-left: 1em; 1277 | 1278 | &:first-child { 1279 | border-left: 0; 1280 | margin-left: 0; 1281 | padding-left: 0; 1282 | } 1283 | } 1284 | } 1285 | } 1286 | 1287 | /* CTA */ 1288 | 1289 | #cta { 1290 | background: $color-accent2-bg; 1291 | color: $color-accent2-fg; 1292 | padding: 3.5em 0 4em 0; 1293 | text-align: center; 1294 | 1295 | h2, h3, h4, h5, h6 { 1296 | color: inherit; 1297 | } 1298 | 1299 | form { 1300 | margin: 0 auto; 1301 | max-width: 100%; 1302 | width: 25em; 1303 | } 1304 | 1305 | input[type="submit"], 1306 | input[type="reset"], 1307 | input[type="button"], 1308 | .button { 1309 | box-shadow: none; 1310 | background: #fff; 1311 | color: $color-accent2-bg; 1312 | } 1313 | 1314 | input[type="text"], 1315 | input[type="password"], 1316 | input[type="email"], 1317 | select, 1318 | textarea { 1319 | color: $color-accent2-fg-bold; 1320 | background: rgba(255,255,255,0.15); 1321 | border: 0; 1322 | 1323 | &:focus { 1324 | box-shadow: inset 0 0 0 2px #fff; 1325 | } 1326 | } 1327 | 1328 | ::-webkit-input-placeholder { 1329 | color: rgba(255,255,255,0.75) !important; 1330 | } 1331 | 1332 | :-moz-placeholder { 1333 | color: rgba(255,255,255,0.75) !important; 1334 | } 1335 | 1336 | ::-moz-placeholder { 1337 | color: rgba(255,255,255,0.75) !important; 1338 | } 1339 | 1340 | :-ms-input-placeholder { 1341 | color: rgba(255,255,255,0.75) !important; 1342 | } 1343 | 1344 | .formerize-placeholder { 1345 | color: rgba(255,255,255,0.75) !important; 1346 | } 1347 | } 1348 | -------------------------------------------------------------------------------- /blog/index.html: -------------------------------------------------------------------------------- 1 | --- 2 | title: Blog 3 | layout: default 4 | --- 5 |
6 |
7 |

Blog Posts

8 |
9 | {% for post in site.posts offset: 0 limit: 10 %} 10 |

{{ post.title }}

11 | {{ post.date | date_to_string }} 12 |
13 | {{ post.content | remove: '

' | remove: '

' }} 14 | 17 |
18 | {% endfor %} 19 |
20 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | --- 2 | title: Alpha2 3 | layout: default 4 | --- 5 |
6 |
7 |

Introducing the ultimate mobile app10 8 |
9 | for doing stuff with your phone

10 |

Blandit varius ut praesent nascetur eu penatibus nisi risus faucibus nunc ornare
11 | adipiscing nunc adipiscing. Condimentum turpis massa.

12 |
13 | 14 |
15 | 16 |
17 |
18 |
19 | 20 |

Magna etiam

21 |

Integer volutpat ante et accumsan commophasellus sed aliquam feugiat lorem aliquet ut enim rutrum phasellus iaculis accumsan dolore magna aliquam veroeros.

22 |
23 |
24 | 25 |

Ipsum dolor

26 |

Integer volutpat ante et accumsan commophasellus sed aliquam feugiat lorem aliquet ut enim rutrum phasellus iaculis accumsan dolore magna aliquam veroeros.

27 |
28 |
29 |
30 |
31 | 32 |

Sed feugiat

33 |

Integer volutpat ante et accumsan commophasellus sed aliquam feugiat lorem aliquet ut enim rutrum phasellus iaculis accumsan dolore magna aliquam veroeros.

34 |
35 |
36 | 37 |

Enim phasellus

38 |

Integer volutpat ante et accumsan commophasellus sed aliquam feugiat lorem aliquet ut enim rutrum phasellus iaculis accumsan dolore magna aliquam veroeros.

39 |
40 |
41 |
42 | 43 |
44 |
45 | 46 |
47 | 48 |

Sed lorem adipiscing

49 |

Integer volutpat ante et accumsan commophasellus sed aliquam feugiat lorem aliquet ut enim rutrum phasellus iaculis accumsan dolore magna aliquam veroeros.

50 | 53 |
54 | 55 |
56 |
57 | 58 |
59 | 60 |

Accumsan integer

61 |

Integer volutpat ante et accumsan commophasellus sed aliquam feugiat lorem aliquet ut enim rutrum phasellus iaculis accumsan dolore magna aliquam veroeros.

62 | 65 |
66 | 67 |
68 |
69 | --------------------------------------------------------------------------------