diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5df1b9b --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.sass-cache diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..f605469 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,69 @@ +# v1.2.7 +## 12/29/2014 + +1. [](#bugfix) + * Removed `Fixed` header image to resolve issues with mobile browsers + +# v1.2.6 +## 12/21/2014 + +1. [](#new) + * Added support for list of custom menu items in `site.yaml` + * Updated `README.md` with some instructions on how to use some Deliver features +1. [](#improved) + * Removed `cache.html.twig` file that was used only for testing + * Removed unused `color` option in `deliver.yaml` + +# v1.2.5 +## 12/15/2014 + +1. [](#bugfix) + * Fix for Firefox 34 Flex/Responsiveness issues + +# v1.2.4 +## 12/12/2014 + +1. [](#new) + * Added demo link to blueprints +1. [](#improved) + * Inverted Previous/Next buttons on blog item template + +# v1.2.3 +## 12/05/2014 + +1. [](#improved) + * Simplified Previous/Next buttons to use Page methods + +# v1.2.2 +## 12/04/2014 + +1. [](#new) + * Added Previous/Next buttons with Collection methods + * Added Related posts in blog sidebar +1. [](#bugfix) + * Fix for DaringFireball style link + +# v1.2.1 +## 11/30/2014 + +1. [](#improved) + * Renamed core theme JS file + * Removed featherlight from Deliver +1. [](#bugfix) + * Fixed response code in error template + +# v1.2.0 +## 11/28/2014 + +1. [](#new) + * Added SimpleSearch display in blog sidebar + * Added reference to `custom.css` file in core +1. [](#improved) + * Added plugins checks for improved flexibility if plugins are not installed + + +# v1.1.11 +## 11/21/2014 + +1. [](#new) + * ChangeLog started... diff --git a/LICENSE 2 b/LICENSE 2 new file mode 100644 index 0000000..484793a --- /dev/null +++ b/LICENSE 2 @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Grav + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md index 31d9b45..d0b6c88 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,84 @@ -# grav-theme-deliver -Grav Deliver Theme +# Deliver +Deliver is the default [Grav][grav] theme. Simple, fast and modern. + +## Installation +To install this template, just download the zip version of this repository and unzip it under `/your/site/grav/user/themes`. Then, rename the folder to `deliver`. + +You should now have all the theme files under + + /your/site/grav/user/themes/deliver + +[grav]: http://github.com/getgrav/grav +[afterburner2]: http://www.rockettheme.com/joomla-templates/afterburner2 + +## Features + +* Lightweight and minimal for optimal performance +* Fully responsive with off-page mobile navigation +* SCSS based CSS source files for easy customization +* Built-in support for on-page navigation +* Mutliple page template types +* Fontawesome icon support + +### Supported Page Templates + +* Default view template +* Blog view template +* Error view template +* Blog item vew template +* Modular view templates: + * Features Modular view template + * Showcase Modular view template + * Text Modular view template +* SnipCart view template + +### Menu Features + +##### Dropdown Menu + +You can enable **dropdown menu** support by enabling it in the `deliver.yaml` configuration file. As per usual, copy this file to your `user/config/themes/` folder (create if required) and edit there. + +``` +dropdown: + enabled: true +``` + +This will ensure that sub-pages show up as sub-menus in the navigation. + +##### Menu Text & Icons + +Each page shows up in the menu using the title by default, however you can set what displays in the menu directly by setting an explicit `menu:` option in the page header: + +``` +menu: My Menu +``` + +You can also provide an icon to show up in front of the menu item by providing an `icon:` option. You need to use name of the FontAwesome icon without the `fa-` prefix. Check out the full [list of current FontAwesome 4.2 icons](http://fortawesome.github.io/Font-Awesome/icons/): + +``` +icon: bar-chart-o +``` + +#### Custom Menu Items + +By default, Grav generates the menu from the page structure. However, there are times when you may want to add custom menu items to the end of the menu. This is now supported in Deliver by creating a menu list in your `site.yaml` file. An example of this is as follows: + +``` +menu: + - text: Source + url: https://github.com/getgrav/grav + - icon: twitter + url: http://twitter.com/getgrav +``` + +The `url:` option is required, but you can provide **either** or **both** `text:` and/or `icon:` + +### Blog Features + +##### Daring Fireball Link Pages + +Deliver supports the ability for a page to have a `link:` header option. This will then in turn create a **link page** where the title of the page will actually be linked to the link provided and a prefexid double angle `>>` will link to the page itself. Simply provide the link in the page header: + +``` +link: http://getgrav.org/blog +``` \ No newline at end of file diff --git a/blueprints.yaml b/blueprints.yaml new file mode 100644 index 0000000..8075d5b --- /dev/null +++ b/blueprints.yaml @@ -0,0 +1,17 @@ +name: Deliver +version: 1.2.7 +description: "Deliver is the default theme included with **Grav**" +icon: empire +author: + name: Team Grav + email: devs@getgrav.org + url: http://getgrav.org +homepage: https://github.com/getgrav/grav-theme-deliver +demo: http://demo.getgrav.org/blog-skeleton +keywords: deliver, theme, core, modern, fast, responsive, html5, css3 +bugs: https://github.com/getgrav/grav-theme-deliver/issues +license: MIT + +form: + validation: strict + fields: diff --git a/blueprints/asset/file.yaml b/blueprints/asset/file.yaml new file mode 100644 index 0000000..e1f5005 --- /dev/null +++ b/blueprints/asset/file.yaml @@ -0,0 +1,70 @@ +media: + video: + mp4: video/mp4 + mov: video/quicktime + m4v: video/x-m4v + swf: video/x-flv + + image: + jpg: image/jpeg + jpeg: image/jpeg + png: image/png + gif: image/gif + + file: + txt: text/plain + doc: application/msword + html: text/html + pdf: application/pdf + zip: application/zip + gz: application/gzip + +form: + key: filename + fields: + upload: + type: upload + label: Upload + allow: + @media.*.keys + accept: + @media.*.values + + filename: + type: text + label: Filename + + type: + type: hidden + default: video + + name: + type: unset + + description: + type: textarea + label: Description + + url: + type: unset + + path: + type: unset + + thumb: + type: unset + + width: + type: text + label: Width + + height: + type: text + label: Height + + mime: + type: hidden + default: 'application/octet-stream' + + modified: + type: unset diff --git a/blueprints/blog.yaml b/blueprints/blog.yaml new file mode 100644 index 0000000..eb50e4d --- /dev/null +++ b/blueprints/blog.yaml @@ -0,0 +1,67 @@ +title: Blog +@extends: default + +child_type: item + +form: + fields: + tabs: + type: tabs + active: 1 + + fields: + blog: + type: tab + title: Blog List + + fields: + header.content.items: + type: select + label: Items + default: @self.children + options: + @self.children: Children + + header.content.limit: + type: text + label: Max Item Count + default: 5 + validate: + required: true + pattern: "[1-9][0-9]*" + validate: + type: int + + header.content.order.by: + type: select + label: Order By + default: date + options: + folder: Folder + title: Title + date: Date + default: Default + + header.content.order.dir: + type: select + label: Order + default: desc + options: + asc: Ascending + desc: Descending + + header.content.pagination: + type: toggle + label: Order + default: 1 + options: + 1: Enabled + 0: Disabled + + header.pagination: + type: hidden + default: true + + header.blog_url: + type: hidden + default: '' diff --git a/blueprints/default.yaml b/blueprints/default.yaml new file mode 100644 index 0000000..43743af --- /dev/null +++ b/blueprints/default.yaml @@ -0,0 +1,157 @@ +title: Default + +rules: + slug: + pattern: "[a-z][a-z0-9_\-]+" + min: 2 + max: 80 + +form: + fields: + type: + type: hidden + label: Page Type + default: default + + tabs: + type: tabs + active: 1 + + fields: + content: + type: tab + title: Content + + fields: + route: + type: select + label: Parent + @data-options: '\Grav\Common\Page\Pages::parents' + @data-default: '\Grav\Plugin\admin::route' + options: + '': '- Root -' + + order: + type: text + label: Ordering + validate: + type: int + min: 0 + + folder: + type: text + label: Folder + validate: + type: slug +# required: true + + header.title: + type: text + label: Title + validate: + required: true + + content: + type: textarea + label: Content + + header.process: + type: checkboxes + label: Process + default: [markdown: true, twig: true] + options: + markdown: Markdown + twig: Twig + use: keys + + + meta: + type: tab + title: Meta + + fields: + header.description: + type: textarea + label: Description + validate: + max: 120 + + header.keywords: + type: text + label: Keywords + validate: + max: 120 + + header.robots: + type: checkboxes + label: Robots + options: + noindex: No index + nofollow: No follow + use: keys + + overrides: + type: tab + title: Overrides + + fields: + header.menu: + type: text + label: Menu + + header.slug: + type: text + label: Alias + validate: + rule: slug + + header.cache_enable: + type: toggle + label: Caching + highlight: 1 + options: + '': Global + 1: Enabled + 0: Disabled + validate: + type: bool + + header.routable: + type: toggle + label: Access by URL + highlight: 1 + default: '' + options: + '': Global + 1: Enabled + 0: Disabled + validate: + type: bool + + header.child_type: + type: select + label: Default Child Type + default: default + @data-options: '\Grav\Common\Page\Pages::types' + + header.order_by: + type: hidden + + header.order_manual: + type: hidden + validate: + type: commalist + + media: + type: tab + title: Media + + fields: + files: + type: spacer + title: Files + + media: + type: list + add: Add file + @import: 'medium/file' diff --git a/blueprints/form.yaml b/blueprints/form.yaml new file mode 100644 index 0000000..a3434a1 --- /dev/null +++ b/blueprints/form.yaml @@ -0,0 +1,2 @@ +title: Nopad +@extends: default diff --git a/blueprints/item.yaml b/blueprints/item.yaml new file mode 100644 index 0000000..35e7ae9 --- /dev/null +++ b/blueprints/item.yaml @@ -0,0 +1,40 @@ +title: Item +@extends: default + +form: + fields: + tabs: + + fields: + blog: + type: tab + title: Blog Item + + fields: + header.date: + type: datetime + label: Date + + header.taxonomy.category: + type: text + label: Category + default: blog + + header.taxonomy.tag: + type: checkboxes + label: Tags + options: + demo: demo + grav: grav + matias: matias + apple: apple + sample: sample + + header.username: + type: text + label: Author + + header.blog_url: + type: text + label: Blog URL + default: diff --git a/blueprints/modular.yaml b/blueprints/modular.yaml new file mode 100644 index 0000000..d0011b4 --- /dev/null +++ b/blueprints/modular.yaml @@ -0,0 +1,27 @@ +title: Modular +@extends: default + +form: + fields: + tabs: + type: tabs + active: 1 + + fields: + content: + fields: + header.modular: + type: select + label: 'Modular page' + default: 0 + options: + 0: 'False' + 1: 'True' + validate: + type: bool + + header.order_manual: + type: text + label: Manual ordering + validate: + type: commalist diff --git a/blueprints/modular/features.yaml b/blueprints/modular/features.yaml new file mode 100644 index 0000000..5ad7a04 --- /dev/null +++ b/blueprints/modular/features.yaml @@ -0,0 +1,7 @@ +title: Features +@extends: default + +form: + fields: + tabs: + type: tabs diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..59881c0 --- /dev/null +++ b/composer.json @@ -0,0 +1,28 @@ +{ + "name": "getgrav/grav-theme-deliver", + "type": "grav-theme", + "description": "The default theme for the Grav flat-file CMS", + "keywords": ["theme","grav"], + "homepage": "http://getgrav.org", + "license": "MIT", + "support": { + "irc": "irc://irc.freenode.org/grav" + }, + "authors": [ + { + "name": "Team Grav", + "email": "devs@getgrav.org", + "homepage": "http://getgrav.org" + } + ], + "require": { + "php": ">=5.4.0", + "composer/installers": "~1.0" + }, + "extra": { + "installer-name": "deliver", + "installer-paths": { + "user/themes/{$name}/": ["getgrav/grav-theme-deliver"] + } + } +} diff --git a/css-compiled/nucleus.css b/css-compiled/nucleus.css new file mode 100644 index 0000000..31d4daf --- /dev/null +++ b/css-compiled/nucleus.css @@ -0,0 +1,545 @@ +*, *::before, *::after { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; } + +@-webkit-viewport { + width: device-width; } +@-moz-viewport { + width: device-width; } +@-ms-viewport { + width: device-width; } +@-o-viewport { + width: device-width; } +@viewport { + width: device-width; } +html { + font-size: 100%; + -ms-text-size-adjust: 100%; + -webkit-text-size-adjust: 100%; } + +body { + margin: 0; } + +article, +aside, +details, +figcaption, +figure, +footer, +header, +hgroup, +main, +nav, +section, +summary { + display: block; } + +audio, +canvas, +progress, +video { + display: inline-block; + vertical-align: baseline; } + +audio:not([controls]) { + display: none; + height: 0; } + +[hidden], +template { + display: none; } + +a { + background: transparent; + text-decoration: none; } + +a:active, +a:hover { + outline: 0; } + +abbr[title] { + border-bottom: 1px dotted; } + +b, +strong { + font-weight: bold; } + +dfn { + font-style: italic; } + +mark { + background: #ff0; + color: #000; } + +sub, +sup { + font-size: 0.75rem; + line-height: 0; + position: relative; + vertical-align: baseline; } + +sup { + top: -0.5em; } + +sub { + bottom: -0.25em; } + +img { + width: auto\9; + height: auto; + max-width: 100%; + display: inline-block; + vertical-align: middle; + border: 0; + -ms-interpolation-mode: bicubic; } + +iframe, +svg { + max-width: 100%; } + +svg:not(:root) { + overflow: hidden; } + +figure { + margin: 1em 40px; } + +hr { + height: 0; } + +pre { + overflow: auto; } + +code, +kbd, +pre, +samp { + font-family: inherit; + font-size: 1rem; } + +button, +input, +optgroup, +select, +textarea { + color: inherit; + font: inherit; + margin: 0; } + +button { + overflow: visible; } + +button, +select { + text-transform: none; } + +button, +html input[type="button"], +input[type="reset"], +input[type="submit"] { + -webkit-appearance: button; + cursor: pointer; } + +button[disabled], +html input[disabled] { + cursor: default; } + +button::-moz-focus-inner, +input::-moz-focus-inner { + border: 0; + padding: 0; } + +input { + line-height: normal; } + +input[type="checkbox"], +input[type="radio"] { + padding: 0; } + +input[type="number"]::-webkit-inner-spin-button, +input[type="number"]::-webkit-outer-spin-button { + height: auto; } + +input[type="search"] { + -webkit-appearance: textfield; } + +input[type="search"]::-webkit-search-cancel-button, +input[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; } + +legend { + border: 0; + padding: 0; } + +textarea { + overflow: auto; } + +optgroup { + font-weight: bold; } + +table { + border-collapse: collapse; + border-spacing: 0; + table-layout: fixed; + width: 100%; } + +tr, td, th { + vertical-align: middle; } + +th, td { + padding: 0.425rem 0; } + +th { + text-align: left; } + +.g-container { + width: 75em; + margin: 0 auto; + padding: 0; } + @media only all and (min-width: 60em) and (max-width: 74.938em) { + .g-container { + width: 60em; } } + @media only all and (min-width: 48em) and (max-width: 59.938em) { + .g-container { + width: 48em; } } + @media only all and (min-width: 30.063em) and (max-width: 47.938em) { + .g-container { + width: 30em; } } + @media only all and (max-width: 30em) { + .g-container { + width: 100%; } } + +.g-grid { + display: -webkit-box; + display: -moz-box; + display: box; + display: -webkit-flex; + display: -moz-flex; + display: -ms-flexbox; + display: flex; + -webkit-flex-flow: row wrap; + -moz-flex-flow: row wrap; + flex-flow: row wrap; + list-style: none; + margin: 0; + padding: 0; } + .g-grid.nowrap { + -webkit-flex-flow: row; + -moz-flex-flow: row; + flex-flow: row; } + +.g-block { + -webkit-box-flex: 1; + -moz-box-flex: 1; + box-flex: 1; + -webkit-flex: 1; + -moz-flex: 1; + -ms-flex: 1; + flex: 1; + min-width: 0; + min-height: 0; } + @media only all and (max-width: 47.938em) { + .g-block { + -webkit-box-flex: 0; + -moz-box-flex: 0; + box-flex: 0; + -webkit-flex: 0 100%; + -moz-flex: 0 100%; + -ms-flex: 0 100%; + flex: 0 100%; } } + +.g-content { + margin: 0.625rem; + padding: 0.938rem; } + +@media only all and (max-width: 47.938em) { + body [class*="size-"] { + -webkit-box-flex: 0; + -moz-box-flex: 0; + box-flex: 0; + -webkit-flex: 0 100%; + -moz-flex: 0 100%; + -ms-flex: 0 100%; + flex: 0 100%; } } + +.size-1-2 { + -webkit-box-flex: 0; + -moz-box-flex: 0; + box-flex: 0; + -webkit-flex: 0 50%; + -moz-flex: 0 50%; + -ms-flex: 0 50%; + flex: 0 50%; } + +.size-1-3 { + -webkit-box-flex: 0; + -moz-box-flex: 0; + box-flex: 0; + -webkit-flex: 0 33.33333%; + -moz-flex: 0 33.33333%; + -ms-flex: 0 33.33333%; + flex: 0 33.33333%; } + +.size-1-4 { + -webkit-box-flex: 0; + -moz-box-flex: 0; + box-flex: 0; + -webkit-flex: 0 25%; + -moz-flex: 0 25%; + -ms-flex: 0 25%; + flex: 0 25%; } + +.size-1-5 { + -webkit-box-flex: 0; + -moz-box-flex: 0; + box-flex: 0; + -webkit-flex: 0 20%; + -moz-flex: 0 20%; + -ms-flex: 0 20%; + flex: 0 20%; } + +.size-1-6 { + -webkit-box-flex: 0; + -moz-box-flex: 0; + box-flex: 0; + -webkit-flex: 0 16.66667%; + -moz-flex: 0 16.66667%; + -ms-flex: 0 16.66667%; + flex: 0 16.66667%; } + +.size-1-7 { + -webkit-box-flex: 0; + -moz-box-flex: 0; + box-flex: 0; + -webkit-flex: 0 14.28571%; + -moz-flex: 0 14.28571%; + -ms-flex: 0 14.28571%; + flex: 0 14.28571%; } + +.size-1-8 { + -webkit-box-flex: 0; + -moz-box-flex: 0; + box-flex: 0; + -webkit-flex: 0 12.5%; + -moz-flex: 0 12.5%; + -ms-flex: 0 12.5%; + flex: 0 12.5%; } + +.size-1-9 { + -webkit-box-flex: 0; + -moz-box-flex: 0; + box-flex: 0; + -webkit-flex: 0 11.11111%; + -moz-flex: 0 11.11111%; + -ms-flex: 0 11.11111%; + flex: 0 11.11111%; } + +.size-1-10 { + -webkit-box-flex: 0; + -moz-box-flex: 0; + box-flex: 0; + -webkit-flex: 0 10%; + -moz-flex: 0 10%; + -ms-flex: 0 10%; + flex: 0 10%; } + +.size-1-11 { + -webkit-box-flex: 0; + -moz-box-flex: 0; + box-flex: 0; + -webkit-flex: 0 9.09091%; + -moz-flex: 0 9.09091%; + -ms-flex: 0 9.09091%; + flex: 0 9.09091%; } + +.size-1-12 { + -webkit-box-flex: 0; + -moz-box-flex: 0; + box-flex: 0; + -webkit-flex: 0 8.33333%; + -moz-flex: 0 8.33333%; + -ms-flex: 0 8.33333%; + flex: 0 8.33333%; } + +@media only all and (max-width: 47.938em) { + @supports not (flex-wrap: wrap) { + .g-grid { + display: block; + -webkit-box-lines: inherit; + -moz-box-lines: inherit; + box-lines: inherit; + -webkit-flex-wrap: inherit; + -moz-flex-wrap: inherit; + -ms-flex-wrap: inherit; + flex-wrap: inherit; } + + .g-block { + display: block; + -webkit-box-flex: inherit; + -moz-box-flex: inherit; + box-flex: inherit; + -webkit-flex: inherit; + -moz-flex: inherit; + -ms-flex: inherit; + flex: inherit; } } } +.first-block { + -webkit-box-ordinal-group: 0; + -webkit-order: -1; + -ms-flex-order: -1; + order: -1; } + +.last-block { + -webkit-box-ordinal-group: 2; + -webkit-order: 1; + -ms-flex-order: 1; + order: 1; } + +.fixed-blocks { + -webkit-flex-flow: row wrap; + -moz-flex-flow: row wrap; + flex-flow: row wrap; } + .fixed-blocks .g-block { + -webkit-box-flex: inherit; + -moz-box-flex: inherit; + box-flex: inherit; + -webkit-flex: inherit; + -moz-flex: inherit; + -ms-flex: inherit; + flex: inherit; + width: 25%; } + @media only all and (min-width: 60em) and (max-width: 74.938em) { + .fixed-blocks .g-block { + width: 33.33333%; } } + @media only all and (min-width: 48em) and (max-width: 59.938em) { + .fixed-blocks .g-block { + width: 50%; } } + @media only all and (max-width: 47.938em) { + .fixed-blocks .g-block { + width: 100%; } } + +@supports not (flex-wrap: wrap) { + .fixed-blocks { + display: block; + -webkit-flex-flow: inherit; + -moz-flex-flow: inherit; + flex-flow: inherit; } } +body { + font-size: 1rem; + line-height: 1.7; } + +h1, h2, h3, h4, h5, h6 { + margin: 0.85rem 0 1.7rem 0; + text-rendering: optimizeLegibility; } + +h1 { + font-size: 3.2rem; } + +h2 { + font-size: -0.6rem; } + +h3 { + font-size: -0.5rem; } + +h4 { + font-size: 1.75rem; } + +h5 { + font-size: 1.35rem; } + +h6 { + font-size: 0.85rem; } + +p { + margin: 1.7rem 0; } + +ul, ol, dl { + margin-top: 1.7rem; + margin-bottom: 1.7rem; } + ul ul, ul ol, ul dl, ol ul, ol ol, ol dl, dl ul, dl ol, dl dl { + margin-top: 0; + margin-bottom: 0; } + +ul, dl { + margin-left: 1.7rem; + padding: 0; } + +ol { + padding-left: 1.7rem; } + +blockquote { + margin: 1.7rem 0; + padding-left: 0.85rem; } + +cite { + display: block; + font-size: 0.875rem; } + cite:before { + content: "\2014 \0020"; } + +pre { + margin: 1.7rem 0; + padding: 0.938rem; } + +code { + vertical-align: bottom; } + +small { + font-size: 0.875rem; } + +hr { + border-left: none; + border-right: none; + border-top: none; + margin: 1.7rem 0; } + +fieldset { + border: 0; + padding: 0.938rem; + margin: 0 0 1.7rem 0; } + +input, +label, +select { + display: block; } + +label { + margin-bottom: 0.425rem; } + label.required:after { + content: "*"; } + label abbr { + display: none; } + +textarea, input[type="email"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="url"], input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="month"], input[type="time"], input[type="week"], select[multiple=multiple] { + -webkit-transition: border-color; + -moz-transition: border-color; + transition: border-color; + border-radius: 0; + margin-bottom: 0.85rem; + padding: 0.425rem 0.425rem; } + textarea:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="url"]:focus, input[type="color"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, select[multiple=multiple]:focus { + outline: none; } + +textarea { + resize: vertical; } + +input[type="checkbox"], input[type="radio"] { + display: inline; + margin-right: 0.425rem; } + +input[type="file"] { + width: 100%; } + +select { + width: auto; + max-width: 100%; + margin-bottom: 1.7rem; } + +button, +input[type="submit"] { + cursor: pointer; + user-select: none; + vertical-align: middle; + white-space: nowrap; + border: inherit; } + +/*# sourceMappingURL=nucleus.css.map */ diff --git a/css-compiled/nucleus.css.map b/css-compiled/nucleus.css.map new file mode 100644 index 0000000..a439498 --- /dev/null +++ b/css-compiled/nucleus.css.map @@ -0,0 +1,7 @@ +{ +"version": 3, +"mappings": "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", +"sources": ["../scss/nucleus/_core.scss","../scss/vendor/bourbon/addons/_prefixer.scss","../scss/configuration/nucleus/_core.scss","../scss/configuration/nucleus/_typography.scss","../scss/nucleus/_flex.scss","../scss/configuration/nucleus/_breakpoints.scss","../scss/nucleus/mixins/_breakpoints.scss","../scss/vendor/bourbon/css3/_flex-box.scss","../scss/configuration/nucleus/_layout.scss","../scss/nucleus/_typography.scss","../scss/nucleus/_forms.scss"], +"names": [], +"file": "nucleus.css" +} \ No newline at end of file diff --git a/css-compiled/particles.css b/css-compiled/particles.css new file mode 100644 index 0000000..ef40206 --- /dev/null +++ b/css-compiled/particles.css @@ -0,0 +1,3 @@ + + +/*# sourceMappingURL=particles.css.map */ diff --git a/css-compiled/particles.css.map b/css-compiled/particles.css.map new file mode 100644 index 0000000..81073f9 --- /dev/null +++ b/css-compiled/particles.css.map @@ -0,0 +1,7 @@ +{ +"version": 3, +"mappings": "", +"sources": [], +"names": [], +"file": "particles.css" +} \ No newline at end of file diff --git a/css-compiled/template.css b/css-compiled/template.css new file mode 100644 index 0000000..1a583a5 --- /dev/null +++ b/css-compiled/template.css @@ -0,0 +1,989 @@ +@import url(//fonts.googleapis.com/css?family=Montserrat:400|Raleway:300,400,600|Inconsolata|Pacifico); +#header #logo h3, #header #logo ul.social-icons, #header #navbar ul.navigation, #header #navbar .panel-activation, #footer p { + position: relative; + top: 50%; + -webkit-transform: translateY(-50%); + -moz-transform: translateY(-50%); + -ms-transform: translateY(-50%); + -o-transform: translateY(-50%); + transform: translateY(-50%); } + +.button, .button-secondary { + display: inline-block; + padding: 7px 20px; } + .button-small.button, .button-small.button-secondary { + padding: 3px 10px; + font-size: 0.9rem; } + +html, body { + height: 100%; } + +body { + background: #fff; + color: #9A9898; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; } + +a { + color: #87b672; } + a:hover { + color: #558042; } + +b, strong, label, th { + font-weight: 600; } + +#container { + min-height: 100%; + position: relative; } + +.fullwidth #body { + padding-left: 0; + padding-right: 0; } + +#body { + background: #fff; + padding-top: 15rem; + padding-bottom: 11rem; } + +.left { + float: left; } + +.right { + float: right; } + +@font-face { + font-family: 'novecento_sans_widedemibold'; + src: url("../fonts/Novecentosanswide-DemiBold-webfont.eot"); + src: url("../fonts/Novecentosanswide-DemiBold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/Novecentosanswide-DemiBold-webfont.woff2") format("woff2"), url("../fonts/Novecentosanswide-DemiBold-webfont.woff") format("woff"), url("../fonts/Novecentosanswide-DemiBold-webfont.ttf") format("truetype"), url("../fonts/Novecentosanswide-DemiBold-webfont.svg#novecento_sans_widedemibold") format("svg"); + font-weight: normal; + font-style: normal; } +@font-face { + font-family: 'novecento_sans_widenormal'; + src: url("../fonts/Novecentosanswide-Normal-webfont.eot"); + src: url("../fonts/Novecentosanswide-Normal-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/Novecentosanswide-Normal-webfont.woff2") format("woff2"), url("../fonts/Novecentosanswide-Normal-webfont.woff") format("woff"), url("../fonts/Novecentosanswide-Normal-webfont.ttf") format("truetype"), url("../fonts/Novecentosanswide-Normal-webfont.svg#novecento_sans_widenormal") format("svg"); + font-weight: normal; + font-style: normal; } +@font-face { + font-family: 'novecento_sans_widemedium'; + src: url("./fonts/Novecentosanswide-Medium-webfont.eot"); + src: url("./fonts/Novecentosanswide-Medium-webfont.eot?#iefix") format("embedded-opentype"), url("./fonts/Novecentosanswide-Medium-webfont.woff2") format("woff2"), url("./fonts/Novecentosanswide-Medium-webfont.woff") format("woff"), url("./fonts/Novecentosanswide-Medium-webfont.ttf") format("truetype"), url("./fonts/Novecentosanswide-Medium-webfont.svg#novecento_sans_widemedium") format("svg"); + font-weight: normal; + font-style: normal; } +.default-animation, #body, #header #logo h3, #header #logo ul.social-icons li, .modular .showcase .button, .modular .slideme_container .arrow, .modular .slideme_container .pagination .numbers li, .callout .notebook .screen .screen-content-hover { + -webkit-transition: all 0.5s ease; + -moz-transition: all 0.5s ease; + transition: all 0.5s ease; } + +.padding-horiz, .fullwidth #header, .fullwidth #breadcrumbs, .fullwidth .blog-header, .fullwidth .blog-content-item, .fullwidth .content-wrapper, .fullwidth ul.pagination, .fullwidth #body > .modular-row, #body, #header, #footer { + padding-left: 14rem; + padding-right: 14rem; } + @media only all and (max-width: 47.938em) { + .padding-horiz, .fullwidth #header, .fullwidth #breadcrumbs, .fullwidth .blog-header, .fullwidth .blog-content-item, .fullwidth .content-wrapper, .fullwidth ul.pagination, .fullwidth #body > .modular-row, #body, #header, #footer { + padding-left: 8rem; + padding-right: 8rem; } } + +.padding-vert { + padding-top: 3rem; + padding-bottom: 3rem; } + +#header { + position: absolute; + z-index: 10; + width: 100%; + height: 12rem; + background-color: rgba(255, 255, 255, 0.9); + box-shadow: 0 0.05rem 1rem rgba(0, 0, 0, 0.15); } + #header > .grid, #header #logo, #header #navbar, #header .social-navigation { + height: 50%; } + #header #logo { + border-bottom: 1px solid #eaeaea; } + #header #logo h3 { + font-size: 2.5rem; + font-family: "Pacifico", "monospace"; + line-height: 2rem; + margin: 0; + float: left; } + #header #logo h3 a { + color: #9A9898; } + #header #logo ul { + margin: 0; + padding: 0; + list-style: none; } + #header #logo ul.social-icons { + float: right; + line-height: 2rem; + margin: 0; } + #header #logo ul.social-icons li { + float: left; + width: 2.1rem; + height: 2.1rem; + background: #fff; + border-radius: 100%; + text-align: center; + margin-right: 0.8rem; } + #header #logo ul.social-icons li a { + color: #000; + display: block; + margin-top: 0.1rem; } + #header #logo ul.social-icons li:hover { + background: rgba(255, 255, 255, 0.5); } + #header #navbar { + font-size: 1.1rem; } + #header #navbar ul { + margin: 0; + padding: 0; + list-style: none; } + #header #navbar ul.navigation { + display: inline-block; + float: left; } + #header #navbar ul.navigation li { + float: left; + position: relative; + text-transform: uppercase; } + #header #navbar ul.navigation li a { + font-family: "novecento_sans_widedemibold", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif; + display: inline-block; + padding: 0.3rem 0.8rem; } + #header #navbar ul.navigation li a.active, #header #navbar ul.navigation li a:hover { + color: #87b672; } + #header #navbar ul.navigation li:first-child a { + padding-left: 0; } + #header #navbar ul.navigation li ul { + display: none; + padding: 0; + box-shadow: 0 0.05rem 1rem rgba(0, 0, 0, 0.15) !important; } + #header #navbar ul.navigation li ul ul { + left: 100%; + top: 0; } + #header #navbar ul.navigation li:hover > ul { + display: block; + position: absolute; + background: rgba(255, 255, 255, 0.9); + width: 10rem; } + #header #navbar ul.navigation li:hover li { + float: none; + margin: 0; + padding: 0; } + #header #navbar ul.navigation li:hover li a { + padding: 0.5rem 0.8rem; + display: block; } + #header #navbar ul.navigation li:hover li a:before, #header #navbar ul.navigation li:hover li a:after { + display: none; } + #header #navbar ul.navigation li:hover li.active > a { + background: #87b672; + color: #fff; } + #header #navbar .panel-activation { + padding: 1rem; + display: none; + font-size: 1.8rem; + cursor: pointer; + float: right; } + +.header-image.fullwidth #body { + padding-left: 0; + padding-right: 0; } + .header-image.fullwidth #body > .listing-row { + padding-left: 14rem; + padding-right: 14rem; } +.header-image .listing-row:last-child { + margin-bottom: 2rem; } +.header-image #body .flush-top { + margin-top: -16.5rem; + padding-top: 16rem; } +.header-image #breadcrumbs { + margin-top: 1rem; } +.header-image #header { + background-color: rgba(255, 255, 255, 0); + box-shadow: none; } + .header-image #header #logo h3, .header-image #header #logo a { + color: #FFFFFF; } + .header-image #header a, .header-image #header .menu-btn { + color: #FFFFFF; } + .header-image #header a:before, .header-image #header a:after { + background-color: rgba(255, 255, 255, 0.7) !important; } + .header-image #header #navbar ul.navigation ul li a { + color: #87b672; } + .header-image #header #navbar ul.navigation ul li a:hover { + color: #558042; } + +#footer { + position: absolute; + background: #333; + height: 6rem; + right: 0; + bottom: 0; + left: 0; + color: #999; + text-align: center; } + #footer a:hover { + color: #fff; } + #footer .totop { + position: absolute; + bottom: 5rem; + text-align: center; + left: 0; + right: 0; } + #footer .totop span { + font-size: 1.7rem; + line-height: 2.5rem; + background: #333; + width: 3rem; + height: 2rem; + border-radius: 0; + display: inline-block; + text-align: top; } + #footer p { + margin: 0; } + #footer p .fa { + color: #fff; } + +body { + font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; + font-weight: 400; } + +h1, h2, h3, h4, h5, h6 { + font-family: "novecento_sans_widedemibold", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif; + text-rendering: optimizeLegibility; } + +h1 { + font-size: 3.2rem; } + @media only all and (max-width: 47.938em) { + h1 { + font-size: 2.5rem; + line-height: 1.2; + margin-bottom: 2.5rem; } } + +h2 { + font-weight: normal; + text-transform: uppercase; } + @media only all and (min-width: 48em) and (max-width: 59.938em) { + h2 { + font-size: -1rem; } } + @media only all and (max-width: 47.938em) { + h2 { + font-size: -1.1rem; } } + +@media only all and (min-width: 48em) and (max-width: 59.938em) { + h3 { + font-size: -0.9rem; } } +@media only all and (max-width: 47.938em) { + h3 { + font-size: -1rem; } } + +h4 { + font-size: 1.2rem; + font-weight: normal; + text-align: center; + text-transform: uppercase; + color: #656161; } + @media only all and (min-width: 48em) and (max-width: 59.938em) { + h4 { + font-size: 1.35rem; } } + @media only all and (max-width: 47.938em) { + h4 { + font-size: 1.25rem; } } + +h1 { + text-align: center; + font-weight: normal; } + +h3 { + letter-spacing: -1px; } + +h1 + h2 { + margin: -2rem 0 2rem 0; + font-size: 1.4rem; + line-height: 1; + text-align: center; + font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; + font-weight: 300; } + @media only all and (min-width: 48em) and (max-width: 59.938em) { + h1 + h2 { + font-size: 1.6rem; } } + @media only all and (max-width: 47.938em) { + h1 + h2 { + font-size: 1.5rem; } } + +h2 + h3 { + margin: 0.5rem 0 2rem 0; + font-size: 1.3rem; + line-height: 1; + text-align: center; + font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; + font-weight: normal; } + @media only all and (min-width: 48em) and (max-width: 59.938em) { + h2 + h3 { + font-size: 1.2rem; } } + @media only all and (max-width: 47.938em) { + h2 + h3 { + font-size: 1.1rem; } } + +blockquote { + border-left: 10px solid #F0F2F4; } + blockquote p { + font-size: 1.1rem; + color: #999; } + blockquote cite { + display: block; + text-align: right; + color: #666; + font-size: 1.2rem; } + +blockquote > blockquote > blockquote { + margin: 0; } + blockquote > blockquote > blockquote p { + padding: 15px; + display: block; + font-size: 1rem; + margin-top: 0rem; + margin-bottom: 0rem; } + blockquote > blockquote > blockquote > p { + margin-left: -71px; + border-left: 10px solid #F0AD4E; + background: #FCF8F2; + color: #df8a13; } + blockquote > blockquote > blockquote > blockquote > p { + margin-left: -94px; + border-left: 10px solid #D9534F; + background: #FDF7F7; + color: #b52b27; } + blockquote > blockquote > blockquote > blockquote > blockquote > p { + margin-left: -118px; + border-left: 10px solid #5BC0DE; + background: #F4F8FA; + color: #28a1c5; } + blockquote > blockquote > blockquote > blockquote > blockquote > blockquote > p { + margin-left: -142px; + border-left: 10px solid #5CB85C; + background: #F1F9F1; + color: #3d8b3d; } + +code, +kbd, +pre, +samp { + font-family: "Inconsolata", monospace; } + +code { + background: #f9f2f4; + color: #9c1d3d; } + +pre { + padding: 2rem; + background: #f6f6f6; + border: 1px solid #CBCBCB; + border-radius: 3px; } + pre code { + color: #237794; + background: inherit; } + +hr { + border-bottom: 1px solid #CBCBCB; } + +.page-title { + margin-top: -25px; + padding: 25px; + float: left; + clear: both; + background: #87b672; + color: #fff; } + +.label { + vertical-align: middle; + background: #87b672; + border-radius: 100%; + color: #fff; + height: 1rem; + min-width: 1rem; + line-height: 1rem; + display: inline-block; + text-align: center; + font-size: 0.7rem; + font-family: "novecento_sans_widedemibold", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif; + margin-right: 0.75rem; } + +fieldset { + border: 1px solid #CBCBCB; } + +textarea, input[type="email"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="url"], input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="month"], input[type="time"], input[type="week"], select[multiple=multiple] { + background-color: white; + border: 1px solid #CBCBCB; + box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06); } + textarea:hover, input[type="email"]:hover, input[type="number"]:hover, input[type="password"]:hover, input[type="search"]:hover, input[type="tel"]:hover, input[type="text"]:hover, input[type="url"]:hover, input[type="color"]:hover, input[type="date"]:hover, input[type="datetime"]:hover, input[type="datetime-local"]:hover, input[type="month"]:hover, input[type="time"]:hover, input[type="week"]:hover, select[multiple=multiple]:hover { + border-color: #b2b2b2; } + textarea:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="url"]:focus, input[type="color"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, select[multiple=multiple]:focus { + border-color: #87b672; + box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 5px rgba(121, 173, 97, 0.7); } + +.form-field .required { + color: #F3443F; + font-size: 3rem; + line-height: 3rem; + vertical-align: top; + height: 1.5rem; + display: inline-block; } + +form .buttons { + text-align: center; } +form input { + font-weight: 400; } + +table { + border: 1px solid #d8d8d8; } + +th { + background: #e5e5e5; + padding: 0.5rem; } + +td { + padding: 0.5rem; + border: 1px solid #d8d8d8; } + +.button { + background: #fff; + color: #87b672; + border: 1px solid #87b672; + border-radius: 3px; } + .button:hover { + background: #87b672; + color: #fff; } + .button:active { + box-shadow: 0 1px 0 #679b50; } + +.button-secondary { + background: #fff; + color: #F6635E; + border: 1px solid #F6635E; + border-radius: 3px; } + .button-secondary:hover { + background: #F6635E; + color: #fff; } + .button-secondary:active { + box-shadow: 0 1px 0 #f32b24; } + +.bullets { + margin: 1.7rem 0; + margin-left: -0.85rem; + margin-right: -0.85rem; + overflow: auto; } + +.bullet { + float: left; + padding: 0 0.85rem; } + +.two-column-bullet { + width: 50%; } + @media only all and (max-width: 47.938em) { + .two-column-bullet { + width: 100%; } } + +.three-column-bullet { + width: 33.33333%; } + @media only all and (max-width: 47.938em) { + .three-column-bullet { + width: 100%; } } + +.four-column-bullet { + width: 25%; } + @media only all and (max-width: 47.938em) { + .four-column-bullet { + width: 100%; } } + +.bullet-icon { + float: left; + background: #87b672; + padding: 0.875rem; + width: 3.5rem; + height: 3.5rem; + border-radius: 50%; + color: #fff; + font-size: 1.75rem; + text-align: center; } + +.bullet-icon-1 { + background: #87b672; } + +.bullet-icon-2 { + background: #9eb672; } + +.bullet-icon-3 { + background: #b67292; } + +.bullet-content { + margin-left: 4.55rem; } + +.sb-slidebar { + background-color: #333 !important; } + +#panel { + padding-top: 1rem; + color: #ddd; } + #panel .navigation { + list-style: none; + padding: 0; } + #panel .navigation li { + border-bottom: 1px solid #3d3d3d; } + #panel .navigation li a { + color: #ddd; + display: block; + padding: 0.5rem 1rem; + font-weight: 600; } + #panel .navigation li a:hover { + color: white; + background-color: #262626; } + #panel .navigation li a:last-child { + border-bottom: 0; } + #panel .navigation li.active > a { + background: #fff; + color: #9A9898; } + #panel .navigation li.active > a:hover { + color: #9A9898; } + #panel .navigation li:first-child { + border-top: 1px solid #3d3d3d; } + #panel .navigation li ul { + list-style: none; + padding: 0; } + #panel .navigation li ul li { + border: 0 !important; } + #panel .navigation li ul li a { + color: #c4c4c4; + padding: 0.2rem 1rem 0.2rem 2rem; + font-size: 0.9rem; } + #panel .navigation li ul li li a { + padding-left: 3rem; } + #panel .navigation li ul li li a li a { + padding-left: 4rem; } + #panel .navigation li ul li.active > a { + background: #ccc; } + +.blog-header { + padding-top: 2rem; + padding-bottom: 2rem; } + .blog-header.blog-header-image { + background-size: cover; + background-position: center; } + .blog-header.blog-header-image h1, .blog-header.blog-header-image h2 { + color: #FFFFFF; } + .blog-header h1 { + font-size: 4rem; + margin-top: 0; } + @media only all and (min-width: 48em) and (max-width: 59.938em) { + .blog-header h1 { + font-size: 3rem; } } + @media only all and (max-width: 47.938em) { + .blog-header h1 { + font-size: 2.5rem; + line-height: 1.2; + margin-bottom: 2.5rem; } } + .blog-header + .blog-content { + padding-top: 3rem; } + +.list-item { + border-bottom: 1px solid #EEEEEE; + margin-bottom: 3rem; } + .list-item:last-child { + border-bottom: 0; } + .list-item .list-blog-header { + position: relative; } + .list-item .list-blog-header h4 { + margin-bottom: 0.5rem; } + .list-item .list-blog-header h4 a { + color: #9A9898; } + .list-item .list-blog-header h4 a:hover { + color: #87b672; } + .list-item .list-blog-header img { + display: block; + margin-top: 1rem; + border-radius: 0; } + .list-item .list-blog-date { + float: right; + text-align: center; } + .list-item .list-blog-date span { + display: block; + font-size: 1.75rem; + font-weight: 600; + line-height: 110%; } + .list-item .list-blog-date em { + display: block; + border-top: 1px solid #EEEEEE; + font-style: normal; + text-transform: uppercase; } + +.blog-content-item .list-blog-padding > p:nth-child(2) { + font-size: 1.2rem; } + +.tags a { + display: inline-block; + font-size: 0.8rem; + border: 1px solid #87b672; + border-radius: 0; + padding: 0.1rem 0.4rem; + margin-bottom: 0.2rem; + text-transform: uppercase; } + +.archives, .related-pages { + padding: 0; + list-style: none; } + .archives li, .related-pages li { + border-bottom: 1px solid #EEEEEE; + line-height: 2rem; } + .archives li:last-child, .related-pages li:last-child { + border-bottom: 0; } + +.related-pages li a { + display: block; } +.related-pages .score { + display: block; + float: right; + color: #999; + font-size: 85%; } + +.syndicate a { + margin-bottom: 1rem; } + +div#breadcrumbs { + padding-left: 0; } + @media only all and (max-width: 47.938em) { + div#breadcrumbs { + display: none; } } + +#sidebar { + padding-left: 3rem; } + @media only all and (max-width: 47.938em) { + #sidebar { + padding-left: 0; } } + #sidebar .sidebar-content { + margin-bottom: 3rem; } + #sidebar .sidebar-content h4 { + margin-bottom: 1rem; } + #sidebar .sidebar-content p, #sidebar .sidebar-content ul { + margin-top: 1rem; } + +ul.pagination { + margin: 0 0 3rem; + text-align: center; } + +.prev-next { + margin-top: 5rem; + text-align: center; } + +#error { + text-align: center; + display: flex; + align-items: center; + justify-content: center; + height: 100%; + padding-bottom: 6rem; } + #error h1 { + font-size: 5rem; } + #error p { + margin: 1rem 0; } + +.simplesearch h1 { + margin-bottom: 0; } +.simplesearch .center { + text-align: center; } +.simplesearch input { + display: inline-block; + max-width: 30rem; + font-size: 2rem; } +.simplesearch .search-image { + margin-top: 1rem; } + .simplesearch .search-image img { + border-radius: 4px; } + @media only all and (max-width: 47.938em) { + .simplesearch .search-image img { + display: none; } } +@media only all and (max-width: 47.938em) { + .simplesearch .search-item { + margin-left: 0; } } +.simplesearch .search-details { + float: right; + margin-top: -2.5rem; + font-weight: bold; + font-size: 1rem; + color: #cdcccc; } + @media only all and (max-width: 47.938em) { + .simplesearch .search-details { + float: none; + margin-top: -0.2rem; + margin-bottom: 1rem; } } +.simplesearch hr { + border-bottom: 1px solid #eee; } + +.grav-lightslider .lSSlideOuter .lSPager.lSpg > li a { + z-index: 1; } + +#body > script:first-child + .grav-lightslider { + margin-top: -3rem; } + +.modular.header-image #header { + background-color: rgba(255, 255, 255, 0); + box-shadow: none; } + .modular.header-image #header #logo h3 { + color: #FFFFFF; } + .modular.header-image #header #navbar a { + color: #FFFFFF; } +.modular .slideme { + height: 17rem !important; } +.modular .showcase { + position: relative; + z-index: 1; + padding-bottom: 10rem; + background-color: #666; + background-size: cover; + background-position: center; + text-align: center; + color: #FFFFFF; } + .modular .showcase h1 { + font-size: 2.5rem; + margin-top: 0; } + @media only all and (min-width: 48em) and (max-width: 59.938em) { + .modular .showcase h1 { + font-size: 3rem; } } + @media only all and (max-width: 47.938em) { + .modular .showcase h1 { + font-size: 2.5rem; + line-height: 1.2; + margin-bottom: 2.5rem; } } + .modular .showcase h1 strong, .modular .showcase h1 label, .modular .showcase h1 th { + color: #87b672; } + .modular .showcase h2 { + text-transform: none; } + .modular .showcase .button { + color: #FFFFFF; + font-family: "novecento_sans_widedemibold", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif; + padding: 0.3rem 1rem; + background: rgba(255, 255, 255, 0); + border: 2px solid #FFFFFF; + border-radius: 0; + box-shadow: none; + font-size: 1rem; } + .modular .showcase .button:hover { + background: rgba(255, 255, 255, 0.2); } +.modular .slideme_container .arrow { + position: absolute; + display: block; + width: 3.7rem; + height: 3.7rem; + cursor: pointer; + z-index: 50; + text-align: center; + line-height: 3.8rem; + background: #fff; + top: 10%; + border-radius: 100%; + font-size: 2.5rem; + opacity: 0.5; + color: #000; } + .modular .slideme_container .arrow:hover { + opacity: 1; } + .modular .slideme_container .arrow.prev { + left: 4rem; } + .modular .slideme_container .arrow.next { + right: 4rem; } + .modular .slideme_container .arrow:disabled { + opacity: 0.1; } +.modular .slideme_container .arrow.next:before { + content: '\f054'; + font-family: FontAwesome; + margin-left: 0.4rem; } +.modular .slideme_container .arrow.prev:before { + content: '\f053'; + font-family: FontAwesome; + margin-right: 0.5rem; } +.modular .slideme_container .pagination { + text-align: center; + z-index: 10; + position: absolute; + left: 0; + right: 0; + vertical-align: middle; + bottom: 0; } + .modular .slideme_container .pagination .numbers li { + -webkit-transition-duration: 0.2s; + -moz-transition-duration: 0.2s; + transition-duration: 0.2s; + background: #fff; + width: 0.5rem; + height: 0.5rem; + display: inline-block; + border-radius: 100%; + cursor: pointer; + margin: 0 0.2rem; + vertical-align: middle; } + .modular .slideme_container .pagination .numbers li.current { + width: 1rem; + height: 1rem; } + +.modular .features { + padding: 6rem 0; + padding-bottom: 1rem; + text-align: center; } + .modular .features:after { + content: ""; + display: table; + clear: both; } + .modular .features h2 { + margin: 0; + line-height: 100%; + color: #656161; } + .modular .features p { + margin: 1rem 0; } + @media only all and (max-width: 47.938em) { + .modular .features p { + font-size: 1rem; } } + .modular .features .button { + background-color: #87b672; + color: #FFFFFF; + font-family: "novecento_sans_widedemibold", "Helvetica", "Tahoma", "Geneva", "Arial", sans-serif; + border-radius: 0; + box-shadow: none; + font-size: 1rem; } + .modular .features .feature-items { + margin-top: 2rem; } + @supports not (flex-wrap: wrap) { + .modular .features .feature-items { + overflow: hidden; } } + .modular .features .feature { + display: block; + float: left; + width: 25%; + vertical-align: top; + margin-top: 2rem; + margin-bottom: 1rem; } + @media only all and (min-width: 30.063em) and (max-width: 47.938em) { + .modular .features .feature { + margin-top: 1rem; + width: 50%; } } + @media only all and (max-width: 30em) { + .modular .features .feature { + margin-top: 1rem; + width: 100%; } } + .modular .features .feature i.fa { + font-size: 2rem; } + .modular .features .feature h4 { + margin: 0; + font-size: 1.1rem; } + .modular .features .feature p { + display: inline-block; + font-size: 1rem; + margin: 0.2rem 0 1rem; } + .modular .features.big { + text-align: center; } + .modular .features.big .feature { + width: 33.33%; } + @media only all and (max-width: 30em) { + .modular .features.big .feature { + margin-top: 1rem; + width: 100%; } } + .modular .features.big i.fa { + font-size: 4.5rem; + margin-bottom: 1.5rem; } + .modular .features.big .feature-content { + padding-right: 2rem; } + .modular .features.big .feature-content.icon-offset { + margin-left: 1rem; } + .modular .features.big .feature-content h4 { + font-size: 1.2rem; } + .modular .features.big .feature-content p { + padding: 0; } + +.callout { + background: #EEEEEE; + padding: 2rem 0.938rem; + padding-top: 2rem; + padding-bottom: 0; + text-align: center; + overflow: hidden; + clear: both; + position: relative; } + .callout .callout-line { + background: #fff; + width: 100%; + height: 7rem; + position: absolute; + left: 0; + bottom: 0; + z-index: 0; } + .callout .notebook { + float: left; + text-align: left; + width: 33.33%; + position: relative; + z-index: 10; } + .callout .notebook .screen:before { + content: ""; + position: absolute; + border-radius: 50%; + background: #E5EBED; + height: 0.25rem; + width: 0.25rem; + margin: 0.3125rem 0 0 8.625rem; } + .callout .notebook .screen { + background: #464C51; + border-radius: 0.5rem 0.5rem 0 0; + height: 11.72rem; + width: 18.28rem; + margin: 0 auto; } + .callout .notebook .screen .screen-content { + height: 10.1rem; + width: 16.73rem; + position: absolute; + z-index: 1; + margin-top: 0.8rem; + margin-left: 0.8rem; + background-size: cover; + background-repeat: no-repeat; } + .callout .notebook .screen .screen-content-hover { + height: 10.1rem; + width: 16.73rem; + position: absolute; + z-index: 2; + opacity: 0; + margin-top: 0.8rem; + margin-left: 0.8rem; + background-color: #87b672; } + .callout .notebook .screen .screen-content-hover .fa-plus-square { + font-size: 5rem; + color: #464C51; + margin-top: 2.5rem; + margin-left: 5.9rem; } + .callout .notebook .screen .screen-content-hover:hover { + opacity: 0.8; } + .callout .notebook .screen:after { + content: ""; + position: absolute; + background: #161B21; + height: 10rem; + width: 16.63rem; + border-radius: 0.125rem; + margin: 0.875rem 0 0 0.8125rem; + transition: background 1s ease-in-out; } + .callout .notebook .keyboard { + background: #DFDCDC; + border-radius: 0 0 0.3125rem 0.3125rem; + height: 1.25rem; + width: 21.88rem; + margin: 0 auto; } + .callout .notebook .keyboard:after { + content: ""; + position: absolute; + background: #757979; + height: 0.375rem; + width: 3.125rem; + margin: 0 0 0 9.375rem; + border-radius: 0 0 0.5rem 0.5rem; } + .callout .keyboard:before { + content: ""; + position: absolute; + height: 0.5rem; + width: 23.13rem; + margin: 0.4375rem 0 0 -0.625rem; + z-index: -1; + border-radius: 100%; } + +.modular .modular-row:last-child { + margin-bottom: 2rem; } + +/*# sourceMappingURL=template.css.map */ diff --git a/css-compiled/template.css.map b/css-compiled/template.css.map new file mode 100644 index 0000000..0126fd0 --- /dev/null +++ b/css-compiled/template.css.map @@ -0,0 +1,7 @@ +{ +"version": 3, +"mappings": "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", +"sources": ["../scss/template/_fonts.scss","../scss/nucleus/mixins/_utilities.scss","../scss/vendor/bourbon/addons/_prefixer.scss","../scss/template/modules/_buttons.scss","../scss/template/_core.scss","../scss/configuration/template/_colors.scss","../scss/configuration/template/_bullets.scss","../scss/configuration/template/_variables.scss","../scss/template/_extensions.scss","../scss/nucleus/mixins/_breakpoints.scss","../scss/template/_header.scss","../scss/configuration/template/_typography.scss","../scss/template/_footer.scss","../scss/template/_typography.scss","../scss/configuration/nucleus/_typography.scss","../scss/template/_forms.scss","../scss/template/_tables.scss","../scss/template/_buttons.scss","../scss/template/_bullets.scss","../scss/template/_panel.scss","../scss/template/_blog.scss","../scss/template/_errors.scss","../scss/template/_simplesearch.scss","../scss/template/_custom.scss","../scss/template/modular/_showcase.scss","../scss/template/modular/_features.scss","../scss/vendor/bourbon/addons/_clearfix.scss","../scss/template/modular/_text.scss","../scss/template/modular/_all.scss"], +"names": [], +"file": "template.css" +} \ No newline at end of file diff --git a/css/font-awesome.min.css b/css/font-awesome.min.css new file mode 100644 index 0000000..3d920fc --- /dev/null +++ b/css/font-awesome.min.css @@ -0,0 +1,4 @@ +/*! + * Font Awesome 4.1.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.1.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.1.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff?v=4.1.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.1.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.1.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:normal;line-height:1;-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:spin 2s infinite linear;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;animation:spin 2s infinite linear}@-moz-keyframes spin{0%{-moz-transform:rotate(0deg)}100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg)}100%{-o-transform:rotate(359deg)}}@keyframes 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);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-moz-transform:scale(-1, 1);-ms-transform:scale(-1, 1);-o-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);-moz-transform:scale(1, -1);-ms-transform:scale(1, -1);-o-transform:scale(1, -1);transform:scale(1, -1)}.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-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{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-square:before,.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-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"} \ No newline at end of file diff --git a/css/nucleus-ie10.css b/css/nucleus-ie10.css new file mode 100644 index 0000000..c1d2f2a --- /dev/null +++ b/css/nucleus-ie10.css @@ -0,0 +1,24 @@ +button { + overflow: visible; +} + +input[type="checkbox"], +input[type="radio"] { + box-sizing: border-box; + padding: 0; +} + +.fixed-blocks { + display: block; +} + +.feature-items { + overflow: hidden; +} + +.modular .features .feature { + margin: 1%; + display: inline-block; + vertical-align: top; + float: none; +} \ No newline at end of file diff --git a/css/nucleus-ie9.css b/css/nucleus-ie9.css new file mode 100644 index 0000000..46df376 --- /dev/null +++ b/css/nucleus-ie9.css @@ -0,0 +1,62 @@ +/* IE9 Resets and Normalization */ +article, +aside, +details, +figcaption, +figure, +footer, +header, +hgroup, +main, +nav, +section, +summary { + display: block; +} + +audio, +canvas, +progress, +video { + display: inline-block; +} + +[hidden], +template { + display: none; +} + +abbr[title] { + border-bottom: 1px dotted; +} + +img { + border: 0; +} + +svg:not(:root) { + overflow: hidden; +} + +figure { + margin: 1em 40px; +} + +button { + overflow: visible; +} + +input[type="checkbox"], +input[type="radio"] { + box-sizing: border-box; + padding: 0; +} + +legend { + border: 0; + padding: 0; +} + +textarea { + overflow: auto; +} \ No newline at end of file diff --git a/css/prism.css b/css/prism.css new file mode 100644 index 0000000..00005b3 --- /dev/null +++ b/css/prism.css @@ -0,0 +1,121 @@ +/* http://prismjs.com/download.html?themes=prism&languages=markup+css+clike+javascript */ +/** + * prism.js default theme for JavaScript, CSS and HTML + * Based on dabblet (http://dabblet.com) + * @author Lea Verou + */ + +code[class*="language-"], +pre[class*="language-"] { + color: black; + text-shadow: 0 1px white; + direction: ltr; + text-align: left; + white-space: pre; + word-spacing: normal; + word-break: normal; + + + -moz-tab-size: 4; + -o-tab-size: 4; + tab-size: 4; + + -webkit-hyphens: none; + -moz-hyphens: none; + -ms-hyphens: none; + hyphens: none; +} + +pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection, +code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection { + text-shadow: none; + background: #b3d4fc; +} + +pre[class*="language-"]::selection, pre[class*="language-"] ::selection, +code[class*="language-"]::selection, code[class*="language-"] ::selection { + text-shadow: none; + background: #b3d4fc; +} + +@media print { + code[class*="language-"], + pre[class*="language-"] { + text-shadow: none; + } +} + +/* Code blocks */ +pre[class*="language-"] { + padding: 1em; + margin: .5em 0; + overflow: auto; +} + +/* Inline code */ +:not(pre) > code[class*="language-"] { + padding: .1em; + border-radius: .3em; +} + +.token.comment, +.token.prolog, +.token.doctype, +.token.cdata { + color: slategray; +} + +.token.punctuation { + color: #999; +} + +.namespace { + opacity: .7; +} + +.token.property, +.token.tag, +.token.boolean, +.token.number, +.token.constant, +.token.symbol { + color: #905; +} + +.token.selector, +.token.attr-name, +.token.string, +.token.builtin { + color: #690; +} + +.token.operator, +.token.entity, +.token.url, +.language-css .token.string, +.style .token.string, +.token.variable { + color: #a67f59; + background: hsla(0,0%,100%,.5); +} + +.token.atrule, +.token.attr-value, +.token.keyword { + color: #07a; +} + + +.token.regex, +.token.important { + color: #e90; +} + +.token.important { + font-weight: bold; +} + +.token.entity { + cursor: help; +} + diff --git a/css/pure-0.5.0/grids-min.css b/css/pure-0.5.0/grids-min.css new file mode 100644 index 0000000..82bf816 --- /dev/null +++ b/css/pure-0.5.0/grids-min.css @@ -0,0 +1,15 @@ +/*! +Pure v0.5.0-rc-1 +Copyright 2014 Yahoo! Inc. All rights reserved. +Licensed under the BSD License. +https://github.com/yui/pure/blob/master/LICENSE.md +*/ +.pure-g{letter-spacing:-.31em;*letter-spacing:normal;*word-spacing:-.43em;text-rendering:optimizespeed;font-family:FreeSans,Arimo,"Droid Sans",Helvetica,Arial,sans-serif;display:-webkit-flex;-webkit-flex-flow:row wrap;display:-ms-flexbox;-ms-flex-flow:row wrap}.opera-only :-o-prefocus,.pure-g{word-spacing:-.43em}.pure-u{display:inline-block;*display:inline;zoom:1;letter-spacing:normal;word-spacing:normal;vertical-align:top;text-rendering:auto}.pure-g [class *="pure-u"]{font-family:sans-serif}.pure-u-1,.pure-u-1-1,.pure-u-1-2,.pure-u-1-3,.pure-u-2-3,.pure-u-1-4,.pure-u-3-4,.pure-u-1-5,.pure-u-2-5,.pure-u-3-5,.pure-u-4-5,.pure-u-5-5,.pure-u-1-6,.pure-u-5-6,.pure-u-1-8,.pure-u-3-8,.pure-u-5-8,.pure-u-7-8,.pure-u-1-12,.pure-u-5-12,.pure-u-7-12,.pure-u-11-12,.pure-u-1-24,.pure-u-2-24,.pure-u-3-24,.pure-u-4-24,.pure-u-5-24,.pure-u-6-24,.pure-u-7-24,.pure-u-8-24,.pure-u-9-24,.pure-u-10-24,.pure-u-11-24,.pure-u-12-24,.pure-u-13-24,.pure-u-14-24,.pure-u-15-24,.pure-u-16-24,.pure-u-17-24,.pure-u-18-24,.pure-u-19-24,.pure-u-20-24,.pure-u-21-24,.pure-u-22-24,.pure-u-23-24,.pure-u-24-24{display:inline-block;*display:inline;zoom:1;letter-spacing:normal;word-spacing:normal;vertical-align:top;text-rendering:auto}.pure-u-1-24{width:4.1667%;*width:4.1357%}.pure-u-1-12,.pure-u-2-24{width:8.3333%;*width:8.3023%}.pure-u-1-8,.pure-u-3-24{width:12.5%;*width:12.469%}.pure-u-1-6,.pure-u-4-24{width:16.6667%;*width:16.6357%}.pure-u-1-5{width:20%;*width:19.969%}.pure-u-5-24{width:20.8333%;*width:20.8023%}.pure-u-1-4,.pure-u-6-24{width:25%;*width:24.969%}.pure-u-7-24{width:29.1667%;*width:29.1357%}.pure-u-1-3,.pure-u-8-24{width:33.3333%;*width:33.3023%}.pure-u-3-8,.pure-u-9-24{width:37.5%;*width:37.469%}.pure-u-2-5{width:40%;*width:39.969%}.pure-u-5-12,.pure-u-10-24{width:41.6667%;*width:41.6357%}.pure-u-11-24{width:45.8333%;*width:45.8023%}.pure-u-1-2,.pure-u-12-24{width:50%;*width:49.969%}.pure-u-13-24{width:54.1667%;*width:54.1357%}.pure-u-7-12,.pure-u-14-24{width:58.3333%;*width:58.3023%}.pure-u-3-5{width:60%;*width:59.969%}.pure-u-5-8,.pure-u-15-24{width:62.5%;*width:62.469%}.pure-u-2-3,.pure-u-16-24{width:66.6667%;*width:66.6357%}.pure-u-17-24{width:70.8333%;*width:70.8023%}.pure-u-3-4,.pure-u-18-24{width:75%;*width:74.969%}.pure-u-19-24{width:79.1667%;*width:79.1357%}.pure-u-4-5{width:80%;*width:79.969%}.pure-u-5-6,.pure-u-20-24{width:83.3333%;*width:83.3023%}.pure-u-7-8,.pure-u-21-24{width:87.5%;*width:87.469%}.pure-u-11-12,.pure-u-22-24{width:91.6667%;*width:91.6357%}.pure-u-23-24{width:95.8333%;*width:95.8023%}.pure-u-1,.pure-u-1-1,.pure-u-5-5,.pure-u-24-24{width:100%} + +/* Custom */ +[class *="pure-u"] {display:inline-block;*display:inline;zoom:1;letter-spacing:normal;word-spacing:normal;vertical-align:top;text-rendering:auto;} +.pure-u-1-7 {width: 14.285%;}.pure-u-2-7 {width: 28.571%;}.pure-u-3-7 {width: 42.857%;}.pure-u-4-7 {width: 57.142%;}.pure-u-5-7 {width: 71.428%;}.pure-u-6-7 {width: 85.714%;} +.pure-u-1-9 {width: 11.111%;}.pure-u-2-9 {width: 22.222%;}.pure-u-3-9 {width: 33.333%;}.pure-u-4-9 {width: 44.444%;}.pure-u-5-9 {width: 55.555%;}.pure-u-6-9 {width: 66.666%;}.pure-u-7-9 {width: 77.777%;}.pure-u-8-9 {width: 88.888%;} +.pure-u-1-10 {width: 10%;}.pure-u-2-10 {width: 20%;}.pure-u-3-10 {width: 30%;}.pure-u-4-10 {width: 40%;}.pure-u-5-10 {width: 50%;}.pure-u-6-10 {width: 60%;}.pure-u-7-10 {width: 70%;}.pure-u-8-10 {width: 80%;}.pure-u-9-10 {width: 90%;} + +.pure-u-1-11 {width: 9.090%;}.pure-u-2-11 {width: 18.181%;}.pure-u-3-11 {width: 27.272%;}.pure-u-4-11 {width: 36.363%;}.pure-u-5-11 {width: 45.454%;}.pure-u-6-11 {width: 54.545%;}.pure-u-7-11 {width: 63.636%;}.pure-u-8-11 {width: 72.727%;}.pure-u-9-11 {width: 81.818%;}.pure-u-10-11 {width: 90.909%;} \ No newline at end of file diff --git a/css/slidebars.min.css b/css/slidebars.min.css new file mode 100644 index 0000000..41af739 --- /dev/null +++ b/css/slidebars.min.css @@ -0,0 +1,2 @@ +/* Slidebars 0.10.2 (http://plugins.adchsm.me/slidebars/) written by Adam Smith (http://www.adchsm.me/) released under MIT License (http://plugins.adchsm.me/slidebars/license.txt) */ +#sb-site,.sb-site-container,.sb-slidebar,body,html{margin:0;padding:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}body,html{width:100%;overflow-x:hidden}html{height:100%}body{min-height:100%;height:auto;position:relative}html.sb-scroll-lock.sb-active:not(.sb-static){overflow:hidden}#sb-site,.sb-site-container{width:100%;position:relative;z-index:1;background-color:#fff}.sb-slidebar{height:100%;overflow-y:auto;position:fixed;top:0;z-index:0;display:none;background-color:#222;-webkit-transform:translate(0px)}.sb-left{left:0}.sb-right{right:0}.sb-slidebar.sb-static,html.sb-static .sb-slidebar{position:absolute}.sb-slidebar.sb-active{display:block}.sb-style-overlay{z-index:9999}.sb-momentum-scrolling{-webkit-overflow-scrolling:touch}.sb-slidebar{width:30%}.sb-width-thin{width:15%}.sb-width-wide{width:45%}@media (max-width:480px){.sb-slidebar{width:70%}.sb-width-thin{width:55%}.sb-width-wide{width:85%}}@media (min-width:481px){.sb-slidebar{width:55%}.sb-width-thin{width:40%}.sb-width-wide{width:70%}}@media (min-width:768px){.sb-slidebar{width:40%}.sb-width-thin{width:25%}.sb-width-wide{width:55%}}@media (min-width:992px){.sb-slidebar{width:30%}.sb-width-thin{width:15%}.sb-width-wide{width:45%}}@media (min-width:1200px){.sb-slidebar{width:20%}.sb-width-thin{width:5%}.sb-width-wide{width:35%}}#sb-site,.sb-site-container,.sb-slide,.sb-slidebar{-webkit-transition:-webkit-transform 400ms ease;-moz-transition:-moz-transform 400ms ease;-o-transition:-o-transform 400ms ease;transition:transform 400ms ease;-webkit-transition-property:-webkit-transform,left,right;}.sb-hide{display:none} diff --git a/css/slideme.css b/css/slideme.css new file mode 100644 index 0000000..7e8447c --- /dev/null +++ b/css/slideme.css @@ -0,0 +1,294 @@ +.slideme_container { + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} + +.slideme_container ul, +.slideme_container ol, +.slideme { + margin: 0; + padding: 0; +} + +.slideme_container li, +.slideme > li { + display: block; + list-style: none; +} + +.slideme_container, +.slideme { + position: relative; +} +.slideme_container ol img, +.slideme > * img{ + display: block; +} + +.slideme > *:first-child { + opacity: 1; + position: relative; + z-index: 5; +} + +.slideme > *, +.slideme_container .slideme > * { + left: 0; + position: absolute; + top: 0; + width: 100%; + z-index: 0; +} + +.slideme > * { + -webkit-transform: translate3d(0, 0, 0); + -moz-transform: translate3d(0, 0, 0); + -ms-transform: translate3d(0, 0, 0); + -o-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); +} + +.slideme_container .slideme > *.current { + opacity: 1; + z-index: 5; +} + +.single button.arrow, +.single .pagination + { + display: none; +} + +/* + * slide + */ + +.slideme-slide > *, +.slideme_container .slideme-slide > * { + visibility: hidden; + z-index: 0; +} + +.slideme-slide > .current, +.slideme-slide > .next { + visibility: visible; + z-index: 5; +} + +.slideme-slide > .after { + left: 100%; +} + +.slideme-slide > .before { + left: -100%; +} + +.slideme-slide.nextClicked > .current, +.slideme-slide.nextClicked > .next, +.slideme-slide.prevClicked > .current, +.slideme-slide.prevClicked > .next { + -webkit-transition: left 0.5s cubic-bezier(0.47, 0, 0.745, 0.715); + -moz-transition: left 0.5s cubic-bezier(0.47, 0, 0.745, 0.715); + -ms-transition: left 0.5s cubic-bezier(0.47, 0, 0.745, 0.715); + -o-transition: left 0.5s cubic-bezier(0.47, 0, 0.745, 0.715); + transition: left 0.5s cubic-bezier(0.47, 0, 0.745, 0.715); +} + +.slideme-slide.prevClicked > .next, +.slideme-slide.nextClicked > .next { + left: 0; +} + +.slideme-slide.prevClicked > .current { + left: 100%; +} + +.slideme-slide.nextClicked > .current { + left: -100%; +} + +/* + * zoom + */ + +.slideme-zoom > *, +.slideme_container .slideme-zoom > * { + opacity: 0; + visibility: hidden; +} + +.slideme-zoom > .current { + visibility: visible; + z-index: 4; +} + +.slideme-zoom > .next { + visibility: visible; + z-index: 5; +} + +.slideme-zoom > .before, +.slideme-zoom.nextClicked > .current { + -webkit-transform: scale(1.4); + -moz-transform: scale(1.4); + -ms-transform: scale(1.4); + -o-transform: scale(1.4); + transform: scale(1.4); +} + +.slideme-zoom > .after, +.slideme-zoom.nextClicked > .next, +.slideme-zoom.prevClicked > .current { + -webkit-transform: scale(1); + -moz-transform: scale(1); + -ms-transform: scale(1); + -o-transform: scale(1); + transform: scale(1); + z-index: 5; +} + +.slideme-zoom > .before { + z-index: 6; +} + +.slideme-zoom.nextClicked > .current, +.slideme-zoom.nextClicked > .next, +.slideme-zoom.prevClicked > .current, +.slideme-zoom.prevClicked > .next { + -webkit-transition: opacity 0.35s cubic-bezier(0.47, 0, 0.745, 0.715), -webkit-transform 0.35s cubic-bezier(0.47, 0, 0.745, 0.715); + -moz-transition: opacity 0.35s cubic-bezier(0.47, 0, 0.745, 0.715), -moz-transform 0.35s cubic-bezier(0.47, 0, 0.745, 0.715); + -ms-transition: opacity 0.35s cubic-bezier(0.47, 0, 0.745, 0.715), -ms-transform 0.35s cubic-bezier(0.47, 0, 0.745, 0.715); + -o-transition: opacity 0.35s cubic-bezier(0.47, 0, 0.745, 0.715), -o-transform 0.35s cubic-bezier(0.47, 0, 0.745, 0.715); + transition: opacity 0.35s cubic-bezier(0.47, 0, 0.745, 0.715), transform 0.35s cubic-bezier(0.47, 0, 0.745, 0.715); +} + +.slideme-zoom.nextClicked > .current { + opacity: 0; +} + +.slideme-zoom.nextClicked > .after { + opacity: 1; +} + +.slideme-zoom.prevClicked > .next { + -webkit-transform: scale(1); + -moz-transform: scale(1); + -ms-transform: scale(1); + -o-transform: scale(1); + transform: scale(1); + opacity: 1; + visibility: visible; +} + +/* + * fade + */ + +.slideme-fade > *, +.slideme_container .slideme-fade > * { + opacity: 0; + z-index: 0; +} + +.slideme-fade.nextClicked > .current, +.slideme-fade.nextClicked > .next, +.slideme-fade.prevClicked > .current, +.slideme-fade.prevClicked > .next { + -webkit-transition: opacity 0.7s cubic-bezier(0.47, 0, 0.745, 0.715); + -moz-transition: opacity 0.7s cubic-bezier(0.47, 0, 0.745, 0.715); + -ms-transition: opacity 0.7s cubic-bezier(0.47, 0, 0.745, 0.715); + -o-transition: opacity 0.7s cubic-bezier(0.47, 0, 0.745, 0.715); + transition: opacity 0.7s cubic-bezier(0.47, 0, 0.745, 0.715); +} + +.slideme-fade.nextClicked > .current, +.slideme-fade.prevClicked > .current { + opacity: 0; + z-index: 5; +} + +.slideme-fade.nextClicked > .next, +.slideme-fade.prevClicked > .next { + opacity: 1; + z-index: 4; +} + +/* + * page + */ + +.slideme-page > .current { + visibility: visible; + z-index: 4; +} + +.slideme-page > .next { + visibility: visible; + z-index: 6; +} + +.slideme-page > .after { + left: 100%; +} + +.slideme-page > .before { + left: -100%; +} + +.slideme-page.nextClicked > .current, +.slideme-page.prevClicked > .current { + -webkit-transition: visibility 0.5s cubic-bezier(0.47, 0, 0.745, 0.715); + -moz-transition: visibility 0.5s cubic-bezier(0.47, 0, 0.745, 0.715); + -ms-transition: visibility 0.5s cubic-bezier(0.47, 0, 0.745, 0.715); + -o-transition: visibility 0.5s cubic-bezier(0.47, 0, 0.745, 0.715); + transition: visibility 0.5s cubic-bezier(0.47, 0, 0.745, 0.715); + visibility: hidden; +} + +.slideme-page.nextClicked > .next, +.slideme-page.prevClicked > .next { + -webkit-transition: left 0.5s cubic-bezier(0.47, 0, 0.745, 0.715); + -moz-transition: left 0.5s cubic-bezier(0.47, 0, 0.745, 0.715); + -ms-transition: left 0.5s cubic-bezier(0.47, 0, 0.745, 0.715); + -o-transition: left 0.5s cubic-bezier(0.47, 0, 0.745, 0.715); + transition: left 0.5s cubic-bezier(0.47, 0, 0.745, 0.715); + left: 0; +} + +/* + * SLIDEME TOUCH + */ + +.slideme-touch { + -webkit-overflow-scrolling: touch; + font-size: 0; + height: 100%; + overflow: hidden; + overflow-y: hidden; + overflow-x: scroll; + white-space: nowrap; + width: 100%; +} + +.slideme-touch.snapping { + overflow-x: hidden; +} + +.slideme_container .slideme-touch > * { + -webkit-transform: translateZ(0px); + display: inline-block; + height: 100%; + position: relative; + width: 100%; +} + +.slideme_container .slideme-touch > * img { + display: block; + min-height: 1px; + min-width: 1px; + width: 100%; +} \ No newline at end of file diff --git a/deliver.php b/deliver.php new file mode 100644 index 0000000..b682c61 --- /dev/null +++ b/deliver.php @@ -0,0 +1,9 @@ + + + + + + + + + + +How to Use Webfonts + + + + +
+ +
+
+
+

Installing Webfonts

+ +

Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.

+ +

1. Upload your webfonts

+

You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.

+ +

2. Include the webfont stylesheet

+

A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the Fontspring blog post about it. The code for it is as follows:

+ + + +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} + +

We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:

+ <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + +

3. Modify your own stylesheet

+

To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:

+p { font-family: 'MyWebFont', Arial, sans-serif; } + +

4. Test

+

Getting webfonts to work cross-browser can be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.

+
+ + +
+ +
+ +
+ + + + diff --git a/fonts/Novecento sans wide Medium-Webfont/Webfonts/novecentosanswide_medium_polish/Novecentosanswide-Medium-demo.html b/fonts/Novecento sans wide Medium-Webfont/Webfonts/novecentosanswide_medium_polish/Novecentosanswide-Medium-demo.html new file mode 100755 index 0000000..2bb2d81 --- /dev/null +++ b/fonts/Novecento sans wide Medium-Webfont/Webfonts/novecentosanswide_medium_polish/Novecentosanswide-Medium-demo.html @@ -0,0 +1,521 @@ + + + + + + + + + + + + +Novecento sans wide Medium Specimen + + + + + + +
+ + + +
+ + +
+ +
+
+
AaBb
+
+
+ +
+
A​B​C​D​E​F​G​H​I​J​K​L​M​N​O​P​Q​R​S​T​U​V​W​X​Y​Z​a​b​c​d​e​f​g​h​i​j​k​l​m​n​o​p​q​r​s​t​u​v​w​x​y​z​1​2​3​4​5​6​7​8​9​0​&​.​,​?​!​@​(​)​#​$​%​*​+​-​=​:​;
+
+
+
+ + + + + + + + + + + + + + + + +
10abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
11abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
12abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
13abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
14abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
16abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
18abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
20abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
24abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
30abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
36abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
48abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
60abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
72abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
90abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ
+ +
+ +
+ + + +
+ + +
+
body
body
body
body
+
+ bodyNovecento sans wide Medium +
+
+ bodyArial +
+
+ bodyVerdana +
+
+ bodyGeorgia +
+ + + +
+ + +
+ +
+

10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+ +
+
+
+

14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+ +
+ +
+ +
+
+

20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+
+

24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+ +
+ +
+ +
+
+

30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+
+ +
+ + + +
+
+

10.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

11.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

12.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

13.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+ +
+ +
+
+

14.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

16.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+

18.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+ +
+
+ +
+ +
+
+

20.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+
+

24.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+ +
+ +
+ +
+
+

30.Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.

+
+
+ +
+ + + + +
+ +
+ +
+ +
+

Lorem Ipsum Dolor

+

Etiam porta sem malesuada magna mollis euismod

+ + +
+
+
+
+

Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.

+ + +

Pellentesque ornare sem

+ +

Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit.

+ +

Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.

+ +

Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur.

+ +

Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla.

+ +

Cras mattis consectetur

+ +

Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum.

+ +

Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.

+
+ + +
+ +
+ + + + + + +
+
+
+ +

Language Support

+

The subset of Novecento sans wide Medium in this kit supports the following languages:
+ + Albanian, Alsatian, Aragonese, Arapaho, Aromanian, Arrernte, Asturian, Aymara, Basque, Belarusian (Lacinka), Bislama, Bosnian, Breton, Catalan, Cebuano, Chamorro, Cheyenne, Chichewa (Nyanja), Cimbrian, Corsican, Croatian, Czech, Danish, Dutch, English, Esperanto, Estonian, Faroese, Fijian, Finnish, French, French Creole (Saint Lucia), Frisian, Friulian, Galician, Genoese, German, Gilbertese (Kiribati), Greenlandic, Haitian Creole, Hawaiian, Hiligaynon, Hmong, Hopi, Hungarian, Ibanag, Iloko (Ilokano), Indonesian, Interglossa (Glosa), Interlingua, Irish (Gaelic), Islandic, Istro-Romanian, Italian, Jèrriais, Kashubian, Kurdish (Kurmanji), Ladin, Latin Basic, Latvian, Lithuanian, Lojban, Lombard, Low Saxon, Luxembourgian, Malagasy, Maltese, Manx, Maori, Megleno-Romanian, Mohawk, Nahuatl, Norfolk/Pitcairnese, Northern Sotho (Pedi), Norwegian, Occitan, Oromo, Pangasinan, Papiamento, Piedmontese, Polish, Portuguese, Potawatomi, Quechua, Rhaeto-Romance, Romanian, Romansh (Rumantsch), Rotokas, Sami (Inari), Sami (Lule), Samoan, Sardinian (Sardu), Scots (Gaelic), Serbian, Seychellois Creole (Seselwa), Shona, Sicilian, Slovak, Slovenian (Slovene), Somali, Southern Ndebele, Southern Sotho (Sesotho), Spanish, Swahili, Swati/Swazi, Swedish, Tagalog (Filipino/Pilipino), Tahitian, Tausug, Tetum (Tetun), Tok Pisin, Tongan (Faka-Tonga), Tswana, Turkish, Turkmen, Turkmen (Latinized), Tuvaluan, ubasic, Uyghur (Latinized), Veps, Volapük, Votic (Latinized), Walloon, Warlpiri, Welsh, Xhosa, Yapese, Zulu

+

Glyph Chart

+

The subset of Novecento sans wide Medium in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.

+
+ +

&#32;

+

&#33;

!
+

&#34;

"
+

&#35;

#
+

&#36;

$
+

&#37;

%
+

&#38;

&
+

&#39;

'
+

&#40;

(
+

&#41;

)
+

&#42;

*
+

&#43;

+
+

&#44;

,
+

&#45;

-
+

&#46;

.
+

&#47;

/
+

&#48;

0
+

&#49;

1
+

&#50;

2
+

&#51;

3
+

&#52;

4
+

&#53;

5
+

&#54;

6
+

&#55;

7
+

&#56;

8
+

&#57;

9
+

&#58;

:
+

&#59;

;
+

&#60;

<
+

&#61;

=
+

&#62;

>
+

&#63;

?
+

&#64;

@
+

&#65;

A
+

&#66;

B
+

&#67;

C
+

&#68;

D
+

&#69;

E
+

&#70;

F
+

&#71;

G
+

&#72;

H
+

&#73;

I
+

&#74;

J
+

&#75;

K
+

&#76;

L
+

&#77;

M
+

&#78;

N
+

&#79;

O
+

&#80;

P
+

&#81;

Q
+

&#82;

R
+

&#83;

S
+

&#84;

T
+

&#85;

U
+

&#86;

V
+

&#87;

W
+

&#88;

X
+

&#89;

Y
+

&#90;

Z
+

&#91;

[
+

&#92;

\
+

&#93;

]
+

&#94;

^
+

&#95;

_
+

&#96;

`
+

&#97;

a
+

&#98;

b
+

&#99;

c
+

&#100;

d
+

&#101;

e
+

&#102;

f
+

&#103;

g
+

&#104;

h
+

&#105;

i
+

&#106;

j
+

&#107;

k
+

&#108;

l
+

&#109;

m
+

&#110;

n
+

&#111;

o
+

&#112;

p
+

&#113;

q
+

&#114;

r
+

&#115;

s
+

&#116;

t
+

&#117;

u
+

&#118;

v
+

&#119;

w
+

&#120;

x
+

&#121;

y
+

&#122;

z
+

&#123;

{
+

&#124;

|
+

&#125;

}
+

&#126;

~
+

&#162;

¢
+

&#163;

£
+

&#165;

¥
+

&#168;

¨
+

&#169;

©
+

&#171;

«
+

&#174;

®
+

&#180;

´
+

&#184;

¸
+

&#187;

»
+

&#211;

Ó
+

&#243;

ó
+

&#260;

Ą
+

&#261;

ą
+

&#262;

Ć
+

&#263;

ć
+

&#280;

Ę
+

&#281;

ę
+

&#321;

Ł
+

&#322;

ł
+

&#323;

Ń
+

&#324;

ń
+

&#346;

Ś
+

&#347;

ś
+

&#377;

Ź
+

&#378;

ź
+

&#379;

Ż
+

&#380;

ż
+

&#710;

ˆ
+

&#730;

˚
+

&#732;

˜
+

&#8211;

+

&#8212;

+

&#8216;

+

&#8217;

+

&#8218;

+

&#8220;

+

&#8221;

+

&#8222;

+

&#8230;

+

&#8249;

+

&#8250;

+

&#8364;

+

&#8482;

+
+
+ + +
+
+ + +
+ +
+ +
+
+
+

Installing Webfonts

+ +

Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.

+ +

1. Upload your webfonts

+

You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.

+ +

2. Include the webfont stylesheet

+

A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the Fontspring blog post about it. The code for it is as follows:

+ + + +@font-face{ + font-family: 'MyWebFont'; + src: url('WebFont.eot'); + src: url('WebFont.eot?#iefix') format('embedded-opentype'), + url('WebFont.woff') format('woff'), + url('WebFont.ttf') format('truetype'), + url('WebFont.svg#webfont') format('svg'); +} + + +

We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:

+ <link rel="stylesheet" href="stylesheet.css" type="text/css" charset="utf-8" /> + +

3. Modify your own stylesheet

+

To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called "font-family." The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the "font-family" property, inside the selector you want to change. For example:

+p { font-family: 'MyWebFont', Arial, sans-serif; } + +

4. Test

+

Getting webfonts to work cross-browser can be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.

+
+ + +
+ +
+ +
+ +
+ + diff --git a/fonts/Novecento sans wide Medium-Webfont/Webfonts/novecentosanswide_medium_polish/Novecentosanswide-Medium-webfont.eot b/fonts/Novecento sans wide Medium-Webfont/Webfonts/novecentosanswide_medium_polish/Novecentosanswide-Medium-webfont.eot new file mode 100755 index 0000000..056dee0 Binary files /dev/null and b/fonts/Novecento sans wide Medium-Webfont/Webfonts/novecentosanswide_medium_polish/Novecentosanswide-Medium-webfont.eot differ diff --git a/fonts/Novecento sans wide Medium-Webfont/Webfonts/novecentosanswide_medium_polish/Novecentosanswide-Medium-webfont.svg b/fonts/Novecento sans wide Medium-Webfont/Webfonts/novecentosanswide_medium_polish/Novecentosanswide-Medium-webfont.svg new file mode 100755 index 0000000..c3eb3ce --- /dev/null +++ b/fonts/Novecento sans wide Medium-Webfont/Webfonts/novecentosanswide_medium_polish/Novecentosanswide-Medium-webfont.svg @@ -0,0 +1,879 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/fonts/Novecento sans wide Medium-Webfont/Webfonts/novecentosanswide_medium_polish/Novecentosanswide-Medium-webfont.ttf b/fonts/Novecento sans wide Medium-Webfont/Webfonts/novecentosanswide_medium_polish/Novecentosanswide-Medium-webfont.ttf new file mode 100755 index 0000000..e6b9392 Binary files /dev/null and b/fonts/Novecento sans wide Medium-Webfont/Webfonts/novecentosanswide_medium_polish/Novecentosanswide-Medium-webfont.ttf differ diff --git a/fonts/Novecento sans wide Medium-Webfont/Webfonts/novecentosanswide_medium_polish/Novecentosanswide-Medium-webfont.woff b/fonts/Novecento sans wide Medium-Webfont/Webfonts/novecentosanswide_medium_polish/Novecentosanswide-Medium-webfont.woff new file mode 100755 index 0000000..7c4af94 Binary files /dev/null and b/fonts/Novecento sans wide Medium-Webfont/Webfonts/novecentosanswide_medium_polish/Novecentosanswide-Medium-webfont.woff differ diff --git a/fonts/Novecento sans wide Medium-Webfont/Webfonts/novecentosanswide_medium_polish/Novecentosanswide-Medium-webfont.woff2 b/fonts/Novecento sans wide Medium-Webfont/Webfonts/novecentosanswide_medium_polish/Novecentosanswide-Medium-webfont.woff2 new file mode 100755 index 0000000..3c7a3e5 Binary files /dev/null and b/fonts/Novecento sans wide Medium-Webfont/Webfonts/novecentosanswide_medium_polish/Novecentosanswide-Medium-webfont.woff2 differ diff --git a/fonts/Novecento sans wide Medium-Webfont/Webfonts/novecentosanswide_medium_polish/specimen_files/easytabs.js b/fonts/Novecento sans wide Medium-Webfont/Webfonts/novecentosanswide_medium_polish/specimen_files/easytabs.js new file mode 100755 index 0000000..167f53b --- /dev/null +++ b/fonts/Novecento sans wide Medium-Webfont/Webfonts/novecentosanswide_medium_polish/specimen_files/easytabs.js @@ -0,0 +1,7 @@ +(function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:"fast",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId="#"+this.id;if(param.defaultContent==''){param.defaultContent=1;} +if(typeof param.defaultContent=="number") +{var defaultTab=$(thisId+" .tabs li:eq("+(param.defaultContent-1)+") a").attr('href').substr(1);}else{var defaultTab=param.defaultContent;} +$(thisId+" .tabs li a").each(function(){var tabToHide=$(this).attr('href').substr(1);$("#"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+" .easytabs-tab-content").hide();} +function changeContent(tabId){hideAll();$(thisId+" .tabs li").removeClass(param.activeClass);$(thisId+" .tabs li a[href=#"+tabId+"]").closest('li').addClass(param.activeClass);if(param.fadeSpeed!="none") +{$(thisId+" #"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+" #"+tabId).show();}} +$(thisId+" .tabs li").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery); \ No newline at end of file diff --git a/fonts/Novecento sans wide Medium-Webfont/Webfonts/novecentosanswide_medium_polish/specimen_files/grid_12-825-55-15.css b/fonts/Novecento sans wide Medium-Webfont/Webfonts/novecentosanswide_medium_polish/specimen_files/grid_12-825-55-15.css new file mode 100755 index 0000000..3d6aef7 --- /dev/null +++ b/fonts/Novecento sans wide Medium-Webfont/Webfonts/novecentosanswide_medium_polish/specimen_files/grid_12-825-55-15.css @@ -0,0 +1,129 @@ +/*Notes about grid: +Columns: 12 +Grid Width: 825px +Column Width: 55px +Gutter Width: 15px +-------------------------------*/ + + + +.section {margin-bottom: 18px; +} +.section:after {content: ".";display: block;height: 0;clear: both;visibility: hidden;} +.section {*zoom: 1;} + +.section .firstcolumn, +.section .firstcol {margin-left: 0;} + + +/* Border on left hand side of a column. */ +.border { + padding-left: 7px; + margin-left: 7px; + border-left: 1px solid #eee; +} + +/* Border with more whitespace, spans one column. */ +.colborder { + padding-left: 42px; + margin-left: 42px; + border-left: 1px solid #eee; +} + + + +/* The Grid Classes */ +.grid1, .grid1_2cols, .grid1_3cols, .grid1_4cols, .grid2, .grid2_3cols, .grid2_4cols, .grid3, .grid3_2cols, .grid3_4cols, .grid4, .grid4_3cols, .grid5, .grid5_2cols, .grid5_3cols, .grid5_4cols, .grid6, .grid6_4cols, .grid7, .grid7_2cols, .grid7_3cols, .grid7_4cols, .grid8, .grid8_3cols, .grid9, .grid9_2cols, .grid9_4cols, .grid10, .grid10_3cols, .grid10_4cols, .grid11, .grid11_2cols, .grid11_3cols, .grid11_4cols, .grid12 +{margin-left: 15px;float: left;display: inline; overflow: hidden;} + + +.width1, .grid1, .span-1 {width: 55px;} +.width1_2cols,.grid1_2cols {width: 20px;} +.width1_3cols,.grid1_3cols {width: 8px;} +.width1_4cols,.grid1_4cols {width: 2px;} +.input_width1 {width: 49px;} + +.width2, .grid2, .span-2 {width: 125px;} +.width2_3cols,.grid2_3cols {width: 31px;} +.width2_4cols,.grid2_4cols {width: 20px;} +.input_width2 {width: 119px;} + +.width3, .grid3, .span-3 {width: 195px;} +.width3_2cols,.grid3_2cols {width: 90px;} +.width3_4cols,.grid3_4cols {width: 37px;} +.input_width3 {width: 189px;} + +.width4, .grid4, .span-4 {width: 265px;} +.width4_3cols,.grid4_3cols {width: 78px;} +.input_width4 {width: 259px;} + +.width5, .grid5, .span-5 {width: 335px;} +.width5_2cols,.grid5_2cols {width: 160px;} +.width5_3cols,.grid5_3cols {width: 101px;} +.width5_4cols,.grid5_4cols {width: 72px;} +.input_width5 {width: 329px;} + +.width6, .grid6, .span-6 {width: 405px;} +.width6_4cols,.grid6_4cols {width: 90px;} +.input_width6 {width: 399px;} + +.width7, .grid7, .span-7 {width: 475px;} +.width7_2cols,.grid7_2cols {width: 230px;} +.width7_3cols,.grid7_3cols {width: 148px;} +.width7_4cols,.grid7_4cols {width: 107px;} +.input_width7 {width: 469px;} + +.width8, .grid8, .span-8 {width: 545px;} +.width8_3cols,.grid8_3cols {width: 171px;} +.input_width8 {width: 539px;} + +.width9, .grid9, .span-9 {width: 615px;} +.width9_2cols,.grid9_2cols {width: 300px;} +.width9_4cols,.grid9_4cols {width: 142px;} +.input_width9 {width: 609px;} + +.width10, .grid10, .span-10 {width: 685px;} +.width10_3cols,.grid10_3cols {width: 218px;} +.width10_4cols,.grid10_4cols {width: 160px;} +.input_width10 {width: 679px;} + +.width11, .grid11, .span-11 {width: 755px;} +.width11_2cols,.grid11_2cols {width: 370px;} +.width11_3cols,.grid11_3cols {width: 241px;} +.width11_4cols,.grid11_4cols {width: 177px;} +.input_width11 {width: 749px;} + +.width12, .grid12, .span-12 {width: 825px;} +.input_width12 {width: 819px;} + +/* Subdivided grid spaces */ +.emptycols_left1, .prepend-1 {padding-left: 70px;} +.emptycols_right1, .append-1 {padding-right: 70px;} +.emptycols_left2, .prepend-2 {padding-left: 140px;} +.emptycols_right2, .append-2 {padding-right: 140px;} +.emptycols_left3, .prepend-3 {padding-left: 210px;} +.emptycols_right3, .append-3 {padding-right: 210px;} +.emptycols_left4, .prepend-4 {padding-left: 280px;} +.emptycols_right4, .append-4 {padding-right: 280px;} +.emptycols_left5, .prepend-5 {padding-left: 350px;} +.emptycols_right5, .append-5 {padding-right: 350px;} +.emptycols_left6, .prepend-6 {padding-left: 420px;} +.emptycols_right6, .append-6 {padding-right: 420px;} +.emptycols_left7, .prepend-7 {padding-left: 490px;} +.emptycols_right7, .append-7 {padding-right: 490px;} +.emptycols_left8, .prepend-8 {padding-left: 560px;} +.emptycols_right8, .append-8 {padding-right: 560px;} +.emptycols_left9, .prepend-9 {padding-left: 630px;} +.emptycols_right9, .append-9 {padding-right: 630px;} +.emptycols_left10, .prepend-10 {padding-left: 700px;} +.emptycols_right10, .append-10 {padding-right: 700px;} +.emptycols_left11, .prepend-11 {padding-left: 770px;} +.emptycols_right11, .append-11 {padding-right: 770px;} +.pull-1 {margin-left: -70px;} +.push-1 {margin-right: -70px;margin-left: 18px;float: right;} +.pull-2 {margin-left: -140px;} +.push-2 {margin-right: -140px;margin-left: 18px;float: right;} +.pull-3 {margin-left: -210px;} +.push-3 {margin-right: -210px;margin-left: 18px;float: right;} +.pull-4 {margin-left: -280px;} +.push-4 {margin-right: -280px;margin-left: 18px;float: right;} \ No newline at end of file diff --git a/fonts/Novecento sans wide Medium-Webfont/Webfonts/novecentosanswide_medium_polish/specimen_files/specimen_stylesheet.css b/fonts/Novecento sans wide Medium-Webfont/Webfonts/novecentosanswide_medium_polish/specimen_files/specimen_stylesheet.css new file mode 100755 index 0000000..aecc43c --- /dev/null +++ b/fonts/Novecento sans wide Medium-Webfont/Webfonts/novecentosanswide_medium_polish/specimen_files/specimen_stylesheet.css @@ -0,0 +1,396 @@ +@import url('grid_12-825-55-15.css'); + +/* + CSS Reset by Eric Meyer - Released under Public Domain + http://meyerweb.com/eric/tools/css/reset/ +*/ +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, font, 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 + {margin: 0;padding: 0;border: 0;outline: 0; + font-size: 100%;vertical-align: baseline; + background: transparent;} +body {line-height: 1;} +ol, ul {list-style: none;} +blockquote, q {quotes: none;} +blockquote:before, blockquote:after, +q:before, q:after {content: ''; content: none;} +:focus {outline: 0;} +ins {text-decoration: none;} +del {text-decoration: line-through;} +table {border-collapse: collapse;border-spacing: 0;} + + + + +body { + color: #000; + background-color: #dcdcdc; +} + +a { + text-decoration: none; + color: #1883ba; +} + +h1{ + font-size: 32px; + font-weight: normal; + font-style: normal; + margin-bottom: 18px; +} + +h2{ + font-size: 18px; +} + +#container { + width: 865px; + margin: 0px auto; +} + + +#header { + padding: 20px; + font-size: 36px; + background-color: #000; + color: #fff; +} + +#header span { + color: #666; +} +#main_content { + background-color: #fff; + padding: 60px 20px 20px; +} + + +#footer p { + margin: 0; + padding-top: 10px; + padding-bottom: 50px; + color: #333; + font: 10px Arial, sans-serif; +} + +.tabs { + width: 100%; + height: 31px; + background-color: #444; +} +.tabs li { + float: left; + margin: 0; + overflow: hidden; + background-color: #444; +} +.tabs li a { + display: block; + color: #fff; + text-decoration: none; + font: bold 11px/11px 'Arial'; + text-transform: uppercase; + padding: 10px 15px; + border-right: 1px solid #fff; +} + +.tabs li a:hover { + background-color: #00b3ff; + +} + +.tabs li.active a { + color: #000; + background-color: #fff; +} + + + +div.huge { + + font-size: 300px; + line-height: 1em; + padding: 0; + letter-spacing: -.02em; + overflow: hidden; +} +div.glyph_range { + font-size: 72px; + line-height: 1.1em; +} + +.size10{ font-size: 10px; } +.size11{ font-size: 11px; } +.size12{ font-size: 12px; } +.size13{ font-size: 13px; } +.size14{ font-size: 14px; } +.size16{ font-size: 16px; } +.size18{ font-size: 18px; } +.size20{ font-size: 20px; } +.size24{ font-size: 24px; } +.size30{ font-size: 30px; } +.size36{ font-size: 36px; } +.size48{ font-size: 48px; } +.size60{ font-size: 60px; } +.size72{ font-size: 72px; } +.size90{ font-size: 90px; } + + +.psample_row1 { height: 120px;} +.psample_row1 { height: 120px;} +.psample_row2 { height: 160px;} +.psample_row3 { height: 160px;} +.psample_row4 { height: 160px;} + +.psample { + overflow: hidden; + position: relative; +} +.psample p { + line-height: 1.3em; + display: block; + overflow: hidden; + margin: 0; +} + +.psample span { + margin-right: .5em; +} + +.white_blend { + width: 100%; + height: 61px; + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNrs3TsKgFAMRUE/eer+NxztxMYuEWQG3ECKwwUF58ycAKixOAGAyAKILAAiCyCyACILgMgCiCyAyAIgsgAiCyCyAIgsgMgCiCwAIgsgsgAiC4DIAogsACIL0CWuZ3UGgLrIhjMA1EV2OAOAJQtgyQLwjOzmDAAiCyCyAIgsQFtkd2cAEFkAkQVAZAHaIns4A4AlC2DJAiCyACILILIAiCzAV5H1dQGAJQsgsgCILIDIAvwisl58AViyAJYsACILILIAIgvAe2T9EhxAZAFEFgCRBeiL7HAGgLrIhjMAWLIAliwAt1OAAQDwygTBulLIlQAAAABJRU5ErkJggg==); + position: absolute; + bottom: 0; +} +.black_blend { + width: 100%; + height: 61px; + background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPJJREFUeNrs3TEKhTAQRVGjibr/9QoxhY2N3Ywo50A28IrLwP9g6b1PAMSYTQAgsgAiC4DIAogsgMgCILIAIgsgsgCILIDIAogsACILILIAIguAyAKILIDIAiCyACILgMgCZCnjLWYAiFGvB0BQZJsZAFyyAC5ZAO6RXc0AILIAIguAyAKkRXYzA4DIAogsACILkBbZ3QwALlkAlywAIgsgsgAiC4DIArwVWf8uAHDJAogsACILILIAv4isH74AXLIALlkARBZAZAFEFoDnyPokOIDIAogsACILkBfZZgaAuMhWMwC4ZAE+p4x3mAEgxinAAJ+XBbPWGkwAAAAAAElFTkSuQmCC); + position: absolute; + bottom: 0; +} +.fullreverse { + background: #000 !important; + color: #fff !important; + margin-left: -20px; + padding-left: 20px; + margin-right: -20px; + padding-right: 20px; + padding: 20px; + margin-bottom:0; +} + + +.sample_table td { + padding-top: 3px; + padding-bottom:5px; + padding-left: 5px; + vertical-align: middle; + line-height: 1.2em; +} + +.sample_table td:first-child { + background-color: #eee; + text-align: right; + padding-right: 5px; + padding-left: 0; + padding: 5px; + font: 11px/12px "Courier New", Courier, mono; +} + +code { + white-space: pre; + background-color: #eee; + display: block; + padding: 10px; + margin-bottom: 18px; + overflow: auto; +} + + +.bottom,.last {margin-bottom:0 !important; padding-bottom:0 !important;} + +.box { + padding: 18px; + margin-bottom: 18px; + background: #eee; +} + +.reverse,.reversed { background: #000 !important;color: #fff !important; border: none !important;} + +#bodycomparison { + position: relative; + overflow: hidden; + font-size: 72px; + height: 90px; + white-space: nowrap; +} + +#bodycomparison div{ + font-size: 72px; + line-height: 90px; + display: inline; + margin: 0 15px 0 0; + padding: 0; +} + +#bodycomparison div span{ + font: 10px Arial; + position: absolute; + left: 0; +} +#xheight { + float: none; + position: absolute; + color: #d9f3ff; + font-size: 72px; + line-height: 90px; +} + +.fontbody { + position: relative; +} +.arialbody{ + font-family: Arial; + position: relative; +} +.verdanabody{ + font-family: Verdana; + position: relative; +} +.georgiabody{ + font-family: Georgia; + position: relative; +} + +/* @group Layout page + */ + +#layout h1 { + font-size: 36px; + line-height: 42px; + font-weight: normal; + font-style: normal; +} + +#layout h2 { + font-size: 24px; + line-height: 23px; + font-weight: normal; + font-style: normal; +} + +#layout h3 { + font-size: 22px; + line-height: 1.4em; + margin-top: 1em; + font-weight: normal; + font-style: normal; +} + + +#layout p.byline { + font-size: 12px; + margin-top: 18px; + line-height: 12px; + margin-bottom: 0; +} +#layout p { + font-size: 14px; + line-height: 21px; + margin-bottom: .5em; +} + +#layout p.large{ + font-size: 18px; + line-height: 26px; +} + +#layout .sidebar p{ + font-size: 12px; + line-height: 1.4em; +} + +#layout p.caption { + font-size: 10px; + margin-top: -16px; + margin-bottom: 18px; +} + +/* @end */ + +/* @group Glyphs */ + +#glyph_chart div{ + background-color: #d9f3ff; + color: black; + float: left; + font-size: 36px; + height: 1.2em; + line-height: 1.2em; + margin-bottom: 1px; + margin-right: 1px; + text-align: center; + width: 1.2em; + position: relative; + padding: .6em .2em .2em; +} + +#glyph_chart div p { + position: absolute; + left: 0; + top: 0; + display: block; + text-align: center; + font: bold 9px Arial, sans-serif; + background-color: #3a768f; + width: 100%; + color: #fff; + padding: 2px 0; +} + + +#glyphs h1 { + font-family: Arial, sans-serif; +} +/* @end */ + +/* @group Installing */ + +#installing { + font: 13px Arial, sans-serif; +} + +#installing p, +#glyphs p{ + line-height: 1.2em; + margin-bottom: 18px; + font: 13px Arial, sans-serif; +} + + + +#installing h3{ + font-size: 15px; + margin-top: 18px; +} + +/* @end */ + +#rendering h1 { + font-family: Arial, sans-serif; +} +.render_table td { + font: 11px "Courier New", Courier, mono; + vertical-align: middle; +} + + diff --git a/fonts/Novecento sans wide Medium-Webfont/Webfonts/novecentosanswide_medium_polish/stylesheet.css b/fonts/Novecento sans wide Medium-Webfont/Webfonts/novecentosanswide_medium_polish/stylesheet.css new file mode 100755 index 0000000..64d7558 --- /dev/null +++ b/fonts/Novecento sans wide Medium-Webfont/Webfonts/novecentosanswide_medium_polish/stylesheet.css @@ -0,0 +1,37 @@ +/* + * Web Fonts from fontspring.com + * + * All OpenType features and all extended glyphs have been removed. + * Fully installable fonts can be purchased at http://www.fontspring.com + * + * The fonts included in this stylesheet are subject to the End User License you purchased + * from Fontspring. The fonts are protected under domestic and international trademark and + * copyright law. You are prohibited from modifying, reverse engineering, duplicating, or + * distributing this font software. + * + * (c) 2010-2014 Fontspring + * + * + * + * + * The fonts included are copyrighted by the vendor listed below. + * + * Vendor: Synthview Type Design + * License URL: http://www.fontspring.com/licenses/synthview/webfont + * + * + */ + +@font-face { + font-family: 'novecento_sans_widemedium'; + src: url('Novecentosanswide-Medium-webfont.eot'); + src: url('Novecentosanswide-Medium-webfont.eot?#iefix') format('embedded-opentype'), + url('Novecentosanswide-Medium-webfont.woff2') format('woff2'), + url('Novecentosanswide-Medium-webfont.woff') format('woff'), + url('Novecentosanswide-Medium-webfont.ttf') format('truetype'), + url('Novecentosanswide-Medium-webfont.svg#novecento_sans_widemedium') format('svg'); + font-weight: normal; + font-style: normal; + +} + diff --git a/fonts/Novecentosanswide-DemiBold-webfont.eot b/fonts/Novecentosanswide-DemiBold-webfont.eot new file mode 100755 index 0000000..5ee8055 Binary files /dev/null and b/fonts/Novecentosanswide-DemiBold-webfont.eot differ diff --git a/fonts/Novecentosanswide-DemiBold-webfont.svg b/fonts/Novecentosanswide-DemiBold-webfont.svg new file mode 100755 index 0000000..a2165f5 --- /dev/null +++ b/fonts/Novecentosanswide-DemiBold-webfont.svg @@ -0,0 +1,879 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/fonts/Novecentosanswide-DemiBold-webfont.ttf b/fonts/Novecentosanswide-DemiBold-webfont.ttf new file mode 100755 index 0000000..6233328 Binary files /dev/null and b/fonts/Novecentosanswide-DemiBold-webfont.ttf differ diff --git a/fonts/Novecentosanswide-DemiBold-webfont.woff b/fonts/Novecentosanswide-DemiBold-webfont.woff new file mode 100755 index 0000000..8947e8f Binary files /dev/null and b/fonts/Novecentosanswide-DemiBold-webfont.woff differ diff --git a/fonts/Novecentosanswide-DemiBold-webfont.woff2 b/fonts/Novecentosanswide-DemiBold-webfont.woff2 new file mode 100755 index 0000000..1568f3e Binary files /dev/null and b/fonts/Novecentosanswide-DemiBold-webfont.woff2 differ diff --git a/fonts/Novecentosanswide-Medium-webfont.eot b/fonts/Novecentosanswide-Medium-webfont.eot new file mode 100755 index 0000000..056dee0 Binary files /dev/null and b/fonts/Novecentosanswide-Medium-webfont.eot differ diff --git a/fonts/Novecentosanswide-Medium-webfont.svg b/fonts/Novecentosanswide-Medium-webfont.svg new file mode 100755 index 0000000..c3eb3ce --- /dev/null +++ b/fonts/Novecentosanswide-Medium-webfont.svg @@ -0,0 +1,879 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/fonts/Novecentosanswide-Medium-webfont.ttf b/fonts/Novecentosanswide-Medium-webfont.ttf new file mode 100755 index 0000000..e6b9392 Binary files /dev/null and b/fonts/Novecentosanswide-Medium-webfont.ttf differ diff --git a/fonts/Novecentosanswide-Medium-webfont.woff b/fonts/Novecentosanswide-Medium-webfont.woff new file mode 100755 index 0000000..7c4af94 Binary files /dev/null and b/fonts/Novecentosanswide-Medium-webfont.woff differ diff --git a/fonts/Novecentosanswide-Medium-webfont.woff2 b/fonts/Novecentosanswide-Medium-webfont.woff2 new file mode 100755 index 0000000..3c7a3e5 Binary files /dev/null and b/fonts/Novecentosanswide-Medium-webfont.woff2 differ diff --git a/fonts/Novecentosanswide-Normal-webfont.eot b/fonts/Novecentosanswide-Normal-webfont.eot new file mode 100755 index 0000000..216efac Binary files /dev/null and b/fonts/Novecentosanswide-Normal-webfont.eot differ diff --git a/fonts/Novecentosanswide-Normal-webfont.svg b/fonts/Novecentosanswide-Normal-webfont.svg new file mode 100755 index 0000000..6c866b2 --- /dev/null +++ b/fonts/Novecentosanswide-Normal-webfont.svg @@ -0,0 +1,879 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/fonts/Novecentosanswide-Normal-webfont.ttf b/fonts/Novecentosanswide-Normal-webfont.ttf new file mode 100755 index 0000000..f8a3117 Binary files /dev/null and b/fonts/Novecentosanswide-Normal-webfont.ttf differ diff --git a/fonts/Novecentosanswide-Normal-webfont.woff b/fonts/Novecentosanswide-Normal-webfont.woff new file mode 100755 index 0000000..6ee37ae Binary files /dev/null and b/fonts/Novecentosanswide-Normal-webfont.woff differ diff --git a/fonts/Novecentosanswide-Normal-webfont.woff2 b/fonts/Novecentosanswide-Normal-webfont.woff2 new file mode 100755 index 0000000..4da8428 Binary files /dev/null and b/fonts/Novecentosanswide-Normal-webfont.woff2 differ diff --git a/fonts/fontawesome-webfont.eot b/fonts/fontawesome-webfont.eot new file mode 100644 index 0000000..6cfd566 Binary files /dev/null and b/fonts/fontawesome-webfont.eot differ diff --git a/fonts/fontawesome-webfont.svg b/fonts/fontawesome-webfont.svg new file mode 100644 index 0000000..a9f8469 --- /dev/null +++ b/fonts/fontawesome-webfont.svg @@ -0,0 +1,504 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/fonts/fontawesome-webfont.ttf b/fonts/fontawesome-webfont.ttf new file mode 100644 index 0000000..5cd6cff Binary files /dev/null and b/fonts/fontawesome-webfont.ttf differ diff --git a/fonts/fontawesome-webfont.woff b/fonts/fontawesome-webfont.woff new file mode 100644 index 0000000..9eaecb3 Binary files /dev/null and b/fonts/fontawesome-webfont.woff differ diff --git a/images/favicon.png b/images/favicon.png new file mode 100644 index 0000000..ec645f1 Binary files /dev/null and b/images/favicon.png differ diff --git a/images/logo.png b/images/logo.png new file mode 100644 index 0000000..64be1a9 Binary files /dev/null and b/images/logo.png differ diff --git a/js/deliver.js b/js/deliver.js new file mode 100644 index 0000000..3f3cfd0 --- /dev/null +++ b/js/deliver.js @@ -0,0 +1,38 @@ +var isTouch = window.DocumentTouch && document instanceof DocumentTouch; + +function scrollHeader() { + // Has scrolled class on header + var zvalue = $(this).scrollTop(); + if ( zvalue > 75 ) + $("#header").addClass("scrolled"); + else + $("#header").removeClass("scrolled"); +} + +// ON SCROLL EVENTS +if (!isTouch){ + jQuery(document).scroll(function() { + scrollHeader(); + }); +}; + +// TOUCH SCROLL +jQuery(document).on({ + 'touchmove': function(e) { + scrollHeader(); // Replace this with your code. + } +}); + + +jQuery(document).ready(function($){ + + //Smooth scroll to top + $('#toTop').click(function(){ + $("html, body").animate({ scrollTop: 0 }, 500); + return false; + }); + // Responsive Menu + +}); + + diff --git a/js/html5shiv-printshiv.min.js b/js/html5shiv-printshiv.min.js new file mode 100644 index 0000000..9c78ee3 --- /dev/null +++ b/js/html5shiv-printshiv.min.js @@ -0,0 +1,4 @@ +/** +* @preserve HTML5 Shiv prev3.7.1 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed +*/ +!function(a,b){function c(a,b){var c=a.createElement("p"),d=a.getElementsByTagName("head")[0]||a.documentElement;return c.innerHTML="x",d.insertBefore(c.lastChild,d.firstChild)}function d(){var a=x.elements;return"string"==typeof a?a.split(" "):a}function e(a){var b=w[a[u]];return b||(b={},v++,a[u]=v,w[v]=b),b}function f(a,c,d){if(c||(c=b),p)return c.createElement(a);d||(d=e(c));var f;return f=d.cache[a]?d.cache[a].cloneNode():t.test(a)?(d.cache[a]=d.createElem(a)).cloneNode():d.createElem(a),!f.canHaveChildren||s.test(a)||f.tagUrn?f:d.frag.appendChild(f)}function g(a,c){if(a||(a=b),p)return a.createDocumentFragment();c=c||e(a);for(var f=c.frag.cloneNode(),g=0,h=d(),i=h.length;i>g;g++)f.createElement(h[g]);return f}function h(a,b){b.cache||(b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag()),a.createElement=function(c){return x.shivMethods?f(c,a,b):b.createElem(c)},a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+d().join().replace(/[\w\-:]+/g,function(a){return b.createElem(a),b.frag.createElement(a),'c("'+a+'")'})+");return n}")(x,b.frag)}function i(a){a||(a=b);var d=e(a);return!x.shivCSS||o||d.hasCSS||(d.hasCSS=!!c(a,"article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}mark{background:#FF0;color:#000}template{display:none}")),p||h(a,d),a}function j(a){for(var b,c=a.getElementsByTagName("*"),e=c.length,f=RegExp("^(?:"+d().join("|")+")$","i"),g=[];e--;)b=c[e],f.test(b.nodeName)&&g.push(b.applyElement(k(b)));return g}function k(a){for(var b,c=a.attributes,d=c.length,e=a.ownerDocument.createElement(z+":"+a.nodeName);d--;)b=c[d],b.specified&&e.setAttribute(b.nodeName,b.nodeValue);return e.style.cssText=a.style.cssText,e}function l(a){for(var b,c=a.split("{"),e=c.length,f=RegExp("(^|[\\s,>+~])("+d().join("|")+")(?=[[\\s,>+~#.:]|$)","gi"),g="$1"+z+"\\:$2";e--;)b=c[e]=c[e].split("}"),b[b.length-1]=b[b.length-1].replace(f,g),c[e]=b.join("}");return c.join("{")}function m(a){for(var b=a.length;b--;)a[b].removeNode()}function n(a){function b(){clearTimeout(g._removeSheetTimer),d&&d.removeNode(!0),d=null}var d,f,g=e(a),h=a.namespaces,i=a.parentWindow;return!A||a.printShived?a:("undefined"==typeof h[z]&&h.add(z),i.attachEvent("onbeforeprint",function(){b();for(var e,g,h,i=a.styleSheets,k=[],m=i.length,n=Array(m);m--;)n[m]=i[m];for(;h=n.pop();)if(!h.disabled&&y.test(h.media)){try{e=h.imports,g=e.length}catch(o){g=0}for(m=0;g>m;m++)n.push(e[m]);try{k.push(h.cssText)}catch(o){}}k=l(k.reverse().join("")),f=j(a),d=c(a,k)}),i.attachEvent("onafterprint",function(){m(f),clearTimeout(g._removeSheetTimer),g._removeSheetTimer=setTimeout(b,500)}),a.printShived=!0,a)}var o,p,q="3.7.0",r=a.html5||{},s=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,t=/^(?: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,u="_html5shiv",v=0,w={};!function(){try{var a=b.createElement("a");a.innerHTML="",o="hidden"in a,p=1==a.childNodes.length||function(){b.createElement("a");var a=b.createDocumentFragment();return"undefined"==typeof a.cloneNode||"undefined"==typeof a.createDocumentFragment||"undefined"==typeof a.createElement}()}catch(c){o=!0,p=!0}}();var x={elements:r.elements||"abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output picture progress section summary template time video",version:q,shivCSS:r.shivCSS!==!1,supportsUnknownElements:p,shivMethods:r.shivMethods!==!1,type:"default",shivDocument:i,createElement:f,createDocumentFragment:g};a.html5=x,i(b);var y=/^$|\b(?:all|print)\b/,z="html5shiv",A=!p&&function(){var c=b.documentElement;return!("undefined"==typeof b.namespaces||"undefined"==typeof b.parentWindow||"undefined"==typeof c.applyElement||"undefined"==typeof c.removeNode||"undefined"==typeof a.attachEvent)}();x.type+=" print",x.shivPrint=n,n(b)}(this,document); \ No newline at end of file diff --git a/js/jquery-2.1.1.min.js b/js/jquery-2.1.1.min.js new file mode 100644 index 0000000..e5ace11 --- /dev/null +++ b/js/jquery-2.1.1.min.js @@ -0,0 +1,4 @@ +/*! jQuery v2.1.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/license */ +!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k={},l=a.document,m="2.1.1",n=function(a,b){return new n.fn.init(a,b)},o=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,p=/^-ms-/,q=/-([\da-z])/gi,r=function(a,b){return b.toUpperCase()};n.fn=n.prototype={jquery:m,constructor:n,selector:"",length:0,toArray:function(){return d.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var b=n.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a,b){return n.each(this,a,b)},map:function(a){return this.pushStack(n.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:f,sort:c.sort,splice:c.splice},n.extend=n.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||n.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(a=arguments[h]))for(b in a)c=g[b],d=a[b],g!==d&&(j&&d&&(n.isPlainObject(d)||(e=n.isArray(d)))?(e?(e=!1,f=c&&n.isArray(c)?c:[]):f=c&&n.isPlainObject(c)?c:{},g[b]=n.extend(j,f,d)):void 0!==d&&(g[b]=d));return g},n.extend({expando:"jQuery"+(m+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===n.type(a)},isArray:Array.isArray,isWindow:function(a){return null!=a&&a===a.window},isNumeric:function(a){return!n.isArray(a)&&a-parseFloat(a)>=0},isPlainObject:function(a){return"object"!==n.type(a)||a.nodeType||n.isWindow(a)?!1:a.constructor&&!j.call(a.constructor.prototype,"isPrototypeOf")?!1:!0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?h[i.call(a)]||"object":typeof a},globalEval:function(a){var b,c=eval;a=n.trim(a),a&&(1===a.indexOf("use strict")?(b=l.createElement("script"),b.text=a,l.head.appendChild(b).parentNode.removeChild(b)):c(a))},camelCase:function(a){return a.replace(p,"ms-").replace(q,r)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b,c){var d,e=0,f=a.length,g=s(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else for(e in a)if(d=b.apply(a[e],c),d===!1)break}else if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d===!1)break}else for(e in a)if(d=b.call(a[e],e,a[e]),d===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(o,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(s(Object(a))?n.merge(c,"string"==typeof a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){return null==b?-1:g.call(b,a,c)},merge:function(a,b){for(var c=+b.length,d=0,e=a.length;c>d;d++)a[e++]=b[d];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,f=0,g=a.length,h=s(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&&i.push(d);else for(f in a)d=b(a[f],f,c),null!=d&&i.push(d);return e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return"string"==typeof b&&(c=a[b],b=a,a=c),n.isFunction(a)?(e=d.call(arguments,2),f=function(){return a.apply(b||this,e.concat(d.call(arguments)))},f.guid=a.guid=a.guid||n.guid++,f):void 0},now:Date.now,support:k}),n.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(a,b){h["[object "+b+"]"]=b.toLowerCase()});function s(a){var b=a.length,c=n.type(a);return"function"===c||n.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var t=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+-new Date,v=a.document,w=0,x=0,y=gb(),z=gb(),A=gb(),B=function(a,b){return a===b&&(l=!0),0},C="undefined",D=1<<31,E={}.hasOwnProperty,F=[],G=F.pop,H=F.push,I=F.push,J=F.slice,K=F.indexOf||function(a){for(var b=0,c=this.length;c>b;b++)if(this[b]===a)return b;return-1},L="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",N="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",O=N.replace("w","w#"),P="\\["+M+"*("+N+")(?:"+M+"*([*^$|!~]?=)"+M+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+O+"))|)"+M+"*\\]",Q=":("+N+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+P+")*)|.*)\\)|)",R=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),S=new RegExp("^"+M+"*,"+M+"*"),T=new RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),U=new RegExp("="+M+"*([^\\]'\"]*?)"+M+"*\\]","g"),V=new RegExp(Q),W=new RegExp("^"+O+"$"),X={ID:new RegExp("^#("+N+")"),CLASS:new RegExp("^\\.("+N+")"),TAG:new RegExp("^("+N.replace("w","w*")+")"),ATTR:new RegExp("^"+P),PSEUDO:new RegExp("^"+Q),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+L+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/^(?:input|select|textarea|button)$/i,Z=/^h\d$/i,$=/^[^{]+\{\s*\[native \w/,_=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ab=/[+~]/,bb=/'|\\/g,cb=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),db=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)};try{I.apply(F=J.call(v.childNodes),v.childNodes),F[v.childNodes.length].nodeType}catch(eb){I={apply:F.length?function(a,b){H.apply(a,J.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function fb(a,b,d,e){var f,h,j,k,l,o,r,s,w,x;if((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,d=d||[],!a||"string"!=typeof a)return d;if(1!==(k=b.nodeType)&&9!==k)return[];if(p&&!e){if(f=_.exec(a))if(j=f[1]){if(9===k){if(h=b.getElementById(j),!h||!h.parentNode)return d;if(h.id===j)return d.push(h),d}else if(b.ownerDocument&&(h=b.ownerDocument.getElementById(j))&&t(b,h)&&h.id===j)return d.push(h),d}else{if(f[2])return I.apply(d,b.getElementsByTagName(a)),d;if((j=f[3])&&c.getElementsByClassName&&b.getElementsByClassName)return I.apply(d,b.getElementsByClassName(j)),d}if(c.qsa&&(!q||!q.test(a))){if(s=r=u,w=b,x=9===k&&a,1===k&&"object"!==b.nodeName.toLowerCase()){o=g(a),(r=b.getAttribute("id"))?s=r.replace(bb,"\\$&"):b.setAttribute("id",s),s="[id='"+s+"'] ",l=o.length;while(l--)o[l]=s+qb(o[l]);w=ab.test(a)&&ob(b.parentNode)||b,x=o.join(",")}if(x)try{return I.apply(d,w.querySelectorAll(x)),d}catch(y){}finally{r||b.removeAttribute("id")}}}return i(a.replace(R,"$1"),b,d,e)}function gb(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function hb(a){return a[u]=!0,a}function ib(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function jb(a,b){var c=a.split("|"),e=a.length;while(e--)d.attrHandle[c[e]]=b}function kb(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||D)-(~a.sourceIndex||D);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function lb(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function mb(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function nb(a){return hb(function(b){return b=+b,hb(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function ob(a){return a&&typeof a.getElementsByTagName!==C&&a}c=fb.support={},f=fb.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=fb.setDocument=function(a){var b,e=a?a.ownerDocument||a:v,g=e.defaultView;return e!==n&&9===e.nodeType&&e.documentElement?(n=e,o=e.documentElement,p=!f(e),g&&g!==g.top&&(g.addEventListener?g.addEventListener("unload",function(){m()},!1):g.attachEvent&&g.attachEvent("onunload",function(){m()})),c.attributes=ib(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ib(function(a){return a.appendChild(e.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=$.test(e.getElementsByClassName)&&ib(function(a){return a.innerHTML="
",a.firstChild.className="i",2===a.getElementsByClassName("i").length}),c.getById=ib(function(a){return o.appendChild(a).id=u,!e.getElementsByName||!e.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if(typeof b.getElementById!==C&&p){var c=b.getElementById(a);return c&&c.parentNode?[c]:[]}},d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){var c=typeof a.getAttributeNode!==C&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return typeof b.getElementsByTagName!==C?b.getElementsByTagName(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return typeof b.getElementsByClassName!==C&&p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=$.test(e.querySelectorAll))&&(ib(function(a){a.innerHTML="",a.querySelectorAll("[msallowclip^='']").length&&q.push("[*^$]="+M+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+M+"*(?:value|"+L+")"),a.querySelectorAll(":checked").length||q.push(":checked")}),ib(function(a){var b=e.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+M+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=$.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ib(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",Q)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=$.test(o.compareDocumentPosition),t=b||$.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===e||a.ownerDocument===v&&t(v,a)?-1:b===e||b.ownerDocument===v&&t(v,b)?1:k?K.call(k,a)-K.call(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,f=a.parentNode,g=b.parentNode,h=[a],i=[b];if(!f||!g)return a===e?-1:b===e?1:f?-1:g?1:k?K.call(k,a)-K.call(k,b):0;if(f===g)return kb(a,b);c=a;while(c=c.parentNode)h.unshift(c);c=b;while(c=c.parentNode)i.unshift(c);while(h[d]===i[d])d++;return d?kb(h[d],i[d]):h[d]===v?-1:i[d]===v?1:0},e):n},fb.matches=function(a,b){return fb(a,null,null,b)},fb.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(U,"='$1']"),!(!c.matchesSelector||!p||r&&r.test(b)||q&&q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return fb(b,n,null,[a]).length>0},fb.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},fb.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&E.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},fb.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},fb.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=fb.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=fb.selectors={cacheLength:50,createPseudo:hb,match:X,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(cb,db),a[3]=(a[3]||a[4]||a[5]||"").replace(cb,db),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||fb.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&fb.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return X.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&V.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(cb,db).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+M+")"+a+"("+M+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||typeof a.getAttribute!==C&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=fb.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h;if(q){if(f){while(p){l=b;while(l=l[p])if(h?l.nodeName.toLowerCase()===r:1===l.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){k=q[u]||(q[u]={}),j=k[a]||[],n=j[0]===w&&j[1],m=j[0]===w&&j[2],l=n&&q.childNodes[n];while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if(1===l.nodeType&&++m&&l===b){k[a]=[w,n,m];break}}else if(s&&(j=(b[u]||(b[u]={}))[a])&&j[0]===w)m=j[1];else while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if((h?l.nodeName.toLowerCase()===r:1===l.nodeType)&&++m&&(s&&((l[u]||(l[u]={}))[a]=[w,m]),l===b))break;return m-=e,m===d||m%d===0&&m/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||fb.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?hb(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=K.call(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:hb(function(a){var b=[],c=[],d=h(a.replace(R,"$1"));return d[u]?hb(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:hb(function(a){return function(b){return fb(a,b).length>0}}),contains:hb(function(a){return function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:hb(function(a){return W.test(a||"")||fb.error("unsupported lang: "+a),a=a.replace(cb,db).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Z.test(a.nodeName)},input:function(a){return Y.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:nb(function(){return[0]}),last:nb(function(a,b){return[b-1]}),eq:nb(function(a,b,c){return[0>c?c+b:c]}),even:nb(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:nb(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:nb(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:nb(function(a,b,c){for(var d=0>c?c+b:c;++db;b++)d+=a[b].value;return d}function rb(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(i=b[u]||(b[u]={}),(h=i[d])&&h[0]===w&&h[1]===f)return j[2]=h[2];if(i[d]=j,j[2]=a(b,c,g))return!0}}}function sb(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function tb(a,b,c){for(var d=0,e=b.length;e>d;d++)fb(a,b[d],c);return c}function ub(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(!c||c(f,d,e))&&(g.push(f),j&&b.push(h));return g}function vb(a,b,c,d,e,f){return d&&!d[u]&&(d=vb(d)),e&&!e[u]&&(e=vb(e,f)),hb(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||tb(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:ub(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=ub(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?K.call(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=ub(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):I.apply(g,r)})}function wb(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=rb(function(a){return a===b},h,!0),l=rb(function(a){return K.call(b,a)>-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d))}];f>i;i++)if(c=d.relative[a[i].type])m=[rb(sb(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return vb(i>1&&sb(m),i>1&&qb(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(R,"$1"),c,e>i&&wb(a.slice(i,e)),f>e&&wb(a=a.slice(e)),f>e&&qb(a))}m.push(c)}return sb(m)}function xb(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,m,o,p=0,q="0",r=f&&[],s=[],t=j,u=f||e&&d.find.TAG("*",k),v=w+=null==t?1:Math.random()||.1,x=u.length;for(k&&(j=g!==n&&g);q!==x&&null!=(l=u[q]);q++){if(e&&l){m=0;while(o=a[m++])if(o(l,g,h)){i.push(l);break}k&&(w=v)}c&&((l=!o&&l)&&p--,f&&r.push(l))}if(p+=q,c&&q!==p){m=0;while(o=b[m++])o(r,s,g,h);if(f){if(p>0)while(q--)r[q]||s[q]||(s[q]=G.call(i));s=ub(s)}I.apply(i,s),k&&!f&&s.length>0&&p+b.length>1&&fb.uniqueSort(i)}return k&&(w=v,j=t),r};return c?hb(f):f}return h=fb.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=wb(b[c]),f[u]?d.push(f):e.push(f);f=A(a,xb(e,d)),f.selector=a}return f},i=fb.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(cb,db),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=X.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(cb,db),ab.test(j[0].type)&&ob(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&qb(j),!a)return I.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,ab.test(a)&&ob(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ib(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ib(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||jb("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ib(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||jb("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ib(function(a){return null==a.getAttribute("disabled")})||jb(L,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),fb}(a);n.find=t,n.expr=t.selectors,n.expr[":"]=n.expr.pseudos,n.unique=t.uniqueSort,n.text=t.getText,n.isXMLDoc=t.isXML,n.contains=t.contains;var u=n.expr.match.needsContext,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^.[^:#\[\.,]*$/;function x(a,b,c){if(n.isFunction(b))return n.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return n.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(w.test(b))return n.filter(b,a,c);b=n.filter(b,a)}return n.grep(a,function(a){return g.call(b,a)>=0!==c})}n.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?n.find.matchesSelector(d,a)?[d]:[]:n.find.matches(a,n.grep(b,function(a){return 1===a.nodeType}))},n.fn.extend({find:function(a){var b,c=this.length,d=[],e=this;if("string"!=typeof a)return this.pushStack(n(a).filter(function(){for(b=0;c>b;b++)if(n.contains(e[b],this))return!0}));for(b=0;c>b;b++)n.find(a,e[b],d);return d=this.pushStack(c>1?n.unique(d):d),d.selector=this.selector?this.selector+" "+a:a,d},filter:function(a){return this.pushStack(x(this,a||[],!1))},not:function(a){return this.pushStack(x(this,a||[],!0))},is:function(a){return!!x(this,"string"==typeof a&&u.test(a)?n(a):a||[],!1).length}});var y,z=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,A=n.fn.init=function(a,b){var c,d;if(!a)return this;if("string"==typeof a){if(c="<"===a[0]&&">"===a[a.length-1]&&a.length>=3?[null,a,null]:z.exec(a),!c||!c[1]&&b)return!b||b.jquery?(b||y).find(a):this.constructor(b).find(a);if(c[1]){if(b=b instanceof n?b[0]:b,n.merge(this,n.parseHTML(c[1],b&&b.nodeType?b.ownerDocument||b:l,!0)),v.test(c[1])&&n.isPlainObject(b))for(c in b)n.isFunction(this[c])?this[c](b[c]):this.attr(c,b[c]);return this}return d=l.getElementById(c[2]),d&&d.parentNode&&(this.length=1,this[0]=d),this.context=l,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):n.isFunction(a)?"undefined"!=typeof y.ready?y.ready(a):a(n):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),n.makeArray(a,this))};A.prototype=n.fn,y=n(l);var B=/^(?:parents|prev(?:Until|All))/,C={children:!0,contents:!0,next:!0,prev:!0};n.extend({dir:function(a,b,c){var d=[],e=void 0!==c;while((a=a[b])&&9!==a.nodeType)if(1===a.nodeType){if(e&&n(a).is(c))break;d.push(a)}return d},sibling:function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c}}),n.fn.extend({has:function(a){var b=n(a,this),c=b.length;return this.filter(function(){for(var a=0;c>a;a++)if(n.contains(this,b[a]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=u.test(a)||"string"!=typeof a?n(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&n.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?n.unique(f):f)},index:function(a){return a?"string"==typeof a?g.call(n(a),this[0]):g.call(this,a.jquery?a[0]:a):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(n.unique(n.merge(this.get(),n(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function D(a,b){while((a=a[b])&&1!==a.nodeType);return a}n.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return n.dir(a,"parentNode")},parentsUntil:function(a,b,c){return n.dir(a,"parentNode",c)},next:function(a){return D(a,"nextSibling")},prev:function(a){return D(a,"previousSibling")},nextAll:function(a){return n.dir(a,"nextSibling")},prevAll:function(a){return n.dir(a,"previousSibling")},nextUntil:function(a,b,c){return n.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return n.dir(a,"previousSibling",c)},siblings:function(a){return n.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return n.sibling(a.firstChild)},contents:function(a){return a.contentDocument||n.merge([],a.childNodes)}},function(a,b){n.fn[a]=function(c,d){var e=n.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=n.filter(d,e)),this.length>1&&(C[a]||n.unique(e),B.test(a)&&e.reverse()),this.pushStack(e)}});var E=/\S+/g,F={};function G(a){var b=F[a]={};return n.each(a.match(E)||[],function(a,c){b[c]=!0}),b}n.Callbacks=function(a){a="string"==typeof a?F[a]||G(a):n.extend({},a);var b,c,d,e,f,g,h=[],i=!a.once&&[],j=function(l){for(b=a.memory&&l,c=!0,g=e||0,e=0,f=h.length,d=!0;h&&f>g;g++)if(h[g].apply(l[0],l[1])===!1&&a.stopOnFalse){b=!1;break}d=!1,h&&(i?i.length&&j(i.shift()):b?h=[]:k.disable())},k={add:function(){if(h){var c=h.length;!function g(b){n.each(b,function(b,c){var d=n.type(c);"function"===d?a.unique&&k.has(c)||h.push(c):c&&c.length&&"string"!==d&&g(c)})}(arguments),d?f=h.length:b&&(e=c,j(b))}return this},remove:function(){return h&&n.each(arguments,function(a,b){var c;while((c=n.inArray(b,h,c))>-1)h.splice(c,1),d&&(f>=c&&f--,g>=c&&g--)}),this},has:function(a){return a?n.inArray(a,h)>-1:!(!h||!h.length)},empty:function(){return h=[],f=0,this},disable:function(){return h=i=b=void 0,this},disabled:function(){return!h},lock:function(){return i=void 0,b||k.disable(),this},locked:function(){return!i},fireWith:function(a,b){return!h||c&&!i||(b=b||[],b=[a,b.slice?b.slice():b],d?i.push(b):j(b)),this},fire:function(){return k.fireWith(this,arguments),this},fired:function(){return!!c}};return k},n.extend({Deferred:function(a){var b=[["resolve","done",n.Callbacks("once memory"),"resolved"],["reject","fail",n.Callbacks("once memory"),"rejected"],["notify","progress",n.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return n.Deferred(function(c){n.each(b,function(b,f){var g=n.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&n.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?n.extend(a,d):d}},e={};return d.pipe=d.then,n.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=d.call(arguments),e=c.length,f=1!==e||a&&n.isFunction(a.promise)?e:0,g=1===f?a:n.Deferred(),h=function(a,b,c){return function(e){b[a]=this,c[a]=arguments.length>1?d.call(arguments):e,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(e>1)for(i=new Array(e),j=new Array(e),k=new Array(e);e>b;b++)c[b]&&n.isFunction(c[b].promise)?c[b].promise().done(h(b,k,c)).fail(g.reject).progress(h(b,j,i)):--f;return f||g.resolveWith(k,c),g.promise()}});var H;n.fn.ready=function(a){return n.ready.promise().done(a),this},n.extend({isReady:!1,readyWait:1,holdReady:function(a){a?n.readyWait++:n.ready(!0)},ready:function(a){(a===!0?--n.readyWait:n.isReady)||(n.isReady=!0,a!==!0&&--n.readyWait>0||(H.resolveWith(l,[n]),n.fn.triggerHandler&&(n(l).triggerHandler("ready"),n(l).off("ready"))))}});function I(){l.removeEventListener("DOMContentLoaded",I,!1),a.removeEventListener("load",I,!1),n.ready()}n.ready.promise=function(b){return H||(H=n.Deferred(),"complete"===l.readyState?setTimeout(n.ready):(l.addEventListener("DOMContentLoaded",I,!1),a.addEventListener("load",I,!1))),H.promise(b)},n.ready.promise();var J=n.access=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if("object"===n.type(c)){e=!0;for(h in c)n.access(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0,n.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(n(a),c)})),b))for(;i>h;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f};n.acceptData=function(a){return 1===a.nodeType||9===a.nodeType||!+a.nodeType};function K(){Object.defineProperty(this.cache={},0,{get:function(){return{}}}),this.expando=n.expando+Math.random()}K.uid=1,K.accepts=n.acceptData,K.prototype={key:function(a){if(!K.accepts(a))return 0;var b={},c=a[this.expando];if(!c){c=K.uid++;try{b[this.expando]={value:c},Object.defineProperties(a,b)}catch(d){b[this.expando]=c,n.extend(a,b)}}return this.cache[c]||(this.cache[c]={}),c},set:function(a,b,c){var d,e=this.key(a),f=this.cache[e];if("string"==typeof b)f[b]=c;else if(n.isEmptyObject(f))n.extend(this.cache[e],b);else for(d in b)f[d]=b[d];return f},get:function(a,b){var c=this.cache[this.key(a)];return void 0===b?c:c[b]},access:function(a,b,c){var d;return void 0===b||b&&"string"==typeof b&&void 0===c?(d=this.get(a,b),void 0!==d?d:this.get(a,n.camelCase(b))):(this.set(a,b,c),void 0!==c?c:b)},remove:function(a,b){var c,d,e,f=this.key(a),g=this.cache[f];if(void 0===b)this.cache[f]={};else{n.isArray(b)?d=b.concat(b.map(n.camelCase)):(e=n.camelCase(b),b in g?d=[b,e]:(d=e,d=d in g?[d]:d.match(E)||[])),c=d.length;while(c--)delete g[d[c]]}},hasData:function(a){return!n.isEmptyObject(this.cache[a[this.expando]]||{})},discard:function(a){a[this.expando]&&delete this.cache[a[this.expando]]}};var L=new K,M=new K,N=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,O=/([A-Z])/g;function P(a,b,c){var d;if(void 0===c&&1===a.nodeType)if(d="data-"+b.replace(O,"-$1").toLowerCase(),c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:N.test(c)?n.parseJSON(c):c}catch(e){}M.set(a,b,c)}else c=void 0;return c}n.extend({hasData:function(a){return M.hasData(a)||L.hasData(a)},data:function(a,b,c){return M.access(a,b,c)},removeData:function(a,b){M.remove(a,b) +},_data:function(a,b,c){return L.access(a,b,c)},_removeData:function(a,b){L.remove(a,b)}}),n.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=M.get(f),1===f.nodeType&&!L.get(f,"hasDataAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=n.camelCase(d.slice(5)),P(f,d,e[d])));L.set(f,"hasDataAttrs",!0)}return e}return"object"==typeof a?this.each(function(){M.set(this,a)}):J(this,function(b){var c,d=n.camelCase(a);if(f&&void 0===b){if(c=M.get(f,a),void 0!==c)return c;if(c=M.get(f,d),void 0!==c)return c;if(c=P(f,d,void 0),void 0!==c)return c}else this.each(function(){var c=M.get(this,d);M.set(this,d,b),-1!==a.indexOf("-")&&void 0!==c&&M.set(this,a,b)})},null,b,arguments.length>1,null,!0)},removeData:function(a){return this.each(function(){M.remove(this,a)})}}),n.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=L.get(a,b),c&&(!d||n.isArray(c)?d=L.access(a,b,n.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=n.queue(a,b),d=c.length,e=c.shift(),f=n._queueHooks(a,b),g=function(){n.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return L.get(a,c)||L.access(a,c,{empty:n.Callbacks("once memory").add(function(){L.remove(a,[b+"queue",c])})})}}),n.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.lengthx",k.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue}();var U="undefined";k.focusinBubbles="onfocusin"in a;var V=/^key/,W=/^(?:mouse|pointer|contextmenu)|click/,X=/^(?:focusinfocus|focusoutblur)$/,Y=/^([^.]*)(?:\.(.+)|)$/;function Z(){return!0}function $(){return!1}function _(){try{return l.activeElement}catch(a){}}n.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=L.get(a);if(r){c.handler&&(f=c,c=f.handler,e=f.selector),c.guid||(c.guid=n.guid++),(i=r.events)||(i=r.events={}),(g=r.handle)||(g=r.handle=function(b){return typeof n!==U&&n.event.triggered!==b.type?n.event.dispatch.apply(a,arguments):void 0}),b=(b||"").match(E)||[""],j=b.length;while(j--)h=Y.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o&&(l=n.event.special[o]||{},o=(e?l.delegateType:l.bindType)||o,l=n.event.special[o]||{},k=n.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&n.expr.match.needsContext.test(e),namespace:p.join(".")},f),(m=i[o])||(m=i[o]=[],m.delegateCount=0,l.setup&&l.setup.call(a,d,p,g)!==!1||a.addEventListener&&a.addEventListener(o,g,!1)),l.add&&(l.add.call(a,k),k.handler.guid||(k.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,k):m.push(k),n.event.global[o]=!0)}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=L.hasData(a)&&L.get(a);if(r&&(i=r.events)){b=(b||"").match(E)||[""],j=b.length;while(j--)if(h=Y.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=n.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,m=i[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),g=f=m.length;while(f--)k=m[f],!e&&q!==k.origType||c&&c.guid!==k.guid||h&&!h.test(k.namespace)||d&&d!==k.selector&&("**"!==d||!k.selector)||(m.splice(f,1),k.selector&&m.delegateCount--,l.remove&&l.remove.call(a,k));g&&!m.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||n.removeEvent(a,o,r.handle),delete i[o])}else for(o in i)n.event.remove(a,o+b[j],c,d,!0);n.isEmptyObject(i)&&(delete r.handle,L.remove(a,"events"))}},trigger:function(b,c,d,e){var f,g,h,i,k,m,o,p=[d||l],q=j.call(b,"type")?b.type:b,r=j.call(b,"namespace")?b.namespace.split("."):[];if(g=h=d=d||l,3!==d.nodeType&&8!==d.nodeType&&!X.test(q+n.event.triggered)&&(q.indexOf(".")>=0&&(r=q.split("."),q=r.shift(),r.sort()),k=q.indexOf(":")<0&&"on"+q,b=b[n.expando]?b:new n.Event(q,"object"==typeof b&&b),b.isTrigger=e?2:3,b.namespace=r.join("."),b.namespace_re=b.namespace?new RegExp("(^|\\.)"+r.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=d),c=null==c?[b]:n.makeArray(c,[b]),o=n.event.special[q]||{},e||!o.trigger||o.trigger.apply(d,c)!==!1)){if(!e&&!o.noBubble&&!n.isWindow(d)){for(i=o.delegateType||q,X.test(i+q)||(g=g.parentNode);g;g=g.parentNode)p.push(g),h=g;h===(d.ownerDocument||l)&&p.push(h.defaultView||h.parentWindow||a)}f=0;while((g=p[f++])&&!b.isPropagationStopped())b.type=f>1?i:o.bindType||q,m=(L.get(g,"events")||{})[b.type]&&L.get(g,"handle"),m&&m.apply(g,c),m=k&&g[k],m&&m.apply&&n.acceptData(g)&&(b.result=m.apply(g,c),b.result===!1&&b.preventDefault());return b.type=q,e||b.isDefaultPrevented()||o._default&&o._default.apply(p.pop(),c)!==!1||!n.acceptData(d)||k&&n.isFunction(d[q])&&!n.isWindow(d)&&(h=d[k],h&&(d[k]=null),n.event.triggered=q,d[q](),n.event.triggered=void 0,h&&(d[k]=h)),b.result}},dispatch:function(a){a=n.event.fix(a);var b,c,e,f,g,h=[],i=d.call(arguments),j=(L.get(this,"events")||{})[a.type]||[],k=n.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=n.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,c=0;while((g=f.handlers[c++])&&!a.isImmediatePropagationStopped())(!a.namespace_re||a.namespace_re.test(g.namespace))&&(a.handleObj=g,a.data=g.data,e=((n.event.special[g.origType]||{}).handle||g.handler).apply(f.elem,i),void 0!==e&&(a.result=e)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&(!a.button||"click"!==a.type))for(;i!==this;i=i.parentNode||this)if(i.disabled!==!0||"click"!==a.type){for(d=[],c=0;h>c;c++)f=b[c],e=f.selector+" ",void 0===d[e]&&(d[e]=f.needsContext?n(e,this).index(i)>=0:n.find(e,this,null,[i]).length),d[e]&&d.push(f);d.length&&g.push({elem:i,handlers:d})}return h]*)\/>/gi,bb=/<([\w:]+)/,cb=/<|&#?\w+;/,db=/<(?:script|style|link)/i,eb=/checked\s*(?:[^=]|=\s*.checked.)/i,fb=/^$|\/(?:java|ecma)script/i,gb=/^true\/(.*)/,hb=/^\s*\s*$/g,ib={option:[1,""],thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};ib.optgroup=ib.option,ib.tbody=ib.tfoot=ib.colgroup=ib.caption=ib.thead,ib.th=ib.td;function jb(a,b){return n.nodeName(a,"table")&&n.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function kb(a){return a.type=(null!==a.getAttribute("type"))+"/"+a.type,a}function lb(a){var b=gb.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function mb(a,b){for(var c=0,d=a.length;d>c;c++)L.set(a[c],"globalEval",!b||L.get(b[c],"globalEval"))}function nb(a,b){var c,d,e,f,g,h,i,j;if(1===b.nodeType){if(L.hasData(a)&&(f=L.access(a),g=L.set(b,f),j=f.events)){delete g.handle,g.events={};for(e in j)for(c=0,d=j[e].length;d>c;c++)n.event.add(b,e,j[e][c])}M.hasData(a)&&(h=M.access(a),i=n.extend({},h),M.set(b,i))}}function ob(a,b){var c=a.getElementsByTagName?a.getElementsByTagName(b||"*"):a.querySelectorAll?a.querySelectorAll(b||"*"):[];return void 0===b||b&&n.nodeName(a,b)?n.merge([a],c):c}function pb(a,b){var c=b.nodeName.toLowerCase();"input"===c&&T.test(a.type)?b.checked=a.checked:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}n.extend({clone:function(a,b,c){var d,e,f,g,h=a.cloneNode(!0),i=n.contains(a.ownerDocument,a);if(!(k.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||n.isXMLDoc(a)))for(g=ob(h),f=ob(a),d=0,e=f.length;e>d;d++)pb(f[d],g[d]);if(b)if(c)for(f=f||ob(a),g=g||ob(h),d=0,e=f.length;e>d;d++)nb(f[d],g[d]);else nb(a,h);return g=ob(h,"script"),g.length>0&&mb(g,!i&&ob(a,"script")),h},buildFragment:function(a,b,c,d){for(var e,f,g,h,i,j,k=b.createDocumentFragment(),l=[],m=0,o=a.length;o>m;m++)if(e=a[m],e||0===e)if("object"===n.type(e))n.merge(l,e.nodeType?[e]:e);else if(cb.test(e)){f=f||k.appendChild(b.createElement("div")),g=(bb.exec(e)||["",""])[1].toLowerCase(),h=ib[g]||ib._default,f.innerHTML=h[1]+e.replace(ab,"<$1>")+h[2],j=h[0];while(j--)f=f.lastChild;n.merge(l,f.childNodes),f=k.firstChild,f.textContent=""}else l.push(b.createTextNode(e));k.textContent="",m=0;while(e=l[m++])if((!d||-1===n.inArray(e,d))&&(i=n.contains(e.ownerDocument,e),f=ob(k.appendChild(e),"script"),i&&mb(f),c)){j=0;while(e=f[j++])fb.test(e.type||"")&&c.push(e)}return k},cleanData:function(a){for(var b,c,d,e,f=n.event.special,g=0;void 0!==(c=a[g]);g++){if(n.acceptData(c)&&(e=c[L.expando],e&&(b=L.cache[e]))){if(b.events)for(d in b.events)f[d]?n.event.remove(c,d):n.removeEvent(c,d,b.handle);L.cache[e]&&delete L.cache[e]}delete M.cache[c[M.expando]]}}}),n.fn.extend({text:function(a){return J(this,function(a){return void 0===a?n.text(this):this.empty().each(function(){(1===this.nodeType||11===this.nodeType||9===this.nodeType)&&(this.textContent=a)})},null,a,arguments.length)},append:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=jb(this,a);b.appendChild(a)}})},prepend:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=jb(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},remove:function(a,b){for(var c,d=a?n.filter(a,this):this,e=0;null!=(c=d[e]);e++)b||1!==c.nodeType||n.cleanData(ob(c)),c.parentNode&&(b&&n.contains(c.ownerDocument,c)&&mb(ob(c,"script")),c.parentNode.removeChild(c));return this},empty:function(){for(var a,b=0;null!=(a=this[b]);b++)1===a.nodeType&&(n.cleanData(ob(a,!1)),a.textContent="");return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return n.clone(this,a,b)})},html:function(a){return J(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a&&1===b.nodeType)return b.innerHTML;if("string"==typeof a&&!db.test(a)&&!ib[(bb.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(ab,"<$1>");try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(n.cleanData(ob(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=arguments[0];return this.domManip(arguments,function(b){a=this.parentNode,n.cleanData(ob(this)),a&&a.replaceChild(b,this)}),a&&(a.length||a.nodeType)?this:this.remove()},detach:function(a){return this.remove(a,!0)},domManip:function(a,b){a=e.apply([],a);var c,d,f,g,h,i,j=0,l=this.length,m=this,o=l-1,p=a[0],q=n.isFunction(p);if(q||l>1&&"string"==typeof p&&!k.checkClone&&eb.test(p))return this.each(function(c){var d=m.eq(c);q&&(a[0]=p.call(this,c,d.html())),d.domManip(a,b)});if(l&&(c=n.buildFragment(a,this[0].ownerDocument,!1,this),d=c.firstChild,1===c.childNodes.length&&(c=d),d)){for(f=n.map(ob(c,"script"),kb),g=f.length;l>j;j++)h=c,j!==o&&(h=n.clone(h,!0,!0),g&&n.merge(f,ob(h,"script"))),b.call(this[j],h,j);if(g)for(i=f[f.length-1].ownerDocument,n.map(f,lb),j=0;g>j;j++)h=f[j],fb.test(h.type||"")&&!L.access(h,"globalEval")&&n.contains(i,h)&&(h.src?n._evalUrl&&n._evalUrl(h.src):n.globalEval(h.textContent.replace(hb,"")))}return this}}),n.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){n.fn[a]=function(a){for(var c,d=[],e=n(a),g=e.length-1,h=0;g>=h;h++)c=h===g?this:this.clone(!0),n(e[h])[b](c),f.apply(d,c.get());return this.pushStack(d)}});var qb,rb={};function sb(b,c){var d,e=n(c.createElement(b)).appendTo(c.body),f=a.getDefaultComputedStyle&&(d=a.getDefaultComputedStyle(e[0]))?d.display:n.css(e[0],"display");return e.detach(),f}function tb(a){var b=l,c=rb[a];return c||(c=sb(a,b),"none"!==c&&c||(qb=(qb||n("