[
  {
    "path": ".gitattributes",
    "content": "# Enforce Unix newlines\n*.css   text eol=lf\n*.html  text eol=lf\n*.js    text eol=lf\n*.json  text eol=lf\n*.md    text eol=lf\n*.scss  text eol=lf\n*.svg   text eol=lf\n*.xml   text eol=lf\n*.yml   text eol=lf\n# Don't diff or textually merge source maps\n*.map   binary\n"
  },
  {
    "path": ".gitignore",
    "content": "# Ignore docs files\n_gh_pages\n_site\n.ruby-version\n\n# Numerous always-ignore extensions\n*.diff\n*.err\n*.orig\n*.log\n*.rej\n*.swo\n*.swp\n*.zip\n*.vi\n*~\n\n# OS or Editor folders\n.DS_Store\n._*\nThumbs.db\n.cache\n.project\n.settings\n.tmproj\n*.esproj\nnbproject\n*.sublime-project\n*.sublime-workspace\n.idea\n\n# Komodo\n*.komodoproject\n.komodotools\n\n# Jekyll metadata\ndocs/.jekyll-metadata\n\n# Folders to ignore\nnode_modules\nbower_components\n.grunt\n"
  },
  {
    "path": ".travis.yml",
    "content": "sudo: required\n\ndist: trusty\n\nlanguage: node_js\n\ngit:\n  depth: 10\n\nnode_js:\n  - \"4\"\n  - \"5\"\n\nenv:\n  matrix:\n    - RUBY_VERSION=2.2\n\nbefore_install:\n  - rvm install $RUBY_VERSION\n  - rvm use $RUBY_VERSION --fuzzy\n  - export GEMDIR=$(rvm gemdir)\n\ninstall:\n  - travis_retry npm install -g grunt-cli\n  - travis_retry npm install\n  - travis_retry gem install --no-document \"jekyll:~>3.1\"\n\nmatrix:\n  fast_finish: true\n\nnotifications:\n  slack: heybb:51atQXKR2rpnbohAZ0X1vNbE\n"
  },
  {
    "path": "CNAME",
    "content": "goratchet.com\n"
  },
  {
    "path": "CONTRIBUTING.md",
    "content": "# Contributing to Ratchet\n\n## Types of issues\n\nThe GitHub issue tracker should only be used for one of the\nfollowing:\n\n+ **Bugs** &mdash; when a feature of the project has been _identified as\n  broken_.\n\n+ **Feature requests** &mdash; when you ask for a _new feature_ to be added to a\n  project.\n\n+ **Contribution enquiries** &mdash; when you want to discuss whether a _new\n  feature_ or _change_ would be accepted in a project before you begin\n  development work on it.\n\nThese are some things that don't belong in the issue tracker:\n\n+ **Please avoid personal support requests.** We cannot\n  provide personal support for implementation issues. The best place for help\n  is generally going to be StackOverflow, Twitter, IRC, etc.\n\n+ **Please avoid derailing issues.** Keep the discussion on topic and respect\n  the opinions of others.\n\n## Bugs\n\nA bug is a _demonstrable problem_ that is caused by the code in the\nrepository.\n\nIf you've come across a problem with the code and you're letting us know about\nit, _thank you_. We appreciate your time and the effort you're making to help\nimprove the code for everyone else!\n\nPlease read the following guidelines for reporting bugs:\n\n1. **Use the GitHub issue search** &mdash; check if the issue has already been\n   reported. If it has been, please comment on the existing issue.\n\n2. **Check if the issue has been fixed** &mdash; the latest `master` or\n   development branch may already contain a fix.\n\n3. **Isolate the demonstrable problem** &mdash; make sure that the code in the\n   project's repository is _definitely_ responsible for the issue. Create a\n   [reduced test case](http://css-tricks.com/6263-reduced-test-cases/) - an\n   extremely simple and immediately viewable example of the issue.\n\n4. **Include a live example** &mdash; provide a link to your reduced test case\n   when appropriate (e.g. if the issue is related to front-end technologies).\n   Please use [jsFiddle](http://jsfiddle.net) to host examples.\n\nPlease try to be as detailed as possible in your report too. What is your\nenvironment? What steps will reproduce the issue? What browser(s) and OS\nexperience the problem? What would you expect to be the outcome? All these\ndetails will help me and others to assess and fix any potential bugs.\n\n### Example of a good bug report\n\n> Short and descriptive title\n>\n> A summary of the issue and the browser/OS environment in which it occurs. If\n> suitable, include the steps required to reproduce the bug.\n>\n> 1. This is the first step\n> 2. This is the second step\n> 3. Further steps, etc.\n>\n> `<url>` - a link to the reduced test case\n>\n> Any other information you want to share that is relevant to the issue being\n> reported. This might include the lines of code that you have identified as\n> causing the bug, and potential solutions (and your opinions on their\n> merits).\n\nA good bug report shouldn't leave us needing to chase you up to get further\ninformation that is required to assess or fix the bug.\n\n## Feature requests\n\nFeature requests are welcome! Please provide links to examples or articles that\nhelp to illustrate the specifics of a feature you're requesting. The more\ndetail, the better. It will help us to decide whether the feature is something I\nagree should become part of the project.\n\n## Contribution enquiries\n\nContribution enquiries should take place before any significant pull request,\notherwise you risk spending a lot of time working on something that we might not\nwant to pull into the repository.\n\nIn this regard, some contribution enquires may be feature requests that you\nwould like to have a go at implementing yourself if they are wanted. Other\nenquiries might revolve around refactoring code or porting a project to\ndifferent languages.\n\n## Pull requests\n\nGood pull requests - patches, improvements, new features - are a fantastic\nhelp.\n\nIf you've spotted any small, obvious errors and want to help out by patching it,\nthat will be much appreciated.\n\nIf your contribution involves a significant amount of work or substantial\nchanges to any part of the project, please open a \"contribution enquiry\" issue\nfirst to check that the work is wanted or matches the goals of the project.\n\nAll pull requests should remain focused in scope and avoid containing unrelated\ncommits.\n\nPlease follow this process; it's the best way to get your work included in the\nproject:\n\n1. [Fork](https://github.com/twbs/ratchet/fork) the project.\n\n2. Clone your fork (`git clone\n   git@github.com:<your-username>/<repo-name>.git`).\n\n3. Add an `upstream` remote (`git remote add upstream\n   git://github.com/<upsteam-owner>/<repo-name>.git`).\n\n4. Get the latest changes from upstream (e.g. `git pull upstream\n   <dev-branch>`).\n\n5. Create a new topic branch to contain your feature, change, or fix (`git\n   checkout -b <topic-branch-name>`).\n\n6. Make sure that your changes adhere to the current coding conventions used\n   throughout the project - indentation, accurate comments, etc.\n\n7. Commit your changes in logical chunks; use git's [interactive\n   rebase](https://help.github.com/articles/interactive-rebase) feature to tidy\n   up your commits before making them public. Please adhere to these [git commit\n   message guidelines](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html)\n   or your pull request is unlikely be merged into the main project.\n\n8. Locally merge (or rebase) the upstream branch into your topic branch.\n\n9. Push your topic branch up to your fork (`git push origin\n   <topic-branch-name>`).\n\n10. [Open a Pull Request](http://help.github.com/send-pull-requests/) with a\n    clear title and description. Please mention which browsers you tested in.\n\nIf you have any other questions about contributing, please feel free to contact\nus.\n\n**Don't edit files in `dist/`.** You should edit files in `sass/` and `js/`.\n\n## Special thanks to @necolas\n\nFor writing the original [issue-guidelines](https://github.com/necolas/issue-guidelines/) from which these were adapted.\n"
  },
  {
    "path": "Gruntfile.js",
    "content": "/*!\n * Ratchet's Gruntfile\n * http://goratchet.com\n * Copyright 2015 Connor Sears\n * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)\n */\n\n/* jshint node: true */\nmodule.exports = function (grunt) {\n  'use strict';\n\n  // Force use of Unix newlines\n  grunt.util.linefeed = '\\n';\n\n  RegExp.quote = function (string) {\n    return string.replace(/[-\\\\^$*+?.()|[\\]{}]/g, '\\\\$&');\n  };\n\n  var generateRatchiconsData = require('./grunt/ratchicons-data-generator.js');\n\n  // Project configuration.\n  grunt.initConfig({\n    pkg: grunt.file.readJSON('package.json'),\n\n    // Metadata.\n    meta: {\n      distPath:       'dist/',\n      docsAssetsPath: 'docs/assets/',\n      docsDistPath:   'docs/dist/',\n      docsPath:       'docs/',\n      jsPath:         'js/',\n      jsTestPath:     'js/tests/',\n      srcPath:        'sass/'\n    },\n\n    banner: '/*!\\n' +\n            ' * =====================================================\\n' +\n            ' * Ratchet v<%= pkg.version %> (<%= pkg.homepage %>)\\n' +\n            ' * Copyright <%= grunt.template.today(\"yyyy\") %> <%= pkg.author %>\\n' +\n            ' * Licensed under <%= pkg.license %> (https://github.com/twbs/ratchet/blob/master/LICENSE)\\n' +\n            ' *\\n' +\n            ' * v<%= pkg.version %> designed by @connors.\\n' +\n            ' * =====================================================\\n' +\n            ' */\\n',\n\n    clean: {\n      dist: ['<%= meta.distPath %>', '<%= meta.docsDistPath %>']\n    },\n\n    concat: {\n      ratchet: {\n        options: {\n          banner: '<%= banner %>'\n        },\n        src: [\n          'js/common.js',\n          'js/modals.js',\n          'js/popovers.js',\n          'js/push.js',\n          'js/segmented-controllers.js',\n          'js/sliders.js',\n          'js/toggles.js'\n        ],\n        dest: '<%= meta.distPath %>js/<%= pkg.name %>.js'\n      }\n    },\n\n    sass: {\n      options: {\n        outputStyle: 'expanded',\n        precision: 6,\n        sourceComments: false,\n        sourcemap: false,\n        style: 'expanded'\n      },\n      core: {\n        src: 'sass/ratchet.scss',\n        dest: '<%= meta.distPath %>css/<%= pkg.name %>.css'\n      },\n      android: {\n        src: 'sass/theme-android.scss',\n        dest: '<%= meta.distPath %>css/<%= pkg.name %>-theme-android.css'\n      },\n      ios: {\n        src: 'sass/theme-ios.scss',\n        dest: '<%= meta.distPath %>css/<%= pkg.name %>-theme-ios.css'\n      },\n      docs: {\n        src: 'sass/docs.scss',\n        dest: '<%= meta.docsAssetsPath %>css/docs.css'\n      }\n    },\n\n    usebanner: {\n      dist: {\n        options: {\n          position: 'top',\n          banner: '<%= banner %>'\n        },\n        files: {\n          src: [\n            '<%= meta.distPath %>css/*.css',\n            '<%= meta.docsAssetsPath %>css/docs.css'\n          ]\n        }\n      }\n    },\n\n    csscomb: {\n      options: {\n        config: 'sass/.csscomb.json'\n      },\n      core: {\n        files: {\n          '<%= sass.core.dest %>': '<%= sass.core.dest %>'\n        }\n      },\n      android: {\n        files: {\n          '<%= sass.android.dest %>': '<%= sass.android.dest %>'\n        }\n      },\n      ios: {\n        files: {\n          '<%= sass.ios.dest %>': '<%= sass.ios.dest %>'\n        }\n      },\n      docs: {\n        files: {\n          '<%= sass.docs.dest %>': '<%= sass.docs.dest %>'\n        }\n      }\n    },\n\n    copy: {\n      fonts: {\n        expand: true,\n        src: 'fonts/*',\n        dest: '<%= meta.distPath %>'\n      },\n      docs: {\n        expand: true,\n        cwd: '<%= meta.distPath %>',\n        src: [\n          '**/*'\n        ],\n        dest: '<%= meta.docsDistPath %>'\n      }\n    },\n\n    autoprefixer: {\n      options: {\n        browsers: [\n          'Android 2.3',\n          'Android >= 4',\n          'Chrome >= 20',\n          'Firefox >= 24', // Firefox 24 is the latest ESR\n          'Explorer >= 9',\n          'iOS >= 6',\n          'Opera >= 12',\n          'Safari >= 6'\n        ]\n      },\n      core: {\n        src: '<%= sass.core.dest %>'\n      },\n      android: {\n        options: {\n          browsers: [\n            'Android 2.3',\n            'Android >= 4',\n            'Chrome >= 20',\n            'Firefox >= 24', // Firefox 24 is the latest ESR\n            'Opera >= 12'\n          ]\n        },\n        src: '<%= sass.android.dest %>'\n      },\n      ios: {\n        options: {\n          browsers: ['iOS >= 6']\n        },\n        src: '<%= sass.ios.dest %>'\n      },\n      docs: {\n        src: '<%= sass.docs.dest %>'\n      }\n    },\n\n    cssmin: {\n      options: {\n        keepSpecialComments: '*' // keep all important comments\n      },\n      ratchet: {\n        src: '<%= meta.distPath %>css/<%= pkg.name %>.css',\n        dest: '<%= meta.distPath %>css/<%= pkg.name %>.min.css',\n        options: {\n          sourceMap: true\n        }\n      },\n      theme: {\n        files: {\n          '<%= meta.distPath %>css/<%= pkg.name %>-theme-ios.min.css': '<%= meta.distPath %>css/<%= pkg.name %>-theme-ios.css',\n          '<%= meta.distPath %>css/<%= pkg.name %>-theme-android.min.css': '<%= meta.distPath %>css/<%= pkg.name %>-theme-android.css'\n        }\n      },\n      docs: {\n        src: [\n          '<%= meta.docsAssetsPath %>css/docs.css',\n          '<%= meta.docsAssetsPath %>css/pygments-manni.css'\n        ],\n        dest: '<%= meta.docsAssetsPath %>css/docs.min.css',\n        options: {\n          sourceMap: true\n        }\n      }\n    },\n\n    uglify: {\n      options: {\n        banner: '<%= banner %>',\n        compress: {\n          warnings: false\n        },\n        mangle: true,\n        preserveComments: false\n      },\n      ratchet: {\n        src: '<%= concat.ratchet.dest %>',\n        dest: '<%= meta.distPath %>js/<%= pkg.name %>.min.js',\n        options: {\n          sourceMap: true\n        }\n      },\n      docs: {\n        src: [\n          '<%= meta.docsAssetsPath %>js/docs.js',\n          '<%= meta.docsAssetsPath %>js/fingerblast.js'\n        ],\n        dest: '<%= meta.docsAssetsPath %>js/docs.min.js'\n      }\n    },\n\n    watch: {\n      options: {\n        hostname: 'localhost',\n        livereload: true,\n        port: 8000\n      },\n      js: {\n        files: '<%= meta.jsPath %>**/*.js',\n        tasks: ['dist-js', 'copy']\n      },\n      css: {\n        files: '<%= meta.srcPath %>**/*.scss',\n        tasks: ['dist-css', 'copy']\n      },\n      html: {\n        files: '<%= meta.docsPath %>**',\n        tasks: ['jekyll']\n      }\n    },\n\n    jekyll: {\n      options: {\n        config: '_config.yml'\n      },\n      docs: {},\n      github: {\n        options: {\n          raw: 'github: true'\n        }\n      }\n    },\n\n    htmlmin: {\n      dist: {\n        options: {\n          collapseWhitespace: true,\n          conservativeCollapse: true,\n          minifyCSS: true,\n          minifyJS: true,\n          removeAttributeQuotes: true,\n          removeComments: true\n        },\n        expand: true,\n        cwd: '_site',\n        dest: '_site',\n        src: [\n          '**/*.html'\n        ]\n      }\n    },\n\n    jshint: {\n      options: {\n        jshintrc: 'js/.jshintrc'\n      },\n      grunt: {\n        src: ['Gruntfile.js', 'grunt/*.js']\n      },\n      src: {\n        src: 'js/*.js'\n      },\n      docs: {\n        src: ['<%= meta.docsAssetsPath %>/js/docs.js', '<%= meta.docsAssetsPath %>/js/fingerblast.js']\n      },\n      tests: {\n        options: {\n          jshintrc: 'js/tests/.jshintrc'\n        },\n        src: 'js/tests/*.js'\n      }\n    },\n\n    jscs: {\n      options: {\n        config: 'js/.jscsrc'\n      },\n      grunt: {\n        src: '<%= jshint.grunt.src %>'\n      },\n      src: {\n        src: '<%= jshint.src.src %>'\n      },\n      docs: {\n        src: '<%= jshint.docs.src %>'\n      },\n      tests: {\n        src: '<%= jshint.tests.src %>'\n      }\n    },\n\n    csslint: {\n      options: {\n        csslintrc: 'sass/.csslintrc'\n      },\n      src: [\n        '<%= meta.distPath %>/css/<%= pkg.name %>.css',\n        '<%= meta.distPath %>/css/<%= pkg.name %>-theme-android.css',\n        '<%= meta.distPath %>/css/<%= pkg.name %>-theme-ios.css'\n      ],\n      docs: {\n        options: {\n          ids: false\n        },\n        src: ['<%= meta.docsAssetsPath %>/css/docs.css']\n      }\n    },\n\n    htmllint: {\n      options: {\n        ignore: [\n          'Attribute \"ontouchstart\" not allowed on element \"body\" at this point.',\n          'Consider using the \"h1\" element as a top-level heading only (all \"h1\" elements are treated as top-level headings by many screen readers and other tools).'\n        ]\n      },\n      src: '_site/**/*.html'\n    },\n\n    sed: {\n      versionNumber: {\n        pattern: (function () {\n          var old = grunt.option('oldver');\n          return old ? RegExp.quote(old) : old;\n        })(),\n        replacement: grunt.option('newver'),\n        exclude: [\n          'dist/fonts',\n          'docs/assets',\n          'fonts',\n          'node_modules'\n        ],\n        recursive: true\n      }\n    },\n\n    connect: {\n      site: {\n        options: {\n          base: '_site/',\n          hostname: 'localhost',\n          livereload: true,\n          open: true,\n          port: 8000\n        }\n      }\n    },\n\n    compress: {\n      main: {\n        options: {\n          archive: 'ratchet-<%= pkg.version %>-dist.zip',\n          mode: 'zip',\n          level: 9,\n          pretty: true\n        },\n        files: [\n          {\n            expand: true,\n            cwd: 'dist/',\n            src: ['**'],\n            dest: 'ratchet-<%= pkg.version %>-dist'\n          }\n        ]\n      }\n    },\n\n    jasmine: {\n      src: '<%= jshint.src.src %>',\n      options: {\n        specs: '<%= jshint.tests.src %>',\n        styles: 'dist/ratchet.min.css',\n        display: 'short',\n        vendor: [\n          '<%= meta.docsAssetsPath %>js/fingerblast.js',\n          '<%= jshint.src.src %>',\n          '<%= meta.jsTestPath %>vendor/touchfaker.min.js'\n          ],\n        outfile: 'js/tests/SpecRunner.html',\n        keepRunner: true\n      }\n    }\n  });\n\n  // Load the plugins\n  require('load-grunt-tasks')(grunt, { scope: 'devDependencies' });\n  require('time-grunt')(grunt);\n\n  // Default task(s).\n  grunt.registerTask('dist-css', ['sass', 'autoprefixer', 'usebanner', 'csscomb', 'cssmin']);\n  grunt.registerTask('dist-js', ['concat', 'uglify']);\n  grunt.registerTask('dist', ['clean', 'dist-css', 'dist-js', 'copy', 'build-ratchicons-data']);\n  grunt.registerTask('validate-html', ['jekyll:docs', 'htmllint']);\n  grunt.registerTask('build', ['dist']);\n  grunt.registerTask('default', ['dist']);\n  grunt.registerTask('test', ['dist', 'csslint', 'jshint', 'jscs', 'jasmine', 'validate-html']);\n  grunt.registerTask('server', ['dist', 'jekyll:docs', 'connect', 'watch']);\n  grunt.registerTask('prep-release', ['dist', 'jekyll:github', 'htmlmin', 'compress']);\n\n  grunt.registerTask('build-ratchicons-data', function () { generateRatchiconsData.call(this, grunt); });\n\n  // Version numbering task.\n  // grunt change-version-number --oldver=A.B.C --newver=X.Y.Z\n  // This can be overzealous, so its changes should always be manually reviewed!\n  grunt.registerTask('change-version-number', 'sed');\n};\n"
  },
  {
    "path": "LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2015 connors and other contributors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\nthe Software, and to permit persons to whom the Software is furnished to do so,\nsubject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\nFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\nCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\nIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "# [Ratchet](http://goratchet.com)\n[![GitHub Release](https://img.shields.io/github/release/twbs/ratchet.svg)](https://github.com/twbs/ratchet/releases)\n[![Build Status](https://img.shields.io/travis/twbs/ratchet/master.svg)](https://travis-ci.org/twbs/ratchet)\n[![devDependency Status](https://img.shields.io/david/dev/twbs/ratchet.svg)](https://david-dm.org/twbs/ratchet#info=devDependencies)\n\nBuild mobile apps with simple HTML, CSS, and JS components.\n\n## Table of contents\n\n* [Getting started](#getting-started)\n* [Documentation](#documentation)\n* [Support](#support)\n* [Contributing](#contributing)\n* [Troubleshooting](#troubleshooting)\n* [Versioning](#versioning)\n* [Maintainers](#maintainers)\n* [License](#license)\n\n## Getting started\n\n* Clone the repo with `git clone https://github.com/twbs/ratchet.git` or just [download](http://github.com/twbs/ratchet/archive/v2.0.2.zip) the bundled CSS and JS\n* [Read the docs](http://goratchet.com) to learn about the components and how to get a prototype on your phone\n* [Check out examples](http://goratchet.com/examples/)\n\nTake note that our master branch is our active, unstable development branch and that if you're looking to download a stable copy of the repo, check the [tagged downloads](https://github.com/twbs/ratchet/tags).\n\n### What's included\n\nWithin the download you'll find the following directories and files, logically grouping common assets and providing both compiled and minified variations. You'll see something like this:\n\n```\nratchet/\n├── css/\n│   ├── ratchet.css\n│   ├── ratchet.min.css\n│   ├── ratchet-theme-android.css\n│   ├── ratchet-theme-android.min.css\n│   ├── ratchet-theme-ios.css\n│   └── ratchet-theme-ios.min.css\n├── js/\n│   ├── ratchet.js\n│   └── ratchet.min.js\n└── fonts/\n    ├── ratchicons.eot\n    ├── ratchicons.svg\n    ├── ratchicons.ttf\n    └── ratchicons.woff\n```\n\nWe provide compiled CSS and JS (`ratchet.*`), as well as compiled and minified CSS and JS (`ratchet.min.*`). The Ratchicon fonts are included, as are the optional Android and iOS platform themes.\n\n## Documentation\n\nRatchet's documentation is built with [Jekyll](http://jekyllrb.com) and publicly hosted on GitHub Pages at <http://goratchet.com>. The docs may also be run locally.\n\n### Running documentation locally\n\n1. If necessary, [install Jekyll](http://jekyllrb.com/docs/installation) (requires v3.0.x).\n  * **Windows users:** Read [this unofficial guide](http://jekyll-windows.juthilo.com/) to get Jekyll up and running without problems.\n2. Install the Ruby-based syntax highlighter, [Rouge](https://github.com/jneen/rouge), with `gem install rouge`.\n3. From the root `/ratchet` directory, run `jekyll serve` in the command line.\n4. Open <http://localhost:4000> in your browser, and boom!\n\nLearn more about using Jekyll by reading its [documentation](http://jekyllrb.com/docs/home/).\n\n### Documentation for previous releases\n\nDocumentation for v1.0.2 has been made available for the time being at <http://goratchet.com/1.0.2/> while folks transition to Ratchet 2.\n\n[Previous releases](https://github.com/twbs/ratchet/releases) and their documentation are also available for download.\n\n## Support\n\nQuestions or discussions about Ratchet should happen in the [Google group](https://groups.google.com/forum/#!forum/goratchet) or hit us up on Twitter [@GoRatchet](https://twitter.com/goratchet).\n\n## Contributing\n\nPlease file a GitHub issue to [report a bug](https://github.com/twbs/ratchet/issues). When reporting a bug, be sure to follow the [contributor guidelines](https://github.com/twbs/ratchet/blob/master/CONTRIBUTING.md).\n\n## Troubleshooting\n\nA small list of \"gotchas\" is provided below for designers and developers starting to work with Ratchet.\n\n* Ratchet is designed to respond to touch events from a mobile device. In order to use mouse click events (for desktop browsing and testing), you have a few options:\n  * Enable touch event emulation in Chrome (found in the overrides tab in the web inspector preferences)\n  * Use a JavaScript library like fingerblast.js to emulate touch events (ideally only loaded from desktop devices)\n* Script tags containing JavaScript will not be executed on pages that are loaded with push.js. If you would like to attach event handlers to elements on other pages, document-level event delegation is a common solution.\n* Ratchet uses XHR requests to fetch additional pages inside the application. Due to security concerns, modern browsers prevent XHR requests when opening files locally (aka using the `file://` protocol); consequently, Ratchet does not work when opened directly as a file.\n  * A common solution to this is to simply serve the files from a local server. One convenient way to achieve this is to run `python -m SimpleHTTPServer <port>` to serve up the files in the current directory to `http://localhost:<port>`\n\n## Versioning\n\nFor transparency into our release cycle and in striving to maintain backward compatibility, Ratchet is maintained under the Semantic Versioning guidelines. Sometimes we screw up, but we'll adhere to these rules whenever possible.\n\nReleases will be numbered with the following format:\n\n`<major>.<minor>.<patch>`\n\nAnd constructed with the following guidelines:\n\n* Breaking backward compatibility **bumps the major** while resetting minor and patch\n* New additions without breaking backward compatibility **bumps the minor** while resetting the patch\n* Bug fixes and misc changes **bumps only the patch**\n\nFor more information on SemVer, please visit <http://semver.org/>.\n\n## Maintainers\n\nConnor Sears\n\n* <https://twitter.com/connors>\n* <https://github.com/connors>\n\n\nCreated by Connor Sears, Dave Gamache, and Jacob Thornton.\n\n\n## License\n\nRatchet is licensed under the [MIT License](http://opensource.org/licenses/MIT).\n"
  },
  {
    "path": "_config.yml",
    "content": "# Meta data\nname:         Ratchet\nauthors:      Connor Sears\ndescription:  Build mobile apps with simple HTML, CSS, and JS components.\n\n# Dependencies\nhighlighter:  rouge\n\n# Permalinks\npermalink:    pretty\n\n# Server\nsource:       docs\nport:         4000\nurl:          http://goratchet.com\n"
  },
  {
    "path": "bower.json",
    "content": "{\n  \"name\": \"ratchet\",\n  \"description\": \"Build mobile apps with simple HTML, CSS, and JS components.\",\n  \"keywords\": [\n    \"css\",\n    \"js\",\n    \"fonts\",\n    \"ios\",\n    \"android\",\n    \"mobile\",\n    \"prototype\"\n  ],\n  \"homepage\": \"http://goratchet.com\",\n  \"main\": [\n    \"sass/ratchet.scss\",\n    \"dist/css/ratchet.css\",\n    \"dist/js/ratchet.js\",\n    \"dist/fonts/ratchicons.eot\",\n    \"dist/fonts/ratchicons.svg\",\n    \"dist/fonts/ratchicons.ttf\",\n    \"dist/fonts/ratchicons.woff\"\n  ],\n  \"ignore\": [\n    \"_config.yml\",\n    \".travis.yml\",\n    \"CNAME\",\n    \"CONTRIBUTING.md\",\n    \"docs\"\n  ]\n}\n"
  },
  {
    "path": "dist/css/ratchet-theme-android.css",
    "content": "/*!\n * =====================================================\n * Ratchet v2.0.2 (http://goratchet.com)\n * Copyright 2016 Connor Sears\n * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)\n *\n * v2.0.2 designed by @connors.\n * =====================================================\n */\n\nbody {\n  font-family: \"Roboto\", sans-serif;\n  font-size: 18px;\n  line-height: 22px;\n  color: #222;\n}\n\na {\n  color: #33b5e5;\n}\n\na:active {\n  color: #1a9bcb;\n}\n\n.content {\n  background-color: #f2f2f2;\n}\n\n.bar-nav ~ .content {\n  padding-top: 50px;\n}\n\n.bar-header-secondary ~ .content {\n  padding-top: 100px;\n}\n\n.bar-tab ~ .content {\n  padding-top: 50px;\n  padding-bottom: 0;\n}\n\n.bar-footer ~ .content {\n  padding-bottom: 50px;\n}\n\n.bar-footer-secondary ~ .content {\n  padding-bottom: 100px;\n}\n\n.btn {\n  padding: 8px 15px;\n  font-size: 14px;\n  color: #222;\n  background-color: #cecece;\n  border: 0;\n  border-radius: 2px;\n  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 1px rgba(0, 0, 0, .25);\n          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 1px rgba(0, 0, 0, .25);\n}\n\n.btn:active, .btn.active {\n  color: #222;\n  background-color: #999;\n  border: 0;\n  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .2);\n          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .2);\n}\n\n.btn-primary {\n  color: #fff;\n  background-color: #33b5e5;\n  border: 0;\n}\n\n.btn-primary:active, .btn-primary.active {\n  color: #fff;\n  background-color: #1a9bcb;\n  border: 0;\n}\n\n.btn-positive {\n  color: #fff;\n  background-color: #9c0;\n  border: 0;\n}\n\n.btn-positive:active, .btn-positive.active {\n  color: #fff;\n  background-color: #739900;\n  border: 0;\n}\n\n.btn-negative {\n  color: #fff;\n  background-color: #f44;\n  border: 0;\n}\n\n.btn-negative:active, .btn-negative.active {\n  color: #fff;\n  background-color: #f11;\n  border: 0;\n}\n\n.btn-outlined {\n  background-color: transparent;\n  border: 1px solid #999;\n  -webkit-box-shadow: none;\n          box-shadow: none;\n}\n\n.btn-outlined.btn-primary {\n  color: #33b5e5;\n  border: 1px solid #33b5e5;\n}\n\n.btn-outlined.btn-primary:active {\n  background-color: #33b5e5;\n  border: 1px solid #33b5e5;\n}\n\n.btn-outlined.btn-positive {\n  color: #9c0;\n  border: 1px solid #9c0;\n}\n\n.btn-outlined.btn-positive:active {\n  background-color: #9c0;\n  border: 1px solid #9c0;\n}\n\n.btn-outlined.btn-negative {\n  color: #f44;\n  border: 1px solid #f44;\n}\n\n.btn-outlined.btn-negative:active {\n  background-color: #f44;\n  border: 1px solid #f44;\n}\n\n.btn-outlined:active {\n  background-color: #999;\n  border: 1px solid #999;\n  -webkit-box-shadow: none;\n          box-shadow: none;\n}\n\n.btn-outlined.btn-primary:active, .btn-outlined.btn-positive:active, .btn-outlined.btn-negative:active {\n  color: #fff;\n  -webkit-box-shadow: none;\n          box-shadow: none;\n}\n\n.btn-link {\n  color: #33b5e5;\n  background-color: transparent;\n  border: none;\n  -webkit-box-shadow: none;\n          box-shadow: none;\n}\n\n.btn-link:active, .btn-link.active {\n  color: #1a9bcb;\n  background-color: transparent;\n  -webkit-box-shadow: none;\n          box-shadow: none;\n}\n\n.btn-block {\n  padding: 15px 0;\n  font-size: 18px;\n}\n\n.btn .badge {\n  background-color: rgba(0, 0, 0, .15);\n}\n\n.btn .badge.badge-inverted {\n  background-color: transparent;\n}\n\n.btn:active .badge {\n  color: #fff;\n}\n\n.bar {\n  height: 50px;\n  background-color: #ddd;\n  border-bottom: 1px solid #b1b1b1;\n  -webkit-box-shadow: inset 0 -2px 0 #d2d2d2, 0 3px 3px rgba(0, 0, 0, .07);\n          box-shadow: inset 0 -2px 0 #d2d2d2, 0 3px 3px rgba(0, 0, 0, .07);\n}\n\n.bar.bar-header-secondary {\n  top: 50px;\n}\n\n.bar.bar-footer-secondary {\n  bottom: 50px;\n}\n\n.bar.bar-footer-secondary-tab {\n  bottom: 50px;\n}\n\n.bar .bar-footer,\n.bar .bar-footer-secondary,\n.bar .bar-footer-secondary-tab {\n  border-top: 1px solid #b1b1b1;\n  border-bottom: 0;\n  -webkit-box-shadow: inset 0 -2px 0 #33b5e5;\n          box-shadow: inset 0 -2px 0 #33b5e5;\n}\n\n.bar-tab {\n  top: 0;\n  bottom: auto;\n  height: 50px;\n  border-top: 0;\n}\n\n.bar-tab .tab-item {\n  color: #929292;\n}\n\n.bar-tab .tab-item.active {\n  color: #33b5e5;\n  -webkit-box-shadow: inset 0 -2px 0 #33b5e5;\n          box-shadow: inset 0 -2px 0 #33b5e5;\n}\n\n.bar-tab .tab-item:active {\n  color: #929292;\n  background-color: #78c6e3;\n}\n\n.bar-tab .tab-item .icon {\n  top: 3px;\n  padding-top: 0;\n  padding-bottom: 0;\n}\n\n.title {\n  position: static;\n  padding-left: 15px;\n  font-size: 18px;\n  line-height: 49px;\n  text-align: left;\n}\n\n.bar .btn {\n  top: 7px;\n  padding-top: 10px;\n  padding-bottom: 10px;\n}\n\n.bar .btn-link {\n  top: 0;\n  padding: 0;\n  font-size: 18px;\n  line-height: 49px;\n  color: #33b5e5;\n}\n\n.bar .btn-link:active, .bar .btn-link.active {\n  color: #1a9bcb;\n}\n\n.bar .btn-link .icon {\n  top: 2px;\n  padding: 0;\n}\n\n.bar .btn-block {\n  top: 4px;\n}\n\n.bar .segmented-control {\n  top: 7px;\n}\n\n.bar .icon {\n  padding-top: 13px;\n  padding-bottom: 13px;\n}\n\n.bar .title .icon {\n  padding: 0;\n}\n\n.bar .title .icon.icon-caret {\n  top: 10px;\n  color: #777;\n}\n\n.bar input[type=\"search\"] {\n  height: 35px;\n}\n\n.badge.badge-inverted {\n  color: #999;\n  background-color: transparent;\n}\n\n.badge-primary {\n  color: #fff;\n  background-color: #33b5e5;\n}\n\n.badge-primary.badge-inverted {\n  color: #33b5e5;\n  background-color: transparent;\n}\n\n.badge-positive {\n  color: #fff;\n  background-color: #9c0;\n}\n\n.badge-positive.badge-inverted {\n  color: #9c0;\n  background-color: transparent;\n}\n\n.badge-negative {\n  color: #fff;\n  background-color: #f44;\n}\n\n.badge-negative.badge-inverted {\n  color: #f44;\n  background-color: transparent;\n}\n\n.card {\n  background-color: transparent;\n  border-color: #d9d9d9;\n  border-radius: 2px;\n}\n\n.table-view {\n  background-color: transparent;\n}\n\n.table-view .table-view-cell {\n  border-bottom: 1px solid #d9d9d9;\n}\n\n.table-view .table-view-cell:last-child {\n  background-image: none;\n}\n\n.table-view .table-view-cell > a:not(.btn):active {\n  color: inherit;\n  background-color: #e0e0e0;\n}\n\n.table-view .table-view-cell > a:not(.btn):active .icon {\n  color: #fff;\n}\n\n.table-view .table-view-divider {\n  padding-top: 25px;\n  font-size: 12px;\n  font-weight: bold;\n  text-transform: uppercase;\n  background-color: transparent;\n  border-top: 0;\n  border-bottom: 2px solid #a9a9a9;\n}\n\n.table-view-cell .navigate-left > .btn,\n.table-view-cell .navigate-left > .badge,\n.table-view-cell .navigate-left > .toggle,\n.table-view-cell .navigate-right > .btn,\n.table-view-cell .navigate-right > .badge,\n.table-view-cell .navigate-right > .toggle,\n.table-view-cell .push-left > .btn,\n.table-view-cell .push-left > .badge,\n.table-view-cell .push-left > .toggle,\n.table-view-cell .push-right > .btn,\n.table-view-cell .push-right > .badge,\n.table-view-cell .push-right > .toggle,\n.table-view-cell > a .navigate-left > .btn,\n.table-view-cell > a .navigate-left > .badge,\n.table-view-cell > a .navigate-left > .toggle,\n.table-view-cell > a .navigate-right > .btn,\n.table-view-cell > a .navigate-right > .badge,\n.table-view-cell > a .navigate-right > .toggle,\n.table-view-cell > a .push-left > .btn,\n.table-view-cell > a .push-left > .badge,\n.table-view-cell > a .push-left > .toggle,\n.table-view-cell > a .push-right > .btn,\n.table-view-cell > a .push-right > .badge,\n.table-view-cell > a .push-right > .toggle {\n  right: 15px;\n}\n\nselect,\ntextarea,\ninput[type=\"text\"],\ninput[type=\"search\"],\ninput[type=\"password\"],\ninput[type=\"datetime\"],\ninput[type=\"datetime-local\"],\ninput[type=\"date\"],\ninput[type=\"month\"],\ninput[type=\"time\"],\ninput[type=\"week\"],\ninput[type=\"number\"],\ninput[type=\"email\"],\ninput[type=\"url\"],\ninput[type=\"tel\"],\ninput[type=\"color\"],\n.input-group {\n  height: 40px;\n  padding: 10px 15px;\n  border: 1px solid rgba(0, 0, 0, .2);\n  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .1);\n          box-shadow: 0 1px 1px rgba(0, 0, 0, .1);\n}\n\ninput[type=\"search\"] {\n  border-radius: 2px;\n}\n\nselect,\ntextarea,\n.input-group {\n  height: auto;\n}\n\n.input-group {\n  padding: 0;\n  border: 0;\n}\n\n.input-group input {\n  border: 0;\n  border-bottom: 1px solid #d9d9d9;\n  -webkit-box-shadow: none;\n          box-shadow: none;\n}\n\n.input-group input:last-child {\n  background-image: none;\n}\n\n.input-row {\n  height: 40px;\n  border-bottom: 1px solid #d9d9d9;\n}\n\n.input-row label {\n  padding-top: 10px;\n  padding-bottom: 10px;\n}\n\n.input-row label + input {\n  background-image: none;\n  border-bottom: 0;\n}\n\n.segmented-control {\n  font-size: 14px;\n  background-color: #cecece;\n  border: 0;\n  border-radius: 2px;\n  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .25);\n          box-shadow: 0 1px 1px rgba(0, 0, 0, .25);\n}\n\n.segmented-control .control-item {\n  padding-top: 10px;\n  padding-bottom: 10px;\n  color: #222;\n  border-left: 1px solid #999;\n  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .2);\n          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .2);\n}\n\n.segmented-control .control-item:first-child {\n  border-left-width: 0;\n}\n\n.segmented-control .control-item:active, .segmented-control .control-item.active {\n  background-color: #999;\n}\n\n.segmented-control-primary {\n  border: 0;\n}\n\n.segmented-control-primary .control-item {\n  color: #fff;\n  border-color: inherit;\n}\n\n.segmented-control-primary .control-item:active, .segmented-control-primary .control-item.active {\n  color: #fff;\n  background-color: #33b5e5;\n}\n\n.segmented-control-positive {\n  border: 0;\n}\n\n.segmented-control-positive .control-item {\n  color: #fff;\n  border-color: inherit;\n}\n\n.segmented-control-positive .control-item:active, .segmented-control-positive .control-item.active {\n  color: #fff;\n  background-color: #9c0;\n}\n\n.segmented-control-negative {\n  border: 0;\n}\n\n.segmented-control-negative .control-item {\n  color: #fff;\n  border-color: inherit;\n}\n\n.segmented-control-negative .control-item:active, .segmented-control-negative .control-item.active {\n  color: #fff;\n  background-color: #f44;\n}\n\n.popover {\n  top: 47px;\n  left: 15px;\n  width: 200px;\n  margin-left: 0;\n  border: 1px solid #9b9b9b;\n  border-radius: 0;\n  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .2);\n          box-shadow: 0 0 3px rgba(0, 0, 0, .2);\n  -webkit-transition: -webkit-transform .1s ease-in-out, opacity .2s ease-in-out;\n       -o-transition:      -o-transform .1s ease-in-out, opacity .2s ease-in-out;\n          transition:         transform .1s ease-in-out, opacity .2s ease-in-out;\n  -webkit-transform: scale(.75);\n       -o-transform: scale(.75);\n          transform: scale(.75);\n}\n\n.popover:before {\n  display: none;\n}\n\n.popover.visible {\n  -webkit-transform: scale(1);\n       -o-transform: scale(1);\n          transform: scale(1);\n}\n\n.backdrop {\n  background-color: transparent;\n}\n\n.popover .bar {\n  border-radius: 0;\n}\n\n.popover .bar-nav ~ .table-view {\n  padding-top: 50px;\n}\n\n.popover .table-view {\n  border-radius: 12px;\n}\n\n.toggle {\n  width: 104px;\n  height: 28px;\n  background-color: #d7d7d7;\n  border: 2px solid #d7d7d7;\n  border-radius: 0;\n}\n\n.toggle .toggle-handle {\n  top: 0;\n  left: 0;\n  width: 50px;\n  height: 24px;\n  background-color: #bebebe;\n  border: 1px solid #b5b5b5;\n  border-radius: 2px;\n  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3), inset 0 -1px 0 rgba(0, 0, 0, .1);\n          box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3), inset 0 -1px 0 rgba(0, 0, 0, .1);\n}\n\n.toggle:before {\n  top: 1px;\n  right: auto;\n  left: 11px;\n  z-index: 3;\n  color: #fff;\n}\n\n.toggle.active {\n  background-color: #d7d7d7;\n  border: 2px solid #d7d7d7;\n}\n\n.toggle.active .toggle-handle {\n  margin-right: 2px;\n  background-color: #33b5e5;\n  border-color: #33b5e5;\n  -webkit-transform: translate3d(50px, 0, 0);\n          transform: translate3d(50px, 0, 0);\n}\n\n.toggle.active:before {\n  right: 14px;\n  left: auto;\n  color: #fff;\n}\n\n.navigate-left:after,\n.push-left:after {\n  content: '';\n}\n\n.navigate-right:after,\n.push-right:after {\n  content: '';\n}\n\n.icon-caret:before {\n  content: '\\e800';\n}\n\n.icon-down:before,\n.icon-down-nav:before {\n  content: '\\e801';\n}\n\n.icon-download:before {\n  content: '\\e802';\n}\n\n.icon-left:before,\n.icon-left-nav:before {\n  content: '\\e803';\n}\n\n.icon-more-vertical:before {\n  content: '\\e804';\n}\n\n.icon-more:before {\n  content: '\\e805';\n}\n\n.icon-right:before,\n.icon-right-nav:before {\n  content: '\\e806';\n}\n\n.icon-search:before {\n  content: '\\e807';\n}\n\n.icon-share:before {\n  content: '\\e808';\n}\n\n.icon-up:before,\n.icon-up-nav:before {\n  content: '\\e809';\n}\n"
  },
  {
    "path": "dist/css/ratchet-theme-ios.css",
    "content": "/*!\n * =====================================================\n * Ratchet v2.0.2 (http://goratchet.com)\n * Copyright 2016 Connor Sears\n * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)\n *\n * v2.0.2 designed by @connors.\n * =====================================================\n */\n\na {\n  color: #007aff;\n}\n\na:active {\n  color: #0062cc;\n}\n\n.content {\n  background-color: #efeff4;\n}\n\n.h5, h5,\n.h6, h6,\np {\n  color: #8f8f94;\n}\n\n.h5, h5,\n.h6, h6 {\n  font-weight: normal;\n  text-transform: uppercase;\n}\n\n.btn {\n  color: #929292;\n  background-color: rgba(247, 247, 247, .98);\n  border: 1px solid #929292;\n  -webkit-transition: all;\n          transition: all;\n  -webkit-transition-timing-function: linear;\n          transition-timing-function: linear;\n  -webkit-transition-duration: .2s;\n          transition-duration: .2s;\n}\n\n.btn:active, .btn.active {\n  color: #fff;\n  background-color: #929292;\n}\n\n.btn-primary {\n  color: #fff;\n  background-color: #007aff;\n  border: 1px solid #007aff;\n}\n\n.btn-primary:active, .btn-primary.active {\n  background-color: #0062cc;\n  border: 1px solid #0062cc;\n}\n\n.btn-positive {\n  color: #fff;\n  background-color: #4cd964;\n  border: 1px solid #4cd964;\n}\n\n.btn-positive:active, .btn-positive.active {\n  background-color: #2ac845;\n  border: 1px solid #2ac845;\n}\n\n.btn-negative {\n  color: #fff;\n  background-color: #dd524d;\n  border: 1px solid #dd524d;\n}\n\n.btn-negative:active, .btn-negative.active {\n  background-color: #cf2d28;\n  border: 1px solid #cf2d28;\n}\n\n.btn-outlined {\n  background-color: transparent;\n}\n\n.btn-outlined.btn-primary {\n  color: #007aff;\n}\n\n.btn-outlined.btn-positive {\n  color: #4cd964;\n}\n\n.btn-outlined.btn-negative {\n  color: #dd524d;\n}\n\n.btn-outlined.btn-primary:active, .btn-outlined.btn-positive:active, .btn-outlined.btn-negative:active {\n  color: #fff;\n}\n\n.btn-link {\n  color: #007aff;\n  background-color: transparent;\n  border: none;\n}\n\n.btn-link:active, .btn-link.active {\n  color: #0062cc;\n  background-color: transparent;\n}\n\n.btn .badge {\n  background-color: rgba(0, 0, 0, .15);\n}\n\n.btn .badge.badge-inverted {\n  background-color: transparent;\n}\n\n.btn:active .badge {\n  color: #fff;\n}\n\n.bar {\n  background-color: rgba(247, 247, 247, .98);\n  border-bottom: 0;\n  box-shadow: 0 0 1px rgba(0, 0, 0, .85);\n}\n\n.bar.bar-header-secondary {\n  top: 44px;\n}\n\n.bar.bar-footer-secondary {\n  bottom: 44px;\n}\n\n.bar.bar-footer-secondary-tab {\n  bottom: 50px;\n}\n\n.bar.bar-footer, .bar.bar-footer-secondary, .bar.bar-footer-secondary-tab {\n  border-top: 0;\n}\n\n.bar-tab {\n  border-top: 0;\n}\n\n.tab-item {\n  color: #929292;\n}\n\n.tab-item.active, .tab-item:active {\n  color: #007aff;\n}\n\n.bar-nav .btn-link {\n  color: #007aff;\n}\n\n.bar-nav .btn-link:active {\n  color: #007aff;\n  opacity: .6;\n}\n\n.badge.badge-inverted {\n  color: #929292;\n  background-color: transparent;\n}\n\n.badge-primary {\n  color: #fff;\n  background-color: #007aff;\n}\n\n.badge-primary.badge-inverted {\n  color: #007aff;\n  background-color: transparent;\n}\n\n.badge-positive {\n  color: #fff;\n  background-color: #4cd964;\n}\n\n.badge-positive.badge-inverted {\n  color: #4cd964;\n  background-color: transparent;\n}\n\n.badge-negative {\n  color: #fff;\n  background-color: #dd524d;\n}\n\n.badge-negative.badge-inverted {\n  color: #dd524d;\n  background-color: transparent;\n}\n\n.card .table-view {\n  background-image: none;\n}\n\n.card .table-view-cell:last-child {\n  background-image: none;\n}\n\n.table-view {\n  background-image: url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='1'><rect fill='#c8c7cc' x='0' y='0' width='100%' height='0.5'/></svg>\"), url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='1'><rect fill='#c8c7cc' x='0' y='0' width='100%' height='0.5'/></svg>\");\n  background-repeat: no-repeat;\n  background-position: 0 100%, 0 0;\n  border-top: 0;\n  border-bottom: 0;\n}\n\n.table-view .table-view-cell {\n  background-image: url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='1'><rect fill='#c8c7cc' x='0' y='0' width='100%' height='0.5'/></svg>\");\n  background-repeat: no-repeat;\n  background-position: 15px 100%;\n  border-bottom: 0;\n}\n\n.table-view .table-view-cell:last-child {\n  background-image: none;\n}\n\n.table-view .table-view-cell > a:not(.btn):active {\n  color: inherit;\n}\n\n.table-view .table-view-divider {\n  background-image: url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='1'><rect fill='#c8c7cc' x='0' y='0' width='100%' height='0.5'/></svg>\"), url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='1'><rect fill='#c8c7cc' x='0' y='0' width='100%' height='0.5'/></svg>\");\n  background-repeat: no-repeat;\n  background-position: 0 100%, 0 0;\n  border-top: 0;\n  border-bottom: 0;\n}\n\nselect,\ntextarea,\ninput[type=\"text\"],\ninput[type=\"search\"],\ninput[type=\"password\"],\ninput[type=\"datetime\"],\ninput[type=\"datetime-local\"],\ninput[type=\"date\"],\ninput[type=\"month\"],\ninput[type=\"time\"],\ninput[type=\"week\"],\ninput[type=\"number\"],\ninput[type=\"email\"],\ninput[type=\"url\"],\ninput[type=\"tel\"],\ninput[type=\"color\"],\n.input-group {\n  height: 40px;\n  padding: 10px 15px;\n  border: 1px solid rgba(0, 0, 0, .2);\n}\n\ninput[type=\"search\"] {\n  height: 34px;\n  text-align: center;\n  background-color: rgba(0, 0, 0, .1);\n  border: 0;\n  border-radius: 6px;\n}\n\ninput[type=\"search\"]:focus {\n  text-align: left;\n}\n\nselect,\ntextarea,\n.input-group {\n  height: auto;\n}\n\n.input-group {\n  padding: 0;\n  background-image: url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='1'><rect fill='#c8c7cc' x='0' y='0' width='100%' height='0.5'/></svg>\"), url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='1'><rect fill='#c8c7cc' x='0' y='0' width='100%' height='0.5'/></svg>\");\n  background-repeat: no-repeat;\n  background-position: 0 100%, 0 0;\n  border: 0;\n}\n\n.input-group input {\n  background-image: url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='1'><rect fill='#c8c7cc' x='0' y='0' width='100%' height='0.5'/></svg>\");\n  background-repeat: no-repeat;\n  background-position: 15px 100%;\n  border: 0;\n}\n\n.input-group input:last-child {\n  background-image: none;\n}\n\n.input-row {\n  background-image: url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='1'><rect fill='#c8c7cc' x='0' y='0' width='100%' height='0.5'/></svg>\");\n  background-repeat: no-repeat;\n  background-position: 15px 100%;\n  border-bottom: 0;\n}\n\n.input-row:last-child,\n.input-row label + input {\n  background-image: none;\n}\n\n.segmented-control {\n  background-color: transparent;\n  border: 1px solid #929292;\n}\n\n.segmented-control .control-item {\n  color: #929292;\n  border-color: #929292;\n  -webkit-transition: background-color .1s linear;\n          transition: background-color .1s linear;\n}\n\n.segmented-control .control-item:active {\n  background-color: #ebebeb;\n}\n\n.segmented-control .control-item.active {\n  color: #fff;\n  background-color: #929292;\n}\n\n.segmented-control-primary {\n  border: 1px solid #007aff;\n}\n\n.segmented-control-primary .control-item {\n  color: #007aff;\n  border-color: inherit;\n}\n\n.segmented-control-primary .control-item:active {\n  background-color: #b3d7ff;\n}\n\n.segmented-control-primary .control-item.active {\n  color: #fff;\n  background-color: #007aff;\n}\n\n.segmented-control-positive {\n  border: 1px solid #4cd964;\n}\n\n.segmented-control-positive .control-item {\n  color: #4cd964;\n  border-color: inherit;\n}\n\n.segmented-control-positive .control-item:active {\n  background-color: #dff8e4;\n}\n\n.segmented-control-positive .control-item.active {\n  color: #fff;\n  background-color: #4cd964;\n}\n\n.segmented-control-negative {\n  border: 1px solid #dd524d;\n}\n\n.segmented-control-negative .control-item {\n  color: #dd524d;\n  border-color: inherit;\n}\n\n.segmented-control-negative .control-item:active {\n  background-color: #fae4e3;\n}\n\n.segmented-control-negative .control-item.active {\n  color: #fff;\n  background-color: #dd524d;\n}\n\n.popover {\n  border-radius: 12px;\n  -webkit-transition: -webkit-transform .2s ease-in-out, opacity .2s ease-in-out;\n          transition: -webkit-transform .2s ease-in-out, opacity .2s ease-in-out;\n}\n\n.popover:before {\n  border-bottom: 15px solid rgba(247, 247, 247, .98);\n}\n\n.popover .bar {\n  box-shadow: none;\n}\n\n.popover .bar-nav {\n  border-bottom: 1px solid rgba(0, 0, 0, .15);\n}\n\n.popover .table-view {\n  background-image: none;\n  border-radius: 12px;\n}\n\n.modal {\n  -webkit-transition-timing-function: cubic-bezier(.1, .5, .1, 1);\n          transition-timing-function: cubic-bezier(.1, .5, .1, 1);\n}\n\n.modal.active {\n  -webkit-transition-timing-function: cubic-bezier(.1, .5, .1, 1);\n          transition-timing-function: cubic-bezier(.1, .5, .1, 1);\n}\n\n.toggle {\n  width: 47px;\n  border: 2px solid #e6e6e6;\n  box-shadow: inset 0 0 0 0 #e1e1e1;\n  -webkit-transition-duration: .2s;\n          transition-duration: .2s;\n  -webkit-transition-property: box-shadow, border;\n          transition-property: box-shadow, border;\n}\n\n.toggle .toggle-handle {\n  border: 1px solid rgba(0, 0, 0, .2);\n  box-shadow: 0 3px 3px rgba(0, 0, 0, .08);\n  -webkit-transition-property: -webkit-transform, border, width;\n          transition-property:         transform, border, width;\n}\n\n.toggle:before {\n  display: none;\n}\n\n.toggle.active {\n  background-color: transparent;\n  border: 2px solid #4cd964;\n  box-shadow: inset 0 0 0 13px #4cd964;\n}\n\n.toggle.active .toggle-handle {\n  -webkit-transform: translate3d(17px, 0, 0);\n          transform: translate3d(17px, 0, 0);\n}\n\n.toggle.active .toggle-handle {\n  border-color: #4cd964;\n}\n\n.content.fade {\n  -webkit-transition: opacity .2s ease-in-out;\n          transition: opacity .2s ease-in-out;\n}\n\n.content.sliding {\n  -webkit-transition-timing-function: cubic-bezier(.1, .5, .1, 1);\n          transition-timing-function: cubic-bezier(.1, .5, .1, 1);\n}\n\n.content.sliding.sliding-in, .content.sliding.right:not([class*=\"sliding-in\"]) {\n  -webkit-animation-name: fadeOverlay;\n          animation-name: fadeOverlay;\n  -webkit-animation-duration: .4s;\n          animation-duration: .4s;\n}\n\n.content.sliding.right:not([class*=\"sliding-in\"]) {\n  -webkit-animation-direction: reverse;\n          animation-direction: reverse;\n}\n\n.content.sliding.left {\n  -webkit-transform: translate3d(-20%, 0, 0);\n          transform: translate3d(-20%, 0, 0);\n}\n\n@-webkit-keyframes fadeOverlay {\n  from {\n    box-shadow: 0 0 10px transparent, -320px 0 0 transparent;\n  }\n  to {\n    box-shadow: 0 0 10px rgba(0, 0, 0, .3), -320px 0 0 rgba(0, 0, 0, .1);\n  }\n}\n"
  },
  {
    "path": "dist/css/ratchet.css",
    "content": "/*!\n * =====================================================\n * Ratchet v2.0.2 (http://goratchet.com)\n * Copyright 2016 Connor Sears\n * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)\n *\n * v2.0.2 designed by @connors.\n * =====================================================\n */\n\n/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */\nhtml {\n  font-family: sans-serif;\n  -webkit-text-size-adjust: 100%;\n      -ms-text-size-adjust: 100%;\n}\n\nbody {\n  margin: 0;\n}\n\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nmenu,\nnav,\nsection,\nsummary {\n  display: block;\n}\n\naudio,\ncanvas,\nprogress,\nvideo {\n  display: inline-block;\n  vertical-align: baseline;\n}\n\naudio:not([controls]) {\n  display: none;\n  height: 0;\n}\n\n[hidden],\ntemplate {\n  display: none;\n}\n\na {\n  background-color: transparent;\n}\n\na:active,\na:hover {\n  outline: 0;\n}\n\nabbr[title] {\n  border-bottom: 1px dotted;\n}\n\nb,\nstrong {\n  font-weight: bold;\n}\n\ndfn {\n  font-style: italic;\n}\n\nh1 {\n  margin: .67em 0;\n  font-size: 2em;\n}\n\nmark {\n  color: #000;\n  background: #ff0;\n}\n\nsmall {\n  font-size: 80%;\n}\n\nsub,\nsup {\n  position: relative;\n  font-size: 75%;\n  line-height: 0;\n  vertical-align: baseline;\n}\n\nsup {\n  top: -.5em;\n}\n\nsub {\n  bottom: -.25em;\n}\n\nimg {\n  border: 0;\n}\n\nsvg:not(:root) {\n  overflow: hidden;\n}\n\nfigure {\n  margin: 1em 40px;\n}\n\nhr {\n  height: 0;\n  -webkit-box-sizing: content-box;\n     -moz-box-sizing: content-box;\n          box-sizing: content-box;\n}\n\npre {\n  overflow: auto;\n}\n\ncode,\nkbd,\npre,\nsamp {\n  font-family: monospace, monospace;\n  font-size: 1em;\n}\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n  margin: 0;\n  font: inherit;\n  color: inherit;\n}\n\nbutton {\n  overflow: visible;\n}\n\nbutton,\nselect {\n  text-transform: none;\n}\n\nbutton,\nhtml input[type=\"button\"],\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n  -webkit-appearance: button;\n  cursor: pointer;\n}\n\nbutton[disabled],\nhtml input[disabled] {\n  cursor: default;\n}\n\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n  padding: 0;\n  border: 0;\n}\n\ninput {\n  line-height: normal;\n}\n\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n  -webkit-box-sizing: border-box;\n     -moz-box-sizing: border-box;\n          box-sizing: border-box;\n  padding: 0;\n}\n\ninput[type=\"number\"]::-webkit-inner-spin-button,\ninput[type=\"number\"]::-webkit-outer-spin-button {\n  height: auto;\n}\n\ninput[type=\"search\"] {\n  -webkit-box-sizing: content-box;\n     -moz-box-sizing: content-box;\n          box-sizing: content-box;\n  -webkit-appearance: textfield;\n}\n\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n  -webkit-appearance: none;\n}\n\nfieldset {\n  padding: .35em .625em .75em;\n  margin: 0 2px;\n  border: 1px solid #c0c0c0;\n}\n\nlegend {\n  padding: 0;\n  border: 0;\n}\n\ntextarea {\n  overflow: auto;\n}\n\noptgroup {\n  font-weight: bold;\n}\n\ntable {\n  border-spacing: 0;\n  border-collapse: collapse;\n}\n\ntd,\nth {\n  padding: 0;\n}\n\n* {\n  -webkit-box-sizing: border-box;\n     -moz-box-sizing: border-box;\n          box-sizing: border-box;\n}\n\nbody {\n  position: fixed;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  font-family: \"Helvetica Neue\", Helvetica, sans-serif;\n  font-size: 17px;\n  line-height: 21px;\n  color: #000;\n  background-color: #fff;\n}\n\na {\n  color: #428bca;\n  text-decoration: none;\n\n  -webkit-tap-highlight-color: transparent;\n}\n\na:active {\n  color: #3071a9;\n}\n\n.content {\n  position: absolute;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  overflow: auto;\n  -webkit-overflow-scrolling: touch;\n  background-color: #fff;\n}\n\n.content > * {\n  -webkit-transform: translateZ(0);\n      -ms-transform: translateZ(0);\n          transform: translateZ(0);\n}\n\n.bar-nav ~ .content {\n  padding-top: 44px;\n}\n\n.bar-header-secondary ~ .content {\n  padding-top: 88px;\n}\n\n.bar-footer ~ .content {\n  padding-bottom: 44px;\n}\n\n.bar-footer-secondary ~ .content {\n  padding-bottom: 88px;\n}\n\n.bar-tab ~ .content {\n  padding-bottom: 50px;\n}\n\n.bar-footer-secondary-tab ~ .content {\n  padding-bottom: 94px;\n}\n\n.content-padded {\n  margin: 10px;\n}\n\n.text-center {\n  text-align: center;\n}\n\n.pull-left {\n  float: left;\n}\n\n.pull-right {\n  float: right;\n}\n\n.clearfix:before, .clearfix:after {\n  display: table;\n  content: \" \";\n}\n\n.clearfix:after {\n  clear: both;\n}\n\nh1, h2, h3, h4, h5, h6 {\n  margin-top: 0;\n  margin-bottom: 10px;\n  line-height: 1;\n}\n\nh1, .h1 {\n  font-size: 36px;\n}\n\nh2, .h2 {\n  font-size: 30px;\n}\n\nh3, .h3 {\n  font-size: 24px;\n}\n\nh4, .h4 {\n  font-size: 18px;\n}\n\nh5, .h5 {\n  margin-top: 20px;\n  font-size: 14px;\n}\n\nh6, .h6 {\n  margin-top: 20px;\n  font-size: 12px;\n}\n\np {\n  margin-top: 0;\n  margin-bottom: 10px;\n  font-size: 14px;\n  color: #777;\n}\n\n.btn {\n  position: relative;\n  display: inline-block;\n  padding: 6px 8px 7px;\n  margin-bottom: 0;\n  font-size: 12px;\n  font-weight: 400;\n  line-height: 1;\n  color: #333;\n  text-align: center;\n  white-space: nowrap;\n  vertical-align: top;\n  cursor: pointer;\n  background-color: #fff;\n  border: 1px solid #ccc;\n  border-radius: 3px;\n}\n\n.btn:active, .btn.active {\n  color: inherit;\n  background-color: #ccc;\n}\n\n.btn:disabled, .btn.disabled {\n  opacity: .6;\n}\n\n.btn-primary {\n  color: #fff;\n  background-color: #428bca;\n  border: 1px solid #428bca;\n}\n\n.btn-primary:active, .btn-primary.active {\n  color: #fff;\n  background-color: #3071a9;\n  border: 1px solid #3071a9;\n}\n\n.btn-positive {\n  color: #fff;\n  background-color: #5cb85c;\n  border: 1px solid #5cb85c;\n}\n\n.btn-positive:active, .btn-positive.active {\n  color: #fff;\n  background-color: #449d44;\n  border: 1px solid #449d44;\n}\n\n.btn-negative {\n  color: #fff;\n  background-color: #d9534f;\n  border: 1px solid #d9534f;\n}\n\n.btn-negative:active, .btn-negative.active {\n  color: #fff;\n  background-color: #c9302c;\n  border: 1px solid #c9302c;\n}\n\n.btn-outlined {\n  background-color: transparent;\n}\n\n.btn-outlined.btn-primary {\n  color: #428bca;\n}\n\n.btn-outlined.btn-positive {\n  color: #5cb85c;\n}\n\n.btn-outlined.btn-negative {\n  color: #d9534f;\n}\n\n.btn-outlined.btn-primary:active, .btn-outlined.btn-positive:active, .btn-outlined.btn-negative:active {\n  color: #fff;\n}\n\n.btn-link {\n  padding-top: 6px;\n  padding-bottom: 6px;\n  color: #428bca;\n  background-color: transparent;\n  border: 0;\n}\n\n.btn-link:active, .btn-link.active {\n  color: #3071a9;\n  background-color: transparent;\n}\n\n.btn-block {\n  display: block;\n  width: 100%;\n  padding: 15px 0;\n  margin-bottom: 10px;\n  font-size: 18px;\n}\n\ninput[type=\"submit\"],\ninput[type=\"reset\"],\ninput[type=\"button\"] {\n  width: 100%;\n}\n\n.btn .badge {\n  margin: -2px -4px -2px 4px;\n  font-size: 12px;\n  background-color: rgba(0, 0, 0, .15);\n}\n\n.btn .badge-inverted,\n.btn:active .badge-inverted {\n  background-color: transparent;\n}\n\n.btn-primary:active .badge-inverted,\n.btn-positive:active .badge-inverted,\n.btn-negative:active .badge-inverted {\n  color: #fff;\n}\n\n.btn-block .badge {\n  position: absolute;\n  right: 0;\n  margin-right: 10px;\n}\n\n.btn .icon {\n  font-size: inherit;\n}\n\n.bar {\n  position: fixed;\n  right: 0;\n  left: 0;\n  z-index: 10;\n  height: 44px;\n  padding-right: 10px;\n  padding-left: 10px;\n  background-color: #fff;\n  border-bottom: 1px solid #ddd;\n\n  -webkit-backface-visibility: hidden;\n          backface-visibility: hidden;\n}\n\n.bar-header-secondary {\n  top: 44px;\n}\n\n.bar-footer {\n  bottom: 0;\n}\n\n.bar-footer-secondary {\n  bottom: 44px;\n}\n\n.bar-footer-secondary-tab {\n  bottom: 50px;\n}\n\n.bar-footer,\n.bar-footer-secondary,\n.bar-footer-secondary-tab {\n  border-top: 1px solid #ddd;\n  border-bottom: 0;\n}\n\n.bar-nav {\n  top: 0;\n}\n\n.title {\n  position: absolute;\n  display: block;\n  width: 100%;\n  padding: 0;\n  margin: 0 -10px;\n  font-size: 17px;\n  font-weight: 500;\n  line-height: 44px;\n  color: #000;\n  text-align: center;\n  white-space: nowrap;\n}\n\n.title a {\n  color: inherit;\n}\n\n.bar-tab {\n  bottom: 0;\n  display: table;\n  width: 100%;\n  height: 50px;\n  padding: 0;\n  table-layout: fixed;\n  border-top: 1px solid #ddd;\n  border-bottom: 0;\n}\n\n.bar-tab .tab-item {\n  position: relative;\n  display: table-cell;\n  width: 1%;\n  height: 50px;\n  color: #929292;\n  text-align: center;\n  vertical-align: middle;\n}\n\n.bar-tab .tab-item.active, .bar-tab .tab-item:active {\n  color: #428bca;\n}\n\n.bar-tab .tab-item .badge {\n  position: absolute;\n  top: 3px;\n  left: 50%;\n  vertical-align: top;\n}\n\n.bar-tab .tab-item .icon {\n  top: 3px;\n  width: 24px;\n  height: 24px;\n  padding-top: 0;\n  padding-bottom: 0;\n}\n\n.bar-tab .tab-item .icon ~ .tab-label {\n  display: block;\n  font-size: 11px;\n}\n\n.bar .btn {\n  position: relative;\n  top: 7px;\n  z-index: 20;\n  padding: 6px 12px 7px;\n  margin-top: 0;\n  font-weight: 400;\n}\n\n.bar .btn.pull-right {\n  margin-left: 10px;\n}\n\n.bar .btn.pull-left {\n  margin-right: 10px;\n}\n\n.bar .btn-link {\n  top: 0;\n  padding: 0;\n  font-size: 16px;\n  line-height: 44px;\n  color: #428bca;\n  border: 0;\n}\n\n.bar .btn-link:active, .bar .btn-link.active {\n  color: #3071a9;\n}\n\n.bar .btn-block {\n  top: 6px;\n  padding: 7px 0;\n  margin-bottom: 0;\n  font-size: 16px;\n}\n\n.bar .btn-nav.pull-left {\n  margin-left: -5px;\n}\n\n.bar .btn-nav.pull-left .icon-left-nav {\n  margin-right: -3px;\n}\n\n.bar .btn-nav.pull-right {\n  margin-right: -5px;\n}\n\n.bar .btn-nav.pull-right .icon-right-nav {\n  margin-left: -3px;\n}\n\n.bar .icon {\n  position: relative;\n  z-index: 20;\n  padding-top: 10px;\n  padding-bottom: 10px;\n  font-size: 24px;\n}\n\n.bar .btn .icon {\n  top: 3px;\n  padding: 0;\n}\n\n.bar .title .icon {\n  padding: 0;\n}\n\n.bar .title .icon.icon-caret {\n  top: 4px;\n  margin-left: -5px;\n}\n\n.bar input[type=\"search\"] {\n  height: 29px;\n  margin: 6px 0;\n}\n\n.bar .segmented-control {\n  top: 7px;\n  margin: 0 auto;\n}\n\n.badge {\n  display: inline-block;\n  padding: 2px 9px 3px;\n  font-size: 12px;\n  line-height: 1;\n  color: #333;\n  background-color: rgba(0, 0, 0, .15);\n  border-radius: 100px;\n}\n\n.badge.badge-inverted {\n  padding: 0 5px 0 0;\n  background-color: transparent;\n}\n\n.badge-primary {\n  color: #fff;\n  background-color: #428bca;\n}\n\n.badge-primary.badge-inverted {\n  color: #428bca;\n}\n\n.badge-positive {\n  color: #fff;\n  background-color: #5cb85c;\n}\n\n.badge-positive.badge-inverted {\n  color: #5cb85c;\n}\n\n.badge-negative {\n  color: #fff;\n  background-color: #d9534f;\n}\n\n.badge-negative.badge-inverted {\n  color: #d9534f;\n}\n\n.card {\n  margin: 10px;\n  overflow: hidden;\n  background-color: #fff;\n  border: 1px solid #ddd;\n  border-radius: 6px;\n}\n\n.card .table-view {\n  margin-bottom: 0;\n  border-top: 0;\n  border-bottom: 0;\n}\n\n.card .table-view .table-view-divider:first-child {\n  top: 0;\n  border-top-left-radius: 6px;\n  border-top-right-radius: 6px;\n}\n\n.card .table-view .table-view-divider:last-child {\n  border-bottom-right-radius: 6px;\n  border-bottom-left-radius: 6px;\n}\n\n.card .table-view-cell:last-child {\n  border-bottom: 0;\n}\n\n.table-view {\n  padding-left: 0;\n  margin-top: 0;\n  margin-bottom: 15px;\n  list-style: none;\n  background-color: #fff;\n  border-top: 1px solid #ddd;\n  border-bottom: 1px solid #ddd;\n}\n\n.table-view-cell {\n  position: relative;\n  padding: 11px 65px 11px 15px;\n  overflow: hidden;\n  border-bottom: 1px solid #ddd;\n}\n\n.table-view-cell:last-child {\n  border-bottom: 0;\n}\n\n.table-view-cell > a:not(.btn) {\n  position: relative;\n  display: block;\n  padding: inherit;\n  margin: -11px -65px -11px -15px;\n  overflow: hidden;\n  color: inherit;\n}\n\n.table-view-cell > a:not(.btn):active {\n  background-color: #eee;\n}\n\n.table-view-cell p {\n  margin-bottom: 0;\n}\n\n.table-view-divider {\n  padding-top: 6px;\n  padding-bottom: 6px;\n  padding-left: 15px;\n  margin-top: -1px;\n  margin-left: 0;\n  font-weight: 500;\n  color: #999;\n  background-color: #fafafa;\n  border-top: 1px solid #ddd;\n  border-bottom: 1px solid #ddd;\n}\n\n.table-view .media,\n.table-view .media-body {\n  overflow: hidden;\n}\n\n.table-view .media-object.pull-left {\n  margin-right: 10px;\n}\n\n.table-view .media-object.pull-right {\n  margin-left: 10px;\n}\n\n.table-view-cell > .btn,\n.table-view-cell > .badge,\n.table-view-cell > .toggle,\n.table-view-cell > a > .btn,\n.table-view-cell > a > .badge,\n.table-view-cell > a > .toggle {\n  position: absolute;\n  top: 50%;\n  right: 15px;\n  -webkit-transform: translateY(-50%);\n      -ms-transform: translateY(-50%);\n       -o-transform: translateY(-50%);\n          transform: translateY(-50%);\n}\n\n.table-view-cell .navigate-left > .btn,\n.table-view-cell .navigate-left > .badge,\n.table-view-cell .navigate-left > .toggle,\n.table-view-cell .navigate-right > .btn,\n.table-view-cell .navigate-right > .badge,\n.table-view-cell .navigate-right > .toggle,\n.table-view-cell .push-left > .btn,\n.table-view-cell .push-left > .badge,\n.table-view-cell .push-left > .toggle,\n.table-view-cell .push-right > .btn,\n.table-view-cell .push-right > .badge,\n.table-view-cell .push-right > .toggle,\n.table-view-cell > a .navigate-left > .btn,\n.table-view-cell > a .navigate-left > .badge,\n.table-view-cell > a .navigate-left > .toggle,\n.table-view-cell > a .navigate-right > .btn,\n.table-view-cell > a .navigate-right > .badge,\n.table-view-cell > a .navigate-right > .toggle,\n.table-view-cell > a .push-left > .btn,\n.table-view-cell > a .push-left > .badge,\n.table-view-cell > a .push-left > .toggle,\n.table-view-cell > a .push-right > .btn,\n.table-view-cell > a .push-right > .badge,\n.table-view-cell > a .push-right > .toggle {\n  right: 35px;\n}\n\n.content > .table-view:first-child {\n  margin-top: 15px;\n}\n\ninput,\ntextarea,\nbutton,\nselect {\n  font-family: \"Helvetica Neue\", Helvetica, sans-serif;\n  font-size: 17px;\n}\n\nselect,\ntextarea,\ninput[type=\"text\"],\ninput[type=\"search\"],\ninput[type=\"password\"],\ninput[type=\"datetime\"],\ninput[type=\"datetime-local\"],\ninput[type=\"date\"],\ninput[type=\"month\"],\ninput[type=\"time\"],\ninput[type=\"week\"],\ninput[type=\"number\"],\ninput[type=\"email\"],\ninput[type=\"url\"],\ninput[type=\"tel\"],\ninput[type=\"color\"] {\n  width: 100%;\n  height: 35px;\n  -webkit-appearance: none;\n  padding: 0 15px;\n  margin-bottom: 15px;\n  line-height: 21px;\n  background-color: #fff;\n  border: 1px solid #ddd;\n  border-radius: 3px;\n  outline: none;\n}\n\ninput[type=\"search\"] {\n  -webkit-box-sizing: border-box;\n     -moz-box-sizing: border-box;\n          box-sizing: border-box;\n  padding: 0 10px;\n  font-size: 16px;\n  border-radius: 20px;\n}\n\ninput[type=\"search\"]:focus {\n  text-align: left;\n}\n\ntextarea {\n  height: auto;\n}\n\nselect {\n  height: auto;\n  font-size: 14px;\n  background-color: #f8f8f8;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .1);\n          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .1);\n}\n\n.input-group {\n  background-color: #fff;\n}\n\n.input-group input,\n.input-group textarea {\n  margin-bottom: 0;\n  background-color: transparent;\n  border-top: 0;\n  border-right: 0;\n  border-left: 0;\n  border-radius: 0;\n  -webkit-box-shadow: none;\n          box-shadow: none;\n}\n\n.input-row {\n  height: 35px;\n  overflow: hidden;\n  border-bottom: 1px solid #ddd;\n}\n\n.input-row label {\n  float: left;\n  width: 35%;\n  padding: 8px 15px;\n  font-family: \"Helvetica Neue\", Helvetica, sans-serif;\n  line-height: 1.1;\n}\n\n.input-row input {\n  float: right;\n  width: 65%;\n  padding-left: 0;\n  margin-bottom: 0;\n  border: 0;\n}\n\n.segmented-control {\n  position: relative;\n  display: table;\n  overflow: hidden;\n  font-size: 12px;\n  font-weight: 400;\n  background-color: #fff;\n  border: 1px solid #ccc;\n  border-radius: 3px;\n}\n\n.segmented-control .control-item {\n  display: table-cell;\n  width: 1%;\n  padding-top: 6px;\n  padding-bottom: 7px;\n  overflow: hidden;\n  line-height: 1;\n  color: #333;\n  text-align: center;\n  text-overflow: ellipsis;\n  white-space: nowrap;\n  border-left: 1px solid #ccc;\n}\n\n.segmented-control .control-item:first-child {\n  border-left-width: 0;\n}\n\n.segmented-control .control-item:active {\n  background-color: #eee;\n}\n\n.segmented-control .control-item.active {\n  background-color: #ccc;\n}\n\n.segmented-control-primary {\n  border-color: #428bca;\n}\n\n.segmented-control-primary .control-item {\n  color: #428bca;\n  border-color: inherit;\n}\n\n.segmented-control-primary .control-item:active {\n  background-color: #cde1f1;\n}\n\n.segmented-control-primary .control-item.active {\n  color: #fff;\n  background-color: #428bca;\n}\n\n.segmented-control-positive {\n  border-color: #5cb85c;\n}\n\n.segmented-control-positive .control-item {\n  color: #5cb85c;\n  border-color: inherit;\n}\n\n.segmented-control-positive .control-item:active {\n  background-color: #d8eed8;\n}\n\n.segmented-control-positive .control-item.active {\n  color: #fff;\n  background-color: #5cb85c;\n}\n\n.segmented-control-negative {\n  border-color: #d9534f;\n}\n\n.segmented-control-negative .control-item {\n  color: #d9534f;\n  border-color: inherit;\n}\n\n.segmented-control-negative .control-item:active {\n  background-color: #f9e2e2;\n}\n\n.segmented-control-negative .control-item.active {\n  color: #fff;\n  background-color: #d9534f;\n}\n\n.control-content {\n  display: none;\n}\n\n.control-content.active {\n  display: block;\n}\n\n.popover {\n  position: fixed;\n  top: 55px;\n  left: 50%;\n  z-index: 20;\n  display: none;\n  width: 280px;\n  margin-left: -140px;\n  background-color: #fff;\n  border-radius: 6px;\n  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, .1);\n          box-shadow: 0 0 15px rgba(0, 0, 0, .1);\n  opacity: 0;\n  -webkit-transition: all .25s linear;\n       -o-transition: all .25s linear;\n          transition: all .25s linear;\n  -webkit-transform: translate3d(0, -15px, 0);\n      -ms-transform: translate3d(0, -15px, 0);\n          transform: translate3d(0, -15px, 0);\n}\n\n.popover:before {\n  position: absolute;\n  top: -15px;\n  left: 50%;\n  width: 0;\n  height: 0;\n  margin-left: -15px;\n  content: '';\n  border-right: 15px solid transparent;\n  border-bottom: 15px solid #fff;\n  border-left: 15px solid transparent;\n}\n\n.popover.visible {\n  opacity: 1;\n  -webkit-transform: translate3d(0, 0, 0);\n      -ms-transform: translate3d(0, 0, 0);\n          transform: translate3d(0, 0, 0);\n}\n\n.popover .bar ~ .table-view {\n  padding-top: 44px;\n}\n\n.backdrop {\n  position: fixed;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  z-index: 15;\n  background-color: rgba(0, 0, 0, .3);\n}\n\n.popover .btn-block {\n  margin-bottom: 5px;\n}\n\n.popover .btn-block:last-child {\n  margin-bottom: 0;\n}\n\n.popover .bar-nav {\n  border-bottom: 1px solid #ddd;\n  border-top-left-radius: 12px;\n  border-top-right-radius: 12px;\n  -webkit-box-shadow: none;\n          box-shadow: none;\n}\n\n.popover .table-view {\n  max-height: 300px;\n  margin-bottom: 0;\n  overflow: auto;\n  -webkit-overflow-scrolling: touch;\n  background-color: #fff;\n  border-top: 0;\n  border-bottom: 0;\n  border-radius: 6px;\n}\n\n.modal {\n  position: fixed;\n  top: 0;\n  z-index: 11;\n  width: 100%;\n  min-height: 100%;\n  overflow: hidden;\n  background-color: #fff;\n  opacity: 0;\n  -webkit-transition: -webkit-transform .25s, opacity 1ms .25s;\n       -o-transition:      -o-transform .25s, opacity 1ms .25s;\n          transition:         transform .25s, opacity 1ms .25s;\n  -webkit-transform: translate3d(0, 100%, 0);\n      -ms-transform: translate3d(0, 100%, 0);\n          transform: translate3d(0, 100%, 0);\n}\n\n.modal.active {\n  height: 100%;\n  opacity: 1;\n  -webkit-transition: -webkit-transform .25s;\n       -o-transition:      -o-transform .25s;\n          transition:         transform .25s;\n  -webkit-transform: translate3d(0, 0, 0);\n      -ms-transform: translate3d(0, 0, 0);\n          transform: translate3d(0, 0, 0);\n}\n\n.slider {\n  width: 100%;\n}\n\n.slider {\n  overflow: hidden;\n  background-color: #000;\n}\n\n.slider .slide-group {\n  position: relative;\n  font-size: 0;\n  white-space: nowrap;\n  -webkit-transition: all 0s linear;\n       -o-transition: all 0s linear;\n          transition: all 0s linear;\n}\n\n.slider .slide-group .slide {\n  display: inline-block;\n  width: 100%;\n  height: 100%;\n  font-size: 14px;\n  vertical-align: top;\n}\n\n.toggle {\n  position: relative;\n  display: block;\n  width: 74px;\n  height: 30px;\n  background-color: #fff;\n  border: 2px solid #ddd;\n  border-radius: 20px;\n  -webkit-transition-duration: .2s;\n       -o-transition-duration: .2s;\n          transition-duration: .2s;\n  -webkit-transition-property: background-color, border;\n       -o-transition-property: background-color, border;\n          transition-property: background-color, border;\n}\n\n.toggle .toggle-handle {\n  position: absolute;\n  top: -1px;\n  left: -1px;\n  z-index: 2;\n  width: 28px;\n  height: 28px;\n  background-color: #fff;\n  border: 1px solid #ddd;\n  border-radius: 100px;\n  -webkit-transition-duration: .2s;\n       -o-transition-duration: .2s;\n          transition-duration: .2s;\n  -webkit-transition-property: -webkit-transform, border, width;\n       -o-transition-property:      -o-transform, border, width;\n          transition-property:         transform, border, width;\n}\n\n.toggle:before {\n  position: absolute;\n  top: 3px;\n  right: 11px;\n  font-size: 13px;\n  color: #999;\n  text-transform: uppercase;\n  content: \"Off\";\n}\n\n.toggle.active {\n  background-color: #5cb85c;\n  border: 2px solid #5cb85c;\n}\n\n.toggle.active .toggle-handle {\n  border-color: #5cb85c;\n  -webkit-transform: translate3d(44px, 0, 0);\n      -ms-transform: translate3d(44px, 0, 0);\n          transform: translate3d(44px, 0, 0);\n}\n\n.toggle.active:before {\n  right: auto;\n  left: 15px;\n  color: #fff;\n  content: \"On\";\n}\n\n.toggle input[type=\"checkbox\"] {\n  display: none;\n}\n\n.content.fade {\n  left: 0;\n  opacity: 0;\n  -webkit-transition: opacity .4s;\n       -o-transition: opacity .4s;\n          transition: opacity .4s;\n}\n\n.content.fade.in {\n  opacity: 1;\n}\n\n.content.sliding {\n  z-index: 2;\n  -webkit-transition: -webkit-transform .4s;\n       -o-transition:      -o-transform .4s;\n          transition:         transform .4s;\n  -webkit-transform: translate3d(0, 0, 0);\n      -ms-transform: translate3d(0, 0, 0);\n          transform: translate3d(0, 0, 0);\n}\n\n.content.sliding.left {\n  z-index: 1;\n  -webkit-transform: translate3d(-100%, 0, 0);\n      -ms-transform: translate3d(-100%, 0, 0);\n          transform: translate3d(-100%, 0, 0);\n}\n\n.content.sliding.right {\n  z-index: 3;\n  -webkit-transform: translate3d(100%, 0, 0);\n      -ms-transform: translate3d(100%, 0, 0);\n          transform: translate3d(100%, 0, 0);\n}\n\n.navigate-left:after,\n.navigate-right:after,\n.push-left:after,\n.push-right:after {\n  position: absolute;\n  top: 50%;\n  display: inline-block;\n  font-family: Ratchicons;\n  font-size: inherit;\n  line-height: 1;\n  color: #bbb;\n  text-decoration: none;\n  -webkit-transform: translateY(-50%);\n      -ms-transform: translateY(-50%);\n       -o-transform: translateY(-50%);\n          transform: translateY(-50%);\n\n  -webkit-font-smoothing: antialiased;\n}\n\n.navigate-left:after,\n.push-left:after {\n  left: 15px;\n  content: '\\e822';\n}\n\n.navigate-right:after,\n.push-right:after {\n  right: 15px;\n  content: '\\e826';\n}\n\n@font-face {\n  font-family: Ratchicons;\n  font-style: normal;\n  font-weight: normal;\n\n  src: url(\"../fonts/ratchicons.eot\");\n  src: url(\"../fonts/ratchicons.eot?#iefix\") format(\"embedded-opentype\"), url(\"../fonts/ratchicons.woff\") format(\"woff\"), url(\"../fonts/ratchicons.ttf\") format(\"truetype\"), url(\"../fonts/ratchicons.svg#svgFontName\") format(\"svg\");\n}\n\n.icon {\n  display: inline-block;\n  font-family: Ratchicons;\n  font-size: 24px;\n  line-height: 1;\n  text-decoration: none;\n\n  -webkit-font-smoothing: antialiased;\n}\n\n.icon-back:before {\n  content: '\\e80a';\n}\n\n.icon-bars:before {\n  content: '\\e80e';\n}\n\n.icon-caret:before {\n  content: '\\e80f';\n}\n\n.icon-check:before {\n  content: '\\e810';\n}\n\n.icon-close:before {\n  content: '\\e811';\n}\n\n.icon-code:before {\n  content: '\\e812';\n}\n\n.icon-compose:before {\n  content: '\\e813';\n}\n\n.icon-download:before {\n  content: '\\e815';\n}\n\n.icon-edit:before {\n  content: '\\e829';\n}\n\n.icon-forward:before {\n  content: '\\e82a';\n}\n\n.icon-gear:before {\n  content: '\\e821';\n}\n\n.icon-home:before {\n  content: '\\e82b';\n}\n\n.icon-info:before {\n  content: '\\e82c';\n}\n\n.icon-list:before {\n  content: '\\e823';\n}\n\n.icon-more-vertical:before {\n  content: '\\e82e';\n}\n\n.icon-more:before {\n  content: '\\e82f';\n}\n\n.icon-pages:before {\n  content: '\\e824';\n}\n\n.icon-pause:before {\n  content: '\\e830';\n}\n\n.icon-person:before {\n  content: '\\e832';\n}\n\n.icon-play:before {\n  content: '\\e816';\n}\n\n.icon-plus:before {\n  content: '\\e817';\n}\n\n.icon-refresh:before {\n  content: '\\e825';\n}\n\n.icon-search:before {\n  content: '\\e819';\n}\n\n.icon-share:before {\n  content: '\\e81a';\n}\n\n.icon-sound:before {\n  content: '\\e827';\n}\n\n.icon-sound2:before {\n  content: '\\e828';\n}\n\n.icon-sound3:before {\n  content: '\\e80b';\n}\n\n.icon-sound4:before {\n  content: '\\e80c';\n}\n\n.icon-star-filled:before {\n  content: '\\e81b';\n}\n\n.icon-star:before {\n  content: '\\e81c';\n}\n\n.icon-stop:before {\n  content: '\\e81d';\n}\n\n.icon-trash:before {\n  content: '\\e81e';\n}\n\n.icon-up-nav:before {\n  content: '\\e81f';\n}\n\n.icon-up:before {\n  content: '\\e80d';\n}\n\n.icon-right-nav:before {\n  content: '\\e818';\n}\n\n.icon-right:before {\n  content: '\\e826';\n}\n\n.icon-down-nav:before {\n  content: '\\e814';\n}\n\n.icon-down:before {\n  content: '\\e820';\n}\n\n.icon-left-nav:before {\n  content: '\\e82d';\n}\n\n.icon-left:before {\n  content: '\\e822';\n}\n"
  },
  {
    "path": "dist/js/ratchet.js",
    "content": "/*!\n * =====================================================\n * Ratchet v2.0.2 (http://goratchet.com)\n * Copyright 2016 Connor Sears\n * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)\n *\n * v2.0.2 designed by @connors.\n * =====================================================\n */\n/* ========================================================================\n * Ratchet: common.js v2.0.2\n * http://goratchet.com/\n * ========================================================================\n * Copyright 2015 Connor Sears\n * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)\n * ======================================================================== */\n\n!(function () {\n  'use strict';\n\n  // Compatible With CustomEvent\n  if (!window.CustomEvent) {\n    window.CustomEvent = function (type, config) {\n      var e = document.createEvent('CustomEvent');\n      e.initCustomEvent(type, config.bubbles, config.cancelable, config.detail);\n      return e;\n    };\n  }\n\n  // Create Ratchet namespace\n  if (typeof window.RATCHET === 'undefined') {\n    window.RATCHET = {};\n  }\n\n  // Original script from http://davidwalsh.name/vendor-prefix\n  window.RATCHET.getBrowserCapabilities = (function () {\n    var styles = window.getComputedStyle(document.documentElement, '');\n    var pre = (Array.prototype.slice\n        .call(styles)\n        .join('')\n        .match(/-(moz|webkit|ms)-/) || (styles.OLink === '' && ['', 'o'])\n      )[1];\n    return {\n      prefix: '-' + pre + '-',\n      transform: pre[0].toUpperCase() + pre.substr(1) + 'Transform'\n    };\n  })();\n\n  window.RATCHET.getTransitionEnd = (function () {\n    var el = document.createElement('ratchet');\n    var transEndEventNames = {\n      WebkitTransition : 'webkitTransitionEnd',\n      MozTransition : 'transitionend',\n      OTransition : 'oTransitionEnd otransitionend',\n      transition : 'transitionend'\n    };\n\n    for (var name in transEndEventNames) {\n      if (el.style[name] !== undefined) {\n        return transEndEventNames[name];\n      }\n    }\n\n    return transEndEventNames.transition;\n  })();\n}());\n\n/* ========================================================================\n * Ratchet: modals.js v2.0.2\n * http://goratchet.com/components#modals\n * ========================================================================\n * Copyright 2015 Connor Sears\n * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)\n * ======================================================================== */\n\n!(function () {\n  'use strict';\n\n  var findModals = function (target) {\n    var i;\n    var modals = document.querySelectorAll('a');\n\n    for (; target && target !== document; target = target.parentNode) {\n      for (i = modals.length; i--;) {\n        if (modals[i] === target) {\n          return target;\n        }\n      }\n    }\n  };\n\n  var getModal = function (event) {\n    var modalToggle = findModals(event.target);\n    if (modalToggle && modalToggle.hash) {\n      return document.querySelector(modalToggle.hash);\n    }\n  };\n\n  window.addEventListener('touchend', function (event) {\n    var modal = getModal(event);\n    if (modal && modal.classList.contains('modal')) {\n      var eventToDispatch = null;\n      if (modal.classList.contains('active')) {\n        eventToDispatch = new CustomEvent('modalClose', {\n          bubbles: true,\n          cancelable: true\n        });\n      }\n      else {\n        eventToDispatch = new CustomEvent('modalOpen', {\n          bubbles: true,\n          cancelable: true\n        });\n      }\n      modal.dispatchEvent(eventToDispatch);\n      modal.classList.toggle('active');\n      event.preventDefault(); // prevents rewriting url (apps can still use hash values in url)\n    }\n  });\n}());\n\n/* ========================================================================\n * Ratchet: popovers.js v2.0.2\n * http://goratchet.com/components#popovers\n * ========================================================================\n * Copyright 2015 Connor Sears\n * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)\n * ======================================================================== */\n\n!(function () {\n  'use strict';\n\n  var popover;\n\n  var findPopovers = function (target) {\n    var i;\n    var popovers = document.querySelectorAll('a');\n\n    for (; target && target !== document; target = target.parentNode) {\n      for (i = popovers.length; i--;) {\n        if (popovers[i] === target) {\n          return target;\n        }\n      }\n    }\n  };\n\n  var onPopoverHidden = function () {\n    popover.style.display = 'none';\n    popover.removeEventListener(window.RATCHET.getTransitionEnd, onPopoverHidden);\n  };\n\n  var backdrop = (function () {\n    var element = document.createElement('div');\n\n    element.classList.add('backdrop');\n\n    element.addEventListener('touchend', function () {\n      popover.addEventListener(window.RATCHET.getTransitionEnd, onPopoverHidden);\n      popover.classList.remove('visible');\n      popover.parentNode.removeChild(backdrop);\n    });\n\n    return element;\n  }());\n\n  var getPopover = function (e) {\n    var anchor = findPopovers(e.target);\n\n    if (!anchor || !anchor.hash || (anchor.hash.indexOf('/') > 0)) {\n      return;\n    }\n\n    try {\n      popover = document.querySelector(anchor.hash);\n    } catch (error) {\n      popover = null;\n    }\n\n    if (popover === null) {\n      return;\n    }\n\n    if (!popover || !popover.classList.contains('popover')) {\n      return;\n    }\n\n    return popover;\n  };\n\n  var showHidePopover = function (e) {\n    var popover = getPopover(e);\n\n    if (!popover) {\n      return;\n    }\n\n    popover.style.display = 'block';\n    popover.offsetHeight;\n    popover.classList.add('visible');\n\n    popover.parentNode.appendChild(backdrop);\n  };\n\n  window.addEventListener('touchend', showHidePopover);\n\n}());\n\n/* ========================================================================\n * Ratchet: push.js v2.0.2\n * http://goratchet.com/components#push\n * ========================================================================\n * inspired by @defunkt's jquery.pjax.js\n * Copyright 2015 Connor Sears\n * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)\n * ======================================================================== */\n\n/* global _gaq: true */\n\n!(function () {\n  'use strict';\n\n  var noop = function () {};\n\n\n  // Pushstate caching\n  // ==================\n\n  var isScrolling;\n  var maxCacheLength = 20;\n  var cacheMapping   = sessionStorage;\n  var domCache       = {};\n  // Change these to unquoted camelcase in the next major version bump\n  var transitionMap  = {\n    'slide-in'  : 'slide-out',\n    'slide-out' : 'slide-in',\n    fade        : 'fade'\n  };\n\n  var bars = {\n    bartab             : '.bar-tab',\n    barnav             : '.bar-nav',\n    barfooter          : '.bar-footer',\n    barheadersecondary : '.bar-header-secondary'\n  };\n\n  var cacheReplace = function (data, updates) {\n    PUSH.id = data.id;\n    if (updates) {\n      data = getCached(data.id);\n    }\n    cacheMapping[data.id] = JSON.stringify(data);\n    window.history.replaceState(data.id, data.title, data.url);\n  };\n\n  var cachePush = function () {\n    var id = PUSH.id;\n\n    var cacheForwardStack = JSON.parse(cacheMapping.cacheForwardStack || '[]');\n    var cacheBackStack    = JSON.parse(cacheMapping.cacheBackStack    || '[]');\n\n    cacheBackStack.push(id);\n\n    while (cacheForwardStack.length) {\n      delete cacheMapping[cacheForwardStack.shift()];\n    }\n    while (cacheBackStack.length > maxCacheLength) {\n      delete cacheMapping[cacheBackStack.shift()];\n    }\n\n    if (getCached(PUSH.id).url) {\n      window.history.pushState(null, '', getCached(PUSH.id).url);\n    }\n\n    cacheMapping.cacheForwardStack = JSON.stringify(cacheForwardStack);\n    cacheMapping.cacheBackStack    = JSON.stringify(cacheBackStack);\n  };\n\n  var cachePop = function (id, direction) {\n    var forward           = direction === 'forward';\n    var cacheForwardStack = JSON.parse(cacheMapping.cacheForwardStack || '[]');\n    var cacheBackStack    = JSON.parse(cacheMapping.cacheBackStack    || '[]');\n    var pushStack         = forward ? cacheBackStack    : cacheForwardStack;\n    var popStack          = forward ? cacheForwardStack : cacheBackStack;\n\n    if (PUSH.id) {\n      pushStack.push(PUSH.id);\n    }\n    popStack.pop();\n\n    cacheMapping.cacheForwardStack = JSON.stringify(cacheForwardStack);\n    cacheMapping.cacheBackStack    = JSON.stringify(cacheBackStack);\n  };\n\n  var getCached = function (id) {\n    return JSON.parse(cacheMapping[id] || null) || {};\n  };\n\n  var getTarget = function (e) {\n    var target = findTarget(e.target);\n\n    if (!target ||\n        e.which > 1 ||\n        e.metaKey ||\n        e.ctrlKey ||\n        isScrolling ||\n        location.protocol !== target.protocol ||\n        location.host     !== target.host ||\n        !target.hash && /#/.test(target.href) ||\n        target.hash && target.href.replace(target.hash, '') === location.href.replace(location.hash, '') ||\n        target.getAttribute('data-ignore') === 'push') { return; }\n\n    return target;\n  };\n\n\n  // Main event handlers (touchend, popstate)\n  // ==========================================\n\n  var touchend = function (e) {\n    var target = getTarget(e);\n\n    if (!target) {\n      return;\n    }\n\n    e.preventDefault();\n\n    PUSH({\n      url        : target.href,\n      hash       : target.hash,\n      timeout    : target.getAttribute('data-timeout'),\n      transition : target.getAttribute('data-transition')\n    });\n  };\n\n  var popstate = function (e) {\n    var key;\n    var barElement;\n    var activeObj;\n    var activeDom;\n    var direction;\n    var transition;\n    var transitionFrom;\n    var transitionFromObj;\n    var id = e.state;\n\n    if (!id || !cacheMapping[id]) {\n      return;\n    }\n\n    direction = PUSH.id < id ? 'forward' : 'back';\n\n    cachePop(id, direction);\n\n    activeObj = getCached(id);\n    activeDom = domCache[id];\n\n    if (activeObj.title) {\n      document.title = activeObj.title;\n    }\n\n    if (direction === 'back') {\n      transitionFrom    = JSON.parse(direction === 'back' ? cacheMapping.cacheForwardStack : cacheMapping.cacheBackStack);\n      transitionFromObj = getCached(transitionFrom[transitionFrom.length - 1]);\n    } else {\n      transitionFromObj = activeObj;\n    }\n\n    if (direction === 'back' && !transitionFromObj.id) {\n      return (PUSH.id = id);\n    }\n\n    transition = direction === 'back' ? transitionMap[transitionFromObj.transition] : transitionFromObj.transition;\n\n    if (!activeDom) {\n      return PUSH({\n        id         : activeObj.id,\n        url        : activeObj.url,\n        title      : activeObj.title,\n        timeout    : activeObj.timeout,\n        transition : transition,\n        ignorePush : true\n      });\n    }\n\n    if (transitionFromObj.transition) {\n      activeObj = extendWithDom(activeObj, '.content', activeDom.cloneNode(true));\n      for (key in bars) {\n        if (bars.hasOwnProperty(key)) {\n          barElement = document.querySelector(bars[key]);\n          if (activeObj[key]) {\n            swapContent(activeObj[key], barElement);\n          } else if (barElement) {\n            barElement.parentNode.removeChild(barElement);\n          }\n        }\n      }\n    }\n\n    swapContent(\n      (activeObj.contents || activeDom).cloneNode(true),\n      document.querySelector('.content'),\n      transition, function () {\n        triggerStateChange();\n      }\n    );\n\n    PUSH.id = id;\n\n    document.body.offsetHeight; // force reflow to prevent scroll\n  };\n\n\n  // Core PUSH functionality\n  // =======================\n\n  var PUSH = function (options) {\n    var key;\n    var xhr = PUSH.xhr;\n\n    options.container = options.container || options.transition ? document.querySelector('.content') : document.body;\n\n    var isFileProtocol = /^file:/.test(window.location.protocol);\n\n    for (key in bars) {\n      if (bars.hasOwnProperty(key)) {\n        options[key] = options[key] || document.querySelector(bars[key]);\n      }\n    }\n\n    if (xhr && xhr.readyState < 4) {\n      xhr.onreadystatechange = noop;\n      xhr.abort();\n    }\n\n    xhr = new XMLHttpRequest();\n    if (isFileProtocol) {\n      xhr.open('GET', options.url, false);\n    } else {\n      xhr.open('GET', options.url, true);\n      xhr.setRequestHeader('X-PUSH', 'true');\n\n      xhr.onreadystatechange = function () {\n        if (options._timeout) {\n          clearTimeout(options._timeout);\n        }\n        if (xhr.readyState === 4) {\n          if (xhr.status === 200) {\n            success(xhr, options);\n          } else {\n            failure(options.url);\n          }\n        }\n      };\n    }\n\n    if (!PUSH.id) {\n      cacheReplace({\n        id         : +new Date(),\n        url        : window.location.href,\n        title      : document.title,\n        timeout    : options.timeout,\n        transition : options.transition\n      });\n    }\n\n    cacheCurrentContent();\n\n    if (options.timeout) {\n      options._timeout = setTimeout(function () {  xhr.abort('timeout'); }, options.timeout);\n    }\n\n    xhr.send();\n\n    if (isFileProtocol) {\n      if (xhr.status === 0 || xhr.status === 200) {\n        success(xhr, options);\n      } else {\n        failure(options.url);\n      }\n    }\n\n    if (xhr.readyState && !options.ignorePush) {\n      cachePush();\n    }\n  };\n\n  function cacheCurrentContent () {\n    domCache[PUSH.id] = document.body.cloneNode(true);\n  }\n\n\n  // Main XHR handlers\n  // =================\n\n  var success = function (xhr, options) {\n    var key;\n    var barElement;\n    var data = parseXHR(xhr, options);\n\n    if (!data.contents) {\n      return locationReplace(options.url);\n    }\n\n    if (data.title) {\n      document.title = data.title;\n    }\n\n    if (options.transition) {\n      for (key in bars) {\n        if (bars.hasOwnProperty(key)) {\n          barElement = document.querySelector(bars[key]);\n          if (data[key]) {\n            swapContent(data[key], barElement);\n          } else if (barElement) {\n            barElement.parentNode.removeChild(barElement);\n          }\n        }\n      }\n    }\n\n    swapContent(data.contents, options.container, options.transition, function () {\n      cacheReplace({\n        id         : options.id || +new Date(),\n        url        : data.url,\n        title      : data.title,\n        timeout    : options.timeout,\n        transition : options.transition\n      }, options.id);\n      triggerStateChange();\n    });\n\n    if (!options.ignorePush && window._gaq) {\n      _gaq.push(['_trackPageview']); // google analytics\n    }\n    if (!options.hash) {\n      return;\n    }\n  };\n\n  var failure = function (url) {\n    throw new Error('Could not get: ' + url);\n  };\n\n\n  // PUSH helpers\n  // ============\n\n  var swapContent = function (swap, container, transition, complete) {\n    var enter;\n    var containerDirection;\n    var swapDirection;\n\n    if (!transition) {\n      if (container) {\n        container.innerHTML = swap.innerHTML;\n      } else if (swap.classList.contains('content')) {\n        document.body.appendChild(swap);\n      } else {\n        document.body.insertBefore(swap, document.querySelector('.content'));\n      }\n    } else {\n      enter = /in$/.test(transition);\n\n      if (transition === 'fade') {\n        container.classList.add('in');\n        container.classList.add('fade');\n        swap.classList.add('fade');\n      }\n\n      if (/slide/.test(transition)) {\n        swap.classList.add('sliding-in', enter ? 'right' : 'left');\n        swap.classList.add('sliding');\n        container.classList.add('sliding');\n      }\n\n      container.parentNode.insertBefore(swap, container);\n    }\n\n    if (!transition) {\n      if (complete) {\n        complete();\n      }\n    }\n\n    if (transition === 'fade') {\n      container.offsetWidth; // force reflow\n      container.classList.remove('in');\n      var fadeContainerEnd = function () {\n        container.removeEventListener(window.RATCHET.getTransitionEnd, fadeContainerEnd);\n        swap.classList.add('in');\n        swap.addEventListener(window.RATCHET.getTransitionEnd, fadeSwapEnd);\n      };\n      var fadeSwapEnd = function () {\n        swap.removeEventListener(window.RATCHET.getTransitionEnd, fadeSwapEnd);\n        container.parentNode.removeChild(container);\n        swap.classList.remove('fade');\n        swap.classList.remove('in');\n        if (complete) {\n          complete();\n        }\n      };\n      container.addEventListener(window.RATCHET.getTransitionEnd, fadeContainerEnd);\n\n    }\n\n    if (/slide/.test(transition)) {\n      var slideEnd = function () {\n        swap.removeEventListener(window.RATCHET.getTransitionEnd, slideEnd);\n        swap.classList.remove('sliding', 'sliding-in');\n        swap.classList.remove(swapDirection);\n        container.parentNode.removeChild(container);\n        if (complete) {\n          complete();\n        }\n      };\n\n      container.offsetWidth; // force reflow\n      swapDirection      = enter ? 'right' : 'left';\n      containerDirection = enter ? 'left' : 'right';\n      container.classList.add(containerDirection);\n      swap.classList.remove(swapDirection);\n      swap.addEventListener(window.RATCHET.getTransitionEnd, slideEnd);\n    }\n  };\n\n  var triggerStateChange = function () {\n    var e = new CustomEvent('push', {\n      detail: { state: getCached(PUSH.id) },\n      bubbles: true,\n      cancelable: true\n    });\n\n    window.dispatchEvent(e);\n  };\n\n  var findTarget = function (target) {\n    var i;\n    var toggles = document.querySelectorAll('a');\n\n    for (; target && target !== document; target = target.parentNode) {\n      for (i = toggles.length; i--;) {\n        if (toggles[i] === target) {\n          return target;\n        }\n      }\n    }\n  };\n\n  var locationReplace = function (url) {\n    window.history.replaceState(null, '', '#');\n    window.location.replace(url);\n  };\n\n  var extendWithDom = function (obj, fragment, dom) {\n    var i;\n    var result = {};\n\n    for (i in obj) {\n      if (obj.hasOwnProperty(i)) {\n        result[i] = obj[i];\n      }\n    }\n\n    Object.keys(bars).forEach(function (key) {\n      var el = dom.querySelector(bars[key]);\n      if (el) {\n        el.parentNode.removeChild(el);\n      }\n      result[key] = el;\n    });\n\n    result.contents = dom.querySelector(fragment);\n\n    return result;\n  };\n\n  var parseXHR = function (xhr, options) {\n    var head;\n    var body;\n    var data = {};\n    var responseText = xhr.responseText;\n\n    data.url = options.url;\n\n    if (!responseText) {\n      return data;\n    }\n\n    if (/<html/i.test(responseText)) {\n      head           = document.createElement('div');\n      body           = document.createElement('div');\n      head.innerHTML = responseText.match(/<head[^>]*>([\\s\\S.]*)<\\/head>/i)[0];\n      body.innerHTML = responseText.match(/<body[^>]*>([\\s\\S.]*)<\\/body>/i)[0];\n    } else {\n      head           = body = document.createElement('div');\n      head.innerHTML = responseText;\n    }\n\n    data.title = head.querySelector('title') || document.querySelector('title');\n    var text = 'innerText' in data.title ? 'innerText' : 'textContent';\n    data.title = data.title && data.title[text].trim();\n\n    if (options.transition) {\n      data = extendWithDom(data, '.content', body);\n    } else {\n      data.contents = body;\n    }\n\n    return data;\n  };\n\n\n  // Attach PUSH event handlers\n  // ==========================\n\n  window.addEventListener('touchstart', function () { isScrolling = false; });\n  window.addEventListener('touchmove', function () { isScrolling = true; });\n  window.addEventListener('touchend', touchend);\n  window.addEventListener('click', function (e) {\n    if (getTarget(e)) {\n      e.preventDefault();\n    }\n  });\n  window.addEventListener('popstate', popstate);\n\n  // TODO : Remove this line in the next major version\n  window.PUSH = PUSH;\n  window.RATCHET.push = PUSH;\n\n}());\n\n/* ========================================================================\n * Ratchet: segmented-controllers.js v2.0.2\n * http://goratchet.com/components#segmentedControls\n * ========================================================================\n * Copyright 2015 Connor Sears\n * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)\n * ======================================================================== */\n\n!(function () {\n  'use strict';\n\n  var getTarget = function (target) {\n    var i;\n    var segmentedControls = document.querySelectorAll('.segmented-control .control-item');\n\n    for (; target && target !== document; target = target.parentNode) {\n      for (i = segmentedControls.length; i--;) {\n        if (segmentedControls[i] === target) {\n          return target;\n        }\n      }\n    }\n  };\n\n  window.addEventListener('touchend', function (e) {\n    var activeTab;\n    var activeBodies;\n    var targetBody;\n    var targetTab     = getTarget(e.target);\n    var className     = 'active';\n    var classSelector = '.' + className;\n\n    if (!targetTab) {\n      return;\n    }\n\n    activeTab = targetTab.parentNode.querySelector(classSelector);\n\n    if (activeTab) {\n      activeTab.classList.remove(className);\n    }\n\n    targetTab.classList.add(className);\n\n    if (!targetTab.hash) {\n      return;\n    }\n\n    targetBody = document.querySelector(targetTab.hash);\n\n    if (!targetBody) {\n      return;\n    }\n\n    activeBodies = targetBody.parentNode.querySelectorAll(classSelector);\n\n    for (var i = 0; i < activeBodies.length; i++) {\n      activeBodies[i].classList.remove(className);\n    }\n\n    targetBody.classList.add(className);\n  });\n\n  window.addEventListener('click', function (e) {\n    if (getTarget(e.target)) {\n      e.preventDefault();\n    }\n  });\n\n}());\n\n/* ========================================================================\n * Ratchet: sliders.js v2.0.2\n * http://goratchet.com/components#sliders\n * ========================================================================\n   Adapted from Brad Birdsall's swipe\n * Copyright 2015 Connor Sears\n * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)\n * ======================================================================== */\n\n!(function () {\n  'use strict';\n\n  var pageX;\n  var pageY;\n  var slider;\n  var deltaX;\n  var deltaY;\n  var offsetX;\n  var lastSlide;\n  var startTime;\n  var resistance;\n  var sliderWidth;\n  var slideNumber;\n  var isScrolling;\n  var scrollableArea;\n  var startedMoving;\n\n  var transformPrefix   = window.RATCHET.getBrowserCapabilities.prefix;\n  var transformProperty = window.RATCHET.getBrowserCapabilities.transform;\n\n  var getSlider = function (target) {\n    var i;\n    var sliders = document.querySelectorAll('.slider > .slide-group');\n\n    for (; target && target !== document; target = target.parentNode) {\n      for (i = sliders.length; i--;) {\n        if (sliders[i] === target) {\n          return target;\n        }\n      }\n    }\n  };\n\n  var getScroll = function () {\n    var translate3d = slider.style[transformProperty].match(/translate3d\\(([^,]*)/);\n    var ret = translate3d ? translate3d[1] : 0;\n    return parseInt(ret, 10);\n  };\n\n  var setSlideNumber = function (offset) {\n    var round = offset ? (deltaX < 0 ? 'ceil' : 'floor') : 'round';\n    slideNumber = Math[round](getScroll() / (scrollableArea / slider.children.length));\n    slideNumber += offset;\n    slideNumber = Math.min(slideNumber, 0);\n    slideNumber = Math.max(-(slider.children.length - 1), slideNumber);\n  };\n\n  var onTouchStart = function (e) {\n    slider = getSlider(e.target);\n\n    if (!slider) {\n      return;\n    }\n\n    var firstItem  = slider.querySelector('.slide');\n\n    scrollableArea = firstItem.offsetWidth * slider.children.length;\n    isScrolling    = undefined;\n    sliderWidth    = slider.offsetWidth;\n    resistance     = 1;\n    lastSlide      = -(slider.children.length - 1);\n    startTime      = +new Date();\n    pageX          = e.touches[0].pageX;\n    pageY          = e.touches[0].pageY;\n    deltaX         = 0;\n    deltaY         = 0;\n\n    setSlideNumber(0);\n\n    slider.style[transformPrefix + 'transition-duration'] = 0;\n  };\n\n  var onTouchMove = function (e) {\n    if (e.touches.length > 1 || !slider) {\n      return; // Exit if a pinch || no slider\n    }\n\n    // adjust the starting position if we just started to avoid jumpage\n    if (!startedMoving) {\n      pageX += (e.touches[0].pageX - pageX) - 1;\n    }\n\n    deltaX = e.touches[0].pageX - pageX;\n    deltaY = e.touches[0].pageY - pageY;\n    pageX  = e.touches[0].pageX;\n    pageY  = e.touches[0].pageY;\n\n    if (typeof isScrolling === 'undefined' && startedMoving) {\n      isScrolling = Math.abs(deltaY) > Math.abs(deltaX);\n    }\n\n    if (isScrolling) {\n      return;\n    }\n\n    offsetX = (deltaX / resistance) + getScroll();\n\n    e.preventDefault();\n\n    resistance = slideNumber === 0         && deltaX > 0 ? (pageX / sliderWidth) + 1.25 :\n                 slideNumber === lastSlide && deltaX < 0 ? (Math.abs(pageX) / sliderWidth) + 1.25 : 1;\n\n    slider.style[transformProperty] = 'translate3d(' + offsetX + 'px,0,0)';\n\n    // started moving\n    startedMoving = true;\n  };\n\n  var onTouchEnd = function (e) {\n    if (!slider || isScrolling) {\n      return;\n    }\n\n    // we're done moving\n    startedMoving = false;\n\n    setSlideNumber((+new Date()) - startTime < 1000 && Math.abs(deltaX) > 15 ? (deltaX < 0 ? -1 : 1) : 0);\n\n    offsetX = slideNumber * sliderWidth;\n\n    slider.style[transformPrefix + 'transition-duration'] = '.2s';\n    slider.style[transformProperty] = 'translate3d(' + offsetX + 'px,0,0)';\n\n    e = new CustomEvent('slide', {\n      detail: { slideNumber: Math.abs(slideNumber) },\n      bubbles: true,\n      cancelable: true\n    });\n\n    slider.parentNode.dispatchEvent(e);\n  };\n\n  window.addEventListener('touchstart', onTouchStart);\n  window.addEventListener('touchmove', onTouchMove);\n  window.addEventListener('touchend', onTouchEnd);\n\n}());\n\n/* ========================================================================\n * Ratchet: toggles.js v2.0.2\n * http://goratchet.com/components#toggles\n * ========================================================================\n   Adapted from Brad Birdsall's swipe\n * Copyright 2015 Connor Sears\n * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)\n * ======================================================================== */\n\n!(function () {\n  'use strict';\n\n  var start     = {};\n  var touchMove = false;\n  var distanceX = false;\n  var toggle    = false;\n  var transformProperty = window.RATCHET.getBrowserCapabilities.transform;\n\n  var findToggle = function (target) {\n    var i;\n    var toggles = document.querySelectorAll('.toggle');\n\n    for (; target && target !== document; target = target.parentNode) {\n      for (i = toggles.length; i--;) {\n        if (toggles[i] === target) {\n          return target;\n        }\n      }\n    }\n  };\n\n  window.addEventListener('touchstart', function (e) {\n    e = e.originalEvent || e;\n\n    toggle = findToggle(e.target);\n\n    if (!toggle) {\n      return;\n    }\n\n    var handle      = toggle.querySelector('.toggle-handle');\n    var toggleWidth = toggle.clientWidth;\n    var handleWidth = handle.clientWidth;\n    var offset      = toggle.classList.contains('active') ? (toggleWidth - handleWidth) : 0;\n\n    start     = { pageX : e.touches[0].pageX - offset, pageY : e.touches[0].pageY };\n    touchMove = false;\n  });\n\n  window.addEventListener('touchmove', function (e) {\n    e = e.originalEvent || e;\n\n    if (e.touches.length > 1) {\n      return; // Exit if a pinch\n    }\n\n    if (!toggle) {\n      return;\n    }\n\n    var handle      = toggle.querySelector('.toggle-handle');\n    var current     = e.touches[0];\n    var toggleWidth = toggle.clientWidth;\n    var handleWidth = handle.clientWidth;\n    var offset      = toggleWidth - handleWidth;\n\n    touchMove = true;\n    distanceX = current.pageX - start.pageX;\n\n    if (Math.abs(distanceX) < Math.abs(current.pageY - start.pageY)) {\n      return;\n    }\n\n    e.preventDefault();\n\n    if (distanceX < 0) {\n      return (handle.style[transformProperty] = 'translate3d(0,0,0)');\n    }\n    if (distanceX > offset) {\n      return (handle.style[transformProperty] = 'translate3d(' + offset + 'px,0,0)');\n    }\n\n    handle.style[transformProperty] = 'translate3d(' + distanceX + 'px,0,0)';\n\n    toggle.classList[(distanceX > (toggleWidth / 2 - handleWidth / 2)) ? 'add' : 'remove']('active');\n  });\n\n  window.addEventListener('touchend', function (e) {\n    if (!toggle) {\n      return;\n    }\n\n    var handle      = toggle.querySelector('.toggle-handle');\n    var toggleWidth = toggle.clientWidth;\n    var handleWidth = handle.clientWidth;\n    var offset      = (toggleWidth - handleWidth);\n    var slideOn     = (!touchMove && !toggle.classList.contains('active')) || (touchMove && (distanceX > (toggleWidth / 2 - handleWidth / 2)));\n\n    if (slideOn) {\n      handle.style[transformProperty] = 'translate3d(' + offset + 'px,0,0)';\n    } else {\n      handle.style[transformProperty] = 'translate3d(0,0,0)';\n    }\n\n    toggle.classList[slideOn ? 'add' : 'remove']('active');\n\n    e = new CustomEvent('toggle', {\n      detail: {\n        isActive: slideOn\n      },\n      bubbles: true,\n      cancelable: true\n    });\n\n    toggle.dispatchEvent(e);\n\n    touchMove = false;\n    toggle    = false;\n  });\n\n}());\n"
  },
  {
    "path": "docs/LICENSE",
    "content": "Creative Commons Legal Code\n\nAttribution 3.0 Unported\n\n    CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE\n    LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN\n    ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS\n    INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES\n    REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR\n    DAMAGES RESULTING FROM ITS USE.\n\nLicense\n\nTHE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE\nCOMMONS PUBLIC LICENSE (\"CCPL\" OR \"LICENSE\"). THE WORK IS PROTECTED BY\nCOPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS\nAUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.\n\nBY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE\nTO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY\nBE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS\nCONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND\nCONDITIONS.\n\n1. Definitions\n\n a. \"Adaptation\" means a work based upon the Work, or upon the Work and\n    other pre-existing works, such as a translation, adaptation,\n    derivative work, arrangement of music or other alterations of a\n    literary or artistic work, or phonogram or performance and includes\n    cinematographic adaptations or any other form in which the Work may be\n    recast, transformed, or adapted including in any form recognizably\n    derived from the original, except that a work that constitutes a\n    Collection will not be considered an Adaptation for the purpose of\n    this License. For the avoidance of doubt, where the Work is a musical\n    work, performance or phonogram, the synchronization of the Work in\n    timed-relation with a moving image (\"synching\") will be considered an\n    Adaptation for the purpose of this License.\n b. \"Collection\" means a collection of literary or artistic works, such as\n    encyclopedias and anthologies, or performances, phonograms or\n    broadcasts, or other works or subject matter other than works listed\n    in Section 1(f) below, which, by reason of the selection and\n    arrangement of their contents, constitute intellectual creations, in\n    which the Work is included in its entirety in unmodified form along\n    with one or more other contributions, each constituting separate and\n    independent works in themselves, which together are assembled into a\n    collective whole. A work that constitutes a Collection will not be\n    considered an Adaptation (as defined above) for the purposes of this\n    License.\n c. \"Distribute\" means to make available to the public the original and\n    copies of the Work or Adaptation, as appropriate, through sale or\n    other transfer of ownership.\n d. \"Licensor\" means the individual, individuals, entity or entities that\n    offer(s) the Work under the terms of this License.\n e. \"Original Author\" means, in the case of a literary or artistic work,\n    the individual, individuals, entity or entities who created the Work\n    or if no individual or entity can be identified, the publisher; and in\n    addition (i) in the case of a performance the actors, singers,\n    musicians, dancers, and other persons who act, sing, deliver, declaim,\n    play in, interpret or otherwise perform literary or artistic works or\n    expressions of folklore; (ii) in the case of a phonogram the producer\n    being the person or legal entity who first fixes the sounds of a\n    performance or other sounds; and, (iii) in the case of broadcasts, the\n    organization that transmits the broadcast.\n f. \"Work\" means the literary and/or artistic work offered under the terms\n    of this License including without limitation any production in the\n    literary, scientific and artistic domain, whatever may be the mode or\n    form of its expression including digital form, such as a book,\n    pamphlet and other writing; a lecture, address, sermon or other work\n    of the same nature; a dramatic or dramatico-musical work; a\n    choreographic work or entertainment in dumb show; a musical\n    composition with or without words; a cinematographic work to which are\n    assimilated works expressed by a process analogous to cinematography;\n    a work of drawing, painting, architecture, sculpture, engraving or\n    lithography; a photographic work to which are assimilated works\n    expressed by a process analogous to photography; a work of applied\n    art; an illustration, map, plan, sketch or three-dimensional work\n    relative to geography, topography, architecture or science; a\n    performance; a broadcast; a phonogram; a compilation of data to the\n    extent it is protected as a copyrightable work; or a work performed by\n    a variety or circus performer to the extent it is not otherwise\n    considered a literary or artistic work.\n g. \"You\" means an individual or entity exercising rights under this\n    License who has not previously violated the terms of this License with\n    respect to the Work, or who has received express permission from the\n    Licensor to exercise rights under this License despite a previous\n    violation.\n h. \"Publicly Perform\" means to perform public recitations of the Work and\n    to communicate to the public those public recitations, by any means or\n    process, including by wire or wireless means or public digital\n    performances; to make available to the public Works in such a way that\n    members of the public may access these Works from a place and at a\n    place individually chosen by them; to perform the Work to the public\n    by any means or process and the communication to the public of the\n    performances of the Work, including by public digital performance; to\n    broadcast and rebroadcast the Work by any means including signs,\n    sounds or images.\n i. \"Reproduce\" means to make copies of the Work by any means including\n    without limitation by sound or visual recordings and the right of\n    fixation and reproducing fixations of the Work, including storage of a\n    protected performance or phonogram in digital form or other electronic\n    medium.\n\n2. Fair Dealing Rights. Nothing in this License is intended to reduce,\nlimit, or restrict any uses free from copyright or rights arising from\nlimitations or exceptions that are provided for in connection with the\ncopyright protection under copyright law or other applicable laws.\n\n3. License Grant. Subject to the terms and conditions of this License,\nLicensor hereby grants You a worldwide, royalty-free, non-exclusive,\nperpetual (for the duration of the applicable copyright) license to\nexercise the rights in the Work as stated below:\n\n a. to Reproduce the Work, to incorporate the Work into one or more\n    Collections, and to Reproduce the Work as incorporated in the\n    Collections;\n b. to create and Reproduce Adaptations provided that any such Adaptation,\n    including any translation in any medium, takes reasonable steps to\n    clearly label, demarcate or otherwise identify that changes were made\n    to the original Work. For example, a translation could be marked \"The\n    original work was translated from English to Spanish,\" or a\n    modification could indicate \"The original work has been modified.\";\n c. to Distribute and Publicly Perform the Work including as incorporated\n    in Collections; and,\n d. to Distribute and Publicly Perform Adaptations.\n e. For the avoidance of doubt:\n\n     i. Non-waivable Compulsory License Schemes. In those jurisdictions in\n        which the right to collect royalties through any statutory or\n        compulsory licensing scheme cannot be waived, the Licensor\n        reserves the exclusive right to collect such royalties for any\n        exercise by You of the rights granted under this License;\n    ii. Waivable Compulsory License Schemes. In those jurisdictions in\n        which the right to collect royalties through any statutory or\n        compulsory licensing scheme can be waived, the Licensor waives the\n        exclusive right to collect such royalties for any exercise by You\n        of the rights granted under this License; and,\n   iii. Voluntary License Schemes. The Licensor waives the right to\n        collect royalties, whether individually or, in the event that the\n        Licensor is a member of a collecting society that administers\n        voluntary licensing schemes, via that society, from any exercise\n        by You of the rights granted under this License.\n\nThe above rights may be exercised in all media and formats whether now\nknown or hereafter devised. The above rights include the right to make\nsuch modifications as are technically necessary to exercise the rights in\nother media and formats. Subject to Section 8(f), all rights not expressly\ngranted by Licensor are hereby reserved.\n\n4. Restrictions. The license granted in Section 3 above is expressly made\nsubject to and limited by the following restrictions:\n\n a. You may Distribute or Publicly Perform the Work only under the terms\n    of this License. You must include a copy of, or the Uniform Resource\n    Identifier (URI) for, this License with every copy of the Work You\n    Distribute or Publicly Perform. You may not offer or impose any terms\n    on the Work that restrict the terms of this License or the ability of\n    the recipient of the Work to exercise the rights granted to that\n    recipient under the terms of the License. You may not sublicense the\n    Work. You must keep intact all notices that refer to this License and\n    to the disclaimer of warranties with every copy of the Work You\n    Distribute or Publicly Perform. When You Distribute or Publicly\n    Perform the Work, You may not impose any effective technological\n    measures on the Work that restrict the ability of a recipient of the\n    Work from You to exercise the rights granted to that recipient under\n    the terms of the License. This Section 4(a) applies to the Work as\n    incorporated in a Collection, but this does not require the Collection\n    apart from the Work itself to be made subject to the terms of this\n    License. If You create a Collection, upon notice from any Licensor You\n    must, to the extent practicable, remove from the Collection any credit\n    as required by Section 4(b), as requested. If You create an\n    Adaptation, upon notice from any Licensor You must, to the extent\n    practicable, remove from the Adaptation any credit as required by\n    Section 4(b), as requested.\n b. If You Distribute, or Publicly Perform the Work or any Adaptations or\n    Collections, You must, unless a request has been made pursuant to\n    Section 4(a), keep intact all copyright notices for the Work and\n    provide, reasonable to the medium or means You are utilizing: (i) the\n    name of the Original Author (or pseudonym, if applicable) if supplied,\n    and/or if the Original Author and/or Licensor designate another party\n    or parties (e.g., a sponsor institute, publishing entity, journal) for\n    attribution (\"Attribution Parties\") in Licensor's copyright notice,\n    terms of service or by other reasonable means, the name of such party\n    or parties; (ii) the title of the Work if supplied; (iii) to the\n    extent reasonably practicable, the URI, if any, that Licensor\n    specifies to be associated with the Work, unless such URI does not\n    refer to the copyright notice or licensing information for the Work;\n    and (iv) , consistent with Section 3(b), in the case of an Adaptation,\n    a credit identifying the use of the Work in the Adaptation (e.g.,\n    \"French translation of the Work by Original Author,\" or \"Screenplay\n    based on original Work by Original Author\"). The credit required by\n    this Section 4 (b) may be implemented in any reasonable manner;\n    provided, however, that in the case of a Adaptation or Collection, at\n    a minimum such credit will appear, if a credit for all contributing\n    authors of the Adaptation or Collection appears, then as part of these\n    credits and in a manner at least as prominent as the credits for the\n    other contributing authors. For the avoidance of doubt, You may only\n    use the credit required by this Section for the purpose of attribution\n    in the manner set out above and, by exercising Your rights under this\n    License, You may not implicitly or explicitly assert or imply any\n    connection with, sponsorship or endorsement by the Original Author,\n    Licensor and/or Attribution Parties, as appropriate, of You or Your\n    use of the Work, without the separate, express prior written\n    permission of the Original Author, Licensor and/or Attribution\n    Parties.\n c. Except as otherwise agreed in writing by the Licensor or as may be\n    otherwise permitted by applicable law, if You Reproduce, Distribute or\n    Publicly Perform the Work either by itself or as part of any\n    Adaptations or Collections, You must not distort, mutilate, modify or\n    take other derogatory action in relation to the Work which would be\n    prejudicial to the Original Author's honor or reputation. Licensor\n    agrees that in those jurisdictions (e.g. Japan), in which any exercise\n    of the right granted in Section 3(b) of this License (the right to\n    make Adaptations) would be deemed to be a distortion, mutilation,\n    modification or other derogatory action prejudicial to the Original\n    Author's honor and reputation, the Licensor will waive or not assert,\n    as appropriate, this Section, to the fullest extent permitted by the\n    applicable national law, to enable You to reasonably exercise Your\n    right under Section 3(b) of this License (right to make Adaptations)\n    but not otherwise.\n\n5. Representations, Warranties and Disclaimer\n\nUNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR\nOFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY\nKIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE,\nINCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY,\nFITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF\nLATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS,\nWHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION\nOF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU.\n\n6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE\nLAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR\nANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES\nARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS\nBEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.\n\n7. Termination\n\n a. This License and the rights granted hereunder will terminate\n    automatically upon any breach by You of the terms of this License.\n    Individuals or entities who have received Adaptations or Collections\n    from You under this License, however, will not have their licenses\n    terminated provided such individuals or entities remain in full\n    compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will\n    survive any termination of this License.\n b. Subject to the above terms and conditions, the license granted here is\n    perpetual (for the duration of the applicable copyright in the Work).\n    Notwithstanding the above, Licensor reserves the right to release the\n    Work under different license terms or to stop distributing the Work at\n    any time; provided, however that any such election will not serve to\n    withdraw this License (or any other license that has been, or is\n    required to be, granted under the terms of this License), and this\n    License will continue in full force and effect unless terminated as\n    stated above.\n\n8. Miscellaneous\n\n a. Each time You Distribute or Publicly Perform the Work or a Collection,\n    the Licensor offers to the recipient a license to the Work on the same\n    terms and conditions as the license granted to You under this License.\n b. Each time You Distribute or Publicly Perform an Adaptation, Licensor\n    offers to the recipient a license to the original Work on the same\n    terms and conditions as the license granted to You under this License.\n c. If any provision of this License is invalid or unenforceable under\n    applicable law, it shall not affect the validity or enforceability of\n    the remainder of the terms of this License, and without further action\n    by the parties to this agreement, such provision shall be reformed to\n    the minimum extent necessary to make such provision valid and\n    enforceable.\n d. No term or provision of this License shall be deemed waived and no\n    breach consented to unless such waiver or consent shall be in writing\n    and signed by the party to be charged with such waiver or consent.\n e. This License constitutes the entire agreement between the parties with\n    respect to the Work licensed here. There are no understandings,\n    agreements or representations with respect to the Work not specified\n    here. Licensor shall not be bound by any additional provisions that\n    may appear in any communication from You. This License may not be\n    modified without the mutual written agreement of the Licensor and You.\n f. The rights granted under, and the subject matter referenced, in this\n    License were drafted utilizing the terminology of the Berne Convention\n    for the Protection of Literary and Artistic Works (as amended on\n    September 28, 1979), the Rome Convention of 1961, the WIPO Copyright\n    Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996\n    and the Universal Copyright Convention (as revised on July 24, 1971).\n    These rights and subject matter take effect in the relevant\n    jurisdiction in which the License terms are sought to be enforced\n    according to the corresponding provisions of the implementation of\n    those treaty provisions in the applicable national law. If the\n    standard suite of rights granted under applicable copyright law\n    includes additional rights not granted under this License, such\n    additional rights are deemed to be included in the License; this\n    License is not intended to restrict the license of any rights under\n    applicable law.\n\n\nCreative Commons Notice\n\n    Creative Commons is not a party to this License, and makes no warranty\n    whatsoever in connection with the Work. Creative Commons will not be\n    liable to You or any party on any legal theory for any damages\n    whatsoever, including without limitation any general, special,\n    incidental or consequential damages arising in connection to this\n    license. Notwithstanding the foregoing two (2) sentences, if Creative\n    Commons has expressly identified itself as the Licensor hereunder, it\n    shall have all rights and obligations of Licensor.\n\n    Except for the limited purpose of indicating to the public that the\n    Work is licensed under the CCPL, Creative Commons does not authorize\n    the use by either party of the trademark \"Creative Commons\" or any\n    related trademark or logo of Creative Commons without the prior\n    written consent of Creative Commons. Any permitted use will be in\n    compliance with Creative Commons' then-current trademark usage\n    guidelines, as may be published on its website or otherwise made\n    available upon request from time to time. For the avoidance of doubt,\n    this trademark restriction does not form part of this License.\n\n    Creative Commons may be contacted at http://creativecommons.org/."
  },
  {
    "path": "docs/_data/ratchicons.yml",
    "content": "# This file is generated via Grunt task. **Do not edit directly.**\n# See the 'build-ratchicons-data' task in Gruntfile.js.\n\n- icon-back\n- icon-bars\n- icon-caret\n- icon-check\n- icon-close\n- icon-code\n- icon-compose\n- icon-download\n- icon-edit\n- icon-forward\n- icon-gear\n- icon-home\n- icon-info\n- icon-list\n- icon-more-vertical\n- icon-more\n- icon-pages\n- icon-pause\n- icon-person\n- icon-play\n- icon-plus\n- icon-refresh\n- icon-search\n- icon-share\n- icon-sound\n- icon-sound2\n- icon-sound3\n- icon-sound4\n- icon-star-filled\n- icon-star\n- icon-stop\n- icon-trash\n- icon-up-nav\n- icon-up\n- icon-right-nav\n- icon-right\n- icon-down-nav\n- icon-down\n- icon-left-nav\n- icon-left\n"
  },
  {
    "path": "docs/_includes/ad.html",
    "content": "<div id=\"carbonads-container\"><div class=\"carbonad\"><div id=\"azcarbon\"></div><script type=\"text/javascript\">var z = document.createElement(\"script\"); z.type = \"text/javascript\"; z.async = true; z.src = \"http://engine.carbonads.com/z/58147/azcarbon_2_1_0_HORIZ\"; var s = document.getElementsByTagName(\"script\")[0]; s.parentNode.insertBefore(z, s);</script></div></div>\n"
  },
  {
    "path": "docs/_includes/browser-warning.html",
    "content": "<!--[if lt IE 9]>\n  <div class=\"bs-callout bs-callout-danger\">\n    <h4>Attention!</h4>\n    <p>\n      Looks like your current browser is old and doesn't support many features used in this page.\n      Please take a second to <a href=\"http://browsehappy.com/\">upgrade to a more modern browser</a>.\n    </p>\n  </div>\n<![endif]-->\n"
  },
  {
    "path": "docs/_includes/download-module.html",
    "content": "<div class=\"docs-module\">\n  <h4 class=\"docs-module-title\">Ratchet</h4>\n  <p>Compiled and minified CSS, JavaScript, and fonts. No docs or original source files are included.</p>\n  <a href=\"https://github.com/twbs/ratchet/releases/download/v2.0.2/ratchet-2.0.2-dist.zip\" class=\"btn btn-block btn-primary\" data-ignore=\"push\" onClick=\"_gaq.push(['_trackEvent', 'Downloads', 'V2.0.2-dist']);\">Download Ratchet</a>\n  <p class=\"version\">Currently v2.0.2</p>\n</div>\n\n<div class=\"docs-module\">\n  <h4 class=\"docs-module-title\">Source code</h4>\n  <p>If you haven't already, download the source code for Ratchet.</p>\n  <a href=\"https://github.com/twbs/ratchet/archive/v2.0.2.zip\" class=\"btn btn-block btn-primary\" data-ignore=\"push\" onClick=\"_gaq.push(['_trackEvent', 'Downloads', 'V2.0.2']);\">Download source</a>\n</div>\n"
  },
  {
    "path": "docs/_includes/footer.html",
    "content": "<div class=\"docs-footer\">\n  <!-- Social links -->\n  <ul class=\"social\">\n    <li>\n      <iframe class=\"github-btn\" src=\"http://ghbtns.com/github-btn.html?user=twbs&amp;repo=ratchet&amp;type=watch&amp;count=true\" width=\"100\" height=\"20\"></iframe>\n    </li>\n    <li>\n      <a data-ignore=\"push\" href=\"https://twitter.com/share\" class=\"twitter-share-button\" data-url=\"http://goratchet.com\" data-text=\"Ratchet &#8211; Build mobile apps with simple HTML, CSS, and JS components.\" data-via=\"GoRatchet\">Tweet</a>\n    </li>\n    <li><a data-ignore=\"push\" href=\"https://twitter.com/goratchet\" class=\"twitter-follow-button\" data-show-count=\"true\">\n      Follow @GoRatchet</a>\n    </li>\n  </ul>\n\n  <p class=\"docs-footer-text\">Code licensed under the <a href=\"https://github.com/twbs/ratchet/blob/master/LICENSE\" data-ignore=\"push\">MIT License</a> and the docs are licensed under <a href=\"https://github.com/twbs/ratchet/blob/master/docs/LICENSE\" data-ignore=\"push\">CC BY 3.0</a>. Ratchet was lovingly crafted by <a href=\"https://twitter.com/connors\" data-ignore=\"push\">Connor Sears</a>.</p>\n\n  <ul class=\"docs-footer-links\">\n    <li>Currently v2.0.2</li>\n    <li>&middot;</li>\n    <li><a href=\"https://github.com/twbs/ratchet/issues\" data-ignore=\"push\">Issues</a></li>\n    <li>&middot;</li>\n    <li><a href=\"https://github.com/twbs/ratchet/releases\" data-ignore=\"push\">Releases</a></li>\n    <li>&middot;</li>\n    <li><a href=\"http://goratchet.com/1.0.2/\" data-ignore=\"push\">Legacy v1.0.2 Docs</a></li>\n  </ul>\n</div>\n\n{% comment %}\n  Inject Twitter widgets asynchronously. Snippet snipped from Twitter's\n  JS interface site: https://dev.twitter.com/docs/tfw-javascript\n\n  * \"js.async=1;\" added to add async attribute to the generated script tag.\n{% endcomment %}\n<script>\n  window.twttr = (function (d,s,id) {\n    var t, js, fjs = d.getElementsByTagName(s)[0];\n    if (d.getElementById(id)) return; js=d.createElement(s); js.id=id; js.async=1;\n    js.src=\"//platform.twitter.com/widgets.js\"; fjs.parentNode.insertBefore(js, fjs);\n    return window.twttr || (t = { _e: [], ready: function(f){ t._e.push(f) } });\n  }(document, \"script\", \"twitter-wjs\"));\n</script>\n\n<script src=\"//ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js\"></script>\n<script src=\"/dist/js/ratchet.min.js\"></script>\n<script src=\"/assets/js/docs.min.js\"></script>\n"
  },
  {
    "path": "docs/_includes/header.html",
    "content": "<meta charset=\"utf-8\">\n<meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n<title>{{ page.title }}</title>\n<meta name=\"description\" content=\"{{ site.name }}: {{ site.description }}\">\n<meta name=\"author\" content=\"{{ site.authors }}\">\n<meta name=\"viewport\" content=\"initial-scale=1, maximum-scale=1\">\n<link rel=\"shortcut icon\" href=\"/favicon.ico\">\n<meta name=\"apple-mobile-web-app-capable\" content=\"yes\">\n<meta name=\"apple-mobile-web-app-status-bar-style\" content=\"black\">\n\n<!-- Google Web Fonts -->\n<link rel=\"stylesheet\" href=\"//fonts.googleapis.com/css?family=Roboto:400,500,700%7COpen+Sans:400,300\">\n\n<link rel=\"stylesheet\" href=\"/dist/css/ratchet.min.css\">\n<link rel=\"stylesheet\" href=\"/assets/css/docs.min.css\">\n\n<link rel=\"apple-touch-icon-precomposed\" sizes=\"114x114\" href=\"/assets/img/apple-touch-icon-114x114.png\">\n\n<script>\n  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){\n  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),\n  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)\n  })(window,document,'script','//www.google-analytics.com/analytics.js','ga');\n  ga('create', 'UA-36050008-1', 'goratchet.com');\n  ga('send', 'pageview');\n</script>\n"
  },
  {
    "path": "docs/_includes/jump.html",
    "content": "<span class=\"docs-jump-menu pull-left js-jump-menu\">\n  <span class=\"icon icon-list\"></span>\n  Jump to\n  <span class=\"icon icon-caret\"></span>\n</span>\n\n<div class=\"docs-component-group js-component-group\">\n  <a class=\"docs-component-item\" href=\"#bars\" data-ignore=\"push\">Bars</a>\n  <a class=\"docs-component-item\" href=\"#typography\" data-ignore=\"push\">Typography</a>\n  <a class=\"docs-component-item\" href=\"#table-views\" data-ignore=\"push\">Table views</a>\n  <a class=\"docs-component-item\" href=\"#buttons\" data-ignore=\"push\">Buttons</a>\n  <a class=\"docs-component-item\" href=\"#segmentedControls\" data-ignore=\"push\">Segmented controls</a>\n  <a class=\"docs-component-item\" href=\"#badges\" data-ignore=\"push\">Badges</a>\n  <a class=\"docs-component-item\" href=\"#forms\" data-ignore=\"push\">Forms</a>\n  <a class=\"docs-component-item\" href=\"#toggles\" data-ignore=\"push\">Toggles</a>\n  <a class=\"docs-component-item\" href=\"#popovers\" data-ignore=\"push\">Popovers</a>\n  <a class=\"docs-component-item\" href=\"#modals\" data-ignore=\"push\">Modals</a>\n  <a class=\"docs-component-item\" href=\"#sliders\" data-ignore=\"push\">Sliders</a>\n  <a class=\"docs-component-item\" href=\"#push\" data-ignore=\"push\">Push</a>\n  <a class=\"docs-component-item\" href=\"#ratchicons\" data-ignore=\"push\">Ratchicons</a>\n</div>\n"
  },
  {
    "path": "docs/_includes/masthead.html",
    "content": "<header class=\"docs-masthead clearfix\">\n  <div class=\"container\">\n    <div class=\"column\">\n      <h1 class=\"docs-title\">\n        <a href=\"/\" data-ignore=\"push\">Ratchet</a>\n      </h1>\n      <nav class=\"docs-nav clearfix\">\n        <a class=\"docs-nav-trigger icon icon-bars pull-right js-docs-nav-trigger\" href=\"#\"></a>\n        <div class=\"docs-nav-group\">\n          <a class=\"docs-nav-item\" href=\"/\" data-ignore=\"push\">Home</a>\n          <a class=\"docs-nav-item\" href=\"/getting-started\" data-ignore=\"push\">Getting started</a>\n          <a class=\"docs-nav-item\" href=\"/components\" data-ignore=\"push\">Components</a>\n          <a class=\"docs-nav-item\" href=\"/examples\" data-ignore=\"push\">Examples</a>\n          <a class=\"docs-nav-item\" href=\"/about\" data-ignore=\"push\">About</a>\n          <a class=\"docs-nav-item\" href=\"https://github.com/twbs/ratchet\" data-ignore=\"push\">GitHub project</a>\n        </div>\n      </nav>\n    </div>\n  </div>\n</header>\n"
  },
  {
    "path": "docs/_includes/toolbar.html",
    "content": "<div class=\"docs-component-toolbar js-docs-component-toolbar\">\n  <div class=\"container\">\n    <div class=\"column units-2\">\n      {% include jump.html %}\n\n      <div class=\"segmented-control\">\n        <a  class=\"platform-switch control-item active\" data-platform=\"\">\n          Base\n        </a>\n        <a class=\"platform-switch control-item\" data-platform=\"platform-ios\">\n          iOS\n        </a>\n        <a class=\"platform-switch control-item\" data-platform=\"platform-android\">\n          Android\n        </a>\n      </div>\n    </div>\n  </div>\n</div>\n"
  },
  {
    "path": "docs/_layouts/default.html",
    "content": "<!DOCTYPE html>\n<html>\n  <head>\n    {% include header.html %}\n  </head>\n  <body ontouchstart=\"\">\n    {% include browser-warning.html %}\n    {{ content }}\n  </body>\n</html>\n"
  },
  {
    "path": "docs/_layouts/home.html",
    "content": "<!DOCTYPE html>\n<html>\n  <head>\n    {% include header.html %}\n  </head>\n  <body class=\"docs-home\" ontouchstart=\"\">\n    {% include browser-warning.html %}\n    {{ content }}\n  </body>\n</html>\n"
  },
  {
    "path": "docs/about.html",
    "content": "---\nlayout: default\ntitle: About &middot; Ratchet\n---\n\n<div class=\"docs-sub-header\">\n  {% include masthead.html %}\n  <div class=\"container\">\n    <div class=\"docs-sub-content\">\n      <h2 class=\"page-title\">About</h2>\n      <p class=\"page-description\">Learn about the project's history and meet the maintaining team.</p>\n    </div>\n    {% include ad.html %}\n  </div>\n</div>\n\n<div class=\"container\">\n  <div class=\"column-group\">\n    <div class=\"column lg-units-8 docs-content\">\n      <div class=\"docs-section\">\n        <h2>History</h2>\n        <p>The idea for Ratchet was developed by <a href=\"https://twitter.com/connors\">@connors</a>, <a href=\"https://twitter.com/dhg\">@dhg</a>, and <a href=\"https://twitter.com/fat\">@fat</a> in mid-2012. Before it became a full fledged framework, Ratchet began as a series of HTML/CSS prototypes of the Twitter for iPhone app. These prototypes became invaluable to the process of testing new feature designs that ended up being shipped as part of the native mobile app.</p>\n        <p>As it became clear that this was the quickest and most effective way to design mobile apps, components were abstracted from these prototypes and became the framework you know today.</p>\n        <p>Released in November 2012, Ratchet quickly became one of the most popular prototyping tools on GitHub. Following that initial launch, we released v2 &#8211; a complete rewrite. With v2 we've abstracted the platform specific styles into their own theme CSS files, added an icon set called Ratchicons, and offically became part of the Bootstrap family.</p>\n      </div>\n\n      <div class=\"docs-section\">\n        <h2>Team</h2>\n        <p class=\"lead\">Ratchet is maintained by one of its creators, a couple of core contributors, and its awesome community.</p>\n\n        <div class=\"list-group\">\n          <div class=\"list-group-item\">\n            <iframe class=\"github-btn\" src=\"http://ghbtns.com/github-btn.html?user=connors&amp;type=follow\"></iframe>\n            <a class=\"team-member\" href=\"https://github.com/connors\">\n              <img src=\"http://www.gravatar.com/avatar/53d633ae4622de17906338910085275a\" alt=\"@connors\">\n              <div class=\"team-member-info\">\n                <strong>Connor Sears</strong>\n                @connors\n              </div>\n            </a>\n          </div>\n          <div class=\"list-group-item\">\n            <iframe class=\"github-btn\" src=\"http://ghbtns.com/github-btn.html?user=mdo&amp;type=follow\"></iframe>\n            <a class=\"team-member\" href=\"https://github.com/mdo\">\n              <img src=\"http://www.gravatar.com/avatar/bc4ab438f7a4ce1c406aadc688427f2c\" alt=\"@mdo\">\n              <div class=\"team-member-info\">\n                <strong>Mark Otto</strong>\n                @mdo\n              </div>\n            </a>\n          </div>\n        </div>\n\n        <p>Get involved with Ratchet development by <a href=\"https://github.com/twbs/ratchet/issues/new\">opening an issue</a> or submitting a pull request. Read our <a href=\"https://github.com/twbs/ratchet/blob/master/CONTRIBUTING.md\">contributing guidelines</a> for information on how we develop.</p>\n      </div>\n    </div>\n\n    <div class=\"column lg-units-4\">\n      {% include download-module.html %}\n    </div>\n  </div>\n\n  <div class=\"column\">\n    <!-- Footer -->\n    {% include footer.html %}\n  </div>\n</div>\n"
  },
  {
    "path": "docs/assets/css/docs.css",
    "content": "/*!\n * =====================================================\n * Ratchet v2.0.2 (http://goratchet.com)\n * Copyright 2016 Connor Sears\n * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)\n *\n * v2.0.2 designed by @connors.\n * =====================================================\n */\n\nhtml,\nbody {\n  width: 100%;\n  height: 100%;\n}\n\nbody {\n  position: relative !important;\n  font: 400 14px/1.5 \"Open Sans\", sans-serif;\n  color: #333;\n  -webkit-text-size-adjust: 100%;\n  background-color: #fff;\n\n  -webkit-font-smoothing: antialiased;\n}\n\n.docs-content {\n  font-size: 14px;\n}\n\n@media screen and (min-width: 768px) {\n  .docs-content {\n    font-size: 18px;\n  }\n}\n\n.docs-content h1, .docs-content h2, .docs-content h3, .docs-content h4, .docs-content h5, .docs-content h6 {\n  font-weight: 400;\n  color: #222;\n}\n\n.docs-content h2 {\n  margin-bottom: .25em;\n  font-size: 2em;\n}\n\n.docs-content h3 {\n  margin-bottom: .5em;\n  font-size: 1.25em;\n}\n\n.docs-content p {\n  margin-bottom: 1.5em;\n  font-size: 1em;\n  color: #555;\n}\n\n.docs-content .lead {\n  font-size: 1.1em;\n  color: #777;\n}\n\n.docs-header,\n.docs-sub-header {\n  position: relative;\n  background-color: #0a1855;\n  background-image: -webkit-gradient(linear, left bottom, right top, color-stop(0%, #0a1855), color-stop(100%, #da0024));\n  background-image: -webkit-linear-gradient(45deg, #0a1855 0%, #da0024 100%);\n  background-image:      -o-linear-gradient(45deg, #0a1855 0%, #da0024 100%);\n  background-image:         linear-gradient(45deg, #0a1855 0%, #da0024 100%);\n  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0a1855', endColorstr='#da0024', GradientType=1 );\n}\n\n.docs-header {\n  height: 100vh;\n  min-height: 750px;\n}\n\n.docs-header .carbonad {\n  position: relative !important;\n  margin-top: 0 !important;\n  -webkit-animation-name: fadeintext;\n       -o-animation-name: fadeintext;\n          animation-name: fadeintext;\n  -webkit-animation-duration: 2s;\n       -o-animation-duration: 2s;\n          animation-duration: 2s;\n}\n\n.docs-header .version {\n  margin-top: 15px;\n  color: rgba(255, 255, 255, .5);\n  text-align: center;\n}\n\n.docs-header-bottom {\n  position: absolute;\n  right: 0;\n  bottom: 0;\n  left: 0;\n}\n\n@media screen and (min-width: 768px) {\n  .docs-header {\n    min-height: 870px;\n  }\n  .docs-header .carbonad {\n    left: 50% !important;\n    width: 330px !important;\n    margin-bottom: 60px !important;\n    margin-left: -165px !important;\n  }\n  .docs-sub-header .carbonad {\n    position: absolute !important;\n    top: 50% !important;\n    right: 15px !important;\n    margin-top: 0 !important;\n    -webkit-transform: translateY(-50%) !important;\n        -ms-transform: translateY(-50%) !important;\n         -o-transform: translateY(-50%) !important;\n            transform: translateY(-50%) !important;\n  }\n}\n\n.docs-masthead {\n  position: relative;\n  padding-top: 15px;\n  padding-bottom: 15px;\n  border-bottom: 1px solid rgba(255, 255, 255, .1);\n}\n\n.docs-title {\n  position: absolute;\n  left: 50%;\n  z-index: 20;\n  margin-bottom: 0;\n  font-size: 22px;\n  font-weight: 400;\n  -webkit-transform: translateX(-50%);\n      -ms-transform: translateX(-50%);\n       -o-transform: translateX(-50%);\n          transform: translateX(-50%);\n}\n\n.docs-nav .docs-nav-trigger {\n  color: #fff;\n  opacity: .7;\n}\n\n.docs-nav .docs-nav-trigger.active {\n  opacity: 1;\n}\n\n.docs-nav .docs-nav-group {\n  position: absolute;\n  top: 40px;\n  right: 0;\n  left: 0;\n  z-index: 20;\n  height: 0;\n  overflow: hidden;\n  background-color: rgba(0, 0, 0, .9);\n  opacity: 0;\n}\n\n.docs-nav .docs-nav-group.active {\n  height: auto;\n  opacity: 1;\n}\n\n.docs-nav .docs-nav-item {\n  display: block;\n  padding: 20px 15px;\n  font-size: 22px;\n}\n\n.docs-jump-menu,\n.docs-component-group {\n  display: none;\n}\n\n.docs-title a,\n.docs-nav-item {\n  color: #fff;\n  -webkit-transition: opacity .2s linear;\n       -o-transition: opacity .2s linear;\n          transition: opacity .2s linear;\n}\n\n.docs-title a:active, .docs-title a:focus,\n.docs-nav-item:active,\n.docs-nav-item:focus {\n  color: #fff;\n  opacity: .5;\n}\n\n@media screen and (min-width: 768px) {\n  .docs-title {\n    position: static;\n    float: left;\n    font-weight: 300;\n    -webkit-transform: translateX(0);\n        -ms-transform: translateX(0);\n         -o-transform: translateX(0);\n            transform: translateX(0);\n  }\n  .docs-nav {\n    float: right;\n  }\n  .docs-nav .docs-nav-trigger {\n    display: none;\n  }\n  .docs-nav .docs-nav-group {\n    position: static;\n    display: block;\n    height: auto;\n    background-color: transparent;\n    opacity: 1;\n  }\n  .docs-nav .docs-nav-item {\n    position: relative;\n    display: inline-block;\n    padding: 0 15px;\n    font-size: 14px;\n  }\n  .docs-jump-menu {\n    position: absolute;\n    left: 15px;\n    display: block;\n    color: #777;\n    cursor: pointer;\n    -webkit-transition: opacity .2 linear;\n         -o-transition: opacity .2 linear;\n            transition: opacity .2 linear;\n  }\n  .docs-jump-menu:hover {\n    color: #428bca;\n  }\n  .docs-jump-menu:active {\n    opacity: .5;\n  }\n  .docs-jump-menu .icon-list {\n    margin-right: 3px;\n    font-size: 16px;\n  }\n  .docs-jump-menu .icon-caret {\n    position: relative;\n    top: 4px;\n    margin-left: -5px;\n  }\n  .docs-component-group {\n    position: absolute;\n    top: 35px;\n    left: 15px;\n    padding-top: 10px;\n    padding-bottom: 10px;\n    background-color: #fff;\n    -webkit-background-clip: padding-box;\n            background-clip: padding-box;\n    border: 1px solid rgba(0, 0, 0, .2);\n    border-radius: 3px;\n    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, .05);\n            box-shadow: 0 0 8px rgba(0, 0, 0, .05);\n  }\n  .docs-component-group.active {\n    display: block;\n  }\n  .docs-component-group:before, .docs-component-group:after {\n    position: absolute;\n    left: 30px;\n    width: 0;\n    height: 0;\n    content: '';\n  }\n  .docs-component-group:before {\n    top: -11px;\n    margin-left: -11px;\n    border-right: 11px solid transparent;\n    border-bottom: 11px solid rgba(0, 0, 0, .3);\n    border-left: 11px solid transparent;\n  }\n  .docs-component-group:after {\n    top: -10px;\n    margin-left: -10px;\n    border-right: 10px solid transparent;\n    border-bottom: 10px solid #fff;\n    border-left: 10px solid transparent;\n  }\n  .docs-component-group .docs-component-item {\n    display: block;\n    padding: 10px 20px;\n    color: #777;\n  }\n  .docs-component-group .docs-component-item:hover {\n    color: #fff;\n    background-color: #428bca;\n  }\n}\n\n.docs-header-content {\n  position: relative;\n  padding: 50px 10px;\n  text-align: center;\n  -webkit-animation-name: fadeintext;\n       -o-animation-name: fadeintext;\n          animation-name: fadeintext;\n  -webkit-animation-duration: 2s;\n       -o-animation-duration: 2s;\n          animation-duration: 2s;\n}\n\n.docs-header-content .btn {\n  display: block;\n  padding: 15px 60px 16px;\n  margin-bottom: 0;\n  font-size: 18px;\n  color: #0a1855;\n  background-color: #fff;\n  border: 0;\n  -webkit-transition: all .2s linear;\n       -o-transition: all .2s linear;\n          transition: all .2s linear;\n}\n\n.docs-header-content .btn:hover {\n  background-color: #fff;\n  -webkit-box-shadow: 0 0 50px rgba(255, 255, 255, .3);\n          box-shadow: 0 0 50px rgba(255, 255, 255, .3);\n}\n\n.docs-header-content .btn:active {\n  opacity: .5;\n}\n\n.docs-subtitle {\n  max-width: 750px;\n  margin: 0 auto 20px;\n  font-size: 28px;\n  font-weight: 300;\n  line-height: 38px;\n  color: #fff;\n}\n\n@media screen and (min-width: 768px) {\n  .docs-header-content {\n    top: 30%;\n    -webkit-transform: translateY(-50%);\n        -ms-transform: translateY(-50%);\n         -o-transform: translateY(-50%);\n            transform: translateY(-50%);\n  }\n  .docs-header-content .btn {\n    display: inline-block;\n  }\n  .docs-subtitle {\n    margin-bottom: 30px;\n    font-size: 41px;\n    line-height: 60px;\n  }\n}\n\n.carbonad {\n  width: 100% !important;\n  height: auto !important;\n  padding: 15px !important;\n  font-size: 13px !important;\n  line-height: 18px !important;\n  background: transparent !important;\n  border-top: 1px solid rgba(255, 255, 255, .1) !important;\n  border-right: 0 !important;\n  border-bottom: 0 !important;\n  border-left: 0 !important;\n}\n\n.carbonad-img {\n  margin: 0 !important;\n}\n\n.carbonad-text,\n.carbonad-tag {\n  display: block !important;\n  float: none !important;\n  width: auto !important;\n  height: auto !important;\n  margin-left: 145px !important;\n  font-family: \"Open Sans\", sans-serif !important;\n  color: rgba(255, 255, 255, .65) !important;\n}\n\n.carbonad-text {\n  padding-top: 0 !important;\n}\n\n.carbonad-tag {\n  text-align: left !important;\n}\n\n.carbonad-text a,\n.carbonad-tag a {\n  color: #fff !important;\n}\n\n.carbonad #azcarbon > img {\n  display: none;\n}\n\n@media screen and (min-width: 768px) {\n  .carbonad {\n    width: 360px !important;\n    border-right: 1px solid rgba(255, 255, 255, .1) !important;\n    border-bottom: 1px solid rgba(255, 255, 255, .1) !important;\n    border-left: 1px solid rgba(255, 255, 255, .1) !important;\n    border-radius: 3px !important;\n  }\n}\n\n.docs-sub-content {\n  position: relative;\n  padding: 55px 15px 65px;\n  overflow: hidden;\n  color: #fff;\n  text-align: center;\n}\n\n.docs-sub-content .page-title,\n.docs-sub-content .page-description {\n  margin-top: 0;\n  margin-bottom: 0;\n  font-weight: 300;\n}\n\n.docs-sub-content .page-title {\n  margin-bottom: 5px;\n  font-size: 40px;\n}\n\n.docs-sub-content .page-description {\n  font-size: 24px;\n  color: #fff;\n  opacity: .7;\n}\n\n@media screen and (min-width: 768px) {\n  .docs-sub-content {\n    margin-right: 380px;\n    text-align: left;\n  }\n}\n\n.docs-section {\n  padding-top: 50px;\n  padding-bottom: 50px;\n  border-bottom: 1px solid #ddd;\n}\n\n.docs-section:last-child {\n  border-bottom: 0;\n}\n\n@media screen and (min-width: 768px) {\n  .docs-module {\n    margin-top: 35px;\n  }\n}\n\n.docs-module {\n  padding: 20px;\n  margin-top: 20px;\n  border: 1px solid #ddd;\n  border-radius: 3px;\n}\n\n.docs-module .btn-block {\n  margin-bottom: 0;\n}\n\n.version {\n  margin-top: 10px;\n  margin-bottom: 0;\n  font-size: 90%;\n  color: #777;\n}\n\n.docs-footer {\n  padding: 30px 20px;\n  margin-top: 50px;\n  font-size: 14px;\n  color: #777;\n  text-align: center;\n  border-top: 1px solid #ddd;\n}\n\n.docs-footer .social {\n  padding: 0 0 20px;\n  margin: 0;\n  list-style: none;\n}\n\n.docs-footer .social li {\n  display: inline-block;\n  height: 20px;\n  vertical-align: top;\n}\n\n.docs-footer .social .twitter-follow-button {\n  margin-top: 5px;\n}\n\n@media screen and (min-width: 768px) {\n  .docs-footer .social .twitter-follow-button {\n    margin-top: 0;\n  }\n}\n\n.docs-footer-text {\n  margin-top: 0;\n  margin-bottom: 0;\n}\n\n@media screen and (min-width: 768px) {\n  .docs-footer-text {\n    width: 550px;\n    padding-right: 0;\n    padding-left: 0;\n    margin: 0 auto;\n  }\n}\n\n.docs-footer-links {\n  padding-left: 0;\n}\n\n.docs-footer-links li {\n  display: inline;\n  padding-right: 3px;\n  padding-left: 3px;\n}\n\n.docs-header .docs-footer {\n  margin-top: 0;\n  border-top: 1px solid rgba(255, 255, 255, .1);\n}\n\n.docs-header .docs-footer .docs-footer-text,\n.docs-header .docs-footer .docs-footer-links {\n  color: rgba(255, 255, 255, .5);\n}\n\n.docs-header .docs-footer .docs-footer-text a,\n.docs-header .docs-footer .docs-footer-links a {\n  color: rgba(255, 255, 255, .8);\n}\n\n.github-btn {\n  overflow: hidden;\n  border: 0;\n}\n\n.docs-component-toolbar {\n  position: fixed;\n  top: 0;\n  right: 0;\n  bottom: auto;\n  left: 0;\n  z-index: 20;\n  height: 44px;\n  padding-top: 8px;\n  padding-bottom: 8px;\n  background-color: #fff;\n  border-bottom: 1px solid #ddd;\n  -webkit-transition: -webkit-transform .5s;\n       -o-transition:      -o-transform .5s;\n          transition:         transform .5s;\n  -webkit-transform: translate3d(0, -55px, 0);\n      -ms-transform: translate3d(0, -55px, 0);\n          transform: translate3d(0, -55px, 0);\n}\n\n.docs-component-toolbar.visible {\n  -webkit-transform: translate3d(0, 0, 0);\n      -ms-transform: translate3d(0, 0, 0);\n          transform: translate3d(0, 0, 0);\n}\n\n.docs-component-toolbar .segmented-control {\n  max-width: 300px;\n  margin: 0 auto;\n}\n\n.docs-component-toolbar .segmented-control .control-item {\n  cursor: pointer;\n}\n\n.docs-examples {\n  margin-top: 30px;\n}\n\n.example-wrap {\n  margin-bottom: 30px;\n}\n\n.example-wrap .example {\n  display: block;\n  width: 100%;\n  padding: 3px;\n  overflow: hidden;\n  border: 1px solid #ddd;\n  border-radius: 3px;\n}\n\n.example-wrap .example-title {\n  margin-top: 10px;\n}\n\n.example-wrap img {\n  display: block;\n  width: 100%;\n  height: auto;\n}\n\ncode {\n  padding: 2px 4px;\n  font-family: Menlo, Monaco, Consolas, \"Courier New\", monospace;\n  font-size: 90%;\n  background-color: #f9f9f9;\n  border-radius: 3px;\n}\n\n.component {\n  padding: 50px 15px;\n  margin-right: -15px;\n  margin-left: -15px;\n  border-bottom: 1px solid #ddd;\n}\n\n.component.no-border {\n  border-bottom: 0;\n}\n\n@media screen and (min-width: 768px) {\n  .component {\n    border-bottom: 0;\n  }\n}\n\n.component-title {\n  margin-bottom: 10px;\n  font-size: 24px;\n  line-height: 34px;\n}\n\n.component-description {\n  margin-bottom: 15px;\n  font-size: 16px;\n}\n\n.component-example {\n  font-family: \"Helvetica Neue\", Helvetica, sans-serif;\n  font-size: 17px;\n  line-height: 21px;\n}\n\n.component-example,\n.component-example .bar,\n.component-example .content {\n  position: relative;\n}\n\n.component-example .bar {\n  border-top: 1px solid #ddd;\n  border-bottom: 1px solid #ddd;\n}\n\n.component-example .bar.bar-header-secondary {\n  top: 0 !important;\n  border-top: 0;\n}\n\n.component-example > .content-padded {\n  margin: 15px;\n}\n\n.component-example > .card {\n  margin: 15px 0 0;\n}\n\n.component-example > .card .control-content {\n  padding: 15px;\n}\n\n.component-example > .btn,\n.component-example > .toggle {\n  margin-bottom: 10px;\n}\n\n.component-example .slider {\n  height: 300px;\n}\n\n.component-example .slider .slide {\n  height: 300px;\n}\n\n.component-example .slide img {\n  width: 100%;\n}\n\n.component-example .slide-text {\n  position: absolute;\n  top: 45%;\n  left: 0;\n  width: 100%;\n  font-size: 24px;\n  color: #fff;\n  text-align: center;\n  text-shadow: 0 0 10px rgba(0, 0, 0, .5);\n}\n\n.component-example-fullbleed,\n.highlight {\n  margin-right: -15px;\n  margin-left: -15px;\n}\n\n.bar-nav ~ .content {\n  padding: 0;\n}\n\n.highlight pre {\n  padding: 15px;\n  margin-top: 15px;\n  overflow-x: auto;\n  font-size: 13px;\n  color: #777;\n  word-wrap: normal;\n  white-space: pre;\n  background-color: #fafafa;\n  border-top: 1px solid #ddd;\n  border-bottom: 1px solid #ddd;\n}\n\n.highlight pre code {\n  padding: 0;\n}\n\n@media screen and (min-width: 768px) {\n  .component,\n  .component-example-fullbleed,\n  .highlight {\n    margin-right: 0;\n    margin-left: 0;\n  }\n  .component {\n    padding-right: 0;\n    padding-left: 0;\n    opacity: .3;\n    -webkit-transition: opacity .2s ease-in-out;\n         -o-transition: opacity .2s ease-in-out;\n            transition: opacity .2s ease-in-out;\n  }\n  .component.active {\n    opacity: 1;\n  }\n  .component-example {\n    display: none;\n  }\n  .highlight pre {\n    border-right: 1px solid #ddd;\n    border-left: 1px solid #ddd;\n    border-radius: 3px;\n  }\n}\n\n#ratchicons .icon,\n#ratchiconsInDevice .icon {\n  width: 50px;\n  height: 50px;\n  margin: 3px;\n  font-size: 24px;\n  line-height: 50px;\n  text-align: center;\n  background-color: #fff;\n  border: 1px solid #ddd;\n  border-radius: 25px;\n}\n\n#modals .modal {\n  left: 0;\n  z-index: 50;\n}\n\n#push .component-example {\n  height: 150px;\n  overflow: hidden;\n}\n\n#buttonsInDevice .btn,\n#buttonsBadgesInDevice .btn,\n#buttonsWithIconsInDevice .btn {\n  margin-top: 10px;\n  margin-right: 100px;\n  margin-left: 10px;\n}\n\n#blockButtonsInDevice .btn-block {\n  width: 300px;\n  margin: 10px auto;\n}\n\n#segmentedControlsInDevice .segmented-control {\n  margin-top: 10px;\n  margin-right: 10px;\n  margin-left: 10px;\n}\n\n#segmentedControlsInDevice .card span {\n  padding: 10px;\n}\n\n#badgesInDevice {\n  text-align: center;\n}\n\n#badgesInDevice .badge {\n  margin-top: 10px;\n}\n\n#formsInDevice form {\n  margin: 10px;\n}\n\n#formsInDevice form.input-group {\n  margin: 0;\n}\n\n#togglesInDevice .toggle {\n  margin: 10px auto;\n}\n\n.toggle {\n  cursor: pointer;\n}\n\n#popoversInDevice #iwindow:before {\n  position: absolute;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  z-index: 11;\n  content: '';\n  background-color: rgba(0, 0, 0, .3);\n}\n\n@media screen and (min-width: 768px) {\n  .popover {\n    position: absolute;\n    top: 72px;\n    display: block;\n    opacity: 1;\n  }\n}\n\n#modalsInDevice #iwindow > .btn {\n  margin: 10px;\n}\n\n@media screen and (min-width: 768px) {\n  .slider .slide {\n    cursor: -webkit-grab;\n    cursor:    -moz-grab;\n    cursor:         grab;\n  }\n  .slider .slide img {\n    display: block;\n    width: 100%;\n    height: 570px;\n  }\n  .slider .slide-group .slide-text {\n    position: absolute;\n    top: 45%;\n    left: 0;\n    width: 100%;\n    font-size: 24px;\n    color: #fff;\n    text-align: center;\n    text-shadow: 0 0 10px rgba(0, 0, 0, .5);\n  }\n}\n\n.device {\n  display: none;\n  font-family: \"Helvetica Neue\", Helvetica, sans-serif;\n  font-size: 17px;\n  line-height: 21px;\n}\n\n@media screen and (min-width: 768px) {\n  .device {\n    position: relative;\n    top: 50px;\n    display: block;\n    width: 395px;\n    height: 813px;\n    margin-left: -20px;\n    font-family: \"Helvetica Neue\", sans-serif;\n    background-image: url(\"../img/device-sprite.png\");\n    background-repeat: no-repeat;\n    background-position: 0 0;\n    -webkit-background-size: 300% 300%;\n            background-size: 300%;\n    -webkit-transition: background-image .1s linear;\n         -o-transition: background-image .1s linear;\n            transition: background-image .1s linear;\n  }\n  .device.device-fixed {\n    position: fixed;\n    right: auto;\n  }\n  .device .device-content {\n    position: absolute;\n    top: 117px;\n    left: 37px;\n    width: 321px;\n    height: 569px;\n    overflow: hidden;\n    font-size: 17px;\n    line-height: 21px;\n    background-color: #fff;\n  }\n  .device .content,\n  .device .bar,\n  .device .modal {\n    position: absolute;\n  }\n  .device .content {\n    top: 44px;\n    right: 0;\n    bottom: 0;\n    left: 0;\n  }\n}\n\n@media screen and (min-width: 1200px) {\n  .device {\n    margin-left: 39px;\n  }\n}\n\nhr {\n  height: 0;\n  margin: 10px 0 30px;\n  clear: both;\n  border: solid #ddd;\n  border-width: 1px 0 0;\n}\n\n.column-group:before, .column-group:after {\n  display: table;\n  content: \" \";\n}\n\n.column-group:after {\n  clear: both;\n}\n\n.container {\n  position: relative;\n  padding-right: 0;\n  padding-left: 0;\n  margin-right: auto;\n  margin-left: auto;\n}\n\n.column-group {\n  width: auto;\n}\n\n.column {\n  float: left;\n  width: 100%;\n  padding-right: 15px;\n  padding-left: 15px;\n}\n\n.column.pull-right {\n  float: right;\n}\n\n.column .column-group {\n  margin-right: -15px;\n  margin-left: -15px;\n}\n\n@media screen and (min-width: 768px) {\n  .container {\n    max-width: 940px;\n    padding: 0;\n  }\n  .lg-units-4 {\n    width: 33.333%;\n  }\n  .lg-units-5 {\n    width: 41.666%;\n  }\n  .lg-units-7 {\n    width: 58.333%;\n  }\n  .lg-units-8 {\n    width: 66.666%;\n  }\n}\n\n@media screen and (min-width: 1200px) {\n  .container {\n    max-width: 1170px;\n  }\n}\n\n.platform-ios a {\n  color: #007aff;\n}\n\n.platform-ios a:active {\n  color: #0062cc;\n}\n\n.platform-ios .content {\n  background-color: #efeff4;\n}\n\n.platform-ios .h5, .platform-ios h5,\n.platform-ios .h6, .platform-ios h6,\n.platform-ios p {\n  color: #8f8f94;\n}\n\n.platform-ios .h5, .platform-ios h5,\n.platform-ios .h6, .platform-ios h6 {\n  font-weight: normal;\n  text-transform: uppercase;\n}\n\n.platform-ios .btn {\n  color: #929292;\n  background-color: rgba(247, 247, 247, .98);\n  border: 1px solid #929292;\n  -webkit-transition: all;\n       -o-transition: all;\n          transition: all;\n  -webkit-transition-timing-function: linear;\n       -o-transition-timing-function: linear;\n          transition-timing-function: linear;\n  -webkit-transition-duration: .2s;\n       -o-transition-duration: .2s;\n          transition-duration: .2s;\n}\n\n.platform-ios .btn:active, .platform-ios .btn.active {\n  color: #fff;\n  background-color: #929292;\n}\n\n.platform-ios .btn-primary {\n  color: #fff;\n  background-color: #007aff;\n  border: 1px solid #007aff;\n}\n\n.platform-ios .btn-primary:active, .platform-ios .btn-primary.active {\n  background-color: #0062cc;\n  border: 1px solid #0062cc;\n}\n\n.platform-ios .btn-positive {\n  color: #fff;\n  background-color: #4cd964;\n  border: 1px solid #4cd964;\n}\n\n.platform-ios .btn-positive:active, .platform-ios .btn-positive.active {\n  background-color: #2ac845;\n  border: 1px solid #2ac845;\n}\n\n.platform-ios .btn-negative {\n  color: #fff;\n  background-color: #dd524d;\n  border: 1px solid #dd524d;\n}\n\n.platform-ios .btn-negative:active, .platform-ios .btn-negative.active {\n  background-color: #cf2d28;\n  border: 1px solid #cf2d28;\n}\n\n.platform-ios .btn-outlined {\n  background-color: transparent;\n}\n\n.platform-ios .btn-outlined.btn-primary {\n  color: #007aff;\n}\n\n.platform-ios .btn-outlined.btn-positive {\n  color: #4cd964;\n}\n\n.platform-ios .btn-outlined.btn-negative {\n  color: #dd524d;\n}\n\n.platform-ios .btn-outlined.btn-primary:active, .platform-ios .btn-outlined.btn-positive:active, .platform-ios .btn-outlined.btn-negative:active {\n  color: #fff;\n}\n\n.platform-ios .btn-link {\n  color: #007aff;\n  background-color: transparent;\n  border: none;\n}\n\n.platform-ios .btn-link:active, .platform-ios .btn-link.active {\n  color: #0062cc;\n  background-color: transparent;\n}\n\n.platform-ios .btn .badge {\n  background-color: rgba(0, 0, 0, .15);\n}\n\n.platform-ios .btn .badge.badge-inverted {\n  background-color: transparent;\n}\n\n.platform-ios .btn:active .badge {\n  color: #fff;\n}\n\n.platform-ios .bar {\n  background-color: rgba(247, 247, 247, .98);\n  border-bottom: 0;\n  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, .85);\n          box-shadow: 0 0 1px rgba(0, 0, 0, .85);\n}\n\n.platform-ios .bar.bar-header-secondary {\n  top: 44px;\n}\n\n.platform-ios .bar.bar-footer-secondary {\n  bottom: 44px;\n}\n\n.platform-ios .bar.bar-footer-secondary-tab {\n  bottom: 50px;\n}\n\n.platform-ios .bar.bar-footer, .platform-ios .bar.bar-footer-secondary, .platform-ios .bar.bar-footer-secondary-tab {\n  border-top: 0;\n}\n\n.platform-ios .bar-tab {\n  border-top: 0;\n}\n\n.platform-ios .tab-item {\n  color: #929292;\n}\n\n.platform-ios .tab-item.active, .platform-ios .tab-item:active {\n  color: #007aff;\n}\n\n.platform-ios .bar-nav .btn-link {\n  color: #007aff;\n}\n\n.platform-ios .bar-nav .btn-link:active {\n  color: #007aff;\n  opacity: .6;\n}\n\n.platform-ios .badge.badge-inverted {\n  color: #929292;\n  background-color: transparent;\n}\n\n.platform-ios .badge-primary {\n  color: #fff;\n  background-color: #007aff;\n}\n\n.platform-ios .badge-primary.badge-inverted {\n  color: #007aff;\n  background-color: transparent;\n}\n\n.platform-ios .badge-positive {\n  color: #fff;\n  background-color: #4cd964;\n}\n\n.platform-ios .badge-positive.badge-inverted {\n  color: #4cd964;\n  background-color: transparent;\n}\n\n.platform-ios .badge-negative {\n  color: #fff;\n  background-color: #dd524d;\n}\n\n.platform-ios .badge-negative.badge-inverted {\n  color: #dd524d;\n  background-color: transparent;\n}\n\n.platform-ios .card .table-view {\n  background-image: none;\n}\n\n.platform-ios .card .table-view-cell:last-child {\n  background-image: none;\n}\n\n.platform-ios .table-view {\n  background-image: url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='1'><rect fill='#c8c7cc' x='0' y='0' width='100%' height='0.5'/></svg>\"), url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='1'><rect fill='#c8c7cc' x='0' y='0' width='100%' height='0.5'/></svg>\");\n  background-repeat: no-repeat;\n  background-position: 0 100%, 0 0;\n  border-top: 0;\n  border-bottom: 0;\n}\n\n.platform-ios .table-view .table-view-cell {\n  background-image: url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='1'><rect fill='#c8c7cc' x='0' y='0' width='100%' height='0.5'/></svg>\");\n  background-repeat: no-repeat;\n  background-position: 15px 100%;\n  border-bottom: 0;\n}\n\n.platform-ios .table-view .table-view-cell:last-child {\n  background-image: none;\n}\n\n.platform-ios .table-view .table-view-cell > a:not(.btn):active {\n  color: inherit;\n}\n\n.platform-ios .table-view .table-view-divider {\n  background-image: url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='1'><rect fill='#c8c7cc' x='0' y='0' width='100%' height='0.5'/></svg>\"), url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='1'><rect fill='#c8c7cc' x='0' y='0' width='100%' height='0.5'/></svg>\");\n  background-repeat: no-repeat;\n  background-position: 0 100%, 0 0;\n  border-top: 0;\n  border-bottom: 0;\n}\n\n.platform-ios select,\n.platform-ios textarea,\n.platform-ios input[type=\"text\"],\n.platform-ios input[type=\"search\"],\n.platform-ios input[type=\"password\"],\n.platform-ios input[type=\"datetime\"],\n.platform-ios input[type=\"datetime-local\"],\n.platform-ios input[type=\"date\"],\n.platform-ios input[type=\"month\"],\n.platform-ios input[type=\"time\"],\n.platform-ios input[type=\"week\"],\n.platform-ios input[type=\"number\"],\n.platform-ios input[type=\"email\"],\n.platform-ios input[type=\"url\"],\n.platform-ios input[type=\"tel\"],\n.platform-ios input[type=\"color\"],\n.platform-ios .input-group {\n  height: 40px;\n  padding: 10px 15px;\n  border: 1px solid rgba(0, 0, 0, .2);\n}\n\n.platform-ios input[type=\"search\"] {\n  height: 34px;\n  text-align: center;\n  background-color: rgba(0, 0, 0, .1);\n  border: 0;\n  border-radius: 6px;\n}\n\n.platform-ios input[type=\"search\"]:focus {\n  text-align: left;\n}\n\n.platform-ios select,\n.platform-ios textarea,\n.platform-ios .input-group {\n  height: auto;\n}\n\n.platform-ios .input-group {\n  padding: 0;\n  background-image: url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='1'><rect fill='#c8c7cc' x='0' y='0' width='100%' height='0.5'/></svg>\"), url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='1'><rect fill='#c8c7cc' x='0' y='0' width='100%' height='0.5'/></svg>\");\n  background-repeat: no-repeat;\n  background-position: 0 100%, 0 0;\n  border: 0;\n}\n\n.platform-ios .input-group input {\n  background-image: url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='1'><rect fill='#c8c7cc' x='0' y='0' width='100%' height='0.5'/></svg>\");\n  background-repeat: no-repeat;\n  background-position: 15px 100%;\n  border: 0;\n}\n\n.platform-ios .input-group input:last-child {\n  background-image: none;\n}\n\n.platform-ios .input-row {\n  background-image: url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='1'><rect fill='#c8c7cc' x='0' y='0' width='100%' height='0.5'/></svg>\");\n  background-repeat: no-repeat;\n  background-position: 15px 100%;\n  border-bottom: 0;\n}\n\n.platform-ios .input-row:last-child,\n.platform-ios .input-row label + input {\n  background-image: none;\n}\n\n.platform-ios .segmented-control {\n  background-color: transparent;\n  border: 1px solid #929292;\n}\n\n.platform-ios .segmented-control .control-item {\n  color: #929292;\n  border-color: #929292;\n  -webkit-transition: background-color .1s linear;\n       -o-transition: background-color .1s linear;\n          transition: background-color .1s linear;\n}\n\n.platform-ios .segmented-control .control-item:active {\n  background-color: #ebebeb;\n}\n\n.platform-ios .segmented-control .control-item.active {\n  color: #fff;\n  background-color: #929292;\n}\n\n.platform-ios .segmented-control-primary {\n  border: 1px solid #007aff;\n}\n\n.platform-ios .segmented-control-primary .control-item {\n  color: #007aff;\n  border-color: inherit;\n}\n\n.platform-ios .segmented-control-primary .control-item:active {\n  background-color: #b3d7ff;\n}\n\n.platform-ios .segmented-control-primary .control-item.active {\n  color: #fff;\n  background-color: #007aff;\n}\n\n.platform-ios .segmented-control-positive {\n  border: 1px solid #4cd964;\n}\n\n.platform-ios .segmented-control-positive .control-item {\n  color: #4cd964;\n  border-color: inherit;\n}\n\n.platform-ios .segmented-control-positive .control-item:active {\n  background-color: #dff8e4;\n}\n\n.platform-ios .segmented-control-positive .control-item.active {\n  color: #fff;\n  background-color: #4cd964;\n}\n\n.platform-ios .segmented-control-negative {\n  border: 1px solid #dd524d;\n}\n\n.platform-ios .segmented-control-negative .control-item {\n  color: #dd524d;\n  border-color: inherit;\n}\n\n.platform-ios .segmented-control-negative .control-item:active {\n  background-color: #fae4e3;\n}\n\n.platform-ios .segmented-control-negative .control-item.active {\n  color: #fff;\n  background-color: #dd524d;\n}\n\n.platform-ios .popover {\n  border-radius: 12px;\n  -webkit-transition: -webkit-transform .2s ease-in-out, opacity .2s ease-in-out;\n          transition: -webkit-transform .2s ease-in-out, opacity .2s ease-in-out;\n}\n\n.platform-ios .popover:before {\n  border-bottom: 15px solid rgba(247, 247, 247, .98);\n}\n\n.platform-ios .popover .bar {\n  -webkit-box-shadow: none;\n          box-shadow: none;\n}\n\n.platform-ios .popover .bar-nav {\n  border-bottom: 1px solid rgba(0, 0, 0, .15);\n}\n\n.platform-ios .popover .table-view {\n  background-image: none;\n  border-radius: 12px;\n}\n\n.platform-ios .modal {\n  -webkit-transition-timing-function: cubic-bezier(.1, .5, .1, 1);\n       -o-transition-timing-function: cubic-bezier(.1, .5, .1, 1);\n          transition-timing-function: cubic-bezier(.1, .5, .1, 1);\n}\n\n.platform-ios .modal.active {\n  -webkit-transition-timing-function: cubic-bezier(.1, .5, .1, 1);\n       -o-transition-timing-function: cubic-bezier(.1, .5, .1, 1);\n          transition-timing-function: cubic-bezier(.1, .5, .1, 1);\n}\n\n.platform-ios .toggle {\n  width: 47px;\n  border: 2px solid #e6e6e6;\n  -webkit-box-shadow: inset 0 0 0 0 #e1e1e1;\n          box-shadow: inset 0 0 0 0 #e1e1e1;\n  -webkit-transition-duration: .2s;\n       -o-transition-duration: .2s;\n          transition-duration: .2s;\n  -webkit-transition-property: -webkit-box-shadow, border;\n       -o-transition-property:         box-shadow, border;\n          transition-property:         box-shadow, border;\n}\n\n.platform-ios .toggle .toggle-handle {\n  border: 1px solid rgba(0, 0, 0, .2);\n  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, .08);\n          box-shadow: 0 3px 3px rgba(0, 0, 0, .08);\n  -webkit-transition-property: -webkit-transform, border, width;\n       -o-transition-property:      -o-transform, border, width;\n          transition-property:         transform, border, width;\n}\n\n.platform-ios .toggle:before {\n  display: none;\n}\n\n.platform-ios .toggle.active {\n  background-color: transparent;\n  border: 2px solid #4cd964;\n  -webkit-box-shadow: inset 0 0 0 13px #4cd964;\n          box-shadow: inset 0 0 0 13px #4cd964;\n}\n\n.platform-ios .toggle.active .toggle-handle {\n  -webkit-transform: translate3d(17px, 0, 0);\n      -ms-transform: translate3d(17px, 0, 0);\n          transform: translate3d(17px, 0, 0);\n}\n\n.platform-ios .toggle.active .toggle-handle {\n  border-color: #4cd964;\n}\n\n.platform-ios .content.fade {\n  -webkit-transition: opacity .2s ease-in-out;\n       -o-transition: opacity .2s ease-in-out;\n          transition: opacity .2s ease-in-out;\n}\n\n.platform-ios .content.sliding {\n  -webkit-transition-timing-function: cubic-bezier(.1, .5, .1, 1);\n       -o-transition-timing-function: cubic-bezier(.1, .5, .1, 1);\n          transition-timing-function: cubic-bezier(.1, .5, .1, 1);\n}\n\n.platform-ios .content.sliding.sliding-in, .platform-ios .content.sliding.right:not([class*=\"sliding-in\"]) {\n  -webkit-animation-name: fadeOverlay;\n       -o-animation-name: fadeOverlay;\n          animation-name: fadeOverlay;\n  -webkit-animation-duration: .4s;\n       -o-animation-duration: .4s;\n          animation-duration: .4s;\n}\n\n.platform-ios .content.sliding.right:not([class*=\"sliding-in\"]) {\n  -webkit-animation-direction: reverse;\n       -o-animation-direction: reverse;\n          animation-direction: reverse;\n}\n\n.platform-ios .content.sliding.left {\n  -webkit-transform: translate3d(-20%, 0, 0);\n      -ms-transform: translate3d(-20%, 0, 0);\n          transform: translate3d(-20%, 0, 0);\n}\n\n@-webkit-keyframes fadeOverlay {\n  from {\n    -webkit-box-shadow: 0 0 10px transparent, -320px 0 0 transparent;\n            box-shadow: 0 0 10px transparent, -320px 0 0 transparent;\n  }\n  to {\n    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .3), -320px 0 0 rgba(0, 0, 0, .1);\n            box-shadow: 0 0 10px rgba(0, 0, 0, .3), -320px 0 0 rgba(0, 0, 0, .1);\n  }\n}\n\n.platform-ios .device {\n  background-position: -395px 0;\n}\n\n.platform-ios .device .device-content {\n  background-color: #efeff4;\n}\n\n.platform-android body {\n  font-family: \"Roboto\", sans-serif;\n  font-size: 18px;\n  line-height: 22px;\n  color: #222;\n}\n\n.platform-android a {\n  color: #33b5e5;\n}\n\n.platform-android a:active {\n  color: #1a9bcb;\n}\n\n.platform-android .content {\n  background-color: #f2f2f2;\n}\n\n.platform-android .bar-nav ~ .content {\n  padding-top: 50px;\n}\n\n.platform-android .bar-header-secondary ~ .content {\n  padding-top: 100px;\n}\n\n.platform-android .bar-tab ~ .content {\n  padding-top: 50px;\n  padding-bottom: 0;\n}\n\n.platform-android .bar-footer ~ .content {\n  padding-bottom: 50px;\n}\n\n.platform-android .bar-footer-secondary ~ .content {\n  padding-bottom: 100px;\n}\n\n.platform-android .btn {\n  padding: 8px 15px;\n  font-size: 14px;\n  color: #222;\n  background-color: #cecece;\n  border: 0;\n  border-radius: 2px;\n  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 1px rgba(0, 0, 0, .25);\n          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 1px rgba(0, 0, 0, .25);\n}\n\n.platform-android .btn:active, .platform-android .btn.active {\n  color: #222;\n  background-color: #999;\n  border: 0;\n  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .2);\n          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .2);\n}\n\n.platform-android .btn-primary {\n  color: #fff;\n  background-color: #33b5e5;\n  border: 0;\n}\n\n.platform-android .btn-primary:active, .platform-android .btn-primary.active {\n  color: #fff;\n  background-color: #1a9bcb;\n  border: 0;\n}\n\n.platform-android .btn-positive {\n  color: #fff;\n  background-color: #9c0;\n  border: 0;\n}\n\n.platform-android .btn-positive:active, .platform-android .btn-positive.active {\n  color: #fff;\n  background-color: #739900;\n  border: 0;\n}\n\n.platform-android .btn-negative {\n  color: #fff;\n  background-color: #f44;\n  border: 0;\n}\n\n.platform-android .btn-negative:active, .platform-android .btn-negative.active {\n  color: #fff;\n  background-color: #f11;\n  border: 0;\n}\n\n.platform-android .btn-outlined {\n  background-color: transparent;\n  border: 1px solid #999;\n  -webkit-box-shadow: none;\n          box-shadow: none;\n}\n\n.platform-android .btn-outlined.btn-primary {\n  color: #33b5e5;\n  border: 1px solid #33b5e5;\n}\n\n.platform-android .btn-outlined.btn-primary:active {\n  background-color: #33b5e5;\n  border: 1px solid #33b5e5;\n}\n\n.platform-android .btn-outlined.btn-positive {\n  color: #9c0;\n  border: 1px solid #9c0;\n}\n\n.platform-android .btn-outlined.btn-positive:active {\n  background-color: #9c0;\n  border: 1px solid #9c0;\n}\n\n.platform-android .btn-outlined.btn-negative {\n  color: #f44;\n  border: 1px solid #f44;\n}\n\n.platform-android .btn-outlined.btn-negative:active {\n  background-color: #f44;\n  border: 1px solid #f44;\n}\n\n.platform-android .btn-outlined:active {\n  background-color: #999;\n  border: 1px solid #999;\n  -webkit-box-shadow: none;\n          box-shadow: none;\n}\n\n.platform-android .btn-outlined.btn-primary:active, .platform-android .btn-outlined.btn-positive:active, .platform-android .btn-outlined.btn-negative:active {\n  color: #fff;\n  -webkit-box-shadow: none;\n          box-shadow: none;\n}\n\n.platform-android .btn-link {\n  color: #33b5e5;\n  background-color: transparent;\n  border: none;\n  -webkit-box-shadow: none;\n          box-shadow: none;\n}\n\n.platform-android .btn-link:active, .platform-android .btn-link.active {\n  color: #1a9bcb;\n  background-color: transparent;\n  -webkit-box-shadow: none;\n          box-shadow: none;\n}\n\n.platform-android .btn-block {\n  padding: 15px 0;\n  font-size: 18px;\n}\n\n.platform-android .btn .badge {\n  background-color: rgba(0, 0, 0, .15);\n}\n\n.platform-android .btn .badge.badge-inverted {\n  background-color: transparent;\n}\n\n.platform-android .btn:active .badge {\n  color: #fff;\n}\n\n.platform-android .bar {\n  height: 50px;\n  background-color: #ddd;\n  border-bottom: 1px solid #b1b1b1;\n  -webkit-box-shadow: inset 0 -2px 0 #d2d2d2, 0 3px 3px rgba(0, 0, 0, .07);\n          box-shadow: inset 0 -2px 0 #d2d2d2, 0 3px 3px rgba(0, 0, 0, .07);\n}\n\n.platform-android .bar.bar-header-secondary {\n  top: 50px;\n}\n\n.platform-android .bar.bar-footer-secondary {\n  bottom: 50px;\n}\n\n.platform-android .bar.bar-footer-secondary-tab {\n  bottom: 50px;\n}\n\n.platform-android .bar .bar-footer,\n.platform-android .bar .bar-footer-secondary,\n.platform-android .bar .bar-footer-secondary-tab {\n  border-top: 1px solid #b1b1b1;\n  border-bottom: 0;\n  -webkit-box-shadow: inset 0 -2px 0 #33b5e5;\n          box-shadow: inset 0 -2px 0 #33b5e5;\n}\n\n.platform-android .bar-tab {\n  top: 0;\n  bottom: auto;\n  height: 50px;\n  border-top: 0;\n}\n\n.platform-android .bar-tab .tab-item {\n  color: #929292;\n}\n\n.platform-android .bar-tab .tab-item.active {\n  color: #33b5e5;\n  -webkit-box-shadow: inset 0 -2px 0 #33b5e5;\n          box-shadow: inset 0 -2px 0 #33b5e5;\n}\n\n.platform-android .bar-tab .tab-item:active {\n  color: #929292;\n  background-color: #78c6e3;\n}\n\n.platform-android .bar-tab .tab-item .icon {\n  top: 3px;\n  padding-top: 0;\n  padding-bottom: 0;\n}\n\n.platform-android .title {\n  position: static;\n  padding-left: 15px;\n  font-size: 18px;\n  line-height: 49px;\n  text-align: left;\n}\n\n.platform-android .bar .btn {\n  top: 7px;\n  padding-top: 10px;\n  padding-bottom: 10px;\n}\n\n.platform-android .bar .btn-link {\n  top: 0;\n  padding: 0;\n  font-size: 18px;\n  line-height: 49px;\n  color: #33b5e5;\n}\n\n.platform-android .bar .btn-link:active, .platform-android .bar .btn-link.active {\n  color: #1a9bcb;\n}\n\n.platform-android .bar .btn-link .icon {\n  top: 2px;\n  padding: 0;\n}\n\n.platform-android .bar .btn-block {\n  top: 4px;\n}\n\n.platform-android .bar .segmented-control {\n  top: 7px;\n}\n\n.platform-android .bar .icon {\n  padding-top: 13px;\n  padding-bottom: 13px;\n}\n\n.platform-android .bar .title .icon {\n  padding: 0;\n}\n\n.platform-android .bar .title .icon.icon-caret {\n  top: 10px;\n  color: #777;\n}\n\n.platform-android .bar input[type=\"search\"] {\n  height: 35px;\n}\n\n.platform-android .badge.badge-inverted {\n  color: #999;\n  background-color: transparent;\n}\n\n.platform-android .badge-primary {\n  color: #fff;\n  background-color: #33b5e5;\n}\n\n.platform-android .badge-primary.badge-inverted {\n  color: #33b5e5;\n  background-color: transparent;\n}\n\n.platform-android .badge-positive {\n  color: #fff;\n  background-color: #9c0;\n}\n\n.platform-android .badge-positive.badge-inverted {\n  color: #9c0;\n  background-color: transparent;\n}\n\n.platform-android .badge-negative {\n  color: #fff;\n  background-color: #f44;\n}\n\n.platform-android .badge-negative.badge-inverted {\n  color: #f44;\n  background-color: transparent;\n}\n\n.platform-android .card {\n  background-color: transparent;\n  border-color: #d9d9d9;\n  border-radius: 2px;\n}\n\n.platform-android .table-view {\n  background-color: transparent;\n}\n\n.platform-android .table-view .table-view-cell {\n  border-bottom: 1px solid #d9d9d9;\n}\n\n.platform-android .table-view .table-view-cell:last-child {\n  background-image: none;\n}\n\n.platform-android .table-view .table-view-cell > a:not(.btn):active {\n  color: inherit;\n  background-color: #e0e0e0;\n}\n\n.platform-android .table-view .table-view-cell > a:not(.btn):active .icon {\n  color: #fff;\n}\n\n.platform-android .table-view .table-view-divider {\n  padding-top: 25px;\n  font-size: 12px;\n  font-weight: bold;\n  text-transform: uppercase;\n  background-color: transparent;\n  border-top: 0;\n  border-bottom: 2px solid #a9a9a9;\n}\n\n.platform-android .table-view-cell .navigate-left > .btn,\n.platform-android .table-view-cell .navigate-left > .badge,\n.platform-android .table-view-cell .navigate-left > .toggle,\n.platform-android .table-view-cell .navigate-right > .btn,\n.platform-android .table-view-cell .navigate-right > .badge,\n.platform-android .table-view-cell .navigate-right > .toggle,\n.platform-android .table-view-cell .push-left > .btn,\n.platform-android .table-view-cell .push-left > .badge,\n.platform-android .table-view-cell .push-left > .toggle,\n.platform-android .table-view-cell .push-right > .btn,\n.platform-android .table-view-cell .push-right > .badge,\n.platform-android .table-view-cell .push-right > .toggle,\n.platform-android .table-view-cell > a .navigate-left > .btn,\n.platform-android .table-view-cell > a .navigate-left > .badge,\n.platform-android .table-view-cell > a .navigate-left > .toggle,\n.platform-android .table-view-cell > a .navigate-right > .btn,\n.platform-android .table-view-cell > a .navigate-right > .badge,\n.platform-android .table-view-cell > a .navigate-right > .toggle,\n.platform-android .table-view-cell > a .push-left > .btn,\n.platform-android .table-view-cell > a .push-left > .badge,\n.platform-android .table-view-cell > a .push-left > .toggle,\n.platform-android .table-view-cell > a .push-right > .btn,\n.platform-android .table-view-cell > a .push-right > .badge,\n.platform-android .table-view-cell > a .push-right > .toggle {\n  right: 15px;\n}\n\n.platform-android select,\n.platform-android textarea,\n.platform-android input[type=\"text\"],\n.platform-android input[type=\"search\"],\n.platform-android input[type=\"password\"],\n.platform-android input[type=\"datetime\"],\n.platform-android input[type=\"datetime-local\"],\n.platform-android input[type=\"date\"],\n.platform-android input[type=\"month\"],\n.platform-android input[type=\"time\"],\n.platform-android input[type=\"week\"],\n.platform-android input[type=\"number\"],\n.platform-android input[type=\"email\"],\n.platform-android input[type=\"url\"],\n.platform-android input[type=\"tel\"],\n.platform-android input[type=\"color\"],\n.platform-android .input-group {\n  height: 40px;\n  padding: 10px 15px;\n  border: 1px solid rgba(0, 0, 0, .2);\n  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .1);\n          box-shadow: 0 1px 1px rgba(0, 0, 0, .1);\n}\n\n.platform-android input[type=\"search\"] {\n  border-radius: 2px;\n}\n\n.platform-android select,\n.platform-android textarea,\n.platform-android .input-group {\n  height: auto;\n}\n\n.platform-android .input-group {\n  padding: 0;\n  border: 0;\n}\n\n.platform-android .input-group input {\n  border: 0;\n  border-bottom: 1px solid #d9d9d9;\n  -webkit-box-shadow: none;\n          box-shadow: none;\n}\n\n.platform-android .input-group input:last-child {\n  background-image: none;\n}\n\n.platform-android .input-row {\n  height: 40px;\n  border-bottom: 1px solid #d9d9d9;\n}\n\n.platform-android .input-row label {\n  padding-top: 10px;\n  padding-bottom: 10px;\n}\n\n.platform-android .input-row label + input {\n  background-image: none;\n  border-bottom: 0;\n}\n\n.platform-android .segmented-control {\n  font-size: 14px;\n  background-color: #cecece;\n  border: 0;\n  border-radius: 2px;\n  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .25);\n          box-shadow: 0 1px 1px rgba(0, 0, 0, .25);\n}\n\n.platform-android .segmented-control .control-item {\n  padding-top: 10px;\n  padding-bottom: 10px;\n  color: #222;\n  border-left: 1px solid #999;\n  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .2);\n          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .2);\n}\n\n.platform-android .segmented-control .control-item:first-child {\n  border-left-width: 0;\n}\n\n.platform-android .segmented-control .control-item:active, .platform-android .segmented-control .control-item.active {\n  background-color: #999;\n}\n\n.platform-android .segmented-control-primary {\n  border: 0;\n}\n\n.platform-android .segmented-control-primary .control-item {\n  color: #fff;\n  border-color: inherit;\n}\n\n.platform-android .segmented-control-primary .control-item:active, .platform-android .segmented-control-primary .control-item.active {\n  color: #fff;\n  background-color: #33b5e5;\n}\n\n.platform-android .segmented-control-positive {\n  border: 0;\n}\n\n.platform-android .segmented-control-positive .control-item {\n  color: #fff;\n  border-color: inherit;\n}\n\n.platform-android .segmented-control-positive .control-item:active, .platform-android .segmented-control-positive .control-item.active {\n  color: #fff;\n  background-color: #9c0;\n}\n\n.platform-android .segmented-control-negative {\n  border: 0;\n}\n\n.platform-android .segmented-control-negative .control-item {\n  color: #fff;\n  border-color: inherit;\n}\n\n.platform-android .segmented-control-negative .control-item:active, .platform-android .segmented-control-negative .control-item.active {\n  color: #fff;\n  background-color: #f44;\n}\n\n.platform-android .popover {\n  top: 47px;\n  left: 15px;\n  width: 200px;\n  margin-left: 0;\n  border: 1px solid #9b9b9b;\n  border-radius: 0;\n  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .2);\n          box-shadow: 0 0 3px rgba(0, 0, 0, .2);\n  -webkit-transition: -webkit-transform .1s ease-in-out, opacity .2s ease-in-out;\n       -o-transition:      -o-transform .1s ease-in-out, opacity .2s ease-in-out;\n          transition:         transform .1s ease-in-out, opacity .2s ease-in-out;\n  -webkit-transform: scale(.75);\n      -ms-transform: scale(.75);\n       -o-transform: scale(.75);\n          transform: scale(.75);\n}\n\n.platform-android .popover:before {\n  display: none;\n}\n\n.platform-android .popover.visible {\n  -webkit-transform: scale(1);\n      -ms-transform: scale(1);\n       -o-transform: scale(1);\n          transform: scale(1);\n}\n\n.platform-android .backdrop {\n  background-color: transparent;\n}\n\n.platform-android .popover .bar {\n  border-radius: 0;\n}\n\n.platform-android .popover .bar-nav ~ .table-view {\n  padding-top: 50px;\n}\n\n.platform-android .popover .table-view {\n  border-radius: 12px;\n}\n\n.platform-android .toggle {\n  width: 104px;\n  height: 28px;\n  background-color: #d7d7d7;\n  border: 2px solid #d7d7d7;\n  border-radius: 0;\n}\n\n.platform-android .toggle .toggle-handle {\n  top: 0;\n  left: 0;\n  width: 50px;\n  height: 24px;\n  background-color: #bebebe;\n  border: 1px solid #b5b5b5;\n  border-radius: 2px;\n  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3), inset 0 -1px 0 rgba(0, 0, 0, .1);\n          box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3), inset 0 -1px 0 rgba(0, 0, 0, .1);\n}\n\n.platform-android .toggle:before {\n  top: 1px;\n  right: auto;\n  left: 11px;\n  z-index: 3;\n  color: #fff;\n}\n\n.platform-android .toggle.active {\n  background-color: #d7d7d7;\n  border: 2px solid #d7d7d7;\n}\n\n.platform-android .toggle.active .toggle-handle {\n  margin-right: 2px;\n  background-color: #33b5e5;\n  border-color: #33b5e5;\n  -webkit-transform: translate3d(50px, 0, 0);\n      -ms-transform: translate3d(50px, 0, 0);\n          transform: translate3d(50px, 0, 0);\n}\n\n.platform-android .toggle.active:before {\n  right: 14px;\n  left: auto;\n  color: #fff;\n}\n\n.platform-android .navigate-left:after,\n.platform-android .push-left:after {\n  content: '';\n}\n\n.platform-android .navigate-right:after,\n.platform-android .push-right:after {\n  content: '';\n}\n\n.platform-android .icon-caret:before {\n  content: '\\e800';\n}\n\n.platform-android .icon-down:before,\n.platform-android .icon-down-nav:before {\n  content: '\\e801';\n}\n\n.platform-android .icon-download:before {\n  content: '\\e802';\n}\n\n.platform-android .icon-left:before,\n.platform-android .icon-left-nav:before {\n  content: '\\e803';\n}\n\n.platform-android .icon-more-vertical:before {\n  content: '\\e804';\n}\n\n.platform-android .icon-more:before {\n  content: '\\e805';\n}\n\n.platform-android .icon-right:before,\n.platform-android .icon-right-nav:before {\n  content: '\\e806';\n}\n\n.platform-android .icon-search:before {\n  content: '\\e807';\n}\n\n.platform-android .icon-share:before {\n  content: '\\e808';\n}\n\n.platform-android .icon-up:before,\n.platform-android .icon-up-nav:before {\n  content: '\\e809';\n}\n\n.platform-android .device {\n  font-family: 'Roboto', sans-serif;\n  background-position: -790px 0;\n}\n\n.platform-android .device .device-content {\n  font-size: 18px;\n  line-height: 22px;\n  background-color: #f2f2f2;\n}\n\n.platform-android .device .content {\n  top: 50px;\n}\n\n.platform-android .device .popover {\n  -webkit-transform: scale(1);\n      -ms-transform: scale(1);\n       -o-transform: scale(1);\n          transform: scale(1);\n}\n\n.platform-android .bar ~ .content {\n  padding: 0;\n}\n\n@-webkit-keyframes fadeintext {\n  0% {\n    opacity: 0;\n  }\n  100% {\n    opacity: 1;\n  }\n}\n\n.bs-callout {\n  padding: 20px;\n  margin: 20px 0;\n  border-left: 3px solid #eee;\n}\n\n.bs-callout h4 {\n  margin-top: 0;\n  margin-bottom: 5px;\n}\n\n.bs-callout p:last-child {\n  margin-bottom: 0;\n}\n\n.bs-callout code {\n  background-color: #fff;\n  border-radius: 3px;\n}\n\n.bs-callout-danger {\n  background-color: #fdf7f7;\n  border-color: #d9534f;\n}\n\n.bs-callout-danger h4 {\n  color: #d9534f;\n}\n\n.bs-callout-warning {\n  background-color: #fcf8f2;\n  border-color: #f0ad4e;\n}\n\n.bs-callout-warning h4 {\n  color: #f0ad4e;\n}\n\n.bs-callout-info {\n  background-color: #f4f8fa;\n  border-color: #5bc0de;\n}\n\n.bs-callout-info h4 {\n  color: #5bc0de;\n}\n\n.list-group {\n  padding-left: 0;\n  margin-bottom: 20px;\n}\n\n.list-group-item:first-child {\n  border-top-left-radius: 4px;\n  border-top-right-radius: 4px;\n}\n\n.list-group-item {\n  position: relative;\n  display: block;\n  padding: 10px 15px;\n  margin-bottom: -1px;\n  background-color: #fff;\n  border: 1px solid #ddd;\n}\n\n.list-group .team-member {\n  font-size: 14px;\n  line-height: 32px;\n  color: #555;\n}\n\n.list-group img {\n  float: left;\n  width: 32px;\n  margin-right: 10px;\n  border-radius: 4px;\n}\n\n.list-group .team-member-info {\n  overflow: hidden;\n}\n\n.list-group .github-btn {\n  float: right;\n  width: 121px;\n  height: 20px;\n  margin-top: 6px;\n}\n\n.browser-support-table td,\n.browser-support-table th {\n  padding: 5px;\n  border: 1px solid #ddd;\n}\n\n.browser-support-maybe {\n  color: #fff;\n  background-color: #f0ad4e;\n}\n\n.browser-support-yes {\n  background-color: #9c0;\n}\n\n.browser-support-no {\n  background-color: #f44;\n}\n"
  },
  {
    "path": "docs/assets/css/pygments-manni.css",
    "content": ".hll { background-color: #ffffcc }\n /*{ background: #f0f3f3; }*/\n.c { color: #999; } /* Comment */\n.err { color: #AA0000; background-color: #FFAAAA } /* Error */\n.k { color: #006699; } /* Keyword */\n.o { color: #555555 } /* Operator */\n.cm { color: #999; } /* Comment.Multiline */ /* Edited to remove italics and make into comment */\n.cp { color: #009999 } /* Comment.Preproc */\n.c1 { color: #999; } /* Comment.Single */\n.cs { color: #999; } /* Comment.Special */\n.gd { background-color: #FFCCCC; border: 1px solid #CC0000 } /* Generic.Deleted */\n.ge { font-style: italic } /* Generic.Emph */\n.gr { color: #FF0000 } /* Generic.Error */\n.gh { color: #003300; } /* Generic.Heading */\n.gi { background-color: #CCFFCC; border: 1px solid #00CC00 } /* Generic.Inserted */\n.go { color: #AAAAAA } /* Generic.Output */\n.gp { color: #000099; } /* Generic.Prompt */\n.gs { } /* Generic.Strong */\n.gu { color: #003300; } /* Generic.Subheading */\n.gt { color: #99CC66 } /* Generic.Traceback */\n.kc { color: #006699; } /* Keyword.Constant */\n.kd { color: #006699; } /* Keyword.Declaration */\n.kn { color: #006699; } /* Keyword.Namespace */\n.kp { color: #006699 } /* Keyword.Pseudo */\n.kr { color: #006699; } /* Keyword.Reserved */\n.kt { color: #007788; } /* Keyword.Type */\n.m { color: #FF6600 } /* Literal.Number */\n.s { color: #d44950 } /* Literal.String */\n.na { color: #4f9fcf } /* Name.Attribute */\n.nb { color: #336666 } /* Name.Builtin */\n.nc { color: #00AA88; } /* Name.Class */\n.no { color: #336600 } /* Name.Constant */\n.nd { color: #9999FF } /* Name.Decorator */\n.ni { color: #999999; } /* Name.Entity */\n.ne { color: #CC0000; } /* Name.Exception */\n.nf { color: #CC00FF } /* Name.Function */\n.nl { color: #9999FF } /* Name.Label */\n.nn { color: #00CCFF; } /* Name.Namespace */\n.nt { color: #2f6f9f; } /* Name.Tag */\n.nv { color: #003333 } /* Name.Variable */\n.ow { color: #000000; } /* Operator.Word */\n.w { color: #bbbbbb } /* Text.Whitespace */\n.mf { color: #FF6600 } /* Literal.Number.Float */\n.mh { color: #FF6600 } /* Literal.Number.Hex */\n.mi { color: #FF6600 } /* Literal.Number.Integer */\n.mo { color: #FF6600 } /* Literal.Number.Oct */\n.sb { color: #CC3300 } /* Literal.String.Backtick */\n.sc { color: #CC3300 } /* Literal.String.Char */\n.sd { color: #CC3300; font-style: italic } /* Literal.String.Doc */\n.s2 { color: #CC3300 } /* Literal.String.Double */\n.se { color: #CC3300; } /* Literal.String.Escape */\n.sh { color: #CC3300 } /* Literal.String.Heredoc */\n.si { color: #AA0000 } /* Literal.String.Interpol */\n.sx { color: #CC3300 } /* Literal.String.Other */\n.sr { color: #33AAAA } /* Literal.String.Regex */\n.s1 { color: #CC3300 } /* Literal.String.Single */\n.ss { color: #FFCC33 } /* Literal.String.Symbol */\n.bp { color: #336666 } /* Name.Builtin.Pseudo */\n.vc { color: #003333 } /* Name.Variable.Class */\n.vg { color: #003333 } /* Name.Variable.Global */\n.vi { color: #003333 } /* Name.Variable.Instance */\n.il { color: #FF6600 } /* Literal.Number.Integer.Long */\n\n.css .o,\n.css .o + .nt,\n.css .nt + .nt { color: #999; }\n"
  },
  {
    "path": "docs/assets/js/docs.js",
    "content": "/* jshint jquery: true */\n/* global FingerBlast: true */\n\n$(function () {\n  'use strict';\n\n  var doc;\n  var device;\n  var windowWidth;\n  var windowHeight;\n  var pageHeight;\n  var contentPadding;\n  var footerHeight;\n  var navComponentLinks;\n  var componentsList;\n  var componentLinks;\n  var contentSection;\n  var currentActive;\n  var topCache;\n  var win;\n  var bod;\n  var eventListeners;\n  var toolbarToggle;\n\n\n  var initialize = function () {\n    currentActive          = 0;\n    topCache               = [];\n    win                    = $(window);\n    doc                    = $(document);\n    bod                    = $(document.body);\n    device                 = device || $('.js-device');\n    navComponentLinks      = $('.js-jump-menu');\n    componentsList         = $('.js-component-group');\n    componentLinks         = $('.component-example a');\n    contentSection         = $('.component');\n    topCache               = contentSection.map(function () { return $(this).offset().top; });\n    windowHeight           = $(window).height() / 3;\n    windowWidth            = $(window).width();\n    pageHeight             = $(document).height();\n    contentPadding         = parseInt($('.docs-content').css('padding-bottom'), 10);\n    footerHeight           = $('.docs-footer').outerHeight(false);\n    toolbarToggle          = $('.js-docs-component-toolbar');\n\n    // Device placement\n    if (windowWidth >= 768 && device.offset()) {\n      device.initialLeft   = device.offset().left;\n      device.initialTop    = device.initialTop || device.offset().top;\n      device.dockingOffset = ($(window).height() - device.height()) / 2;\n    }\n\n    checkDesktopContent();\n    calculateScroll();\n    calculateToggle();\n\n    if (!eventListeners) {\n      addEventListeners();\n    }\n  };\n\n  var addEventListeners = function () {\n    eventListeners = true;\n\n    device.on('click', function (e) {\n      e.preventDefault();\n    });\n\n    // Mobile navigation\n    $('.js-docs-nav-trigger').on('click', function () {\n      var nav     = $('.docs-nav-group');\n      var trigger = $('.js-docs-nav-trigger');\n\n      trigger.toggleClass('active');\n      nav.toggleClass('active');\n    });\n\n    navComponentLinks.click(function (e) {\n      e.stopPropagation();\n      e.preventDefault();\n      componentsList.toggleClass('active');\n    });\n\n    doc.on('click', function () {\n      componentsList.removeClass('active');\n    });\n\n    // Platform switcher\n    $('.platform-switch').on('click', function () {\n      var components = $('.docs-components');\n      var platform   = $(this).attr('data-platform');\n\n      // Set platform\n      if (components.hasClass('platform-ios')) {\n        components.removeClass('platform-ios');\n        components.addClass(platform);\n      } else if (components.hasClass('platform-android')) {\n        components.removeClass('platform-android');\n        components.addClass(platform);\n      } else {\n        components.addClass(platform);\n      }\n\n      // Deal with active states\n      $(this).siblings('.active').removeClass('active');\n      $(this).addClass('active');\n    });\n\n    win.on('scroll', calculateScroll);\n    win.on('scroll', calculateToggle);\n  };\n\n  var checkDesktopContent = function () {\n    windowWidth = $(window).width();\n    if (windowWidth <= 768) {\n      var content = $('.content');\n      if (content.length > 1) {\n        $(content[0]).remove();\n      }\n    }\n  };\n\n  var calculateScroll = function () {\n    // if small screen don't worry about this\n    if (windowWidth <= 768) {\n      return;\n    }\n\n    // Save scrollTop value\n    var contentSectionItem;\n    var currentTop = win.scrollTop();\n\n    // exit if no device\n    if (!device.length) {\n      return;\n    }\n\n    if ((device.initialTop - currentTop) <= device.dockingOffset) {\n      device[0].className = 'device device-fixed';\n      device.css({ top: device.dockingOffset });\n    } else {\n      device[0].className = 'device';\n      device[0].setAttribute('style', '');\n    }\n\n    function updateContent(content) {\n      $('#iwindow').html(content);\n    }\n\n    // Injection of components into device\n    for (var l = contentSection.length; l--;) {\n      if ((topCache[l] - currentTop) < windowHeight) {\n        if (currentActive === l) {\n          return;\n        }\n        currentActive = l;\n        bod.find('.component.active').removeClass('active');\n        contentSectionItem = $(contentSection[l]);\n        contentSectionItem.addClass('active');\n        if (contentSectionItem.attr('id')) {\n          device.attr('id', contentSectionItem.attr('id') + 'InDevice');\n        } else {\n          device.attr('id', '');\n        }\n        if (!contentSectionItem.hasClass('informational')) {\n          updateContent(contentSectionItem.find('.highlight .language-html').text());\n        }\n        break;\n      }\n    }\n\n  };\n\n  // Toolbar toggle\n  var calculateToggle = function () {\n    var currentTop   = win.scrollTop();\n    var headerHeight = $('.docs-sub-header').outerHeight();\n\n    if (currentTop >= headerHeight) {\n      toolbarToggle.addClass('visible');\n    } else if (currentTop <= headerHeight) {\n      toolbarToggle.removeClass('visible');\n      componentsList.removeClass('active');\n    }\n  };\n\n  $(window).on('load resize', initialize);\n  $(window).on('load', function () {\n    if (window.FingerBlast) {\n      new FingerBlast('.device-content');\n    }\n  });\n});\n"
  },
  {
    "path": "docs/assets/js/fingerblast.js",
    "content": "// FINGERBLAST.js\n// --------------\n// Adapted from phantom limb by Brian Cartensen\n\n/* jshint bitwise: false */\n/* global GLOBAL: true */\n\n(function () {\n\n  'use strict';\n\n  function FingerBlast (element) {\n    this.element = typeof element === 'string' ? document.querySelector(element) : element;\n\n    if (this.element) {\n      this.listen();\n    }\n  }\n\n  FingerBlast.prototype = {\n    x: NaN,\n    y: NaN,\n\n    startDistance: NaN,\n    startAngle:    NaN,\n\n    mouseIsDown: false,\n\n    listen: function () {\n      var activate = this.activate.bind(this);\n      var deactivate = this.deactivate.bind(this);\n\n      function contains (element, ancestor) {\n        var descendants;\n        var index;\n        var descendant;\n\n        if (!element) {\n          return;\n        }\n\n        if ('compareDocumentPosition' in ancestor) {\n          return !!(ancestor.compareDocumentPosition(element) & 16);\n        } else if ('contains' in ancestor) {\n          return ancestor !== element && ancestor.contains(element);\n        } else {\n          for ((descendants = ancestor.getElementsByTagName('*')), index = 0; (descendant = descendants[index++]);) {\n            if (descendant === element) {\n              return true;\n            }\n          }\n          return false;\n        }\n      }\n\n      this.element.addEventListener('mouseover', function (e) {\n        var target = e.relatedTarget;\n        if (target !== this && !contains(target, this)) {\n          activate();\n        }\n      });\n\n      this.element.addEventListener('mouseout', function (e) {\n        var target = e.relatedTarget;\n        if (target !== this && !contains(target, this)) {\n          deactivate(e);\n        }\n      });\n    },\n\n    activate: function () {\n      if (this.active) {\n        return;\n      }\n      this.element.addEventListener('mousedown', (this.touchStart = this.touchStart.bind(this)), true);\n      this.element.addEventListener('mousemove', (this.touchMove  = this.touchMove.bind(this)),  true);\n      this.element.addEventListener('mouseup',   (this.touchEnd   = this.touchEnd.bind(this)),   true);\n      this.element.addEventListener('click',     (this.click      = this.click.bind(this)),      true);\n      this.active = true;\n    },\n\n    deactivate: function (e) {\n      this.active = false;\n      if (this.mouseIsDown) {\n        this.touchEnd(e);\n      }\n      this.element.removeEventListener('mousedown', this.touchStart, true);\n      this.element.removeEventListener('mousemove', this.touchMove,  true);\n      this.element.removeEventListener('mouseup',   this.touchEnd,   true);\n      this.element.removeEventListener('click',     this.click,      true);\n    },\n\n    click: function (e) {\n      if (e.synthetic) {\n        return;\n      }\n      e.preventDefault();\n      e.stopPropagation();\n    },\n\n    touchStart: function (e) {\n      if (e.synthetic || /input|textarea/.test(e.target.tagName.toLowerCase())) {\n        return;\n      }\n\n      this.mouseIsDown = true;\n\n      e.preventDefault();\n      e.stopPropagation();\n\n      this.fireTouchEvents('touchstart', e);\n    },\n\n    touchMove: function (e) {\n      if (e.synthetic) {\n        return;\n      }\n\n      e.preventDefault();\n      e.stopPropagation();\n\n      this.move(e.clientX, e.clientY);\n\n      if (this.mouseIsDown) {\n        this.fireTouchEvents('touchmove', e);\n      }\n    },\n\n    touchEnd: function (e) {\n      if (e.synthetic) {\n        return;\n      }\n\n      this.mouseIsDown = false;\n\n      e.preventDefault();\n      e.stopPropagation();\n\n      this.fireTouchEvents('touchend', e);\n\n      if (!this.target) {\n        return;\n      }\n\n      // Mobile Safari moves all the mouse events to fire after the touchend event.\n      this.target.dispatchEvent(this.createMouseEvent('mouseover', e));\n      this.target.dispatchEvent(this.createMouseEvent('mousemove', e));\n      this.target.dispatchEvent(this.createMouseEvent('mousedown', e));\n    },\n\n    fireTouchEvents: function (eventName, originalEvent) {\n      var events   = [];\n      var gestures = [];\n\n      if (!this.target) {\n        return;\n      }\n\n      // Convert 'ontouch*' properties and attributes to listeners.\n      var onEventName = 'on' + eventName;\n\n      if (onEventName in this.target) {\n        console.warn('Converting `' + onEventName + '` property to event listener.', this.target);\n        this.target.addEventListener(eventName, this.target[onEventName], false);\n        delete this.target[onEventName];\n      }\n\n      if (this.target.hasAttribute(onEventName)) {\n        console.warn('Converting `' + onEventName + '` attribute to event listener.', this.target);\n        var handler = new GLOBAL.Function('event', this.target.getAttribute(onEventName));\n        this.target.addEventListener(eventName, handler, false);\n        this.target.removeAttribute(onEventName);\n      }\n\n      // Set up a new event with the coordinates of the finger.\n      var touch = this.createMouseEvent(eventName, originalEvent);\n\n      events.push(touch);\n\n      // Figure out scale and rotation.\n      if (events.length > 1) {\n        var x = events[0].pageX - events[1].pageX;\n        var y = events[0].pageY - events[1].pageY;\n\n        var distance = Math.sqrt(Math.pow(x, 2) + Math.pow(y, 2));\n        var angle = Math.atan2(x, y) * (180 / Math.PI);\n\n        var gestureName = 'gesturechange';\n\n        if (eventName === 'touchstart') {\n          gestureName = 'gesturestart';\n          this.startDistance = distance;\n          this.startAngle = angle;\n        }\n\n        if (eventName === 'touchend') {\n          gestureName = 'gestureend';\n        }\n\n        events.forEach(function (event) {\n          var gesture = this.createMouseEvent.call(event._finger, gestureName, event);\n          gestures.push(gesture);\n        }.bind(this));\n\n        events.concat(gestures).forEach(function (event) {\n          event.scale = distance / this.startDistance;\n          event.rotation = this.startAngle - angle;\n        });\n      }\n\n      // Loop through the events array and fill in each touch array.\n      events.forEach(function (touch) {\n        touch.touches = events.filter(function (e) {\n          return ~e.type.indexOf('touch') && e.type !== 'touchend';\n        });\n\n        touch.changedTouches = events.filter(function (e) {\n          return ~e.type.indexOf('touch') && e._finger.target === touch._finger.target;\n        });\n\n        touch.targetTouches = touch.changedTouches.filter(function (e) {\n          return ~e.type.indexOf('touch') && e.type !== 'touchend';\n        });\n      });\n\n      // Then fire the events.\n      events.concat(gestures).forEach(function (event, i) {\n        event.identifier = i;\n        event._finger.target.dispatchEvent(event);\n      });\n    },\n\n    createMouseEvent: function (eventName, originalEvent) {\n      var e = new MouseEvent(eventName, {\n        view       : window,\n        detail     : originalEvent.detail,\n        bubbles    : true,\n        cancelable : true,\n        target     : this.target || originalEvent.relatedTarget,\n        clientX    : this.x || originalEvent.clientX,\n        clientY    : this.y || originalEvent.clientY,\n        screenX    : this.x || originalEvent.screenX,\n        screenY    : this.y || originalEvent.screenY,\n        ctrlKey    : originalEvent.ctrlKey,\n        shiftKey   : originalEvent.shiftKey,\n        altKey     : originalEvent.altKey,\n        metaKey    : originalEvent.metaKey,\n        button     : originalEvent.button\n      });\n\n      e.synthetic = true;\n      e._finger   = this;\n\n      return e;\n    },\n\n    move: function (x, y) {\n      if (isNaN(x) || isNaN(y)) {\n        this.target = null;\n      } else {\n        this.x = x;\n        this.y = y;\n\n        if (!this.mouseIsDown) {\n          this.target = document.elementFromPoint(x, y);\n        }\n      }\n    }\n  };\n\n  window.FingerBlast = FingerBlast;\n\n}());\n"
  },
  {
    "path": "docs/components.html",
    "content": "---\nlayout: default\ntitle: Components &middot; Ratchet\n---\n\n<div class=\"docs-sub-header\">\n  {% include masthead.html %}\n  <div class=\"container\">\n    <div class=\"docs-sub-content\">\n      <h2 class=\"page-title\">Components</h2>\n      <p class=\"page-description\">Design patterns that serve as basic building blocks.</p>\n    </div>\n    {% include ad.html %}\n  </div>\n  {% include toolbar.html %}\n</div>\n\n<div class=\"container\">\n  <!-- Components -->\n  <div class=\"docs-components column-group\">\n    <div class=\"device-column column lg-units-5 pull-right\">\n      <!-- In phone examples -->\n      <div class=\"device js-device\">\n        <div class=\"device-content\">\n          <div id=\"iwindow\">\n            <header class=\"bar bar-nav\">\n              <h1 class=\"title\">Title</h1>\n            </header>\n          </div>\n        </div>\n      </div>\n    </div>\n\n    <div class=\"column lg-units-7 docs-content\">\n      <!-- Bars -->\n      <article class=\"component active\" id=\"bars\">\n        <h3 class=\"component-title\">Title bar</h3>\n        <p class=\"component-description\">Title bars are full width and docked to the top of the viewport.</p>\n\n        <div class=\"component-example component-example-fullbleed\">\n          <header class=\"bar bar-nav\">\n            <h1 class=\"title\">Title</h1>\n          </header>\n        </div>\n\n{% highlight html %}\n<header class=\"bar bar-nav\">\n  <h1 class=\"title\">Title</h1>\n</header>\n{% endhighlight %}\n\n    </article>\n\n    <article class=\"component\">\n      <h3 class=\"component-title\">Title bar with buttons</h3>\n      <p class=\"component-description\">Buttons in a title bar are left or right aligned and should be used for actions. Use the <code>.pull-right</code> or <code>.pull-left</code> utility classes to float the buttons. Also, be sure to place any floated elements before the title.</p>\n\n      <div class=\"component-example component-example-fullbleed\">\n        <header class=\"bar bar-nav\">\n          <button class=\"btn pull-left\">\n            Left\n          </button>\n          <button class=\"btn pull-right\">\n            Right\n          </button>\n          <h1 class=\"title\">Title</h1>\n        </header>\n      </div>\n\n{% highlight html %}\n<header class=\"bar bar-nav\">\n  <button class=\"btn pull-left\">\n    Left\n  </button>\n  <button class=\"btn pull-right\">\n    Right\n  </button>\n  <h1 class=\"title\">Title</h1>\n</header>\n{% endhighlight %}\n\n    </article>\n\n    <article class=\"component\">\n      <h3 class=\"component-title\">Title bar with icons</h3>\n      <p class=\"component-description\">Icons can also be used for actions in toolbars. Again, be sure to use utility classes to float the icons into position.</p>\n\n      <div class=\"component-example component-example-fullbleed\">\n        <header class=\"bar bar-nav\">\n          <a class=\"icon icon-left-nav pull-left\"></a>\n          <a class=\"icon icon-compose pull-right\"></a>\n          <h1 class=\"title\">Title</h1>\n        </header>\n      </div>\n\n{% highlight html %}\n<header class=\"bar bar-nav\">\n  <a class=\"icon icon-left-nav pull-left\"></a>\n  <a class=\"icon icon-compose pull-right\"></a>\n  <h1 class=\"title\">Title</h1>\n</header>\n{% endhighlight %}\n\n    </article>\n\n    <article class=\"component\">\n      <h3 class=\"component-title\">Title bar with link buttons and icons</h3>\n      <p class=\"component-description\">Link buttons can be used in tool bars to remove the outline. Use these in conjuction with icons to recreate the nav feel from iOS7. Note the use of <code>.btn-nav</code> to bring the buttons a little bit closer to the edge of the viewport.</p>\n\n      <div class=\"component-example component-example-fullbleed\">\n        <header class=\"bar bar-nav\">\n          <button class=\"btn btn-link btn-nav pull-left\">\n            <span class=\"icon icon-left-nav\"></span>\n            Left\n          </button>\n          <button class=\"btn btn-link btn-nav pull-right\">\n            Right\n            <span class=\"icon icon-right-nav\"></span>\n          </button>\n          <h1 class=\"title\">Title</h1>\n        </header>\n      </div>\n\n{% highlight html %}\n<header class=\"bar bar-nav\">\n  <button class=\"btn btn-link btn-nav pull-left\">\n    <span class=\"icon icon-left-nav\"></span>\n    Left\n  </button>\n  <button class=\"btn btn-link btn-nav pull-right\">\n    Right\n    <span class=\"icon icon-right-nav\"></span>\n  </button>\n  <h1 class=\"title\">Title</h1>\n</header>\n{% endhighlight %}\n\n    </article>\n\n    <article class=\"component\">\n      <h3 class=\"component-title\">Title bar with segmented control</h3>\n      <p class=\"component-description\">Title bars can also house segmented controls. Feel free to add accompanying buttons too. The control will automatically layout itself out correctly.</p>\n\n      <div class=\"component-example component-example-fullbleed\">\n        <header class=\"bar bar-nav\">\n          <button class=\"btn pull-left\">\n            Left\n          </button>\n          <button class=\"btn pull-right\">\n            Right\n          </button>\n          <div class=\"segmented-control\">\n            <a class=\"control-item active\">One</a>\n            <a class=\"control-item\">Two</a>\n            <a class=\"control-item\">Three</a>\n          </div>\n        </header>\n      </div>\n\n{% highlight html %}\n<header class=\"bar bar-nav\">\n  <button class=\"btn pull-left\">\n    Left\n  </button>\n  <button class=\"btn pull-right\">\n    Right\n  </button>\n  <div class=\"segmented-control\">\n    <a class=\"control-item active\">One</a>\n    <a class=\"control-item\">Two</a>\n    <a class=\"control-item\">Three</a>\n  </div>\n</header>\n{% endhighlight %}\n\n    </article>\n\n    <article class=\"component\">\n      <h3 class=\"component-title\">Tab bar</h3>\n      <p class=\"component-description\">Use Ratchicons in the <code>.tab-bar</code> to represent different sections of your app.</p>\n\n      <div class=\"component-example component-example-fullbleed\">\n        <nav class=\"bar bar-tab\">\n          <a class=\"tab-item active\" href=\"#\">\n            <span class=\"icon icon-home\"></span>\n            <span class=\"tab-label\">Label</span>\n          </a>\n          <a class=\"tab-item\" href=\"#\">\n            <span class=\"icon icon-person\"></span>\n            <span class=\"tab-label\">Label</span>\n          </a>\n          <a class=\"tab-item\" href=\"#\">\n            <span class=\"icon icon-star-filled\"></span>\n            <span class=\"tab-label\">Label</span>\n          </a>\n          <a class=\"tab-item\" href=\"#\">\n            <span class=\"icon icon-search\"></span>\n            <span class=\"tab-label\">Label</span>\n          </a>\n          <a class=\"tab-item\" href=\"#\">\n            <span class=\"icon icon-gear\"></span>\n            <span class=\"tab-label\">Label</span>\n          </a>\n        </nav>\n      </div>\n\n{% highlight html %}\n<nav class=\"bar bar-tab\">\n  <a class=\"tab-item active\" href=\"#\">\n    <span class=\"icon icon-home\"></span>\n    <span class=\"tab-label\">Home</span>\n  </a>\n  <a class=\"tab-item\" href=\"#\">\n    <div class=\"badge badge-negative badge-filled\">3</div>\n    <span class=\"icon icon-person\"></span>\n    <span class=\"tab-label\">Profile</span>\n  </a>\n  <a class=\"tab-item\" href=\"#\">\n    <span class=\"icon icon-star-filled\"></span>\n    <span class=\"tab-label\">Favorites</span>\n  </a>\n  <a class=\"tab-item\" href=\"#\">\n    <span class=\"icon icon-search\"></span>\n    <span class=\"tab-label\">Search</span>\n  </a>\n  <a class=\"tab-item\" href=\"#\">\n    <span class=\"icon icon-gear\"></span>\n    <span class=\"tab-label\">Settings</span>\n  </a>\n</nav>\n{% endhighlight %}\n\n    <p class=\"component-note touch-only\"><strong>Note:</strong> Use push.js to actually change content.</p>\n  </article>\n\n  <article class=\"component\">\n      <h3 class=\"component-title\">Tab bar (labels only)</h3>\n      <p class=\"component-description\">If you don't want to use icons, that's okay too. The text will appear larger to use the additional space.</p>\n\n      <div class=\"component-example component-example-fullbleed\">\n        <nav class=\"bar bar-tab\">\n          <a class=\"tab-item active\" href=\"#\">\n            Label\n          </a>\n          <a class=\"tab-item\" href=\"#\">\n            Label\n          </a>\n          <a class=\"tab-item\" href=\"#\">\n            Label\n          </a>\n        </nav>\n      </div>\n\n{% highlight html %}\n<nav class=\"bar bar-tab\">\n  <a class=\"tab-item active\" href=\"#\">\n    Label\n  </a>\n  <a class=\"tab-item\" href=\"#\">\n    Label\n  </a>\n  <a class=\"tab-item\" href=\"#\">\n    Label\n  </a>\n</nav>\n{% endhighlight %}\n\n    <p class=\"component-note touch-only\"><strong>Note:</strong> Use push.js to actually change content.</p>\n  </article>\n\n  <article class=\"component\">\n      <h3 class=\"component-title\">Standard bars</h3>\n      <p class=\"component-description\">Standard bars are basic fixed elements that can be positioned in four places. These can be used to house buttons, icons, or segmented controls (see following examples).</p>\n\n      <div class=\"component-example component-example-fullbleed\">\n        <!-- Segmented control in standard bar fixed to top -->\n        <nav class=\"bar bar-standard\">\n          <div class=\"segmented-control\">\n            <a class=\"control-item active\">Thing one</a>\n            <a class=\"control-item\">Thing two</a>\n            <a class=\"control-item\">Thing three</a>\n          </div>\n        </nav>\n\n        <!-- Block button in standard bar fixed below top bar -->\n        <div class=\"bar bar-standard bar-header-secondary\">\n          <button class=\"btn btn-block\">Block level button</button>\n        </div>\n      </div>\n\n{% highlight html %}\n<!-- Segmented control in standard bar fixed to top -->\n<nav class=\"bar bar-standard\">\n  <div class=\"segmented-control\">\n    <a class=\"control-item active\">Thing one</a>\n    <a class=\"control-item\">Thing two</a>\n    <a class=\"control-item\">Thing three</a>\n  </div>\n</nav>\n\n<!-- Block button in standard bar fixed below top bar -->\n<div class=\"bar bar-standard bar-header-secondary\">\n  <button class=\"btn btn-block\">Block level button</button>\n</div>\n\n<!-- Block button in standard bar fixed above the footer -->\n<div class=\"bar bar-standard bar-footer-secondary\">\n  <button class=\"btn btn-block\">Block level button</button>\n</div>\n\n<!-- Icons in standard bar fixed to the bottom of the screen -->\n<div class=\"bar bar-standard bar-footer\">\n  <a class=\"icon icon-compose pull-left\"></a>\n  <a class=\"icon icon-gear pull-right\"></a>\n</div>\n{% endhighlight %}\n\n  </article>\n\n  <!-- Typography -->\n  <article class=\"component\" id=\"typography\">\n    <h3 class=\"component-title\">Typography</h3>\n    <p class=\"component-description\">Use headings and paragraphs to title and describe sections of your app. Apply or wrap elements with <code>.content-padded</code> to give the content space around the screen.</p>\n\n    <div class=\"component-example component-example-fullbleed\">\n      <div class=\"content-padded\">\n        <h1>h1. Heading</h1>\n        <h2>h2. Heading</h2>\n        <h3>h3. Heading</h3>\n        <h4>h4. Heading</h4>\n        <h5>h5. Heading</h5>\n        <h6>h6. Heading</h6>\n        <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n        tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,\n        quis nostrud exercitation ullamco.</p>\n      </div>\n    </div>\n\n{% highlight html %}\n<div class=\"content-padded\">\n  <h1>h1. Heading</h1>\n  <h2>h2. Heading</h2>\n  <h3>h3. Heading</h3>\n  <h4>h4. Heading</h4>\n  <h5>h5. Heading</h5>\n  <h6>h6. Heading</h6>\n  <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod\n  tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,\n  quis nostrud exercitation ullamco.</p>\n</div>\n{% endhighlight %}\n\n  </article>\n\n  <!-- Table views -->\n  <article class=\"component\" id=\"table-views\">\n    <h3 class=\"component-title\">Table views</h3>\n    <p class=\"component-description\">Table views can be used for organizing data, showing collections of links, or a series of controls.</p>\n\n    <div class=\"component-example component-example-fullbleed\">\n      <ul class=\"table-view\">\n        <li class=\"table-view-cell\">Item 1</li>\n        <li class=\"table-view-cell\">Item 2</li>\n        <li class=\"table-view-cell table-view-divider\">Divider</li>\n        <li class=\"table-view-cell\">Item 3</li>\n      </ul>\n    </div>\n\n{% highlight html %}\n<ul class=\"table-view\">\n  <li class=\"table-view-cell\">Item 1</li>\n  <li class=\"table-view-cell\">Item 2</li>\n  <li class=\"table-view-cell table-view-divider\">Divider</li>\n  <li class=\"table-view-cell\">Item 3</li>\n</ul>\n{% endhighlight %}\n\n  </article>\n\n  <article class=\"component\">\n    <h3 class=\"component-title\">Table view with chevrons</h3>\n    <p class=\"component-description\">Chevrons should be used to indicate that the item is linked. Just apply the classes <code>.navigate-right</code> or <code>.navigate-left</code> to use a chevron.</p>\n\n    <div class=\"component-example component-example-fullbleed\">\n      <ul class=\"table-view\">\n        <li class=\"table-view-cell\">\n          <a class=\"navigate-right\">\n            Item 1\n          </a>\n        </li>\n        <li class=\"table-view-cell\">\n          <a class=\"navigate-right\">\n            Item 2\n          </a>\n        </li>\n        <li class=\"table-view-cell\">\n          <a class=\"navigate-right\">\n            Item 3\n          </a>\n        </li>\n      </ul>\n    </div>\n\n{% highlight html %}\n<ul class=\"table-view\">\n  <li class=\"table-view-cell\">\n    <a class=\"navigate-right\">\n      Item 1\n    </a>\n  </li>\n  <li class=\"table-view-cell\">\n    <a class=\"navigate-right\">\n      Item 2\n    </a>\n  </li>\n  <li class=\"table-view-cell\">\n    <a class=\"navigate-right\">\n      Item 3\n    </a>\n  </li>\n</ul>\n{% endhighlight %}\n    <p class=\"component-note touch-only\"><strong>Note:</strong> Table views with the Android theme don't have chevrons to comply with Android Design guidelines. More information can be found <a href=\"http://developer.android.com/design/patterns/pure-android.html\">here</a>.</p>\n  </article>\n\n  <article class=\"component\">\n    <h3 class=\"component-title\">Table view with badges</h3>\n    <p class=\"component-description\">Badges are a great way of showing data.</p>\n\n    <div class=\"component-example component-example-fullbleed\">\n      <ul class=\"table-view\">\n        <li class=\"table-view-cell\">Item 1 <span class=\"badge\">4</span></li>\n        <li class=\"table-view-cell\">Item 2 <span class=\"badge\">1</span></li>\n        <li class=\"table-view-cell\">Item 3 <span class=\"badge\">5</span></li>\n      </ul>\n    </div>\n\n{% highlight html %}\n<ul class=\"table-view\">\n  <li class=\"table-view-cell\">Item 1 <span class=\"badge\">4</span></li>\n  <li class=\"table-view-cell\">Item 2 <span class=\"badge\">1</span></li>\n  <li class=\"table-view-cell\">Item 3 <span class=\"badge\">5</span></li>\n</ul>\n{% endhighlight %}\n\n  </article>\n\n  <article class=\"component\">\n    <h3 class=\"component-title\">Table view with badges and chevrons</h3>\n    <p class=\"component-description\">Feel free to use chevrons and badges together. They'll automatically positon themselves correctly.</p>\n\n    <div class=\"component-example component-example-fullbleed\">\n      <ul class=\"table-view\">\n        <li class=\"table-view-cell\">\n          <a class=\"navigate-right\">\n            <span class=\"badge\">5</span>\n            Item 1\n          </a>\n        </li>\n        <li class=\"table-view-cell\">\n          <a class=\"navigate-right\">\n            <span class=\"badge\">5</span>\n            Item 2\n          </a>\n        </li>\n        <li class=\"table-view-cell\">\n          <a class=\"navigate-right\">\n            <span class=\"badge\">5</span>\n            Item 3\n          </a>\n        </li>\n      </ul>\n    </div>\n\n{% highlight html %}\n<ul class=\"table-view\">\n  <li class=\"table-view-cell\">\n    <a class=\"navigate-right\">\n      <span class=\"badge\">5</span>\n      Item 1\n    </a>\n  </li>\n  <li class=\"table-view-cell\">\n    <a class=\"navigate-right\">\n      <span class=\"badge\">5</span>\n      Item 2\n    </a>\n  </li>\n  <li class=\"table-view-cell\">\n    <a class=\"navigate-right\">\n      <span class=\"badge\">5</span>\n      Item 3\n    </a>\n  </li>\n</ul>\n{% endhighlight %}\n\n  </article>\n\n  <article class=\"component\">\n    <h3 class=\"component-title\">Table view with media (images)</h3>\n    <p class=\"component-description\">Showing media inside table views is easy. This component to perfect for images and text.</p>\n\n    <div class=\"component-example component-example-fullbleed\">\n      <ul class=\"table-view\">\n        <li class=\"table-view-cell media\">\n          <a class=\"navigate-right\">\n            <img class=\"media-object pull-left\" src=\"http://placehold.it/42x42\" alt=\"Placeholder image\">\n            <div class=\"media-body\">\n              Item 1\n              <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore. Lorem ipsum dolor sit amet.</p>\n            </div>\n          </a>\n        </li>\n        <li class=\"table-view-cell media\">\n          <a class=\"navigate-right\">\n            <img class=\"media-object pull-left\" src=\"http://placehold.it/42x42\" alt=\"Placeholder image\">\n            <div class=\"media-body\">\n              Item 1\n              <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore. Lorem ipsum dolor sit amet.</p>\n            </div>\n          </a>\n        </li>\n        <li class=\"table-view-cell media\">\n          <a class=\"navigate-right\">\n            <img class=\"media-object pull-left\" src=\"http://placehold.it/42x42\" alt=\"Placeholder image\">\n            <div class=\"media-body\">\n              Item 1\n              <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore. Lorem ipsum dolor sit amet.</p>\n            </div>\n          </a>\n        </li>\n      </ul>\n    </div>\n\n{% highlight html %}\n<ul class=\"table-view\">\n  <li class=\"table-view-cell media\">\n    <a class=\"navigate-right\">\n      <img class=\"media-object pull-left\" src=\"http://placehold.it/42x42\">\n      <div class=\"media-body\">\n        Item 1\n        <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore. Lorem ipsum dolor sit amet.</p>\n      </div>\n    </a>\n  </li>\n  <li class=\"table-view-cell media\">\n    <a class=\"navigate-right\">\n      <img class=\"media-object pull-left\" src=\"http://placehold.it/42x42\">\n      <div class=\"media-body\">\n        Item 1\n        <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore. Lorem ipsum dolor sit amet.</p>\n      </div>\n    </a>\n  </li>\n  <li class=\"table-view-cell media\">\n    <a class=\"navigate-right\">\n      <img class=\"media-object pull-left\" src=\"http://placehold.it/42x42\">\n      <div class=\"media-body\">\n        Item 1\n        <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore. Lorem ipsum dolor sit amet.</p>\n      </div>\n    </a>\n  </li>\n</ul>\n{% endhighlight %}\n\n  </article>\n\n  <article class=\"component\">\n    <h3 class=\"component-title\">Table view with media (icons)</h3>\n    <p class=\"component-description\">Ratchicons can also used instead of images.</p>\n\n    <div class=\"component-example component-example-fullbleed\">\n      <ul class=\"table-view\">\n        <li class=\"table-view-cell media\">\n          <a class=\"navigate-right\">\n            <span class=\"media-object pull-left icon icon-trash\"></span>\n            <div class=\"media-body\">\n              Item 1\n            </div>\n          </a>\n        </li>\n        <li class=\"table-view-cell media\">\n          <a class=\"navigate-right\">\n            <span class=\"media-object pull-left icon icon-gear\"></span>\n            <div class=\"media-body\">\n              Item 2\n            </div>\n          </a>\n        </li>\n        <li class=\"table-view-cell media\">\n          <a class=\"navigate-right\">\n            <span class=\"media-object pull-left icon icon-pages\"></span>\n            <div class=\"media-body\">\n              Item 3\n            </div>\n          </a>\n        </li>\n      </ul>\n    </div>\n\n{% highlight html %}\n<ul class=\"table-view\">\n  <li class=\"table-view-cell media\">\n    <a class=\"navigate-right\">\n      <span class=\"media-object pull-left icon icon-trash\"></span>\n      <div class=\"media-body\">\n        Item 1\n      </div>\n    </a>\n  </li>\n  <li class=\"table-view-cell media\">\n    <a class=\"navigate-right\">\n      <span class=\"media-object pull-left icon icon-gear\"></span>\n      <div class=\"media-body\">\n        Item 2\n      </div>\n    </a>\n  </li>\n  <li class=\"table-view-cell media\">\n    <a class=\"navigate-right\">\n      <span class=\"media-object pull-left icon icon-pages\"></span>\n      <div class=\"media-body\">\n        Item 3\n      </div>\n    </a>\n  </li>\n</ul>\n{% endhighlight %}\n\n  </article>\n\n  <article class=\"component\">\n    <h3 class=\"component-title\">Table view with buttons</h3>\n\n    <div class=\"component-example component-example-fullbleed\">\n      <ul class=\"table-view\">\n        <li class=\"table-view-cell\">Item 1 <button class=\"btn\">Button</button></li>\n        <li class=\"table-view-cell\">Item 2 <button class=\"btn btn-primary\">Button</button></li>\n        <li class=\"table-view-cell\">Item 3 <button class=\"btn btn-positive\">Button</button></li>\n        <li class=\"table-view-cell\">Item 4 <button class=\"btn btn-negative\">Button</button></li>\n      </ul>\n    </div>\n\n{% highlight html %}\n<ul class=\"table-view\">\n  <li class=\"table-view-cell\">Item 1 <button class=\"btn\">Button</button></li>\n  <li class=\"table-view-cell\">Item 2 <button class=\"btn btn-primary\">Button</button></li>\n  <li class=\"table-view-cell\">Item 3 <button class=\"btn btn-positive\">Button</button></li>\n  <li class=\"table-view-cell\">Item 4 <button class=\"btn btn-negative\">Button</button></li>\n</ul>\n{% endhighlight %}\n\n  </article>\n\n  <article class=\"component\">\n    <h3 class=\"component-title\">Table view with toggles</h3>\n\n    <div class=\"component-example component-example-fullbleed\">\n      <ul class=\"table-view\">\n        <li class=\"table-view-cell\">\n          Item 1\n          <div class=\"toggle\">\n            <div class=\"toggle-handle\"></div>\n          </div>\n        </li>\n        <li class=\"table-view-cell\">\n          Item 2\n          <div class=\"toggle active\">\n            <div class=\"toggle-handle\"></div>\n          </div>\n        </li>\n        <li class=\"table-view-cell\">\n          Item 3\n          <div class=\"toggle\">\n            <div class=\"toggle-handle\"></div>\n          </div>\n        </li>\n      </ul>\n    </div>\n\n{% highlight html %}\n<ul class=\"table-view\">\n  <li class=\"table-view-cell\">\n    Item 1\n    <div class=\"toggle\">\n      <div class=\"toggle-handle\"></div>\n    </div>\n  </li>\n  <li class=\"table-view-cell\">\n    Item 2\n    <div class=\"toggle active\">\n      <div class=\"toggle-handle\"></div>\n    </div>\n  </li>\n  <li class=\"table-view-cell\">\n    Item 3\n    <div class=\"toggle\">\n      <div class=\"toggle-handle\"></div>\n    </div>\n  </li>\n</ul>\n{% endhighlight %}\n\n  </article>\n\n  <article class=\"component\">\n    <h3 class=\"component-title\">Carded table views</h3>\n    <p class=\"component-description\">Use <code>.card</code> to wrap any content in a padded element.</p>\n\n    <div class=\"component-example\">\n      <div class=\"card\">\n        <ul class=\"table-view\">\n          <li class=\"table-view-cell\">Item 1</li>\n          <li class=\"table-view-cell\">Item 2</li>\n          <li class=\"table-view-cell table-view-divider\">Divider</li>\n          <li class=\"table-view-cell\">Item 3</li>\n          <li class=\"table-view-cell\">Item 4</li>\n        </ul>\n      </div>\n    </div>\n\n{% highlight html %}\n<div class=\"card\">\n  <ul class=\"table-view\">\n    <li class=\"table-view-cell\">Item 1</li>\n    <li class=\"table-view-cell\">Item 2</li>\n    <li class=\"table-view-cell table-view-divider\">Divider</li>\n    <li class=\"table-view-cell\">Item 3</li>\n    <li class=\"table-view-cell\">Item 4</li>\n  </ul>\n</div>\n{% endhighlight %}\n\n  </article>\n\n  <!-- Buttons -->\n  <article class=\"component\" id=\"buttons\">\n    <h3 class=\"component-title\">Buttons</h3>\n    <p class=\"component-description\">Buttons come in many flavors and should be used for user actions.</p>\n\n    <div class=\"component-example\">\n      <button class=\"btn\">Button</button>\n      <button class=\"btn btn-primary\">Button</button>\n      <button class=\"btn btn-positive\">Button</button>\n      <button class=\"btn btn-negative\">Button</button>\n      <button class=\"btn btn-link\">Button</button>\n\n      <button class=\"btn btn-outlined\">Button</button>\n      <button class=\"btn btn-primary btn-outlined\">Button</button>\n      <button class=\"btn btn-positive btn-outlined\">Button</button>\n      <button class=\"btn btn-negative btn-outlined\">Button</button>\n    </div>\n\n{% highlight html %}\n<button class=\"btn\">Button</button>\n<button class=\"btn btn-primary\">Button</button>\n<button class=\"btn btn-positive\">Button</button>\n<button class=\"btn btn-negative\">Button</button>\n<button class=\"btn btn-link\">Button</button>\n\n<button class=\"btn btn-outlined\">Button</button>\n<button class=\"btn btn-primary btn-outlined\">Button</button>\n<button class=\"btn btn-positive btn-outlined\">Button</button>\n<button class=\"btn btn-negative btn-outlined\">Button</button>\n{% endhighlight %}\n\n  </article>\n\n  <!-- Buttons -->\n  <article class=\"component\" id=\"buttonsWithIcons\">\n    <h3 class=\"component-title\">Buttons with icons</h3>\n    <p class=\"component-description\">Ratchicons work inside buttons too.</p>\n\n    <div class=\"component-example\">\n      <button class=\"btn\">\n        <span class=\"icon icon-search\"></span>\n        Button\n      </button>\n      <button class=\"btn btn-primary\">\n        <span class=\"icon icon-search\"></span>\n        Button\n      </button>\n      <button class=\"btn btn-positive\">\n        <span class=\"icon icon-search\"></span>\n        Button\n      </button>\n      <button class=\"btn btn-negative\">\n        <span class=\"icon icon-search\"></span>\n        Button\n      </button>\n      <button class=\"btn btn-link\">\n        <span class=\"icon icon-left\"></span>\n        Button\n      </button>\n    </div>\n\n{% highlight html %}\n<button class=\"btn\">\n  <span class=\"icon icon-search\"></span>\n  Button\n</button>\n<button class=\"btn btn-primary\">\n  <span class=\"icon icon-search\"></span>\n  Button\n</button>\n<button class=\"btn btn-positive\">\n  <span class=\"icon icon-search\"></span>\n  Button\n</button>\n<button class=\"btn btn-negative\">\n  <span class=\"icon icon-search\"></span>\n  Button\n</button>\n<button class=\"btn btn-link\">\n  <span class=\"icon icon-left\"></span>\n  Button\n</button>\n{% endhighlight %}\n\n  </article>\n\n  <article class=\"component\" id=\"buttonsBadges\">\n    <h3 class=\"component-title\">Buttons with badges</h3>\n\n    <div class=\"component-example\">\n      <button class=\"btn\">Badge button <span class=\"badge\">1</span></button>\n      <button class=\"btn btn-primary\">Badge button <span class=\"badge badge-primary\">1</span></button>\n      <button class=\"btn btn-positive\">Badge button <span class=\"badge badge-positive\">1</span></button>\n      <button class=\"btn btn-negative\">Badge button <span class=\"badge badge-negative\">1</span></button>\n    </div>\n\n{% highlight html %}\n<button class=\"btn\">Badge button <span class=\"badge\">1</span></button>\n<button class=\"btn btn-primary\">Badge button <span class=\"badge badge-primary\">1</span></button>\n<button class=\"btn btn-positive\">Badge button <span class=\"badge badge-positive\">1</span></button>\n<button class=\"btn btn-negative\">Badge button <span class=\"badge badge-negative\">1</span></button>\n\n<button class=\"btn btn-outlined\">Badge button <span class=\"badge badge-inverted\">1</span></button>\n<button class=\"btn btn-outlined btn-primary\">Badge button <span class=\"badge badge-primary badge-inverted\">1</span></button>\n<button class=\"btn btn-outlined btn-positive\">Badge button <span class=\"badge badge-positive badge-inverted\">1</span></button>\n<button class=\"btn btn-outlined btn-negative\">Badge button <span class=\"badge badge-negative badge-inverted\">1</span></button>\n{% endhighlight %}\n\n  </article>\n\n  <article class=\"component\" id=\"blockButtons\">\n    <h3 class=\"component-title\">Block buttons</h3>\n\n    <div class=\"component-example\">\n      <button class=\"btn btn-block\">Block button</button>\n      <button class=\"btn btn-primary btn-block\">Block button</button>\n      <button class=\"btn btn-positive btn-block\">Block button</button>\n      <button class=\"btn btn-negative btn-block\">Block button</button>\n\n      <button class=\"btn btn-block btn-outlined\">Block button</button>\n      <button class=\"btn btn-primary btn-block btn-outlined\">Block button</button>\n      <button class=\"btn btn-positive btn-block btn-outlined\">Block button</button>\n      <button class=\"btn btn-negative btn-block btn-outlined\">Block button</button>\n    </div>\n\n{% highlight html %}\n<button class=\"btn btn-block\">Block button</button>\n<button class=\"btn btn-primary btn-block\">Block button</button>\n<button class=\"btn btn-positive btn-block\">Block button</button>\n<button class=\"btn btn-negative btn-block\">Block button</button>\n\n<button class=\"btn btn-block btn-outlined\">Block button</button>\n<button class=\"btn btn-primary btn-block btn-outlined\">Block button</button>\n<button class=\"btn btn-positive btn-block btn-outlined\">Block button</button>\n<button class=\"btn btn-negative btn-block btn-outlined\">Block button</button>\n{% endhighlight %}\n\n  </article>\n\n  <!-- Segmented Control -->\n  <article class=\"component\" id=\"segmentedControls\">\n    <h3 class=\"component-title\">Segmented control</h3>\n    <p class=\"component-description\">Content sections that are to be swapped in and out by the controller should all be siblings and have the class <code>.control-content</code>. Then, just give each content section an id and point the link in the segmented control to that id.</p>\n\n    <div class=\"component-example\">\n      <div class=\"segmented-control\">\n        <a class=\"control-item active\" href=\"#item1mobile\">\n          Thing one\n        </a>\n        <a class=\"control-item\" href=\"#item2mobile\">\n          Thing two\n        </a>\n        <a class=\"control-item\" href=\"#item3mobile\">\n          Thing three\n        </a>\n      </div>\n      <div class=\"card\">\n        <span id=\"item1mobile\" class=\"control-content active\">Item 1</span>\n        <span id=\"item2mobile\" class=\"control-content\">Item 2</span>\n        <span id=\"item3mobile\" class=\"control-content\">Item 3</span>\n      </div>\n    </div>\n\n{% highlight html %}\n<div class=\"segmented-control\">\n  <a class=\"control-item active\" href=\"#item1mobile\">\n    Thing one\n  </a>\n  <a class=\"control-item\" href=\"#item2mobile\">\n    Thing two\n  </a>\n  <a class=\"control-item\" href=\"#item3mobile\">\n    Thing three\n  </a>\n</div>\n<div class=\"card\">\n  <span id=\"item1mobile\" class=\"control-content active\">Item 1</span>\n  <span id=\"item2mobile\" class=\"control-content\">Item 2</span>\n  <span id=\"item3mobile\" class=\"control-content\">Item 3</span>\n</div>\n{% endhighlight %}\n\n  </article>\n\n  <!-- Badges -->\n  <article class=\"component\" id=\"badges\">\n    <h3 class=\"component-title\">Badges</h3>\n    <p class=\"component-description\">Badges come in four flavors and should be used to indicate \"how many\" of something there are. Adding the a class of <code>.badge-inverted</code> will remove the badges background color.</p>\n\n    <div class=\"component-example\">\n      <span class=\"badge\">1</span>\n      <span class=\"badge badge-primary\">2</span>\n      <span class=\"badge badge-positive\">3</span>\n      <span class=\"badge badge-negative\">4</span>\n      <span class=\"badge badge-inverted\">1</span>\n      <span class=\"badge badge-primary badge-inverted\">2</span>\n      <span class=\"badge badge-positive badge-inverted\">3</span>\n      <span class=\"badge badge-negative badge-inverted\">4</span>\n    </div>\n\n{% highlight html %}\n<span class=\"badge\">1</span>\n<span class=\"badge badge-primary\">2</span>\n<span class=\"badge badge-positive\">3</span>\n<span class=\"badge badge-negative\">4</span>\n\n<span class=\"badge badge-inverted\">1</span>\n<span class=\"badge badge-primary badge-inverted\">2</span>\n<span class=\"badge badge-positive badge-inverted\">3</span>\n<span class=\"badge badge-negative badge-inverted\">4</span>\n{% endhighlight %}\n\n  </article>\n\n  <!-- Forms -->\n  <article class=\"component\" id=\"forms\">\n    <h3 class=\"component-title\">Forms</h3>\n\n    <div class=\"component-example\">\n      <form>\n        <input type=\"text\" placeholder=\"Full name\">\n        <input type=\"search\" placeholder=\"Search\">\n        <textarea rows=\"5\"></textarea>\n        <button class=\"btn btn-positive btn-block\">Choose existing</button>\n      </form>\n    </div>\n\n{% highlight html %}\n<form>\n  <input type=\"text\" placeholder=\"Full name\">\n  <input type=\"search\" placeholder=\"Search\">\n  <textarea rows=\"5\"></textarea>\n  <button class=\"btn btn-positive btn-block\">Choose existing</button>\n</form>\n{% endhighlight %}\n\n  </article>\n\n  <!-- Form with input group -->\n  <article class=\"component\" id=\"formsWithInputGroup\">\n    <h3 class=\"component-title\">Form with input group</h3>\n\n    <div class=\"component-example component-example-fullbleed\">\n      <form class=\"input-group\">\n        <input type=\"text\" placeholder=\"Full name\">\n        <input type=\"email\" placeholder=\"Email\">\n        <input type=\"text\" placeholder=\"Username\">\n      </form>\n    </div>\n\n{% highlight html %}\n<form class=\"input-group\">\n  <input type=\"text\" placeholder=\"Full name\">\n  <input type=\"email\" placeholder=\"Email\">\n  <input type=\"text\" placeholder=\"Username\">\n</form>\n{% endhighlight %}\n\n  </article>\n\n  <!-- Form with input group and labels -->\n  <article class=\"component\" id=\"formsWithInputGroupAndLabels\">\n    <h3 class=\"component-title\">Form with input group and labels</h3>\n\n    <div class=\"component-example component-example-fullbleed\">\n      <form class=\"input-group\">\n        <div class=\"input-row\">\n          <label>Full name</label>\n          <input type=\"text\" placeholder=\"Mister Ratchet\">\n        </div>\n        <div class=\"input-row\">\n          <label>Email</label>\n          <input type=\"email\" placeholder=\"ratchetframework@gmail.com\">\n        </div>\n        <div class=\"input-row\">\n          <label>Username</label>\n          <input type=\"text\" placeholder=\"goRatchet\">\n        </div>\n      </form>\n    </div>\n\n{% highlight html %}\n<form class=\"input-group\">\n  <div class=\"input-row\">\n    <label>Full name</label>\n    <input type=\"text\" placeholder=\"Mister Ratchet\">\n  </div>\n  <div class=\"input-row\">\n    <label>Email</label>\n    <input type=\"email\" placeholder=\"ratchetframework@gmail.com\">\n  </div>\n  <div class=\"input-row\">\n    <label>Username</label>\n    <input type=\"text\" placeholder=\"goRatchet\">\n  </div>\n</form>\n{% endhighlight %}\n\n  </article>\n\n  <!-- Toggle -->\n  <article class=\"component\" id=\"toggles\">\n    <h3 class=\"component-title\">Toggles</h3>\n    <p class=\"component-description\">Toggles can be used by sliding or tapping the control.</p>\n\n    <div class=\"component-example\">\n      <div class=\"toggle active\">\n        <div class=\"toggle-handle\"></div>\n      </div>\n    </div>\n\n{% highlight html %}\n<div class=\"toggle active\">\n  <div class=\"toggle-handle\"></div>\n</div>\n<div class=\"toggle\">\n  <div class=\"toggle-handle\"></div>\n</div>\n{% endhighlight %}\n\n    <p class=\"component-description\">Toggles.js binds an event to the document that returns a detail object and can be used to fire a callback.</p>\n\n{% highlight js %}\n// Only needed if you want to fire a callback\ndocument\n.querySelector('#myToggle')\n.addEventListener('toggle', myFunction)\n{% endhighlight %}\n\n  </article>\n\n  <!-- Popovers -->\n  <article class=\"component\" id=\"popovers\">\n    <h3 class=\"component-title\">Popovers</h3>\n\n{% highlight html %}\n<div id=\"myPopover\" class=\"popover\">\n  <header class=\"bar bar-nav\">\n    <h1 class=\"title\">Popover title</h1>\n  </header>\n  <ul class=\"table-view\">\n    <li class=\"table-view-cell\">Item1</li>\n    <li class=\"table-view-cell\">Item2</li>\n    <li class=\"table-view-cell\">Item3</li>\n    <li class=\"table-view-cell\">Item4</li>\n    <li class=\"table-view-cell\">Item5</li>\n    <li class=\"table-view-cell\">Item6</li>\n    <li class=\"table-view-cell\">Item7</li>\n    <li class=\"table-view-cell\">Item8</li>\n  </ul>\n</div>\n{% endhighlight %}\n\n    <p class=\"component-description\">Popovers are designed to only fire from <a href=\"#bars\">title bars</a>. Set the value of the title href to the id of a popover, like so:</p>\n\n{% highlight html %}\n<header class=\"bar bar-nav\">\n  <a href=\"#myPopover\">\n    <h1 class=\"title\">\n      Tap title\n      <span class=\"icon icon-caret\"></span>\n    </h1>\n  </a>\n</header>\n{% endhighlight %}\n  </article>\n\n  <!-- Modals -->\n  <article class=\"component\" id=\"modals\">\n    <h3 class=\"component-title\">Modals</h3>\n\n    <div class=\"component-example\">\n      <a href=\"#myModalexample\" class=\"btn\">Open modal</a>\n      <div id=\"myModalexample\" class=\"modal\">\n        <header class=\"bar bar-nav\">\n          <a class=\"icon icon-close pull-right\" href=\"#myModalexample\"></a>\n          <h1 class=\"title\">Modal mobile</h1>\n        </header>\n\n        <p class=\"content-padded\">The contents of my modal go here. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut.</p>\n      </div>\n    </div>\n\n{% highlight html %}\n<a href=\"#myModalexample\" class=\"btn\">Open modal</a>\n<div id=\"myModalexample\" class=\"modal\">\n  <header class=\"bar bar-nav\">\n    <a class=\"icon icon-close pull-right\" href=\"#myModalexample\"></a>\n    <h1 class=\"title\">Modal</h1>\n  </header>\n\n  <div class=\"content\">\n    <p class=\"content-padded\">The contents of my modal go here. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut.</p>\n  </div>\n</div>\n{% endhighlight %}\n\n    <p class=\"component-description\">Modals are designed to only fire from links. Set the value of the toggle links href to the id of a modal.</p>\n\n  </article>\n\n    <!-- Slider -->\n    <article class=\"component\" id=\"sliders\">\n      <h3 class=\"component-title\">Sliders</h3>\n      <p class=\"component-description\">Can be used with any number of slides with any type of content.</p>\n\n      <div class=\"component-example component-example-fullbleed\">\n        <div class=\"slider\" id=\"mySlider\">\n          <div class=\"slide-group\">\n            <div class=\"slide\">\n              <img src=\"/assets/img/slide-1.jpg\" alt=\"Mountain and sky\">\n              <span class=\"slide-text\">\n                <span class=\"icon icon-left-nav\"></span>\n                Slide me\n              </span>\n            </div>\n            <div class=\"slide\">\n              <img src=\"/assets/img/slide-2.jpg\" alt=\"Giant mecha\">\n            </div>\n            <div class=\"slide\">\n              <img src=\"/assets/img/slide-3.jpg\" alt=\"Big Ben\">\n            </div>\n          </div>\n        </div>\n      </div>\n\n{% highlight html %}\n<div class=\"slider\" id=\"mySlider\">\n  <div class=\"slide-group\">\n    <div class=\"slide\">\n      <img src=\"/assets/img/slide-1.jpg\">\n      <span class=\"slide-text\">\n        <span class=\"icon icon-left-nav\"></span>\n        Slide me\n      </span>\n    </div>\n    <div class=\"slide\">\n      <img src=\"/assets/img/slide-2.jpg\">\n    </div>\n    <div class=\"slide\">\n      <img src=\"/assets/img/slide-3.jpg\">\n    </div>\n  </div>\n</div>\n{% endhighlight %}\n\n      <p class=\"component-description\">Sliders.js binds an event to the document that returns a detail object and can be used to fire a callback.</p>\n\n{% highlight js %}\n// Only needed if you want to fire a callback\ndocument\n.querySelector('#mySlider')\n.addEventListener('slide', myFunction)\n{% endhighlight %}\n\n    </article>\n\n    <!-- Push docs -->\n    <article class=\"component\" id=\"push\">\n      <h3 class=\"component-title\">Push</h3>\n      <p class=\"component-description\">Push.js is the engine that connects Ratchet pages together with AJAX and the history api. Push.js is listening to all clicks on a page, so just make sure it's included and link something in your Ratchet project up.</p>\n\n{% highlight html %}\n<!-- A one.html link -->\n<a href=\"two.html\">Two</a>\n{% endhighlight %}\n\n      <p class=\"component-note\">This will use push to replace everything in the .content div with the .content of two.html. Also, it will either update or remove .bar-nav and .bar-tab according to their presences in two.html.</p>\n\n      <p class=\"component-description\">Now that pages are being loaded through push, it's easy to specify transitions for animations between pages. There are three different transitions to chose from: <code>fade</code>, <code>slide-in</code>, or <code>slide-out</code>.</p>\n\n{% highlight html %}\n<!-- An one.html link that animates to two.html -->\n<a href=\"two.html\" data-transition=\"fade\">Two</a>\n{% endhighlight %}\n\n      <p class=\"component-description\">A working version of push:</p>\n\n      <div class=\"component-example component-example-fullbleed\">\n        <header class=\"bar bar-nav\">\n          <h1 class=\"title\">Push</h1>\n        </header>\n        <div class=\"content\">\n          <div class=\"card\">\n            <ul class=\"table-view\">\n              <li class=\"table-view-cell\">\n                <a class=\"navigate-right\" href=\"/two.html\" data-transition=\"slide-in\">\n                  Load new page with push\n                </a>\n              </li>\n            </ul>\n          </div>\n        </div>\n      </div>\n\n{% highlight html %}\n<header class=\"bar bar-nav\">\n  <h1 class=\"title\">Push</h1>\n</header>\n<div class=\"content\">\n  <div class=\"card\">\n    <ul class=\"table-view\">\n      <li class=\"table-view-cell\">\n        <a class=\"navigate-right\" href=\"../two.html\" data-transition=\"slide-in\">\n          Load new page with push\n        </a>\n      </li>\n    </ul>\n  </div>\n</div>\n{% endhighlight %}\n\n        <p class=\"component-description\">Have a link you don't want to intercepted by push? Try this:</p>\n\n{% highlight html %}\n<!-- Use data-ignore=\"push\" to prevent the push.js interception -->\n<a href=\"http://www.google.com\" data-ignore=\"push\">Google<a>\n{% endhighlight %}\n\n        <p class=\"component-description\">Push.js binds an event to the document that returns a detail object and can be used to fire a callback.</p>\n\n{% highlight js %}\n// Only needed if you want to fire a callback\nwindow.addEventListener('push', myFunction);\n{% endhighlight %}\n\n        <p class=\"component-description\">Push.js can be triggered manually by using the PUSH(options) function. When passing options, url is required, container, transition and timeout are optional. As of version 2.1.0 Ratchet has its own namespace and can also be called with RATCHET.push(options).</p>\n\n{% highlight js %}\nPUSH({url: \"/signin\"});\nRATCHET.push({url: \"/signin\"});\n{% endhighlight %}\n\n      </article>\n\n    <!-- Ratchicons -->\n    <article class=\"component no-border\" id=\"ratchicons\">\n      <h3 class=\"component-title\">Ratchicons</h3>\n      <p class=\"component-description\">Use Ratchicons in your application to help inform interactions.</p>\n\n      <div class=\"component-example\">\n        <div class=\"content-padded\">\n        {% for iconClassName in site.data.ratchicons %}\n          <span class=\"icon {{ iconClassName }}\"></span>\n        {% endfor %}\n        </div>\n      </div>\n\n{% highlight html %}\n<div class=\"content-padded\">{% for iconClassName in site.data.ratchicons %}\n  <span class=\"icon {{ iconClassName }}\"></span>{% endfor %}\n</div>\n{% endhighlight %}\n\n    </article>\n\n      <!-- Footer -->\n      {% include footer.html %}\n    </div>\n  </div>\n</div>\n"
  },
  {
    "path": "docs/dist/css/ratchet-theme-android.css",
    "content": "/*!\n * =====================================================\n * Ratchet v2.0.2 (http://goratchet.com)\n * Copyright 2016 Connor Sears\n * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)\n *\n * v2.0.2 designed by @connors.\n * =====================================================\n */\n\nbody {\n  font-family: \"Roboto\", sans-serif;\n  font-size: 18px;\n  line-height: 22px;\n  color: #222;\n}\n\na {\n  color: #33b5e5;\n}\n\na:active {\n  color: #1a9bcb;\n}\n\n.content {\n  background-color: #f2f2f2;\n}\n\n.bar-nav ~ .content {\n  padding-top: 50px;\n}\n\n.bar-header-secondary ~ .content {\n  padding-top: 100px;\n}\n\n.bar-tab ~ .content {\n  padding-top: 50px;\n  padding-bottom: 0;\n}\n\n.bar-footer ~ .content {\n  padding-bottom: 50px;\n}\n\n.bar-footer-secondary ~ .content {\n  padding-bottom: 100px;\n}\n\n.btn {\n  padding: 8px 15px;\n  font-size: 14px;\n  color: #222;\n  background-color: #cecece;\n  border: 0;\n  border-radius: 2px;\n  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 1px rgba(0, 0, 0, .25);\n          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 1px rgba(0, 0, 0, .25);\n}\n\n.btn:active, .btn.active {\n  color: #222;\n  background-color: #999;\n  border: 0;\n  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .2);\n          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .2);\n}\n\n.btn-primary {\n  color: #fff;\n  background-color: #33b5e5;\n  border: 0;\n}\n\n.btn-primary:active, .btn-primary.active {\n  color: #fff;\n  background-color: #1a9bcb;\n  border: 0;\n}\n\n.btn-positive {\n  color: #fff;\n  background-color: #9c0;\n  border: 0;\n}\n\n.btn-positive:active, .btn-positive.active {\n  color: #fff;\n  background-color: #739900;\n  border: 0;\n}\n\n.btn-negative {\n  color: #fff;\n  background-color: #f44;\n  border: 0;\n}\n\n.btn-negative:active, .btn-negative.active {\n  color: #fff;\n  background-color: #f11;\n  border: 0;\n}\n\n.btn-outlined {\n  background-color: transparent;\n  border: 1px solid #999;\n  -webkit-box-shadow: none;\n          box-shadow: none;\n}\n\n.btn-outlined.btn-primary {\n  color: #33b5e5;\n  border: 1px solid #33b5e5;\n}\n\n.btn-outlined.btn-primary:active {\n  background-color: #33b5e5;\n  border: 1px solid #33b5e5;\n}\n\n.btn-outlined.btn-positive {\n  color: #9c0;\n  border: 1px solid #9c0;\n}\n\n.btn-outlined.btn-positive:active {\n  background-color: #9c0;\n  border: 1px solid #9c0;\n}\n\n.btn-outlined.btn-negative {\n  color: #f44;\n  border: 1px solid #f44;\n}\n\n.btn-outlined.btn-negative:active {\n  background-color: #f44;\n  border: 1px solid #f44;\n}\n\n.btn-outlined:active {\n  background-color: #999;\n  border: 1px solid #999;\n  -webkit-box-shadow: none;\n          box-shadow: none;\n}\n\n.btn-outlined.btn-primary:active, .btn-outlined.btn-positive:active, .btn-outlined.btn-negative:active {\n  color: #fff;\n  -webkit-box-shadow: none;\n          box-shadow: none;\n}\n\n.btn-link {\n  color: #33b5e5;\n  background-color: transparent;\n  border: none;\n  -webkit-box-shadow: none;\n          box-shadow: none;\n}\n\n.btn-link:active, .btn-link.active {\n  color: #1a9bcb;\n  background-color: transparent;\n  -webkit-box-shadow: none;\n          box-shadow: none;\n}\n\n.btn-block {\n  padding: 15px 0;\n  font-size: 18px;\n}\n\n.btn .badge {\n  background-color: rgba(0, 0, 0, .15);\n}\n\n.btn .badge.badge-inverted {\n  background-color: transparent;\n}\n\n.btn:active .badge {\n  color: #fff;\n}\n\n.bar {\n  height: 50px;\n  background-color: #ddd;\n  border-bottom: 1px solid #b1b1b1;\n  -webkit-box-shadow: inset 0 -2px 0 #d2d2d2, 0 3px 3px rgba(0, 0, 0, .07);\n          box-shadow: inset 0 -2px 0 #d2d2d2, 0 3px 3px rgba(0, 0, 0, .07);\n}\n\n.bar.bar-header-secondary {\n  top: 50px;\n}\n\n.bar.bar-footer-secondary {\n  bottom: 50px;\n}\n\n.bar.bar-footer-secondary-tab {\n  bottom: 50px;\n}\n\n.bar .bar-footer,\n.bar .bar-footer-secondary,\n.bar .bar-footer-secondary-tab {\n  border-top: 1px solid #b1b1b1;\n  border-bottom: 0;\n  -webkit-box-shadow: inset 0 -2px 0 #33b5e5;\n          box-shadow: inset 0 -2px 0 #33b5e5;\n}\n\n.bar-tab {\n  top: 0;\n  bottom: auto;\n  height: 50px;\n  border-top: 0;\n}\n\n.bar-tab .tab-item {\n  color: #929292;\n}\n\n.bar-tab .tab-item.active {\n  color: #33b5e5;\n  -webkit-box-shadow: inset 0 -2px 0 #33b5e5;\n          box-shadow: inset 0 -2px 0 #33b5e5;\n}\n\n.bar-tab .tab-item:active {\n  color: #929292;\n  background-color: #78c6e3;\n}\n\n.bar-tab .tab-item .icon {\n  top: 3px;\n  padding-top: 0;\n  padding-bottom: 0;\n}\n\n.title {\n  position: static;\n  padding-left: 15px;\n  font-size: 18px;\n  line-height: 49px;\n  text-align: left;\n}\n\n.bar .btn {\n  top: 7px;\n  padding-top: 10px;\n  padding-bottom: 10px;\n}\n\n.bar .btn-link {\n  top: 0;\n  padding: 0;\n  font-size: 18px;\n  line-height: 49px;\n  color: #33b5e5;\n}\n\n.bar .btn-link:active, .bar .btn-link.active {\n  color: #1a9bcb;\n}\n\n.bar .btn-link .icon {\n  top: 2px;\n  padding: 0;\n}\n\n.bar .btn-block {\n  top: 4px;\n}\n\n.bar .segmented-control {\n  top: 7px;\n}\n\n.bar .icon {\n  padding-top: 13px;\n  padding-bottom: 13px;\n}\n\n.bar .title .icon {\n  padding: 0;\n}\n\n.bar .title .icon.icon-caret {\n  top: 10px;\n  color: #777;\n}\n\n.bar input[type=\"search\"] {\n  height: 35px;\n}\n\n.badge.badge-inverted {\n  color: #999;\n  background-color: transparent;\n}\n\n.badge-primary {\n  color: #fff;\n  background-color: #33b5e5;\n}\n\n.badge-primary.badge-inverted {\n  color: #33b5e5;\n  background-color: transparent;\n}\n\n.badge-positive {\n  color: #fff;\n  background-color: #9c0;\n}\n\n.badge-positive.badge-inverted {\n  color: #9c0;\n  background-color: transparent;\n}\n\n.badge-negative {\n  color: #fff;\n  background-color: #f44;\n}\n\n.badge-negative.badge-inverted {\n  color: #f44;\n  background-color: transparent;\n}\n\n.card {\n  background-color: transparent;\n  border-color: #d9d9d9;\n  border-radius: 2px;\n}\n\n.table-view {\n  background-color: transparent;\n}\n\n.table-view .table-view-cell {\n  border-bottom: 1px solid #d9d9d9;\n}\n\n.table-view .table-view-cell:last-child {\n  background-image: none;\n}\n\n.table-view .table-view-cell > a:not(.btn):active {\n  color: inherit;\n  background-color: #e0e0e0;\n}\n\n.table-view .table-view-cell > a:not(.btn):active .icon {\n  color: #fff;\n}\n\n.table-view .table-view-divider {\n  padding-top: 25px;\n  font-size: 12px;\n  font-weight: bold;\n  text-transform: uppercase;\n  background-color: transparent;\n  border-top: 0;\n  border-bottom: 2px solid #a9a9a9;\n}\n\n.table-view-cell .navigate-left > .btn,\n.table-view-cell .navigate-left > .badge,\n.table-view-cell .navigate-left > .toggle,\n.table-view-cell .navigate-right > .btn,\n.table-view-cell .navigate-right > .badge,\n.table-view-cell .navigate-right > .toggle,\n.table-view-cell .push-left > .btn,\n.table-view-cell .push-left > .badge,\n.table-view-cell .push-left > .toggle,\n.table-view-cell .push-right > .btn,\n.table-view-cell .push-right > .badge,\n.table-view-cell .push-right > .toggle,\n.table-view-cell > a .navigate-left > .btn,\n.table-view-cell > a .navigate-left > .badge,\n.table-view-cell > a .navigate-left > .toggle,\n.table-view-cell > a .navigate-right > .btn,\n.table-view-cell > a .navigate-right > .badge,\n.table-view-cell > a .navigate-right > .toggle,\n.table-view-cell > a .push-left > .btn,\n.table-view-cell > a .push-left > .badge,\n.table-view-cell > a .push-left > .toggle,\n.table-view-cell > a .push-right > .btn,\n.table-view-cell > a .push-right > .badge,\n.table-view-cell > a .push-right > .toggle {\n  right: 15px;\n}\n\nselect,\ntextarea,\ninput[type=\"text\"],\ninput[type=\"search\"],\ninput[type=\"password\"],\ninput[type=\"datetime\"],\ninput[type=\"datetime-local\"],\ninput[type=\"date\"],\ninput[type=\"month\"],\ninput[type=\"time\"],\ninput[type=\"week\"],\ninput[type=\"number\"],\ninput[type=\"email\"],\ninput[type=\"url\"],\ninput[type=\"tel\"],\ninput[type=\"color\"],\n.input-group {\n  height: 40px;\n  padding: 10px 15px;\n  border: 1px solid rgba(0, 0, 0, .2);\n  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .1);\n          box-shadow: 0 1px 1px rgba(0, 0, 0, .1);\n}\n\ninput[type=\"search\"] {\n  border-radius: 2px;\n}\n\nselect,\ntextarea,\n.input-group {\n  height: auto;\n}\n\n.input-group {\n  padding: 0;\n  border: 0;\n}\n\n.input-group input {\n  border: 0;\n  border-bottom: 1px solid #d9d9d9;\n  -webkit-box-shadow: none;\n          box-shadow: none;\n}\n\n.input-group input:last-child {\n  background-image: none;\n}\n\n.input-row {\n  height: 40px;\n  border-bottom: 1px solid #d9d9d9;\n}\n\n.input-row label {\n  padding-top: 10px;\n  padding-bottom: 10px;\n}\n\n.input-row label + input {\n  background-image: none;\n  border-bottom: 0;\n}\n\n.segmented-control {\n  font-size: 14px;\n  background-color: #cecece;\n  border: 0;\n  border-radius: 2px;\n  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .25);\n          box-shadow: 0 1px 1px rgba(0, 0, 0, .25);\n}\n\n.segmented-control .control-item {\n  padding-top: 10px;\n  padding-bottom: 10px;\n  color: #222;\n  border-left: 1px solid #999;\n  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .2);\n          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .2), inset 0 1px 0 rgba(255, 255, 255, .2);\n}\n\n.segmented-control .control-item:first-child {\n  border-left-width: 0;\n}\n\n.segmented-control .control-item:active, .segmented-control .control-item.active {\n  background-color: #999;\n}\n\n.segmented-control-primary {\n  border: 0;\n}\n\n.segmented-control-primary .control-item {\n  color: #fff;\n  border-color: inherit;\n}\n\n.segmented-control-primary .control-item:active, .segmented-control-primary .control-item.active {\n  color: #fff;\n  background-color: #33b5e5;\n}\n\n.segmented-control-positive {\n  border: 0;\n}\n\n.segmented-control-positive .control-item {\n  color: #fff;\n  border-color: inherit;\n}\n\n.segmented-control-positive .control-item:active, .segmented-control-positive .control-item.active {\n  color: #fff;\n  background-color: #9c0;\n}\n\n.segmented-control-negative {\n  border: 0;\n}\n\n.segmented-control-negative .control-item {\n  color: #fff;\n  border-color: inherit;\n}\n\n.segmented-control-negative .control-item:active, .segmented-control-negative .control-item.active {\n  color: #fff;\n  background-color: #f44;\n}\n\n.popover {\n  top: 47px;\n  left: 15px;\n  width: 200px;\n  margin-left: 0;\n  border: 1px solid #9b9b9b;\n  border-radius: 0;\n  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .2);\n          box-shadow: 0 0 3px rgba(0, 0, 0, .2);\n  -webkit-transition: -webkit-transform .1s ease-in-out, opacity .2s ease-in-out;\n       -o-transition:      -o-transform .1s ease-in-out, opacity .2s ease-in-out;\n          transition:         transform .1s ease-in-out, opacity .2s ease-in-out;\n  -webkit-transform: scale(.75);\n       -o-transform: scale(.75);\n          transform: scale(.75);\n}\n\n.popover:before {\n  display: none;\n}\n\n.popover.visible {\n  -webkit-transform: scale(1);\n       -o-transform: scale(1);\n          transform: scale(1);\n}\n\n.backdrop {\n  background-color: transparent;\n}\n\n.popover .bar {\n  border-radius: 0;\n}\n\n.popover .bar-nav ~ .table-view {\n  padding-top: 50px;\n}\n\n.popover .table-view {\n  border-radius: 12px;\n}\n\n.toggle {\n  width: 104px;\n  height: 28px;\n  background-color: #d7d7d7;\n  border: 2px solid #d7d7d7;\n  border-radius: 0;\n}\n\n.toggle .toggle-handle {\n  top: 0;\n  left: 0;\n  width: 50px;\n  height: 24px;\n  background-color: #bebebe;\n  border: 1px solid #b5b5b5;\n  border-radius: 2px;\n  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3), inset 0 -1px 0 rgba(0, 0, 0, .1);\n          box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3), inset 0 -1px 0 rgba(0, 0, 0, .1);\n}\n\n.toggle:before {\n  top: 1px;\n  right: auto;\n  left: 11px;\n  z-index: 3;\n  color: #fff;\n}\n\n.toggle.active {\n  background-color: #d7d7d7;\n  border: 2px solid #d7d7d7;\n}\n\n.toggle.active .toggle-handle {\n  margin-right: 2px;\n  background-color: #33b5e5;\n  border-color: #33b5e5;\n  -webkit-transform: translate3d(50px, 0, 0);\n          transform: translate3d(50px, 0, 0);\n}\n\n.toggle.active:before {\n  right: 14px;\n  left: auto;\n  color: #fff;\n}\n\n.navigate-left:after,\n.push-left:after {\n  content: '';\n}\n\n.navigate-right:after,\n.push-right:after {\n  content: '';\n}\n\n.icon-caret:before {\n  content: '\\e800';\n}\n\n.icon-down:before,\n.icon-down-nav:before {\n  content: '\\e801';\n}\n\n.icon-download:before {\n  content: '\\e802';\n}\n\n.icon-left:before,\n.icon-left-nav:before {\n  content: '\\e803';\n}\n\n.icon-more-vertical:before {\n  content: '\\e804';\n}\n\n.icon-more:before {\n  content: '\\e805';\n}\n\n.icon-right:before,\n.icon-right-nav:before {\n  content: '\\e806';\n}\n\n.icon-search:before {\n  content: '\\e807';\n}\n\n.icon-share:before {\n  content: '\\e808';\n}\n\n.icon-up:before,\n.icon-up-nav:before {\n  content: '\\e809';\n}\n"
  },
  {
    "path": "docs/dist/css/ratchet-theme-ios.css",
    "content": "/*!\n * =====================================================\n * Ratchet v2.0.2 (http://goratchet.com)\n * Copyright 2016 Connor Sears\n * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)\n *\n * v2.0.2 designed by @connors.\n * =====================================================\n */\n\na {\n  color: #007aff;\n}\n\na:active {\n  color: #0062cc;\n}\n\n.content {\n  background-color: #efeff4;\n}\n\n.h5, h5,\n.h6, h6,\np {\n  color: #8f8f94;\n}\n\n.h5, h5,\n.h6, h6 {\n  font-weight: normal;\n  text-transform: uppercase;\n}\n\n.btn {\n  color: #929292;\n  background-color: rgba(247, 247, 247, .98);\n  border: 1px solid #929292;\n  -webkit-transition: all;\n          transition: all;\n  -webkit-transition-timing-function: linear;\n          transition-timing-function: linear;\n  -webkit-transition-duration: .2s;\n          transition-duration: .2s;\n}\n\n.btn:active, .btn.active {\n  color: #fff;\n  background-color: #929292;\n}\n\n.btn-primary {\n  color: #fff;\n  background-color: #007aff;\n  border: 1px solid #007aff;\n}\n\n.btn-primary:active, .btn-primary.active {\n  background-color: #0062cc;\n  border: 1px solid #0062cc;\n}\n\n.btn-positive {\n  color: #fff;\n  background-color: #4cd964;\n  border: 1px solid #4cd964;\n}\n\n.btn-positive:active, .btn-positive.active {\n  background-color: #2ac845;\n  border: 1px solid #2ac845;\n}\n\n.btn-negative {\n  color: #fff;\n  background-color: #dd524d;\n  border: 1px solid #dd524d;\n}\n\n.btn-negative:active, .btn-negative.active {\n  background-color: #cf2d28;\n  border: 1px solid #cf2d28;\n}\n\n.btn-outlined {\n  background-color: transparent;\n}\n\n.btn-outlined.btn-primary {\n  color: #007aff;\n}\n\n.btn-outlined.btn-positive {\n  color: #4cd964;\n}\n\n.btn-outlined.btn-negative {\n  color: #dd524d;\n}\n\n.btn-outlined.btn-primary:active, .btn-outlined.btn-positive:active, .btn-outlined.btn-negative:active {\n  color: #fff;\n}\n\n.btn-link {\n  color: #007aff;\n  background-color: transparent;\n  border: none;\n}\n\n.btn-link:active, .btn-link.active {\n  color: #0062cc;\n  background-color: transparent;\n}\n\n.btn .badge {\n  background-color: rgba(0, 0, 0, .15);\n}\n\n.btn .badge.badge-inverted {\n  background-color: transparent;\n}\n\n.btn:active .badge {\n  color: #fff;\n}\n\n.bar {\n  background-color: rgba(247, 247, 247, .98);\n  border-bottom: 0;\n  box-shadow: 0 0 1px rgba(0, 0, 0, .85);\n}\n\n.bar.bar-header-secondary {\n  top: 44px;\n}\n\n.bar.bar-footer-secondary {\n  bottom: 44px;\n}\n\n.bar.bar-footer-secondary-tab {\n  bottom: 50px;\n}\n\n.bar.bar-footer, .bar.bar-footer-secondary, .bar.bar-footer-secondary-tab {\n  border-top: 0;\n}\n\n.bar-tab {\n  border-top: 0;\n}\n\n.tab-item {\n  color: #929292;\n}\n\n.tab-item.active, .tab-item:active {\n  color: #007aff;\n}\n\n.bar-nav .btn-link {\n  color: #007aff;\n}\n\n.bar-nav .btn-link:active {\n  color: #007aff;\n  opacity: .6;\n}\n\n.badge.badge-inverted {\n  color: #929292;\n  background-color: transparent;\n}\n\n.badge-primary {\n  color: #fff;\n  background-color: #007aff;\n}\n\n.badge-primary.badge-inverted {\n  color: #007aff;\n  background-color: transparent;\n}\n\n.badge-positive {\n  color: #fff;\n  background-color: #4cd964;\n}\n\n.badge-positive.badge-inverted {\n  color: #4cd964;\n  background-color: transparent;\n}\n\n.badge-negative {\n  color: #fff;\n  background-color: #dd524d;\n}\n\n.badge-negative.badge-inverted {\n  color: #dd524d;\n  background-color: transparent;\n}\n\n.card .table-view {\n  background-image: none;\n}\n\n.card .table-view-cell:last-child {\n  background-image: none;\n}\n\n.table-view {\n  background-image: url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='1'><rect fill='#c8c7cc' x='0' y='0' width='100%' height='0.5'/></svg>\"), url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='1'><rect fill='#c8c7cc' x='0' y='0' width='100%' height='0.5'/></svg>\");\n  background-repeat: no-repeat;\n  background-position: 0 100%, 0 0;\n  border-top: 0;\n  border-bottom: 0;\n}\n\n.table-view .table-view-cell {\n  background-image: url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='1'><rect fill='#c8c7cc' x='0' y='0' width='100%' height='0.5'/></svg>\");\n  background-repeat: no-repeat;\n  background-position: 15px 100%;\n  border-bottom: 0;\n}\n\n.table-view .table-view-cell:last-child {\n  background-image: none;\n}\n\n.table-view .table-view-cell > a:not(.btn):active {\n  color: inherit;\n}\n\n.table-view .table-view-divider {\n  background-image: url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='1'><rect fill='#c8c7cc' x='0' y='0' width='100%' height='0.5'/></svg>\"), url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='1'><rect fill='#c8c7cc' x='0' y='0' width='100%' height='0.5'/></svg>\");\n  background-repeat: no-repeat;\n  background-position: 0 100%, 0 0;\n  border-top: 0;\n  border-bottom: 0;\n}\n\nselect,\ntextarea,\ninput[type=\"text\"],\ninput[type=\"search\"],\ninput[type=\"password\"],\ninput[type=\"datetime\"],\ninput[type=\"datetime-local\"],\ninput[type=\"date\"],\ninput[type=\"month\"],\ninput[type=\"time\"],\ninput[type=\"week\"],\ninput[type=\"number\"],\ninput[type=\"email\"],\ninput[type=\"url\"],\ninput[type=\"tel\"],\ninput[type=\"color\"],\n.input-group {\n  height: 40px;\n  padding: 10px 15px;\n  border: 1px solid rgba(0, 0, 0, .2);\n}\n\ninput[type=\"search\"] {\n  height: 34px;\n  text-align: center;\n  background-color: rgba(0, 0, 0, .1);\n  border: 0;\n  border-radius: 6px;\n}\n\ninput[type=\"search\"]:focus {\n  text-align: left;\n}\n\nselect,\ntextarea,\n.input-group {\n  height: auto;\n}\n\n.input-group {\n  padding: 0;\n  background-image: url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='1'><rect fill='#c8c7cc' x='0' y='0' width='100%' height='0.5'/></svg>\"), url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='1'><rect fill='#c8c7cc' x='0' y='0' width='100%' height='0.5'/></svg>\");\n  background-repeat: no-repeat;\n  background-position: 0 100%, 0 0;\n  border: 0;\n}\n\n.input-group input {\n  background-image: url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='1'><rect fill='#c8c7cc' x='0' y='0' width='100%' height='0.5'/></svg>\");\n  background-repeat: no-repeat;\n  background-position: 15px 100%;\n  border: 0;\n}\n\n.input-group input:last-child {\n  background-image: none;\n}\n\n.input-row {\n  background-image: url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='1'><rect fill='#c8c7cc' x='0' y='0' width='100%' height='0.5'/></svg>\");\n  background-repeat: no-repeat;\n  background-position: 15px 100%;\n  border-bottom: 0;\n}\n\n.input-row:last-child,\n.input-row label + input {\n  background-image: none;\n}\n\n.segmented-control {\n  background-color: transparent;\n  border: 1px solid #929292;\n}\n\n.segmented-control .control-item {\n  color: #929292;\n  border-color: #929292;\n  -webkit-transition: background-color .1s linear;\n          transition: background-color .1s linear;\n}\n\n.segmented-control .control-item:active {\n  background-color: #ebebeb;\n}\n\n.segmented-control .control-item.active {\n  color: #fff;\n  background-color: #929292;\n}\n\n.segmented-control-primary {\n  border: 1px solid #007aff;\n}\n\n.segmented-control-primary .control-item {\n  color: #007aff;\n  border-color: inherit;\n}\n\n.segmented-control-primary .control-item:active {\n  background-color: #b3d7ff;\n}\n\n.segmented-control-primary .control-item.active {\n  color: #fff;\n  background-color: #007aff;\n}\n\n.segmented-control-positive {\n  border: 1px solid #4cd964;\n}\n\n.segmented-control-positive .control-item {\n  color: #4cd964;\n  border-color: inherit;\n}\n\n.segmented-control-positive .control-item:active {\n  background-color: #dff8e4;\n}\n\n.segmented-control-positive .control-item.active {\n  color: #fff;\n  background-color: #4cd964;\n}\n\n.segmented-control-negative {\n  border: 1px solid #dd524d;\n}\n\n.segmented-control-negative .control-item {\n  color: #dd524d;\n  border-color: inherit;\n}\n\n.segmented-control-negative .control-item:active {\n  background-color: #fae4e3;\n}\n\n.segmented-control-negative .control-item.active {\n  color: #fff;\n  background-color: #dd524d;\n}\n\n.popover {\n  border-radius: 12px;\n  -webkit-transition: -webkit-transform .2s ease-in-out, opacity .2s ease-in-out;\n          transition: -webkit-transform .2s ease-in-out, opacity .2s ease-in-out;\n}\n\n.popover:before {\n  border-bottom: 15px solid rgba(247, 247, 247, .98);\n}\n\n.popover .bar {\n  box-shadow: none;\n}\n\n.popover .bar-nav {\n  border-bottom: 1px solid rgba(0, 0, 0, .15);\n}\n\n.popover .table-view {\n  background-image: none;\n  border-radius: 12px;\n}\n\n.modal {\n  -webkit-transition-timing-function: cubic-bezier(.1, .5, .1, 1);\n          transition-timing-function: cubic-bezier(.1, .5, .1, 1);\n}\n\n.modal.active {\n  -webkit-transition-timing-function: cubic-bezier(.1, .5, .1, 1);\n          transition-timing-function: cubic-bezier(.1, .5, .1, 1);\n}\n\n.toggle {\n  width: 47px;\n  border: 2px solid #e6e6e6;\n  box-shadow: inset 0 0 0 0 #e1e1e1;\n  -webkit-transition-duration: .2s;\n          transition-duration: .2s;\n  -webkit-transition-property: box-shadow, border;\n          transition-property: box-shadow, border;\n}\n\n.toggle .toggle-handle {\n  border: 1px solid rgba(0, 0, 0, .2);\n  box-shadow: 0 3px 3px rgba(0, 0, 0, .08);\n  -webkit-transition-property: -webkit-transform, border, width;\n          transition-property:         transform, border, width;\n}\n\n.toggle:before {\n  display: none;\n}\n\n.toggle.active {\n  background-color: transparent;\n  border: 2px solid #4cd964;\n  box-shadow: inset 0 0 0 13px #4cd964;\n}\n\n.toggle.active .toggle-handle {\n  -webkit-transform: translate3d(17px, 0, 0);\n          transform: translate3d(17px, 0, 0);\n}\n\n.toggle.active .toggle-handle {\n  border-color: #4cd964;\n}\n\n.content.fade {\n  -webkit-transition: opacity .2s ease-in-out;\n          transition: opacity .2s ease-in-out;\n}\n\n.content.sliding {\n  -webkit-transition-timing-function: cubic-bezier(.1, .5, .1, 1);\n          transition-timing-function: cubic-bezier(.1, .5, .1, 1);\n}\n\n.content.sliding.sliding-in, .content.sliding.right:not([class*=\"sliding-in\"]) {\n  -webkit-animation-name: fadeOverlay;\n          animation-name: fadeOverlay;\n  -webkit-animation-duration: .4s;\n          animation-duration: .4s;\n}\n\n.content.sliding.right:not([class*=\"sliding-in\"]) {\n  -webkit-animation-direction: reverse;\n          animation-direction: reverse;\n}\n\n.content.sliding.left {\n  -webkit-transform: translate3d(-20%, 0, 0);\n          transform: translate3d(-20%, 0, 0);\n}\n\n@-webkit-keyframes fadeOverlay {\n  from {\n    box-shadow: 0 0 10px transparent, -320px 0 0 transparent;\n  }\n  to {\n    box-shadow: 0 0 10px rgba(0, 0, 0, .3), -320px 0 0 rgba(0, 0, 0, .1);\n  }\n}\n"
  },
  {
    "path": "docs/dist/css/ratchet.css",
    "content": "/*!\n * =====================================================\n * Ratchet v2.0.2 (http://goratchet.com)\n * Copyright 2016 Connor Sears\n * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)\n *\n * v2.0.2 designed by @connors.\n * =====================================================\n */\n\n/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */\nhtml {\n  font-family: sans-serif;\n  -webkit-text-size-adjust: 100%;\n      -ms-text-size-adjust: 100%;\n}\n\nbody {\n  margin: 0;\n}\n\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nmenu,\nnav,\nsection,\nsummary {\n  display: block;\n}\n\naudio,\ncanvas,\nprogress,\nvideo {\n  display: inline-block;\n  vertical-align: baseline;\n}\n\naudio:not([controls]) {\n  display: none;\n  height: 0;\n}\n\n[hidden],\ntemplate {\n  display: none;\n}\n\na {\n  background-color: transparent;\n}\n\na:active,\na:hover {\n  outline: 0;\n}\n\nabbr[title] {\n  border-bottom: 1px dotted;\n}\n\nb,\nstrong {\n  font-weight: bold;\n}\n\ndfn {\n  font-style: italic;\n}\n\nh1 {\n  margin: .67em 0;\n  font-size: 2em;\n}\n\nmark {\n  color: #000;\n  background: #ff0;\n}\n\nsmall {\n  font-size: 80%;\n}\n\nsub,\nsup {\n  position: relative;\n  font-size: 75%;\n  line-height: 0;\n  vertical-align: baseline;\n}\n\nsup {\n  top: -.5em;\n}\n\nsub {\n  bottom: -.25em;\n}\n\nimg {\n  border: 0;\n}\n\nsvg:not(:root) {\n  overflow: hidden;\n}\n\nfigure {\n  margin: 1em 40px;\n}\n\nhr {\n  height: 0;\n  -webkit-box-sizing: content-box;\n     -moz-box-sizing: content-box;\n          box-sizing: content-box;\n}\n\npre {\n  overflow: auto;\n}\n\ncode,\nkbd,\npre,\nsamp {\n  font-family: monospace, monospace;\n  font-size: 1em;\n}\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n  margin: 0;\n  font: inherit;\n  color: inherit;\n}\n\nbutton {\n  overflow: visible;\n}\n\nbutton,\nselect {\n  text-transform: none;\n}\n\nbutton,\nhtml input[type=\"button\"],\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n  -webkit-appearance: button;\n  cursor: pointer;\n}\n\nbutton[disabled],\nhtml input[disabled] {\n  cursor: default;\n}\n\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n  padding: 0;\n  border: 0;\n}\n\ninput {\n  line-height: normal;\n}\n\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n  -webkit-box-sizing: border-box;\n     -moz-box-sizing: border-box;\n          box-sizing: border-box;\n  padding: 0;\n}\n\ninput[type=\"number\"]::-webkit-inner-spin-button,\ninput[type=\"number\"]::-webkit-outer-spin-button {\n  height: auto;\n}\n\ninput[type=\"search\"] {\n  -webkit-box-sizing: content-box;\n     -moz-box-sizing: content-box;\n          box-sizing: content-box;\n  -webkit-appearance: textfield;\n}\n\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n  -webkit-appearance: none;\n}\n\nfieldset {\n  padding: .35em .625em .75em;\n  margin: 0 2px;\n  border: 1px solid #c0c0c0;\n}\n\nlegend {\n  padding: 0;\n  border: 0;\n}\n\ntextarea {\n  overflow: auto;\n}\n\noptgroup {\n  font-weight: bold;\n}\n\ntable {\n  border-spacing: 0;\n  border-collapse: collapse;\n}\n\ntd,\nth {\n  padding: 0;\n}\n\n* {\n  -webkit-box-sizing: border-box;\n     -moz-box-sizing: border-box;\n          box-sizing: border-box;\n}\n\nbody {\n  position: fixed;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  font-family: \"Helvetica Neue\", Helvetica, sans-serif;\n  font-size: 17px;\n  line-height: 21px;\n  color: #000;\n  background-color: #fff;\n}\n\na {\n  color: #428bca;\n  text-decoration: none;\n\n  -webkit-tap-highlight-color: transparent;\n}\n\na:active {\n  color: #3071a9;\n}\n\n.content {\n  position: absolute;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  overflow: auto;\n  -webkit-overflow-scrolling: touch;\n  background-color: #fff;\n}\n\n.content > * {\n  -webkit-transform: translateZ(0);\n      -ms-transform: translateZ(0);\n          transform: translateZ(0);\n}\n\n.bar-nav ~ .content {\n  padding-top: 44px;\n}\n\n.bar-header-secondary ~ .content {\n  padding-top: 88px;\n}\n\n.bar-footer ~ .content {\n  padding-bottom: 44px;\n}\n\n.bar-footer-secondary ~ .content {\n  padding-bottom: 88px;\n}\n\n.bar-tab ~ .content {\n  padding-bottom: 50px;\n}\n\n.bar-footer-secondary-tab ~ .content {\n  padding-bottom: 94px;\n}\n\n.content-padded {\n  margin: 10px;\n}\n\n.text-center {\n  text-align: center;\n}\n\n.pull-left {\n  float: left;\n}\n\n.pull-right {\n  float: right;\n}\n\n.clearfix:before, .clearfix:after {\n  display: table;\n  content: \" \";\n}\n\n.clearfix:after {\n  clear: both;\n}\n\nh1, h2, h3, h4, h5, h6 {\n  margin-top: 0;\n  margin-bottom: 10px;\n  line-height: 1;\n}\n\nh1, .h1 {\n  font-size: 36px;\n}\n\nh2, .h2 {\n  font-size: 30px;\n}\n\nh3, .h3 {\n  font-size: 24px;\n}\n\nh4, .h4 {\n  font-size: 18px;\n}\n\nh5, .h5 {\n  margin-top: 20px;\n  font-size: 14px;\n}\n\nh6, .h6 {\n  margin-top: 20px;\n  font-size: 12px;\n}\n\np {\n  margin-top: 0;\n  margin-bottom: 10px;\n  font-size: 14px;\n  color: #777;\n}\n\n.btn {\n  position: relative;\n  display: inline-block;\n  padding: 6px 8px 7px;\n  margin-bottom: 0;\n  font-size: 12px;\n  font-weight: 400;\n  line-height: 1;\n  color: #333;\n  text-align: center;\n  white-space: nowrap;\n  vertical-align: top;\n  cursor: pointer;\n  background-color: #fff;\n  border: 1px solid #ccc;\n  border-radius: 3px;\n}\n\n.btn:active, .btn.active {\n  color: inherit;\n  background-color: #ccc;\n}\n\n.btn:disabled, .btn.disabled {\n  opacity: .6;\n}\n\n.btn-primary {\n  color: #fff;\n  background-color: #428bca;\n  border: 1px solid #428bca;\n}\n\n.btn-primary:active, .btn-primary.active {\n  color: #fff;\n  background-color: #3071a9;\n  border: 1px solid #3071a9;\n}\n\n.btn-positive {\n  color: #fff;\n  background-color: #5cb85c;\n  border: 1px solid #5cb85c;\n}\n\n.btn-positive:active, .btn-positive.active {\n  color: #fff;\n  background-color: #449d44;\n  border: 1px solid #449d44;\n}\n\n.btn-negative {\n  color: #fff;\n  background-color: #d9534f;\n  border: 1px solid #d9534f;\n}\n\n.btn-negative:active, .btn-negative.active {\n  color: #fff;\n  background-color: #c9302c;\n  border: 1px solid #c9302c;\n}\n\n.btn-outlined {\n  background-color: transparent;\n}\n\n.btn-outlined.btn-primary {\n  color: #428bca;\n}\n\n.btn-outlined.btn-positive {\n  color: #5cb85c;\n}\n\n.btn-outlined.btn-negative {\n  color: #d9534f;\n}\n\n.btn-outlined.btn-primary:active, .btn-outlined.btn-positive:active, .btn-outlined.btn-negative:active {\n  color: #fff;\n}\n\n.btn-link {\n  padding-top: 6px;\n  padding-bottom: 6px;\n  color: #428bca;\n  background-color: transparent;\n  border: 0;\n}\n\n.btn-link:active, .btn-link.active {\n  color: #3071a9;\n  background-color: transparent;\n}\n\n.btn-block {\n  display: block;\n  width: 100%;\n  padding: 15px 0;\n  margin-bottom: 10px;\n  font-size: 18px;\n}\n\ninput[type=\"submit\"],\ninput[type=\"reset\"],\ninput[type=\"button\"] {\n  width: 100%;\n}\n\n.btn .badge {\n  margin: -2px -4px -2px 4px;\n  font-size: 12px;\n  background-color: rgba(0, 0, 0, .15);\n}\n\n.btn .badge-inverted,\n.btn:active .badge-inverted {\n  background-color: transparent;\n}\n\n.btn-primary:active .badge-inverted,\n.btn-positive:active .badge-inverted,\n.btn-negative:active .badge-inverted {\n  color: #fff;\n}\n\n.btn-block .badge {\n  position: absolute;\n  right: 0;\n  margin-right: 10px;\n}\n\n.btn .icon {\n  font-size: inherit;\n}\n\n.bar {\n  position: fixed;\n  right: 0;\n  left: 0;\n  z-index: 10;\n  height: 44px;\n  padding-right: 10px;\n  padding-left: 10px;\n  background-color: #fff;\n  border-bottom: 1px solid #ddd;\n\n  -webkit-backface-visibility: hidden;\n          backface-visibility: hidden;\n}\n\n.bar-header-secondary {\n  top: 44px;\n}\n\n.bar-footer {\n  bottom: 0;\n}\n\n.bar-footer-secondary {\n  bottom: 44px;\n}\n\n.bar-footer-secondary-tab {\n  bottom: 50px;\n}\n\n.bar-footer,\n.bar-footer-secondary,\n.bar-footer-secondary-tab {\n  border-top: 1px solid #ddd;\n  border-bottom: 0;\n}\n\n.bar-nav {\n  top: 0;\n}\n\n.title {\n  position: absolute;\n  display: block;\n  width: 100%;\n  padding: 0;\n  margin: 0 -10px;\n  font-size: 17px;\n  font-weight: 500;\n  line-height: 44px;\n  color: #000;\n  text-align: center;\n  white-space: nowrap;\n}\n\n.title a {\n  color: inherit;\n}\n\n.bar-tab {\n  bottom: 0;\n  display: table;\n  width: 100%;\n  height: 50px;\n  padding: 0;\n  table-layout: fixed;\n  border-top: 1px solid #ddd;\n  border-bottom: 0;\n}\n\n.bar-tab .tab-item {\n  position: relative;\n  display: table-cell;\n  width: 1%;\n  height: 50px;\n  color: #929292;\n  text-align: center;\n  vertical-align: middle;\n}\n\n.bar-tab .tab-item.active, .bar-tab .tab-item:active {\n  color: #428bca;\n}\n\n.bar-tab .tab-item .badge {\n  position: absolute;\n  top: 3px;\n  left: 50%;\n  vertical-align: top;\n}\n\n.bar-tab .tab-item .icon {\n  top: 3px;\n  width: 24px;\n  height: 24px;\n  padding-top: 0;\n  padding-bottom: 0;\n}\n\n.bar-tab .tab-item .icon ~ .tab-label {\n  display: block;\n  font-size: 11px;\n}\n\n.bar .btn {\n  position: relative;\n  top: 7px;\n  z-index: 20;\n  padding: 6px 12px 7px;\n  margin-top: 0;\n  font-weight: 400;\n}\n\n.bar .btn.pull-right {\n  margin-left: 10px;\n}\n\n.bar .btn.pull-left {\n  margin-right: 10px;\n}\n\n.bar .btn-link {\n  top: 0;\n  padding: 0;\n  font-size: 16px;\n  line-height: 44px;\n  color: #428bca;\n  border: 0;\n}\n\n.bar .btn-link:active, .bar .btn-link.active {\n  color: #3071a9;\n}\n\n.bar .btn-block {\n  top: 6px;\n  padding: 7px 0;\n  margin-bottom: 0;\n  font-size: 16px;\n}\n\n.bar .btn-nav.pull-left {\n  margin-left: -5px;\n}\n\n.bar .btn-nav.pull-left .icon-left-nav {\n  margin-right: -3px;\n}\n\n.bar .btn-nav.pull-right {\n  margin-right: -5px;\n}\n\n.bar .btn-nav.pull-right .icon-right-nav {\n  margin-left: -3px;\n}\n\n.bar .icon {\n  position: relative;\n  z-index: 20;\n  padding-top: 10px;\n  padding-bottom: 10px;\n  font-size: 24px;\n}\n\n.bar .btn .icon {\n  top: 3px;\n  padding: 0;\n}\n\n.bar .title .icon {\n  padding: 0;\n}\n\n.bar .title .icon.icon-caret {\n  top: 4px;\n  margin-left: -5px;\n}\n\n.bar input[type=\"search\"] {\n  height: 29px;\n  margin: 6px 0;\n}\n\n.bar .segmented-control {\n  top: 7px;\n  margin: 0 auto;\n}\n\n.badge {\n  display: inline-block;\n  padding: 2px 9px 3px;\n  font-size: 12px;\n  line-height: 1;\n  color: #333;\n  background-color: rgba(0, 0, 0, .15);\n  border-radius: 100px;\n}\n\n.badge.badge-inverted {\n  padding: 0 5px 0 0;\n  background-color: transparent;\n}\n\n.badge-primary {\n  color: #fff;\n  background-color: #428bca;\n}\n\n.badge-primary.badge-inverted {\n  color: #428bca;\n}\n\n.badge-positive {\n  color: #fff;\n  background-color: #5cb85c;\n}\n\n.badge-positive.badge-inverted {\n  color: #5cb85c;\n}\n\n.badge-negative {\n  color: #fff;\n  background-color: #d9534f;\n}\n\n.badge-negative.badge-inverted {\n  color: #d9534f;\n}\n\n.card {\n  margin: 10px;\n  overflow: hidden;\n  background-color: #fff;\n  border: 1px solid #ddd;\n  border-radius: 6px;\n}\n\n.card .table-view {\n  margin-bottom: 0;\n  border-top: 0;\n  border-bottom: 0;\n}\n\n.card .table-view .table-view-divider:first-child {\n  top: 0;\n  border-top-left-radius: 6px;\n  border-top-right-radius: 6px;\n}\n\n.card .table-view .table-view-divider:last-child {\n  border-bottom-right-radius: 6px;\n  border-bottom-left-radius: 6px;\n}\n\n.card .table-view-cell:last-child {\n  border-bottom: 0;\n}\n\n.table-view {\n  padding-left: 0;\n  margin-top: 0;\n  margin-bottom: 15px;\n  list-style: none;\n  background-color: #fff;\n  border-top: 1px solid #ddd;\n  border-bottom: 1px solid #ddd;\n}\n\n.table-view-cell {\n  position: relative;\n  padding: 11px 65px 11px 15px;\n  overflow: hidden;\n  border-bottom: 1px solid #ddd;\n}\n\n.table-view-cell:last-child {\n  border-bottom: 0;\n}\n\n.table-view-cell > a:not(.btn) {\n  position: relative;\n  display: block;\n  padding: inherit;\n  margin: -11px -65px -11px -15px;\n  overflow: hidden;\n  color: inherit;\n}\n\n.table-view-cell > a:not(.btn):active {\n  background-color: #eee;\n}\n\n.table-view-cell p {\n  margin-bottom: 0;\n}\n\n.table-view-divider {\n  padding-top: 6px;\n  padding-bottom: 6px;\n  padding-left: 15px;\n  margin-top: -1px;\n  margin-left: 0;\n  font-weight: 500;\n  color: #999;\n  background-color: #fafafa;\n  border-top: 1px solid #ddd;\n  border-bottom: 1px solid #ddd;\n}\n\n.table-view .media,\n.table-view .media-body {\n  overflow: hidden;\n}\n\n.table-view .media-object.pull-left {\n  margin-right: 10px;\n}\n\n.table-view .media-object.pull-right {\n  margin-left: 10px;\n}\n\n.table-view-cell > .btn,\n.table-view-cell > .badge,\n.table-view-cell > .toggle,\n.table-view-cell > a > .btn,\n.table-view-cell > a > .badge,\n.table-view-cell > a > .toggle {\n  position: absolute;\n  top: 50%;\n  right: 15px;\n  -webkit-transform: translateY(-50%);\n      -ms-transform: translateY(-50%);\n       -o-transform: translateY(-50%);\n          transform: translateY(-50%);\n}\n\n.table-view-cell .navigate-left > .btn,\n.table-view-cell .navigate-left > .badge,\n.table-view-cell .navigate-left > .toggle,\n.table-view-cell .navigate-right > .btn,\n.table-view-cell .navigate-right > .badge,\n.table-view-cell .navigate-right > .toggle,\n.table-view-cell .push-left > .btn,\n.table-view-cell .push-left > .badge,\n.table-view-cell .push-left > .toggle,\n.table-view-cell .push-right > .btn,\n.table-view-cell .push-right > .badge,\n.table-view-cell .push-right > .toggle,\n.table-view-cell > a .navigate-left > .btn,\n.table-view-cell > a .navigate-left > .badge,\n.table-view-cell > a .navigate-left > .toggle,\n.table-view-cell > a .navigate-right > .btn,\n.table-view-cell > a .navigate-right > .badge,\n.table-view-cell > a .navigate-right > .toggle,\n.table-view-cell > a .push-left > .btn,\n.table-view-cell > a .push-left > .badge,\n.table-view-cell > a .push-left > .toggle,\n.table-view-cell > a .push-right > .btn,\n.table-view-cell > a .push-right > .badge,\n.table-view-cell > a .push-right > .toggle {\n  right: 35px;\n}\n\n.content > .table-view:first-child {\n  margin-top: 15px;\n}\n\ninput,\ntextarea,\nbutton,\nselect {\n  font-family: \"Helvetica Neue\", Helvetica, sans-serif;\n  font-size: 17px;\n}\n\nselect,\ntextarea,\ninput[type=\"text\"],\ninput[type=\"search\"],\ninput[type=\"password\"],\ninput[type=\"datetime\"],\ninput[type=\"datetime-local\"],\ninput[type=\"date\"],\ninput[type=\"month\"],\ninput[type=\"time\"],\ninput[type=\"week\"],\ninput[type=\"number\"],\ninput[type=\"email\"],\ninput[type=\"url\"],\ninput[type=\"tel\"],\ninput[type=\"color\"] {\n  width: 100%;\n  height: 35px;\n  -webkit-appearance: none;\n  padding: 0 15px;\n  margin-bottom: 15px;\n  line-height: 21px;\n  background-color: #fff;\n  border: 1px solid #ddd;\n  border-radius: 3px;\n  outline: none;\n}\n\ninput[type=\"search\"] {\n  -webkit-box-sizing: border-box;\n     -moz-box-sizing: border-box;\n          box-sizing: border-box;\n  padding: 0 10px;\n  font-size: 16px;\n  border-radius: 20px;\n}\n\ninput[type=\"search\"]:focus {\n  text-align: left;\n}\n\ntextarea {\n  height: auto;\n}\n\nselect {\n  height: auto;\n  font-size: 14px;\n  background-color: #f8f8f8;\n  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .1);\n          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .1);\n}\n\n.input-group {\n  background-color: #fff;\n}\n\n.input-group input,\n.input-group textarea {\n  margin-bottom: 0;\n  background-color: transparent;\n  border-top: 0;\n  border-right: 0;\n  border-left: 0;\n  border-radius: 0;\n  -webkit-box-shadow: none;\n          box-shadow: none;\n}\n\n.input-row {\n  height: 35px;\n  overflow: hidden;\n  border-bottom: 1px solid #ddd;\n}\n\n.input-row label {\n  float: left;\n  width: 35%;\n  padding: 8px 15px;\n  font-family: \"Helvetica Neue\", Helvetica, sans-serif;\n  line-height: 1.1;\n}\n\n.input-row input {\n  float: right;\n  width: 65%;\n  padding-left: 0;\n  margin-bottom: 0;\n  border: 0;\n}\n\n.segmented-control {\n  position: relative;\n  display: table;\n  overflow: hidden;\n  font-size: 12px;\n  font-weight: 400;\n  background-color: #fff;\n  border: 1px solid #ccc;\n  border-radius: 3px;\n}\n\n.segmented-control .control-item {\n  display: table-cell;\n  width: 1%;\n  padding-top: 6px;\n  padding-bottom: 7px;\n  overflow: hidden;\n  line-height: 1;\n  color: #333;\n  text-align: center;\n  text-overflow: ellipsis;\n  white-space: nowrap;\n  border-left: 1px solid #ccc;\n}\n\n.segmented-control .control-item:first-child {\n  border-left-width: 0;\n}\n\n.segmented-control .control-item:active {\n  background-color: #eee;\n}\n\n.segmented-control .control-item.active {\n  background-color: #ccc;\n}\n\n.segmented-control-primary {\n  border-color: #428bca;\n}\n\n.segmented-control-primary .control-item {\n  color: #428bca;\n  border-color: inherit;\n}\n\n.segmented-control-primary .control-item:active {\n  background-color: #cde1f1;\n}\n\n.segmented-control-primary .control-item.active {\n  color: #fff;\n  background-color: #428bca;\n}\n\n.segmented-control-positive {\n  border-color: #5cb85c;\n}\n\n.segmented-control-positive .control-item {\n  color: #5cb85c;\n  border-color: inherit;\n}\n\n.segmented-control-positive .control-item:active {\n  background-color: #d8eed8;\n}\n\n.segmented-control-positive .control-item.active {\n  color: #fff;\n  background-color: #5cb85c;\n}\n\n.segmented-control-negative {\n  border-color: #d9534f;\n}\n\n.segmented-control-negative .control-item {\n  color: #d9534f;\n  border-color: inherit;\n}\n\n.segmented-control-negative .control-item:active {\n  background-color: #f9e2e2;\n}\n\n.segmented-control-negative .control-item.active {\n  color: #fff;\n  background-color: #d9534f;\n}\n\n.control-content {\n  display: none;\n}\n\n.control-content.active {\n  display: block;\n}\n\n.popover {\n  position: fixed;\n  top: 55px;\n  left: 50%;\n  z-index: 20;\n  display: none;\n  width: 280px;\n  margin-left: -140px;\n  background-color: #fff;\n  border-radius: 6px;\n  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, .1);\n          box-shadow: 0 0 15px rgba(0, 0, 0, .1);\n  opacity: 0;\n  -webkit-transition: all .25s linear;\n       -o-transition: all .25s linear;\n          transition: all .25s linear;\n  -webkit-transform: translate3d(0, -15px, 0);\n      -ms-transform: translate3d(0, -15px, 0);\n          transform: translate3d(0, -15px, 0);\n}\n\n.popover:before {\n  position: absolute;\n  top: -15px;\n  left: 50%;\n  width: 0;\n  height: 0;\n  margin-left: -15px;\n  content: '';\n  border-right: 15px solid transparent;\n  border-bottom: 15px solid #fff;\n  border-left: 15px solid transparent;\n}\n\n.popover.visible {\n  opacity: 1;\n  -webkit-transform: translate3d(0, 0, 0);\n      -ms-transform: translate3d(0, 0, 0);\n          transform: translate3d(0, 0, 0);\n}\n\n.popover .bar ~ .table-view {\n  padding-top: 44px;\n}\n\n.backdrop {\n  position: fixed;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  z-index: 15;\n  background-color: rgba(0, 0, 0, .3);\n}\n\n.popover .btn-block {\n  margin-bottom: 5px;\n}\n\n.popover .btn-block:last-child {\n  margin-bottom: 0;\n}\n\n.popover .bar-nav {\n  border-bottom: 1px solid #ddd;\n  border-top-left-radius: 12px;\n  border-top-right-radius: 12px;\n  -webkit-box-shadow: none;\n          box-shadow: none;\n}\n\n.popover .table-view {\n  max-height: 300px;\n  margin-bottom: 0;\n  overflow: auto;\n  -webkit-overflow-scrolling: touch;\n  background-color: #fff;\n  border-top: 0;\n  border-bottom: 0;\n  border-radius: 6px;\n}\n\n.modal {\n  position: fixed;\n  top: 0;\n  z-index: 11;\n  width: 100%;\n  min-height: 100%;\n  overflow: hidden;\n  background-color: #fff;\n  opacity: 0;\n  -webkit-transition: -webkit-transform .25s, opacity 1ms .25s;\n       -o-transition:      -o-transform .25s, opacity 1ms .25s;\n          transition:         transform .25s, opacity 1ms .25s;\n  -webkit-transform: translate3d(0, 100%, 0);\n      -ms-transform: translate3d(0, 100%, 0);\n          transform: translate3d(0, 100%, 0);\n}\n\n.modal.active {\n  height: 100%;\n  opacity: 1;\n  -webkit-transition: -webkit-transform .25s;\n       -o-transition:      -o-transform .25s;\n          transition:         transform .25s;\n  -webkit-transform: translate3d(0, 0, 0);\n      -ms-transform: translate3d(0, 0, 0);\n          transform: translate3d(0, 0, 0);\n}\n\n.slider {\n  width: 100%;\n}\n\n.slider {\n  overflow: hidden;\n  background-color: #000;\n}\n\n.slider .slide-group {\n  position: relative;\n  font-size: 0;\n  white-space: nowrap;\n  -webkit-transition: all 0s linear;\n       -o-transition: all 0s linear;\n          transition: all 0s linear;\n}\n\n.slider .slide-group .slide {\n  display: inline-block;\n  width: 100%;\n  height: 100%;\n  font-size: 14px;\n  vertical-align: top;\n}\n\n.toggle {\n  position: relative;\n  display: block;\n  width: 74px;\n  height: 30px;\n  background-color: #fff;\n  border: 2px solid #ddd;\n  border-radius: 20px;\n  -webkit-transition-duration: .2s;\n       -o-transition-duration: .2s;\n          transition-duration: .2s;\n  -webkit-transition-property: background-color, border;\n       -o-transition-property: background-color, border;\n          transition-property: background-color, border;\n}\n\n.toggle .toggle-handle {\n  position: absolute;\n  top: -1px;\n  left: -1px;\n  z-index: 2;\n  width: 28px;\n  height: 28px;\n  background-color: #fff;\n  border: 1px solid #ddd;\n  border-radius: 100px;\n  -webkit-transition-duration: .2s;\n       -o-transition-duration: .2s;\n          transition-duration: .2s;\n  -webkit-transition-property: -webkit-transform, border, width;\n       -o-transition-property:      -o-transform, border, width;\n          transition-property:         transform, border, width;\n}\n\n.toggle:before {\n  position: absolute;\n  top: 3px;\n  right: 11px;\n  font-size: 13px;\n  color: #999;\n  text-transform: uppercase;\n  content: \"Off\";\n}\n\n.toggle.active {\n  background-color: #5cb85c;\n  border: 2px solid #5cb85c;\n}\n\n.toggle.active .toggle-handle {\n  border-color: #5cb85c;\n  -webkit-transform: translate3d(44px, 0, 0);\n      -ms-transform: translate3d(44px, 0, 0);\n          transform: translate3d(44px, 0, 0);\n}\n\n.toggle.active:before {\n  right: auto;\n  left: 15px;\n  color: #fff;\n  content: \"On\";\n}\n\n.toggle input[type=\"checkbox\"] {\n  display: none;\n}\n\n.content.fade {\n  left: 0;\n  opacity: 0;\n  -webkit-transition: opacity .4s;\n       -o-transition: opacity .4s;\n          transition: opacity .4s;\n}\n\n.content.fade.in {\n  opacity: 1;\n}\n\n.content.sliding {\n  z-index: 2;\n  -webkit-transition: -webkit-transform .4s;\n       -o-transition:      -o-transform .4s;\n          transition:         transform .4s;\n  -webkit-transform: translate3d(0, 0, 0);\n      -ms-transform: translate3d(0, 0, 0);\n          transform: translate3d(0, 0, 0);\n}\n\n.content.sliding.left {\n  z-index: 1;\n  -webkit-transform: translate3d(-100%, 0, 0);\n      -ms-transform: translate3d(-100%, 0, 0);\n          transform: translate3d(-100%, 0, 0);\n}\n\n.content.sliding.right {\n  z-index: 3;\n  -webkit-transform: translate3d(100%, 0, 0);\n      -ms-transform: translate3d(100%, 0, 0);\n          transform: translate3d(100%, 0, 0);\n}\n\n.navigate-left:after,\n.navigate-right:after,\n.push-left:after,\n.push-right:after {\n  position: absolute;\n  top: 50%;\n  display: inline-block;\n  font-family: Ratchicons;\n  font-size: inherit;\n  line-height: 1;\n  color: #bbb;\n  text-decoration: none;\n  -webkit-transform: translateY(-50%);\n      -ms-transform: translateY(-50%);\n       -o-transform: translateY(-50%);\n          transform: translateY(-50%);\n\n  -webkit-font-smoothing: antialiased;\n}\n\n.navigate-left:after,\n.push-left:after {\n  left: 15px;\n  content: '\\e822';\n}\n\n.navigate-right:after,\n.push-right:after {\n  right: 15px;\n  content: '\\e826';\n}\n\n@font-face {\n  font-family: Ratchicons;\n  font-style: normal;\n  font-weight: normal;\n\n  src: url(\"../fonts/ratchicons.eot\");\n  src: url(\"../fonts/ratchicons.eot?#iefix\") format(\"embedded-opentype\"), url(\"../fonts/ratchicons.woff\") format(\"woff\"), url(\"../fonts/ratchicons.ttf\") format(\"truetype\"), url(\"../fonts/ratchicons.svg#svgFontName\") format(\"svg\");\n}\n\n.icon {\n  display: inline-block;\n  font-family: Ratchicons;\n  font-size: 24px;\n  line-height: 1;\n  text-decoration: none;\n\n  -webkit-font-smoothing: antialiased;\n}\n\n.icon-back:before {\n  content: '\\e80a';\n}\n\n.icon-bars:before {\n  content: '\\e80e';\n}\n\n.icon-caret:before {\n  content: '\\e80f';\n}\n\n.icon-check:before {\n  content: '\\e810';\n}\n\n.icon-close:before {\n  content: '\\e811';\n}\n\n.icon-code:before {\n  content: '\\e812';\n}\n\n.icon-compose:before {\n  content: '\\e813';\n}\n\n.icon-download:before {\n  content: '\\e815';\n}\n\n.icon-edit:before {\n  content: '\\e829';\n}\n\n.icon-forward:before {\n  content: '\\e82a';\n}\n\n.icon-gear:before {\n  content: '\\e821';\n}\n\n.icon-home:before {\n  content: '\\e82b';\n}\n\n.icon-info:before {\n  content: '\\e82c';\n}\n\n.icon-list:before {\n  content: '\\e823';\n}\n\n.icon-more-vertical:before {\n  content: '\\e82e';\n}\n\n.icon-more:before {\n  content: '\\e82f';\n}\n\n.icon-pages:before {\n  content: '\\e824';\n}\n\n.icon-pause:before {\n  content: '\\e830';\n}\n\n.icon-person:before {\n  content: '\\e832';\n}\n\n.icon-play:before {\n  content: '\\e816';\n}\n\n.icon-plus:before {\n  content: '\\e817';\n}\n\n.icon-refresh:before {\n  content: '\\e825';\n}\n\n.icon-search:before {\n  content: '\\e819';\n}\n\n.icon-share:before {\n  content: '\\e81a';\n}\n\n.icon-sound:before {\n  content: '\\e827';\n}\n\n.icon-sound2:before {\n  content: '\\e828';\n}\n\n.icon-sound3:before {\n  content: '\\e80b';\n}\n\n.icon-sound4:before {\n  content: '\\e80c';\n}\n\n.icon-star-filled:before {\n  content: '\\e81b';\n}\n\n.icon-star:before {\n  content: '\\e81c';\n}\n\n.icon-stop:before {\n  content: '\\e81d';\n}\n\n.icon-trash:before {\n  content: '\\e81e';\n}\n\n.icon-up-nav:before {\n  content: '\\e81f';\n}\n\n.icon-up:before {\n  content: '\\e80d';\n}\n\n.icon-right-nav:before {\n  content: '\\e818';\n}\n\n.icon-right:before {\n  content: '\\e826';\n}\n\n.icon-down-nav:before {\n  content: '\\e814';\n}\n\n.icon-down:before {\n  content: '\\e820';\n}\n\n.icon-left-nav:before {\n  content: '\\e82d';\n}\n\n.icon-left:before {\n  content: '\\e822';\n}\n"
  },
  {
    "path": "docs/dist/js/ratchet.js",
    "content": "/*!\n * =====================================================\n * Ratchet v2.0.2 (http://goratchet.com)\n * Copyright 2016 Connor Sears\n * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)\n *\n * v2.0.2 designed by @connors.\n * =====================================================\n */\n/* ========================================================================\n * Ratchet: common.js v2.0.2\n * http://goratchet.com/\n * ========================================================================\n * Copyright 2015 Connor Sears\n * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)\n * ======================================================================== */\n\n!(function () {\n  'use strict';\n\n  // Compatible With CustomEvent\n  if (!window.CustomEvent) {\n    window.CustomEvent = function (type, config) {\n      var e = document.createEvent('CustomEvent');\n      e.initCustomEvent(type, config.bubbles, config.cancelable, config.detail);\n      return e;\n    };\n  }\n\n  // Create Ratchet namespace\n  if (typeof window.RATCHET === 'undefined') {\n    window.RATCHET = {};\n  }\n\n  // Original script from http://davidwalsh.name/vendor-prefix\n  window.RATCHET.getBrowserCapabilities = (function () {\n    var styles = window.getComputedStyle(document.documentElement, '');\n    var pre = (Array.prototype.slice\n        .call(styles)\n        .join('')\n        .match(/-(moz|webkit|ms)-/) || (styles.OLink === '' && ['', 'o'])\n      )[1];\n    return {\n      prefix: '-' + pre + '-',\n      transform: pre[0].toUpperCase() + pre.substr(1) + 'Transform'\n    };\n  })();\n\n  window.RATCHET.getTransitionEnd = (function () {\n    var el = document.createElement('ratchet');\n    var transEndEventNames = {\n      WebkitTransition : 'webkitTransitionEnd',\n      MozTransition : 'transitionend',\n      OTransition : 'oTransitionEnd otransitionend',\n      transition : 'transitionend'\n    };\n\n    for (var name in transEndEventNames) {\n      if (el.style[name] !== undefined) {\n        return transEndEventNames[name];\n      }\n    }\n\n    return transEndEventNames.transition;\n  })();\n}());\n\n/* ========================================================================\n * Ratchet: modals.js v2.0.2\n * http://goratchet.com/components#modals\n * ========================================================================\n * Copyright 2015 Connor Sears\n * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)\n * ======================================================================== */\n\n!(function () {\n  'use strict';\n\n  var findModals = function (target) {\n    var i;\n    var modals = document.querySelectorAll('a');\n\n    for (; target && target !== document; target = target.parentNode) {\n      for (i = modals.length; i--;) {\n        if (modals[i] === target) {\n          return target;\n        }\n      }\n    }\n  };\n\n  var getModal = function (event) {\n    var modalToggle = findModals(event.target);\n    if (modalToggle && modalToggle.hash) {\n      return document.querySelector(modalToggle.hash);\n    }\n  };\n\n  window.addEventListener('touchend', function (event) {\n    var modal = getModal(event);\n    if (modal && modal.classList.contains('modal')) {\n      var eventToDispatch = null;\n      if (modal.classList.contains('active')) {\n        eventToDispatch = new CustomEvent('modalClose', {\n          bubbles: true,\n          cancelable: true\n        });\n      }\n      else {\n        eventToDispatch = new CustomEvent('modalOpen', {\n          bubbles: true,\n          cancelable: true\n        });\n      }\n      modal.dispatchEvent(eventToDispatch);\n      modal.classList.toggle('active');\n      event.preventDefault(); // prevents rewriting url (apps can still use hash values in url)\n    }\n  });\n}());\n\n/* ========================================================================\n * Ratchet: popovers.js v2.0.2\n * http://goratchet.com/components#popovers\n * ========================================================================\n * Copyright 2015 Connor Sears\n * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)\n * ======================================================================== */\n\n!(function () {\n  'use strict';\n\n  var popover;\n\n  var findPopovers = function (target) {\n    var i;\n    var popovers = document.querySelectorAll('a');\n\n    for (; target && target !== document; target = target.parentNode) {\n      for (i = popovers.length; i--;) {\n        if (popovers[i] === target) {\n          return target;\n        }\n      }\n    }\n  };\n\n  var onPopoverHidden = function () {\n    popover.style.display = 'none';\n    popover.removeEventListener(window.RATCHET.getTransitionEnd, onPopoverHidden);\n  };\n\n  var backdrop = (function () {\n    var element = document.createElement('div');\n\n    element.classList.add('backdrop');\n\n    element.addEventListener('touchend', function () {\n      popover.addEventListener(window.RATCHET.getTransitionEnd, onPopoverHidden);\n      popover.classList.remove('visible');\n      popover.parentNode.removeChild(backdrop);\n    });\n\n    return element;\n  }());\n\n  var getPopover = function (e) {\n    var anchor = findPopovers(e.target);\n\n    if (!anchor || !anchor.hash || (anchor.hash.indexOf('/') > 0)) {\n      return;\n    }\n\n    try {\n      popover = document.querySelector(anchor.hash);\n    } catch (error) {\n      popover = null;\n    }\n\n    if (popover === null) {\n      return;\n    }\n\n    if (!popover || !popover.classList.contains('popover')) {\n      return;\n    }\n\n    return popover;\n  };\n\n  var showHidePopover = function (e) {\n    var popover = getPopover(e);\n\n    if (!popover) {\n      return;\n    }\n\n    popover.style.display = 'block';\n    popover.offsetHeight;\n    popover.classList.add('visible');\n\n    popover.parentNode.appendChild(backdrop);\n  };\n\n  window.addEventListener('touchend', showHidePopover);\n\n}());\n\n/* ========================================================================\n * Ratchet: push.js v2.0.2\n * http://goratchet.com/components#push\n * ========================================================================\n * inspired by @defunkt's jquery.pjax.js\n * Copyright 2015 Connor Sears\n * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)\n * ======================================================================== */\n\n/* global _gaq: true */\n\n!(function () {\n  'use strict';\n\n  var noop = function () {};\n\n\n  // Pushstate caching\n  // ==================\n\n  var isScrolling;\n  var maxCacheLength = 20;\n  var cacheMapping   = sessionStorage;\n  var domCache       = {};\n  // Change these to unquoted camelcase in the next major version bump\n  var transitionMap  = {\n    'slide-in'  : 'slide-out',\n    'slide-out' : 'slide-in',\n    fade        : 'fade'\n  };\n\n  var bars = {\n    bartab             : '.bar-tab',\n    barnav             : '.bar-nav',\n    barfooter          : '.bar-footer',\n    barheadersecondary : '.bar-header-secondary'\n  };\n\n  var cacheReplace = function (data, updates) {\n    PUSH.id = data.id;\n    if (updates) {\n      data = getCached(data.id);\n    }\n    cacheMapping[data.id] = JSON.stringify(data);\n    window.history.replaceState(data.id, data.title, data.url);\n  };\n\n  var cachePush = function () {\n    var id = PUSH.id;\n\n    var cacheForwardStack = JSON.parse(cacheMapping.cacheForwardStack || '[]');\n    var cacheBackStack    = JSON.parse(cacheMapping.cacheBackStack    || '[]');\n\n    cacheBackStack.push(id);\n\n    while (cacheForwardStack.length) {\n      delete cacheMapping[cacheForwardStack.shift()];\n    }\n    while (cacheBackStack.length > maxCacheLength) {\n      delete cacheMapping[cacheBackStack.shift()];\n    }\n\n    if (getCached(PUSH.id).url) {\n      window.history.pushState(null, '', getCached(PUSH.id).url);\n    }\n\n    cacheMapping.cacheForwardStack = JSON.stringify(cacheForwardStack);\n    cacheMapping.cacheBackStack    = JSON.stringify(cacheBackStack);\n  };\n\n  var cachePop = function (id, direction) {\n    var forward           = direction === 'forward';\n    var cacheForwardStack = JSON.parse(cacheMapping.cacheForwardStack || '[]');\n    var cacheBackStack    = JSON.parse(cacheMapping.cacheBackStack    || '[]');\n    var pushStack         = forward ? cacheBackStack    : cacheForwardStack;\n    var popStack          = forward ? cacheForwardStack : cacheBackStack;\n\n    if (PUSH.id) {\n      pushStack.push(PUSH.id);\n    }\n    popStack.pop();\n\n    cacheMapping.cacheForwardStack = JSON.stringify(cacheForwardStack);\n    cacheMapping.cacheBackStack    = JSON.stringify(cacheBackStack);\n  };\n\n  var getCached = function (id) {\n    return JSON.parse(cacheMapping[id] || null) || {};\n  };\n\n  var getTarget = function (e) {\n    var target = findTarget(e.target);\n\n    if (!target ||\n        e.which > 1 ||\n        e.metaKey ||\n        e.ctrlKey ||\n        isScrolling ||\n        location.protocol !== target.protocol ||\n        location.host     !== target.host ||\n        !target.hash && /#/.test(target.href) ||\n        target.hash && target.href.replace(target.hash, '') === location.href.replace(location.hash, '') ||\n        target.getAttribute('data-ignore') === 'push') { return; }\n\n    return target;\n  };\n\n\n  // Main event handlers (touchend, popstate)\n  // ==========================================\n\n  var touchend = function (e) {\n    var target = getTarget(e);\n\n    if (!target) {\n      return;\n    }\n\n    e.preventDefault();\n\n    PUSH({\n      url        : target.href,\n      hash       : target.hash,\n      timeout    : target.getAttribute('data-timeout'),\n      transition : target.getAttribute('data-transition')\n    });\n  };\n\n  var popstate = function (e) {\n    var key;\n    var barElement;\n    var activeObj;\n    var activeDom;\n    var direction;\n    var transition;\n    var transitionFrom;\n    var transitionFromObj;\n    var id = e.state;\n\n    if (!id || !cacheMapping[id]) {\n      return;\n    }\n\n    direction = PUSH.id < id ? 'forward' : 'back';\n\n    cachePop(id, direction);\n\n    activeObj = getCached(id);\n    activeDom = domCache[id];\n\n    if (activeObj.title) {\n      document.title = activeObj.title;\n    }\n\n    if (direction === 'back') {\n      transitionFrom    = JSON.parse(direction === 'back' ? cacheMapping.cacheForwardStack : cacheMapping.cacheBackStack);\n      transitionFromObj = getCached(transitionFrom[transitionFrom.length - 1]);\n    } else {\n      transitionFromObj = activeObj;\n    }\n\n    if (direction === 'back' && !transitionFromObj.id) {\n      return (PUSH.id = id);\n    }\n\n    transition = direction === 'back' ? transitionMap[transitionFromObj.transition] : transitionFromObj.transition;\n\n    if (!activeDom) {\n      return PUSH({\n        id         : activeObj.id,\n        url        : activeObj.url,\n        title      : activeObj.title,\n        timeout    : activeObj.timeout,\n        transition : transition,\n        ignorePush : true\n      });\n    }\n\n    if (transitionFromObj.transition) {\n      activeObj = extendWithDom(activeObj, '.content', activeDom.cloneNode(true));\n      for (key in bars) {\n        if (bars.hasOwnProperty(key)) {\n          barElement = document.querySelector(bars[key]);\n          if (activeObj[key]) {\n            swapContent(activeObj[key], barElement);\n          } else if (barElement) {\n            barElement.parentNode.removeChild(barElement);\n          }\n        }\n      }\n    }\n\n    swapContent(\n      (activeObj.contents || activeDom).cloneNode(true),\n      document.querySelector('.content'),\n      transition, function () {\n        triggerStateChange();\n      }\n    );\n\n    PUSH.id = id;\n\n    document.body.offsetHeight; // force reflow to prevent scroll\n  };\n\n\n  // Core PUSH functionality\n  // =======================\n\n  var PUSH = function (options) {\n    var key;\n    var xhr = PUSH.xhr;\n\n    options.container = options.container || options.transition ? document.querySelector('.content') : document.body;\n\n    var isFileProtocol = /^file:/.test(window.location.protocol);\n\n    for (key in bars) {\n      if (bars.hasOwnProperty(key)) {\n        options[key] = options[key] || document.querySelector(bars[key]);\n      }\n    }\n\n    if (xhr && xhr.readyState < 4) {\n      xhr.onreadystatechange = noop;\n      xhr.abort();\n    }\n\n    xhr = new XMLHttpRequest();\n    if (isFileProtocol) {\n      xhr.open('GET', options.url, false);\n    } else {\n      xhr.open('GET', options.url, true);\n      xhr.setRequestHeader('X-PUSH', 'true');\n\n      xhr.onreadystatechange = function () {\n        if (options._timeout) {\n          clearTimeout(options._timeout);\n        }\n        if (xhr.readyState === 4) {\n          if (xhr.status === 200) {\n            success(xhr, options);\n          } else {\n            failure(options.url);\n          }\n        }\n      };\n    }\n\n    if (!PUSH.id) {\n      cacheReplace({\n        id         : +new Date(),\n        url        : window.location.href,\n        title      : document.title,\n        timeout    : options.timeout,\n        transition : options.transition\n      });\n    }\n\n    cacheCurrentContent();\n\n    if (options.timeout) {\n      options._timeout = setTimeout(function () {  xhr.abort('timeout'); }, options.timeout);\n    }\n\n    xhr.send();\n\n    if (isFileProtocol) {\n      if (xhr.status === 0 || xhr.status === 200) {\n        success(xhr, options);\n      } else {\n        failure(options.url);\n      }\n    }\n\n    if (xhr.readyState && !options.ignorePush) {\n      cachePush();\n    }\n  };\n\n  function cacheCurrentContent () {\n    domCache[PUSH.id] = document.body.cloneNode(true);\n  }\n\n\n  // Main XHR handlers\n  // =================\n\n  var success = function (xhr, options) {\n    var key;\n    var barElement;\n    var data = parseXHR(xhr, options);\n\n    if (!data.contents) {\n      return locationReplace(options.url);\n    }\n\n    if (data.title) {\n      document.title = data.title;\n    }\n\n    if (options.transition) {\n      for (key in bars) {\n        if (bars.hasOwnProperty(key)) {\n          barElement = document.querySelector(bars[key]);\n          if (data[key]) {\n            swapContent(data[key], barElement);\n          } else if (barElement) {\n            barElement.parentNode.removeChild(barElement);\n          }\n        }\n      }\n    }\n\n    swapContent(data.contents, options.container, options.transition, function () {\n      cacheReplace({\n        id         : options.id || +new Date(),\n        url        : data.url,\n        title      : data.title,\n        timeout    : options.timeout,\n        transition : options.transition\n      }, options.id);\n      triggerStateChange();\n    });\n\n    if (!options.ignorePush && window._gaq) {\n      _gaq.push(['_trackPageview']); // google analytics\n    }\n    if (!options.hash) {\n      return;\n    }\n  };\n\n  var failure = function (url) {\n    throw new Error('Could not get: ' + url);\n  };\n\n\n  // PUSH helpers\n  // ============\n\n  var swapContent = function (swap, container, transition, complete) {\n    var enter;\n    var containerDirection;\n    var swapDirection;\n\n    if (!transition) {\n      if (container) {\n        container.innerHTML = swap.innerHTML;\n      } else if (swap.classList.contains('content')) {\n        document.body.appendChild(swap);\n      } else {\n        document.body.insertBefore(swap, document.querySelector('.content'));\n      }\n    } else {\n      enter = /in$/.test(transition);\n\n      if (transition === 'fade') {\n        container.classList.add('in');\n        container.classList.add('fade');\n        swap.classList.add('fade');\n      }\n\n      if (/slide/.test(transition)) {\n        swap.classList.add('sliding-in', enter ? 'right' : 'left');\n        swap.classList.add('sliding');\n        container.classList.add('sliding');\n      }\n\n      container.parentNode.insertBefore(swap, container);\n    }\n\n    if (!transition) {\n      if (complete) {\n        complete();\n      }\n    }\n\n    if (transition === 'fade') {\n      container.offsetWidth; // force reflow\n      container.classList.remove('in');\n      var fadeContainerEnd = function () {\n        container.removeEventListener(window.RATCHET.getTransitionEnd, fadeContainerEnd);\n        swap.classList.add('in');\n        swap.addEventListener(window.RATCHET.getTransitionEnd, fadeSwapEnd);\n      };\n      var fadeSwapEnd = function () {\n        swap.removeEventListener(window.RATCHET.getTransitionEnd, fadeSwapEnd);\n        container.parentNode.removeChild(container);\n        swap.classList.remove('fade');\n        swap.classList.remove('in');\n        if (complete) {\n          complete();\n        }\n      };\n      container.addEventListener(window.RATCHET.getTransitionEnd, fadeContainerEnd);\n\n    }\n\n    if (/slide/.test(transition)) {\n      var slideEnd = function () {\n        swap.removeEventListener(window.RATCHET.getTransitionEnd, slideEnd);\n        swap.classList.remove('sliding', 'sliding-in');\n        swap.classList.remove(swapDirection);\n        container.parentNode.removeChild(container);\n        if (complete) {\n          complete();\n        }\n      };\n\n      container.offsetWidth; // force reflow\n      swapDirection      = enter ? 'right' : 'left';\n      containerDirection = enter ? 'left' : 'right';\n      container.classList.add(containerDirection);\n      swap.classList.remove(swapDirection);\n      swap.addEventListener(window.RATCHET.getTransitionEnd, slideEnd);\n    }\n  };\n\n  var triggerStateChange = function () {\n    var e = new CustomEvent('push', {\n      detail: { state: getCached(PUSH.id) },\n      bubbles: true,\n      cancelable: true\n    });\n\n    window.dispatchEvent(e);\n  };\n\n  var findTarget = function (target) {\n    var i;\n    var toggles = document.querySelectorAll('a');\n\n    for (; target && target !== document; target = target.parentNode) {\n      for (i = toggles.length; i--;) {\n        if (toggles[i] === target) {\n          return target;\n        }\n      }\n    }\n  };\n\n  var locationReplace = function (url) {\n    window.history.replaceState(null, '', '#');\n    window.location.replace(url);\n  };\n\n  var extendWithDom = function (obj, fragment, dom) {\n    var i;\n    var result = {};\n\n    for (i in obj) {\n      if (obj.hasOwnProperty(i)) {\n        result[i] = obj[i];\n      }\n    }\n\n    Object.keys(bars).forEach(function (key) {\n      var el = dom.querySelector(bars[key]);\n      if (el) {\n        el.parentNode.removeChild(el);\n      }\n      result[key] = el;\n    });\n\n    result.contents = dom.querySelector(fragment);\n\n    return result;\n  };\n\n  var parseXHR = function (xhr, options) {\n    var head;\n    var body;\n    var data = {};\n    var responseText = xhr.responseText;\n\n    data.url = options.url;\n\n    if (!responseText) {\n      return data;\n    }\n\n    if (/<html/i.test(responseText)) {\n      head           = document.createElement('div');\n      body           = document.createElement('div');\n      head.innerHTML = responseText.match(/<head[^>]*>([\\s\\S.]*)<\\/head>/i)[0];\n      body.innerHTML = responseText.match(/<body[^>]*>([\\s\\S.]*)<\\/body>/i)[0];\n    } else {\n      head           = body = document.createElement('div');\n      head.innerHTML = responseText;\n    }\n\n    data.title = head.querySelector('title') || document.querySelector('title');\n    var text = 'innerText' in data.title ? 'innerText' : 'textContent';\n    data.title = data.title && data.title[text].trim();\n\n    if (options.transition) {\n      data = extendWithDom(data, '.content', body);\n    } else {\n      data.contents = body;\n    }\n\n    return data;\n  };\n\n\n  // Attach PUSH event handlers\n  // ==========================\n\n  window.addEventListener('touchstart', function () { isScrolling = false; });\n  window.addEventListener('touchmove', function () { isScrolling = true; });\n  window.addEventListener('touchend', touchend);\n  window.addEventListener('click', function (e) {\n    if (getTarget(e)) {\n      e.preventDefault();\n    }\n  });\n  window.addEventListener('popstate', popstate);\n\n  // TODO : Remove this line in the next major version\n  window.PUSH = PUSH;\n  window.RATCHET.push = PUSH;\n\n}());\n\n/* ========================================================================\n * Ratchet: segmented-controllers.js v2.0.2\n * http://goratchet.com/components#segmentedControls\n * ========================================================================\n * Copyright 2015 Connor Sears\n * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)\n * ======================================================================== */\n\n!(function () {\n  'use strict';\n\n  var getTarget = function (target) {\n    var i;\n    var segmentedControls = document.querySelectorAll('.segmented-control .control-item');\n\n    for (; target && target !== document; target = target.parentNode) {\n      for (i = segmentedControls.length; i--;) {\n        if (segmentedControls[i] === target) {\n          return target;\n        }\n      }\n    }\n  };\n\n  window.addEventListener('touchend', function (e) {\n    var activeTab;\n    var activeBodies;\n    var targetBody;\n    var targetTab     = getTarget(e.target);\n    var className     = 'active';\n    var classSelector = '.' + className;\n\n    if (!targetTab) {\n      return;\n    }\n\n    activeTab = targetTab.parentNode.querySelector(classSelector);\n\n    if (activeTab) {\n      activeTab.classList.remove(className);\n    }\n\n    targetTab.classList.add(className);\n\n    if (!targetTab.hash) {\n      return;\n    }\n\n    targetBody = document.querySelector(targetTab.hash);\n\n    if (!targetBody) {\n      return;\n    }\n\n    activeBodies = targetBody.parentNode.querySelectorAll(classSelector);\n\n    for (var i = 0; i < activeBodies.length; i++) {\n      activeBodies[i].classList.remove(className);\n    }\n\n    targetBody.classList.add(className);\n  });\n\n  window.addEventListener('click', function (e) {\n    if (getTarget(e.target)) {\n      e.preventDefault();\n    }\n  });\n\n}());\n\n/* ========================================================================\n * Ratchet: sliders.js v2.0.2\n * http://goratchet.com/components#sliders\n * ========================================================================\n   Adapted from Brad Birdsall's swipe\n * Copyright 2015 Connor Sears\n * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)\n * ======================================================================== */\n\n!(function () {\n  'use strict';\n\n  var pageX;\n  var pageY;\n  var slider;\n  var deltaX;\n  var deltaY;\n  var offsetX;\n  var lastSlide;\n  var startTime;\n  var resistance;\n  var sliderWidth;\n  var slideNumber;\n  var isScrolling;\n  var scrollableArea;\n  var startedMoving;\n\n  var transformPrefix   = window.RATCHET.getBrowserCapabilities.prefix;\n  var transformProperty = window.RATCHET.getBrowserCapabilities.transform;\n\n  var getSlider = function (target) {\n    var i;\n    var sliders = document.querySelectorAll('.slider > .slide-group');\n\n    for (; target && target !== document; target = target.parentNode) {\n      for (i = sliders.length; i--;) {\n        if (sliders[i] === target) {\n          return target;\n        }\n      }\n    }\n  };\n\n  var getScroll = function () {\n    var translate3d = slider.style[transformProperty].match(/translate3d\\(([^,]*)/);\n    var ret = translate3d ? translate3d[1] : 0;\n    return parseInt(ret, 10);\n  };\n\n  var setSlideNumber = function (offset) {\n    var round = offset ? (deltaX < 0 ? 'ceil' : 'floor') : 'round';\n    slideNumber = Math[round](getScroll() / (scrollableArea / slider.children.length));\n    slideNumber += offset;\n    slideNumber = Math.min(slideNumber, 0);\n    slideNumber = Math.max(-(slider.children.length - 1), slideNumber);\n  };\n\n  var onTouchStart = function (e) {\n    slider = getSlider(e.target);\n\n    if (!slider) {\n      return;\n    }\n\n    var firstItem  = slider.querySelector('.slide');\n\n    scrollableArea = firstItem.offsetWidth * slider.children.length;\n    isScrolling    = undefined;\n    sliderWidth    = slider.offsetWidth;\n    resistance     = 1;\n    lastSlide      = -(slider.children.length - 1);\n    startTime      = +new Date();\n    pageX          = e.touches[0].pageX;\n    pageY          = e.touches[0].pageY;\n    deltaX         = 0;\n    deltaY         = 0;\n\n    setSlideNumber(0);\n\n    slider.style[transformPrefix + 'transition-duration'] = 0;\n  };\n\n  var onTouchMove = function (e) {\n    if (e.touches.length > 1 || !slider) {\n      return; // Exit if a pinch || no slider\n    }\n\n    // adjust the starting position if we just started to avoid jumpage\n    if (!startedMoving) {\n      pageX += (e.touches[0].pageX - pageX) - 1;\n    }\n\n    deltaX = e.touches[0].pageX - pageX;\n    deltaY = e.touches[0].pageY - pageY;\n    pageX  = e.touches[0].pageX;\n    pageY  = e.touches[0].pageY;\n\n    if (typeof isScrolling === 'undefined' && startedMoving) {\n      isScrolling = Math.abs(deltaY) > Math.abs(deltaX);\n    }\n\n    if (isScrolling) {\n      return;\n    }\n\n    offsetX = (deltaX / resistance) + getScroll();\n\n    e.preventDefault();\n\n    resistance = slideNumber === 0         && deltaX > 0 ? (pageX / sliderWidth) + 1.25 :\n                 slideNumber === lastSlide && deltaX < 0 ? (Math.abs(pageX) / sliderWidth) + 1.25 : 1;\n\n    slider.style[transformProperty] = 'translate3d(' + offsetX + 'px,0,0)';\n\n    // started moving\n    startedMoving = true;\n  };\n\n  var onTouchEnd = function (e) {\n    if (!slider || isScrolling) {\n      return;\n    }\n\n    // we're done moving\n    startedMoving = false;\n\n    setSlideNumber((+new Date()) - startTime < 1000 && Math.abs(deltaX) > 15 ? (deltaX < 0 ? -1 : 1) : 0);\n\n    offsetX = slideNumber * sliderWidth;\n\n    slider.style[transformPrefix + 'transition-duration'] = '.2s';\n    slider.style[transformProperty] = 'translate3d(' + offsetX + 'px,0,0)';\n\n    e = new CustomEvent('slide', {\n      detail: { slideNumber: Math.abs(slideNumber) },\n      bubbles: true,\n      cancelable: true\n    });\n\n    slider.parentNode.dispatchEvent(e);\n  };\n\n  window.addEventListener('touchstart', onTouchStart);\n  window.addEventListener('touchmove', onTouchMove);\n  window.addEventListener('touchend', onTouchEnd);\n\n}());\n\n/* ========================================================================\n * Ratchet: toggles.js v2.0.2\n * http://goratchet.com/components#toggles\n * ========================================================================\n   Adapted from Brad Birdsall's swipe\n * Copyright 2015 Connor Sears\n * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)\n * ======================================================================== */\n\n!(function () {\n  'use strict';\n\n  var start     = {};\n  var touchMove = false;\n  var distanceX = false;\n  var toggle    = false;\n  var transformProperty = window.RATCHET.getBrowserCapabilities.transform;\n\n  var findToggle = function (target) {\n    var i;\n    var toggles = document.querySelectorAll('.toggle');\n\n    for (; target && target !== document; target = target.parentNode) {\n      for (i = toggles.length; i--;) {\n        if (toggles[i] === target) {\n          return target;\n        }\n      }\n    }\n  };\n\n  window.addEventListener('touchstart', function (e) {\n    e = e.originalEvent || e;\n\n    toggle = findToggle(e.target);\n\n    if (!toggle) {\n      return;\n    }\n\n    var handle      = toggle.querySelector('.toggle-handle');\n    var toggleWidth = toggle.clientWidth;\n    var handleWidth = handle.clientWidth;\n    var offset      = toggle.classList.contains('active') ? (toggleWidth - handleWidth) : 0;\n\n    start     = { pageX : e.touches[0].pageX - offset, pageY : e.touches[0].pageY };\n    touchMove = false;\n  });\n\n  window.addEventListener('touchmove', function (e) {\n    e = e.originalEvent || e;\n\n    if (e.touches.length > 1) {\n      return; // Exit if a pinch\n    }\n\n    if (!toggle) {\n      return;\n    }\n\n    var handle      = toggle.querySelector('.toggle-handle');\n    var current     = e.touches[0];\n    var toggleWidth = toggle.clientWidth;\n    var handleWidth = handle.clientWidth;\n    var offset      = toggleWidth - handleWidth;\n\n    touchMove = true;\n    distanceX = current.pageX - start.pageX;\n\n    if (Math.abs(distanceX) < Math.abs(current.pageY - start.pageY)) {\n      return;\n    }\n\n    e.preventDefault();\n\n    if (distanceX < 0) {\n      return (handle.style[transformProperty] = 'translate3d(0,0,0)');\n    }\n    if (distanceX > offset) {\n      return (handle.style[transformProperty] = 'translate3d(' + offset + 'px,0,0)');\n    }\n\n    handle.style[transformProperty] = 'translate3d(' + distanceX + 'px,0,0)';\n\n    toggle.classList[(distanceX > (toggleWidth / 2 - handleWidth / 2)) ? 'add' : 'remove']('active');\n  });\n\n  window.addEventListener('touchend', function (e) {\n    if (!toggle) {\n      return;\n    }\n\n    var handle      = toggle.querySelector('.toggle-handle');\n    var toggleWidth = toggle.clientWidth;\n    var handleWidth = handle.clientWidth;\n    var offset      = (toggleWidth - handleWidth);\n    var slideOn     = (!touchMove && !toggle.classList.contains('active')) || (touchMove && (distanceX > (toggleWidth / 2 - handleWidth / 2)));\n\n    if (slideOn) {\n      handle.style[transformProperty] = 'translate3d(' + offset + 'px,0,0)';\n    } else {\n      handle.style[transformProperty] = 'translate3d(0,0,0)';\n    }\n\n    toggle.classList[slideOn ? 'add' : 'remove']('active');\n\n    e = new CustomEvent('toggle', {\n      detail: {\n        isActive: slideOn\n      },\n      bubbles: true,\n      cancelable: true\n    });\n\n    toggle.dispatchEvent(e);\n\n    touchMove = false;\n    toggle    = false;\n  });\n\n}());\n"
  },
  {
    "path": "docs/examples/app-android-notes/css/app.css",
    "content": ".slider,\n.slider img {\n  margin-bottom: 0;\n  height: 150px;\n}\n"
  },
  {
    "path": "docs/examples/app-android-notes/index.html",
    "content": "<!DOCTYPE html>\n<html>\n  <head>\n    <meta charset=\"utf-8\">\n    <title>Notes</title>\n    <meta name=\"viewport\" content=\"initial-scale=1, maximum-scale=1\">\n    <meta name=\"apple-mobile-web-app-capable\" content=\"yes\">\n    <meta name=\"apple-mobile-web-app-status-bar-style\" content=\"black\">\n\n    <!-- Roboto -->\n    <link rel=\"stylesheet\" href=\"//fonts.googleapis.com/css?family=Roboto:400,500,700\">\n\n    <link rel=\"stylesheet\" href=\"../../dist/css/ratchet.min.css\">\n    <link rel=\"stylesheet\" href=\"../../dist/css/ratchet-theme-android.min.css\">\n    <link rel=\"stylesheet\" href=\"css/app.css\">\n    <script src=\"../../dist/js/ratchet.min.js\"></script>\n  </head>\n  <body>\n    <header class=\"bar bar-nav\">\n      <a class=\"icon icon-compose pull-right\" href=\"#composeModal\"></a>\n      <a href=\"#navPopover\">\n        <h1 class=\"title\">\n          <span class=\"icon icon-home\"></span>\n          Notes\n          <span class=\"icon icon-caret\"></span>\n        </h1>\n      </a>\n    </header>\n\n    <div class=\"content\">\n\n      <ul class=\"table-view\">\n        <li class=\"table-view-cell\">\n          <a class=\"navigate-right\" href=\"choose-theater.html\" data-transition=\"slide-in\">\n            Note title goes here\n            <p>Lorem ipsum dolor sit amet...</p>\n          </a>\n        </li>\n        <li class=\"table-view-cell\">\n          <a class=\"navigate-right\" href=\"choose-theater.html\" data-transition=\"slide-in\">\n            Note title goes here\n            <p>Lorem ipsum dolor sit amet...</p>\n          </a>\n        </li>\n        <li class=\"table-view-cell\">\n          <a class=\"navigate-right\" href=\"choose-theater.html\" data-transition=\"slide-in\">\n            Note title goes here\n            <p>Lorem ipsum dolor sit amet...</p>\n          </a>\n        </li>\n        <li class=\"table-view-cell\">\n          <a class=\"navigate-right\" href=\"choose-theater.html\" data-transition=\"slide-in\">\n            Note title goes here\n            <p>Lorem ipsum dolor sit amet...</p>\n          </a>\n        </li>\n        <li class=\"table-view-cell\">\n          <a class=\"navigate-right\" href=\"choose-theater.html\" data-transition=\"slide-in\">\n            Note title goes here\n            <p>Lorem ipsum dolor sit amet...</p>\n          </a>\n        </li>\n        <li class=\"table-view-cell\">\n          <a class=\"navigate-right\" href=\"choose-theater.html\" data-transition=\"slide-in\">\n            Note title goes here\n            <p>Lorem ipsum dolor sit amet...</p>\n          </a>\n        </li>\n        <li class=\"table-view-cell\">\n          <a class=\"navigate-right\" href=\"choose-theater.html\" data-transition=\"slide-in\">\n            Note title goes here\n            <p>Lorem ipsum dolor sit amet...</p>\n          </a>\n        </li>\n        <li class=\"table-view-cell\">\n          <a class=\"navigate-right\" href=\"choose-theater.html\" data-transition=\"slide-in\">\n            Note title goes here\n            <p>Lorem ipsum dolor sit amet...</p>\n          </a>\n        </li>\n        <li class=\"table-view-cell\">\n          <a class=\"navigate-right\" href=\"choose-theater.html\" data-transition=\"slide-in\">\n            Note title goes here\n            <p>Lorem ipsum dolor sit amet...</p>\n          </a>\n        </li>\n        <li class=\"table-view-cell\">\n          <a class=\"navigate-right\" href=\"choose-theater.html\" data-transition=\"slide-in\">\n            Note title goes here\n            <p>Lorem ipsum dolor sit amet...</p>\n          </a>\n        </li>\n        <li class=\"table-view-cell\">\n          <a class=\"navigate-right\" href=\"choose-theater.html\" data-transition=\"slide-in\">\n            Note title goes here\n            <p>Lorem ipsum dolor sit amet...</p>\n          </a>\n        </li>\n        <li class=\"table-view-cell\">\n          <a class=\"navigate-right\" href=\"choose-theater.html\" data-transition=\"slide-in\">\n            Note title goes here\n            <p>Lorem ipsum dolor sit amet...</p>\n          </a>\n        </li>\n        <li class=\"table-view-cell\">\n          <a class=\"navigate-right\" href=\"choose-theater.html\" data-transition=\"slide-in\">\n            Note title goes here\n            <p>Lorem ipsum dolor sit amet...</p>\n          </a>\n        </li>\n      </ul>\n    </div>\n\n    <!-- Compose modal -->\n    <div id=\"composeModal\" class=\"modal\">\n      <header class=\"bar bar-nav\">\n        <a class=\"icon icon-left pull-left\" href=\"#composeModal\"></a>\n        <h1 class=\"title\">New note</h1>\n      </header>\n\n      <div class=\"content\">\n        <form class=\"content-padded\">\n          <input type=\"text\" placeholder=\"Title\">\n          <textarea rows=\"10\"></textarea>\n          <a class=\"btn btn-positive btn-block\" href=\"#composeModal\">Save note</a>\n        </form>\n      </div>\n    </div><!-- /.modal -->\n\n    <!-- Popover -->\n    <div id=\"navPopover\" class=\"popover\">\n      <ul class=\"table-view\">\n        <li class=\"table-view-cell\">Item1</li>\n        <li class=\"table-view-cell\">Item2</li>\n        <li class=\"table-view-cell\">Item3</li>\n        <li class=\"table-view-cell\">Item4</li>\n        <li class=\"table-view-cell\">Item5</li>\n        <li class=\"table-view-cell\">Item6</li>\n        <li class=\"table-view-cell\">Item7</li>\n        <li class=\"table-view-cell\">Item8</li>\n        <li class=\"table-view-cell\">Item9</li>\n        <li class=\"table-view-cell\">Item10</li>\n      </ul>\n    </div>\n  </body>\n</html>\n"
  },
  {
    "path": "docs/examples/app-ios-mail/css/app.css",
    "content": ".updated-text {\n  position: absolute;\n  left: 0;\n  right: 0;\n  padding: 10px 0;\n  font-size: 11px;\n  text-align: center;\n}\n\n.table-view-cell .icon {\n  color: #007aff;\n}\n"
  },
  {
    "path": "docs/examples/app-ios-mail/inbox.html",
    "content": "<!DOCTYPE html>\n<html>\n  <head>\n    <meta charset=\"utf-8\">\n    <title>Mail</title>\n    <meta name=\"viewport\" content=\"initial-scale=1, maximum-scale=1\">\n    <meta name=\"apple-mobile-web-app-capable\" content=\"yes\">\n    <meta name=\"apple-mobile-web-app-status-bar-style\" content=\"black\">\n\n    <link rel=\"stylesheet\" href=\"../../dist/css/ratchet.min.css\">\n    <link rel=\"stylesheet\" href=\"../../dist/css/ratchet-theme-ios.min.css\">\n    <link rel=\"stylesheet\" href=\"css/app.css\">\n    <script src=\"../../dist/js/ratchet.min.js\"></script>\n  </head>\n  <body>\n    <header class=\"bar bar-nav\">\n      <a class=\"icon icon-left-nav pull-left\" href=\"index.html\" data-transition=\"slide-out\"></a>\n      <a class=\"icon icon-refresh pull-right\"></a>\n      <h1 class=\"title\">All inboxes</h1>\n    </header>\n\n    <div class=\"content\">\n\n      <ul class=\"table-view\">\n        <li class=\"table-view-cell\">\n          <a class=\"navigate-right\" href=\"#\">\n            Email subject line here\n            <p>Lorem ipsum dolor sit amet...</p>\n          </a>\n        </li>\n        <li class=\"table-view-cell\">\n          <a class=\"navigate-right\" href=\"#\">\n            Email subject line here\n            <p>Lorem ipsum dolor sit amet...</p>\n          </a>\n        </li>\n        <li class=\"table-view-cell\">\n          <a class=\"navigate-right\" href=\"#\">\n            Email subject line here\n            <p>Lorem ipsum dolor sit amet...</p>\n          </a>\n        </li>\n        <li class=\"table-view-cell\">\n          <a class=\"navigate-right\" href=\"#\">\n            Email subject line here\n            <p>Lorem ipsum dolor sit amet...</p>\n          </a>\n        </li>\n        <li class=\"table-view-cell\">\n          <a class=\"navigate-right\" href=\"#\">\n            Email subject line here\n            <p>Lorem ipsum dolor sit amet...</p>\n          </a>\n        </li>\n        <li class=\"table-view-cell\">\n          <a class=\"navigate-right\" href=\"#\">\n            Email subject line here\n            <p>Lorem ipsum dolor sit amet...</p>\n          </a>\n        </li>\n        <li class=\"table-view-cell\">\n          <a class=\"navigate-right\" href=\"#\">\n            Email subject line here\n            <p>Lorem ipsum dolor sit amet...</p>\n          </a>\n        </li>\n        <li class=\"table-view-cell\">\n          <a class=\"navigate-right\" href=\"#\">\n            Email subject line here\n            <p>Lorem ipsum dolor sit amet...</p>\n          </a>\n        </li>\n        <li class=\"table-view-cell\">\n          <a class=\"navigate-right\" href=\"#\">\n            Email subject line here\n            <p>Lorem ipsum dolor sit amet...</p>\n          </a>\n        </li>\n        <li class=\"table-view-cell\">\n          <a class=\"navigate-right\" href=\"#\">\n            Email subject line here\n            <p>Lorem ipsum dolor sit amet...</p>\n          </a>\n        </li>\n        <li class=\"table-view-cell\">\n          <a class=\"navigate-right\" href=\"#\">\n            Email subject line here\n            <p>Lorem ipsum dolor sit amet...</p>\n          </a>\n        </li>\n        <li class=\"table-view-cell\">\n          <a class=\"navigate-right\" href=\"#\">\n            Email subject line here\n            <p>Lorem ipsum dolor sit amet...</p>\n          </a>\n        </li>\n        <li class=\"table-view-cell\">\n          <a class=\"navigate-right\" href=\"#\">\n            Email subject line here\n            <p>Lorem ipsum dolor sit amet...</p>\n          </a>\n        </li>\n        <li class=\"table-view-cell\">\n          <a class=\"navigate-right\" href=\"#\">\n            Email subject line here\n            <p>Lorem ipsum dolor sit amet...</p>\n          </a>\n        </li>\n        <li class=\"table-view-cell\">\n          <a class=\"navigate-right\" href=\"#\">\n            Email subject line here\n            <p>Lorem ipsum dolor sit amet...</p>\n          </a>\n        </li>\n      </ul>\n    </div><!-- /.content -->\n  </body>\n</html>\n"
  },
  {
    "path": "docs/examples/app-ios-mail/index.html",
    "content": "<!DOCTYPE html>\n<html>\n  <head>\n    <meta charset=\"utf-8\">\n    <title>Mail</title>\n    <meta name=\"viewport\" content=\"initial-scale=1, maximum-scale=1\">\n    <meta name=\"apple-mobile-web-app-capable\" content=\"yes\">\n    <meta name=\"apple-mobile-web-app-status-bar-style\" content=\"black\">\n\n    <link rel=\"stylesheet\" href=\"../../dist/css/ratchet.min.css\">\n    <link rel=\"stylesheet\" href=\"../../dist/css/ratchet-theme-ios.min.css\">\n    <link rel=\"stylesheet\" href=\"css/app.css\">\n    <script src=\"../../dist/js/ratchet.min.js\"></script>\n  </head>\n  <body>\n    <header class=\"bar bar-nav\">\n      <a class=\"icon icon-refresh pull-right\"></a>\n      <h1 class=\"title\">Mailboxes</h1>\n    </header>\n\n    <div class=\"bar bar-footer\">\n      <a class=\"icon icon-compose pull-right\" href=\"#composeModal\"></a>\n      <small class=\"updated-text\">Updated just now</small>\n    </div>\n\n    <div class=\"content\">\n\n      <ul class=\"table-view\">\n        <li class=\"table-view-cell media\">\n          <a class=\"navigate-right\" href=\"inbox.html\" data-transition=\"slide-in\">\n            <span class=\"media-object icon icon-pages pull-left\"></span>\n            <div class=\"media-body\">\n              All inboxes\n            </div>\n          </a>\n        </li>\n        <li class=\"table-view-cell media\">\n          <a class=\"navigate-right\" href=\"inbox.html\" data-transition=\"slide-in\">\n            <span class=\"media-object icon icon-person pull-left\"></span>\n            <div class=\"media-body\">\n              Personal email\n            </div>\n          </a>\n        </li>\n        <li class=\"table-view-cell media\">\n          <a class=\"navigate-right\" href=\"inbox.html\" data-transition=\"slide-in\">\n            <span class=\"media-object icon icon-star-filled pull-left\"></span>\n            <div class=\"media-body\">\n              Starred\n            </div>\n          </a>\n        </li>\n        <li class=\"table-view-cell media\">\n          <a class=\"navigate-right\" href=\"inbox.html\" data-transition=\"slide-in\">\n            <span class=\"media-object icon icon-trash pull-left\"></span>\n            <div class=\"media-body\">\n              Trash\n            </div>\n          </a>\n        </li>\n      </ul>\n\n      <h5 class=\"content-padded\">Other accounts</h5>\n      <ul class=\"table-view\">\n        <li class=\"table-view-cell media\">\n          <a class=\"navigate-right\" href=\"inbox.html\" data-transition=\"slide-in\">\n            <span class=\"media-object icon icon-more pull-left\"></span>\n            <div class=\"media-body\">\n              Misc\n            </div>\n          </a>\n        </li>\n      </ul>\n    </div><!-- /.content -->\n\n    <!-- Compose modal -->\n    <div id=\"composeModal\" class=\"modal\">\n      <header class=\"bar bar-nav\">\n        <a class=\"btn btn-link pull-right\" href=\"#composeModal\">\n          <strong>Send</strong>\n        </a>\n        <a class=\"btn btn-link pull-left\" href=\"#composeModal\">\n          Cancel\n        </a>\n        <h1 class=\"title\">New message</h1>\n      </header>\n\n      <div class=\"content\">\n        <form class=\"input-group\">\n          <input type=\"text\" placeholder=\"To:\">\n          <input type=\"email\" placeholder=\"From:\">\n          <input type=\"text\" placeholder=\"Subject:\">\n          <textarea rows=\"20\"></textarea>\n        </form>\n      </div>\n    </div><!-- /.modal -->\n  </body>\n</html>\n"
  },
  {
    "path": "docs/examples/app-movies/choose-theater.html",
    "content": "<!DOCTYPE html>\n<html>\n  <head>\n    <meta charset=\"utf-8\">\n    <title>Movie finder</title>\n    <meta name=\"viewport\" content=\"initial-scale=1, maximum-scale=1\">\n    <meta name=\"apple-mobile-web-app-capable\" content=\"yes\">\n    <meta name=\"apple-mobile-web-app-status-bar-style\" content=\"black\">\n\n    <link rel=\"stylesheet\" href=\"../../dist/css/ratchet.min.css\">\n    <link rel=\"stylesheet\" href=\"css/app.css\">\n    <script src=\"../../dist/js/ratchet.min.js\"></script>\n  </head>\n  <body>\n    <header class=\"bar bar-nav\">\n      <a class=\"btn btn-link btn-nav pull-left\" href=\"index.html\" data-transition=\"slide-out\">\n        <span class=\"icon icon-left-nav\"></span>\n        Back\n      </a>\n      <h1 class=\"title\">Argo</h1>\n    </header>\n\n    <div class=\"bar bar-standard bar-header-secondary\">\n      <form>\n        <input type=\"search\" placeholder=\"Search theaters\">\n      </form>\n    </div>\n\n    <div class=\"content\">\n      <ul class=\"table-view\">\n        <li class=\"table-view-cell table-view-divider\">Theaters nearby</li>\n        <li class=\"table-view-cell\">\n          Metreon 16\n          <p>1.3 miles away</p>\n          <a class=\"btn btn-outlined btn-positive\" href=\"#\">Buy Tickets</a>\n        </li>\n        <li class=\"table-view-cell\">\n          AMC 5\n          <p>3.5 miles away</p>\n          <a class=\"btn btn-outlined btn-positive\" href=\"#\">Buy Tickets</a>\n        </li>\n        <li class=\"table-view-cell\">\n          Regal 42\n          <p>7.3 miles away</p>\n          <a class=\"btn btn-outlined btn-positive\" href=\"#\">Buy Tickets</a>\n        </li>\n        <li class=\"table-view-cell\">\n          Shorline theater\n          <p>12.5 miles away</p>\n          <a class=\"btn btn-outlined btn-positive\" href=\"#\">Buy Tickets</a>\n        </li>\n        <li class=\"table-view-cell\">\n          AMC 16\n          <p>12.2 miles away</p>\n          <a class=\"btn btn-outlined btn-positive\" href=\"#\">Buy Tickets</a>\n        </li>\n        <li class=\"table-view-cell\">\n          BW3 16\n          <p>13.4 miles away</p>\n          <a class=\"btn btn-outlined btn-positive\" href=\"#\">Buy Tickets</a>\n        </li>\n        <li class=\"table-view-cell\">\n          MC Hammer 16\n          <p>14.1 miles away</p>\n          <a class=\"btn btn-outlined btn-positive\" href=\"#\">Buy Tickets</a>\n        </li>\n        <li class=\"table-view-cell\">\n          AMC 3\n          <p>14.3 miles away</p>\n          <a class=\"btn btn-outlined btn-positive\" href=\"#\">Buy Tickets</a>\n        </li>\n        <li class=\"table-view-cell\">\n          AMC 2\n          <p>14.7 miles away</p>\n          <a class=\"btn btn-outlined btn-positive\" href=\"#\">Buy Tickets</a>\n        </li>\n        <li class=\"table-view-cell\">\n          AMC 10\n          <p>15 miles away</p>\n          <a class=\"btn btn-outlined btn-positive\" href=\"#\">Buy Tickets</a>\n        </li>\n      </ul>\n    </div>\n  </body>\n</html>\n"
  },
  {
    "path": "docs/examples/app-movies/css/app.css",
    "content": ".slider {\n  margin-bottom: 0;\n}\n.slider img {\n  width: auto;\n  height: 150px;\n}\n.content-padded {\n  margin: 30px 15px 15px;\n}\n"
  },
  {
    "path": "docs/examples/app-movies/index.html",
    "content": "<!DOCTYPE html>\n<html>\n  <head>\n    <meta charset=\"utf-8\">\n    <title>Movie finder</title>\n    <meta name=\"viewport\" content=\"initial-scale=1, maximum-scale=1\">\n    <meta name=\"apple-mobile-web-app-capable\" content=\"yes\">\n    <meta name=\"apple-mobile-web-app-status-bar-style\" content=\"black\">\n\n    <link rel=\"stylesheet\" href=\"../../dist/css/ratchet.min.css\">\n    <link rel=\"stylesheet\" href=\"css/app.css\">\n    <script src=\"../../dist/js/ratchet.min.js\"></script>\n  </head>\n  <body>\n    <header class=\"bar bar-nav\">\n      <a class=\"icon icon-gear pull-right\" href=\"#settingsModal\"></a>\n      <h1 class=\"title\">Movie finder</h1>\n    </header>\n\n    <div class=\"bar bar-standard bar-header-secondary\">\n      <form>\n        <input type=\"search\" placeholder=\"Search\">\n      </form>\n    </div>\n\n    <div class=\"content\">\n\n      <div class=\"slider\">\n        <div class=\"slide-group\">\n          <div class=\"slide\">\n            <img src=\"img/argo.png\" alt=\"Argo\" width=\"640\" height=\"300\">\n          </div>\n          <div class=\"slide\">\n             <img src=\"img/skyfall.png\" alt=\"Skyfall\" width=\"640\" height=\"300\">\n          </div>\n          <div class=\"slide\">\n             <img src=\"img/ralph.png\" alt=\"Wreck-It Ralph\" width=\"640\" height=\"300\">\n          </div>\n        </div>\n      </div>\n\n      <ul class=\"table-view\">\n        <li class=\"table-view-cell table-view-divider\">Recommended movies</li>\n        <li class=\"table-view-cell media\">\n          <a class=\"navigate-right\" href=\"choose-theater.html\" data-transition=\"slide-in\">\n            <img class=\"media-object pull-left\" src=\"http://placehold.it/64x64\" alt=\"Placeholder image for Argo's poster\">\n            <div class=\"media-body\">\n              Argo\n              <p>Lorem ipsum dolor sit amet, consectetur.</p>\n            </div>\n          </a>\n        </li>\n        <li class=\"table-view-cell media\">\n          <a class=\"navigate-right\" href=\"choose-theater.html\" data-transition=\"slide-in\">\n            <img class=\"media-object pull-left\" src=\"http://placehold.it/64x64\" alt=\"Placeholder image for Skyfall's poster\">\n            <div class=\"media-body\">\n              Skyfall: 007\n              <p>Lorem ipsum dolor sit amet, consectetur.</p>\n            </div>\n          </a>\n        </li>\n        <li class=\"table-view-cell media\">\n          <a class=\"navigate-right\" href=\"choose-theater.html\" data-transition=\"slide-in\">\n            <img class=\"media-object pull-left\" src=\"http://placehold.it/64x64\" alt=\"Placeholder image for Wreck-it Ralph's poster\">\n            <div class=\"media-body\">\n              Wreck-it Ralph\n              <p>Lorem ipsum dolor sit amet, consectetur.</p>\n            </div>\n          </a>\n        </li>\n        <li class=\"table-view-cell media\">\n          <a class=\"navigate-right\" href=\"choose-theater.html\" data-transition=\"slide-in\">\n            <img class=\"media-object pull-left\" src=\"http://placehold.it/64x64\" alt=\"Placeholder image for Argo's poster\">\n            <div class=\"media-body\">\n              Argo\n              <p>Lorem ipsum dolor sit amet, consectetur.</p>\n            </div>\n          </a>\n        </li>\n        <li class=\"table-view-cell media\">\n          <a class=\"navigate-right\" href=\"choose-theater.html\" data-transition=\"slide-in\">\n            <img class=\"media-object pull-left\" src=\"http://placehold.it/64x64\" alt=\"Placeholder image for Skyfall's poster\">\n            <div class=\"media-body\">\n              Skyfall: 007\n              <p>Lorem ipsum dolor sit amet, consectetur.</p>\n            </div>\n          </a>\n        </li>\n        <li class=\"table-view-cell media\">\n          <a class=\"navigate-right\" href=\"choose-theater.html\" data-transition=\"slide-in\">\n            <img class=\"media-object pull-left\" src=\"http://placehold.it/64x64\" alt=\"Placeholder image for Wreck-it Ralph's poster\">\n            <div class=\"media-body\">\n              Wreck-it Ralph\n              <p>Lorem ipsum dolor sit amet, consectetur.</p>\n            </div>\n          </a>\n        </li>\n        <li class=\"table-view-cell media\">\n          <a class=\"navigate-right\" href=\"choose-theater.html\" data-transition=\"slide-in\">\n            <img class=\"media-object pull-left\" src=\"http://placehold.it/64x64\" alt=\"Placeholder image for Argo's poster\">\n            <div class=\"media-body\">\n              Argo\n              <p>Lorem ipsum dolor sit amet, consectetur.</p>\n            </div>\n          </a>\n        </li>\n        <li class=\"table-view-cell media\">\n          <a class=\"navigate-right\" href=\"choose-theater.html\" data-transition=\"slide-in\">\n            <img class=\"media-object pull-left\" src=\"http://placehold.it/64x64\" alt=\"Placeholder image for Skyfall's poster\">\n            <div class=\"media-body\">\n              Skyfall: 007\n              <p>Lorem ipsum dolor sit amet, consectetur.</p>\n            </div>\n          </a>\n        </li>\n        <li class=\"table-view-cell media\">\n          <a class=\"navigate-right\" href=\"choose-theater.html\" data-transition=\"slide-in\">\n            <img class=\"media-object pull-left\" src=\"http://placehold.it/64x64\" alt=\"Placeholder image for Wreck-it Ralph's poster\">\n            <div class=\"media-body\">\n              Wreck-it Ralph\n              <p>Lorem ipsum dolor sit amet, consectetur.</p>\n            </div>\n          </a>\n        </li>\n      </ul>\n    </div><!-- /.content -->\n\n    <!-- Settings modal -->\n    <div id=\"settingsModal\" class=\"modal\">\n      <header class=\"bar bar-nav\">\n        <a class=\"icon icon-close pull-right\" href=\"#settingsModal\"></a>\n        <h1 class=\"title\">Settings</h1>\n      </header>\n\n      <div class=\"content\">\n        <form class=\"input-group\">\n          <input type=\"text\" placeholder=\"Full name\">\n          <input type=\"email\" placeholder=\"Email\">\n          <input type=\"text\" placeholder=\"Username\">\n        </form>\n\n        <h5 class=\"content-padded\">App settings</h5>\n\n        <ul class=\"table-view\">\n          <li class=\"table-view-cell media\">\n            <span class=\"media-object pull-left icon icon-sound\"></span>\n            <div class=\"media-body\">\n              Enable sounds\n            </div>\n            <div class=\"toggle\">\n              <div class=\"toggle-handle\"></div>\n            </div>\n          </li>\n          <li class=\"table-view-cell media\">\n            <span class=\"media-object pull-left icon icon-person\"></span>\n            <div class=\"media-body\">\n              Parental controls\n            </div>\n            <div class=\"toggle\">\n              <div class=\"toggle-handle\"></div>\n            </div>\n          </li>\n        </ul>\n        <div class=\"content-padded\">\n          <button class=\"btn btn-positive btn-block\">Save settings</button>\n        </div>\n      </div>\n    </div><!-- /.modal -->\n  </body>\n</html>\n"
  },
  {
    "path": "docs/examples.html",
    "content": "---\nlayout: default\ntitle: Examples &middot; Ratchet\n---\n\n<div class=\"docs-sub-header\">\n  {% include masthead.html %}\n  <div class=\"container\">\n    <div class=\"docs-sub-content\">\n      <h2 class=\"page-title\">Examples</h2>\n      <p class=\"page-description\">Take a look at some of these example apps built on Ratchet.</p>\n    </div>\n    {% include ad.html %}\n  </div>\n</div>\n\n<div class=\"container\">\n  <div class=\"column-group\">\n    <div class=\"column lg-units-8 docs-examples docs-content\">\n\n      <p class=\"lead\">Checkout out the examples on a desktop browser or visit on your mobile device see the apps as intended.</p>\n\n      <div class=\"column-group\">\n        <div class=\"column lg-units-4\">\n          <div class=\"example-wrap\">\n            <a class=\"example\" href=\"/examples/app-movies\" data-ignore=\"push\">\n              <img src=\"/assets/img/example.png\" alt=\"Movie finder app example\" width=\"640\" height=\"480\">\n            </a>\n            <h4 class=\"example-title\">Movie finder</h4>\n          </div>\n        </div>\n        <div class=\"column lg-units-4\">\n          <div class=\"example-wrap\">\n            <a class=\"example\" href=\"/examples/app-ios-mail\" data-ignore=\"push\">\n              <img src=\"/assets/img/example-ios.png\" alt=\"iOS mail app example\" width=\"640\" height=\"480\">\n            </a>\n            <h4 class=\"example-title\">iOS mail app</h4>\n          </div>\n        </div>\n        <div class=\"column lg-units-4\">\n          <div class=\"example-wrap\">\n            <a class=\"example\" href=\"/examples/app-android-notes\" data-ignore=\"push\">\n              <img src=\"/assets/img/example-android.png\" alt=\"Android notes app example\" width=\"640\" height=\"480\">\n            </a>\n            <h4 class=\"example-title\">Android notes app</h4>\n          </div>\n        </div> <!-- .column-group -->\n      </div>\n    </div>\n\n    <div class=\"column lg-units-4\">\n      {% include download-module.html %}\n    </div>\n  </div>\n\n  <div class=\"column\">\n    <!-- Footer -->\n    {% include footer.html %}\n  </div>\n</div>\n"
  },
  {
    "path": "docs/getting-started.html",
    "content": "---\nlayout: default\ntitle: Getting started &middot; Ratchet\n---\n\n<div class=\"docs-sub-header\">\n  {% include masthead.html %}\n  <div class=\"container\">\n    <div class=\"docs-sub-content\">\n      <h2 class=\"page-title\">Getting started</h2>\n      <p class=\"page-description\">Once you've downloaded Ratchet, here's what to do next.</p>\n    </div>\n    {% include ad.html %}\n  </div>\n</div>\n\n<div class=\"container\">\n  <div class=\"column-group\">\n    <div class=\"column lg-units-8 docs-content\">\n      <div class=\"docs-section\">\n        <h2>Quick start</h2>\n        <p class=\"lead\">Quickly get up and running with a Ratchet app.</p>\n\n        <h3>1. Create your pages</h3>\n        <p>Use the <a href=\"/components\" data-ignore=\"push\">documentation</a> as a reference for all the available components and piece together the pages of your app. Be sure to look at the <a href=\"#pageLayout\">basic page template</a> and <a href=\"/examples\" data-ignore=\"push\">example applications</a>. Make sure to add <code>ratchet-theme-ios.css</code> or <code>ratchet-theme-android.css</code> to your app's <code>&lt;head&gt;</code> if you have a specific platform in mind.</p>\n\n        <h3>2. Connect pages with push.js</h3>\n        <p>Read about <a href=\"/components/#push\" data-ignore=\"push\">push.js</a> then start connecting your pages. Push.js allows you to create an app that feels like a real app when you save it to your phone. Make sure that you have a server running, and that your browser is emulating touch events. <a href=\"https://developers.google.com/chrome-developer-tools/docs/mobile-emulation#emulate-touch-events\" data-ignore=\"push\">Check out this tutorial on emulating touch events in Chrome</a> (<a href=\"https://developer.mozilla.org/en-US/docs/Tools/Responsive_Design_View\" data-ignore=\"push\">or Firefox</a>) if you're not sure how to do that.</p>\n\n        <h3>3. Save the app to your phone</h3>\n        <p>There are <a href=\"https://groups.google.com/forum/#!topic/goratchet/IboE6SCMAyw\" data-ignore=\"push\">a few ways to do this</a>, but the simplest is to run a local server on your computer, point Safari on your iPhone to your computer, then click the <span class=\"icon icon-share\"></span> button and \"Add to Home Screen\". For Android, check out <a href=\"https://developer.chrome.com/multidevice/android/installtohomescreen\" data-ignore=\"push\">this guide</a>.</p>\n      </div>\n\n      <div class=\"docs-section\">\n        <h2>What's included</h2>\n        <p class=\"lead\">Ratchet is downloadable in two forms, within which you'll find the following directories and files, logically grouping common resources and providing both compiled and minified variations.</p>\n\n        <h3>Precompiled Ratchet</h3>\n        <p>Once downloaded, unzip the compressed folder to see the structure of (the compiled) Ratchet. You'll see something like this:</p>\n<!-- NOTE: This info is intentionally duplicated in the README.\nCopy any changes made here over to the README too. -->\n{% highlight bash %}\nratchet/\n├── css/\n│   ├── ratchet.css\n│   ├── ratchet.min.css\n│   ├── ratchet-theme-android.css\n│   ├── ratchet-theme-android.min.css\n│   ├── ratchet-theme-ios.css\n│   └── ratchet-theme-ios.min.css\n├── js/\n│   ├── ratchet.js\n│   └── ratchet.min.js\n└── fonts/\n    ├── ratchicons.eot\n    ├── ratchicons.svg\n    ├── ratchicons.ttf\n    └── ratchicons.woff\n{% endhighlight %}\n\n        <p>This is the most basic form of Ratchet: precompiled files for quick drop-in usage in nearly any web project. We provide compiled CSS and JS (<code>ratchet.*</code>), as well as compiled and minified CSS and JS (<code>ratchet.min.*</code>). The Ratchicon fonts are included, as are the Android and iOS platform themes.</p>\n\n        <h3>Ratchet source code</h3>\n        <p>The Ratchet source code download includes the precompiled CSS, JavaScript, and font assets, along with source Sass, JavaScript, and documentation. More specifically, it includes the following and more:</p>\n{% highlight bash %}\nratchet/\n├── sass/\n├── js/\n├── fonts/\n├── dist/\n│   ├── css/\n│   ├── js/\n│   └── fonts/\n└── docs/\n    └── examples/\n{% endhighlight %}\n\n        <p>The <code>sass/</code>, <code>js/</code>, and <code>fonts/</code> are the source code for our CSS, JS, and icon fonts (respectively). The <code>dist/</code> folder includes everything listed in the precompiled download section above. The <code>docs/</code> folder includes the source code for our documentation, and <code>examples/</code> of Ratchet usage. Beyond that, any other included file provides support for packages, license information, and development.</p>\n      </div>\n\n\n\n      <div class=\"docs-section\">\n        <h2>Page setup</h2>\n        <p class=\"lead\">Three simple rules for structuring your Ratchet pages</p>\n        <h3>1. Fixed bars come first</h3>\n        <p>All fixed bars (<code>.bar</code>) should always be the first thing in the <code>&lt;body&gt;</code> of the page. This is really important!</p>\n\n        <h3>2. Everything else goes in <code>.content</code></h3>\n        <p>Anything that's not a <code>.bar</code> should be put in a div with the class <code>.content</code>. Put this div after the bars in the <code>&lt;body&gt;</code> tag. The <code>.content</code> div is what actually scrolls in a Ratchet prototype.</p>\n\n        <h3>3. Don't forget your meta tags</h3>\n        <p>They're included in the template.html page included in the download, but make sure they stay in the page. They are important for Ratchet to work just right.</p>\n      </div>\n\n\n\n      <div class=\"docs-section\">\n        <h2 id=\"pageLayout\">Basic template</h2>\n        <p class=\"lead\">Use this basic template to get your app started.</p>\n{% highlight html %}\n<!DOCTYPE html>\n<html>\n  <head>\n    <meta charset=\"utf-8\">\n    <title>Ratchet template page</title>\n\n    <!-- Sets initial viewport load and disables zooming  -->\n    <meta name=\"viewport\" content=\"initial-scale=1, maximum-scale=1\">\n\n    <!-- Makes your prototype chrome-less once bookmarked to your phone's home screen -->\n    <meta name=\"apple-mobile-web-app-capable\" content=\"yes\">\n    <meta name=\"apple-mobile-web-app-status-bar-style\" content=\"black\">\n\n    <!-- Include the compiled Ratchet CSS -->\n    <link href=\"ratchet.css\" rel=\"stylesheet\">\n\n    <!-- Include the compiled Ratchet JS -->\n    <script src=\"ratchet.js\"></script>\n  </head>\n  <body>\n\n    <!-- Make sure all your bars are the first things in your <body> -->\n    <header class=\"bar bar-nav\">\n      <h1 class=\"title\">Ratchet</h1>\n    </header>\n\n    <!-- Wrap all non-bar HTML in the .content div (this is actually what scrolls) -->\n    <div class=\"content\">\n      <p class=\"content-padded\">Thanks for downloading Ratchet. This is an example HTML page that's linked up to compiled Ratchet CSS and JS, has the proper meta tags and the HTML structure. Need some more help before you start filling this with your own content? Check out some Ratchet resources:</p>\n      <div class=\"card\">\n        <ul class=\"table-view\">\n          <li class=\"table-view-cell\">\n            <a class=\"push-right\" href=\"http://goratchet.com\">\n              <strong>Ratchet documentation</strong>\n            </a>\n          </li>\n          <li class=\"table-view-cell\">\n            <a class=\"push-right\" href=\"https://github.com/twbs/ratchet/\">\n              <strong>Ratchet on Github</strong>\n            </a>\n          </li>\n          <li class=\"table-view-cell\">\n            <a class=\"push-right\" href=\"https://groups.google.com/forum/#!forum/goratchet\">\n              <strong>Ratchet Google group</strong>\n            </a>\n          </li>\n          <li class=\"table-view-cell\">\n            <a class=\"push-right\" href=\"https://twitter.com/goratchet\">\n              <strong>Ratchet on Twitter</strong>\n            </a>\n          </li>\n        </ul>\n      </div>\n    </div>\n\n  </body>\n</html>\n{% endhighlight %}\n      </div>\n\n\n\n      <div class=\"docs-section\">\n        <h2>Community</h2>\n        <p class=\"lead\">Stay up to date on the development of Ratchet and reach out to the community with these helpful resources.</p>\n        <ol>\n          <li>\n            <p>Read and subscribe to <a href=\"http://blog.getbootstrap.com/\">The Official Bootstrap Blog</a> (which includes Ratchet releases and news).</p>\n          </li>\n          <li>\n            <p>For help using Ratchet, ask on <a href=\"http://stackoverflow.com/questions/tagged/ratchet-2\">StackOverflow using the tag <code>ratchet-2</code></a>.</p>\n          </li>\n          <li>\n            <p>Start a discussion on the <a href=\"https://groups.google.com/forum/#!forum/goratchet\">Ratchet Google group</a>.</p>\n          </li>\n        </ol>\n        <p>You can also follow <a href=\"https://twitter.com/goratchet\">@goratchet</a> on Twitter for the latest news.</p>\n      </div>\n\n      <div class=\"docs-section\">\n        <h2>Browser and OS support</h2>\n        <table class=\"browser-support-table\">\n          <thead>\n            <tr>\n              <th scope=\"col\">OS</th>\n              <th scope=\"col\">Browser</th>\n              <th scope=\"col\" class=\"text-center\">Supported?</th>\n            </tr>\n          </thead>\n          <tbody>\n            <tr>\n              <td>Android (minimum version To Be Decided)</td>\n              <td>Android stock Browser</td>\n              <td class=\"text-center browser-support-yes\"><span class=\"icon icon-check\"></span></td>\n            </tr>\n            <tr>\n              <td>Android (minimum version To Be Decided)</td>\n              <td>Chrome</td>\n              <td class=\"text-center browser-support-yes\"><span class=\"icon icon-check\"></span></td>\n            </tr>\n            <tr>\n              <td>Android (minimum version To Be Decided)</td>\n              <td>Firefox</td>\n              <td class=\"text-center browser-support-maybe\">To Be Decided</td>\n            </tr>\n            <tr>\n              <td>iOS v7.1+</td>\n              <td>Safari</td>\n              <td class=\"text-center browser-support-yes\"><span class=\"icon icon-check\"></span></td>\n            </tr>\n            <tr>\n              <td>iOS v7.1+</td>\n              <td>Chrome</td>\n              <td class=\"text-center browser-support-maybe\">To Be Decided</td>\n            </tr>\n            <tr>\n              <td>Windows Phone</td>\n              <td>IE Mobile</td>\n              <td class=\"text-center browser-support-maybe\">To Be Decided</td>\n            </tr>\n            <tr>\n              <td>&mdash;</td>\n              <td>Opera Mini</td>\n              <td class=\"text-center browser-support-maybe\">To Be Decided</td>\n            </tr>\n            <tr>\n              <td>&mdash;</td>\n              <td>Opera Mobile</td>\n              <td class=\"text-center browser-support-maybe\">To Be Decided</td>\n            </tr>\n          </tbody>\n        </table>\n      </div>\n    </div>\n\n    <div class=\"column lg-units-4\">\n      {% include download-module.html %}\n    </div>\n  </div>\n\n  <div class=\"column\">\n    <!-- Footer -->\n    {% include footer.html %}\n  </div>\n</div>\n"
  },
  {
    "path": "docs/index.html",
    "content": "---\nlayout: home\ntitle: Ratchet\n---\n\n<div class=\"docs-header\">\n  {% include masthead.html %}\n  <div class=\"docs-header-content\">\n    <p class=\"docs-subtitle\">Build mobile apps with simple HTML&#8218; CSS&#8218; and JS components.</p>\n    <a data-ignore=\"push\" href=\"https://github.com/twbs/ratchet/archive/v2.0.2.zip\" class=\"btn btn-primary\" onClick=\"_gaq.push(['_trackEvent', 'Downloads', 'V2.0.2']);\">Download Ratchet</a>\n    <p class=\"version\">Currently v2.0.2</p>\n  </div>\n\n  <div class=\"docs-header-bottom\">\n    {% include ad.html %}\n    {% include footer.html %}\n  </div>\n</div>\n"
  },
  {
    "path": "docs/one.html",
    "content": "<!DOCTYPE html>\n<html>\n  <head>\n    <meta charset=\"utf-8\">\n    <title>Ratchet</title>\n    <meta name=\"description\" content=\"\">\n    <meta name=\"author\" content=\"\">\n    <meta name=\"viewport\" content=\"initial-scale=1, maximum-scale=1, user-scalable=no\">\n    <link rel=\"shortcut icon\" href=\"favicon.ico\">\n    <meta name=\"apple-mobile-web-app-capable\" content=\"yes\">\n    <meta name=\"apple-mobile-web-app-status-bar-style\" content=\"black\">\n    <link rel=\"stylesheet\" href=\"/dist/css/ratchet.min.css\">\n\n    <link rel=\"apple-touch-icon-precomposed\" sizes=\"114x114\" href=\"/assets/img/apple-touch-icon-114x114.png\">\n  </head>\n  <body ontouchstart=\"\">\n    <header class=\"bar bar-nav\">\n      <h1 class=\"title\">Push</h1>\n    </header>\n    <div class=\"content\">\n      <div class=\"card\">\n        <ul class=\"table-view\">\n          <li class=\"table-view-cell\">\n            <a class=\"push-right\" href=\"/two.html\" data-transition=\"slide-in\" data-selector=\".device-content\">\n                Load new page with push\n            </a>\n          </li>\n        </ul>\n      </div>\n    </div>\n  </body>\n</html>\n"
  },
  {
    "path": "docs/robots.txt",
    "content": "---\n---\n\n# www.robotstxt.org/\n\n# Allow crawling of all content\nUser-agent: *\nDisallow:\nSitemap: {{ site.url }}/sitemap.xml\n"
  },
  {
    "path": "docs/sitemap.xml",
    "content": "---\n---\n\n<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<urlset xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:schemaLocation=\"http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd\" xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n  <url>\n    <loc>{{ site.url }}/</loc>\n    <lastmod>{{ site.time | date_to_xmlschema }}</lastmod>\n    <changefreq>daily</changefreq>\n    <priority>1.0</priority>\n  </url>\n  {% for page in site.html_pages %}\n  {% if page.layout != \"home\" %}\n  <url>\n    <loc>{{ site.url }}{{ page.url }}</loc>\n    <lastmod>{{ site.time | date_to_xmlschema }}</lastmod>\n    <changefreq>weekly</changefreq>\n    <priority>0.7</priority>\n  </url>\n  {% endif %}\n  {% endfor %}\n</urlset>\n"
  },
  {
    "path": "docs/template.html",
    "content": "<!DOCTYPE html>\n<html>\n  <head>\n    <meta charset=\"utf-8\">\n    <title>Ratchet template page</title>\n\n    <!-- Sets initial viewport load and disables zooming  -->\n    <meta name=\"viewport\" content=\"initial-scale=1, maximum-scale=1, user-scalable=no\">\n\n    <!-- Makes your prototype chrome-less once bookmarked to your phone's home screen -->\n    <meta name=\"apple-mobile-web-app-capable\" content=\"yes\">\n    <meta name=\"apple-mobile-web-app-status-bar-style\" content=\"black\">\n\n    <!-- Set a shorter title for iOS6 devices when saved to home screen -->\n    <meta name=\"apple-mobile-web-app-title\" content=\"Ratchet\">\n\n    <!-- Include the compiled Ratchet CSS -->\n    <link rel=\"stylesheet\" href=\"/dist/css/ratchet.min.css\">\n\n    <!-- Intro paragraph styles. Delete once you start using this page -->\n    <style>\n        .welcome {\n          line-height: 1.5;\n          color: #555;\n        }\n    </style>\n\n  </head>\n  <body>\n\n    <!-- Make sure all your bars are the first things in your <body> -->\n    <header class=\"bar bar-nav\">\n      <h1 class=\"title\">Ratchet</h1>\n    </header>\n\n    <!-- Wrap all non-bar HTML in the .content div (this is actually what scrolls) -->\n    <div class=\"content\">\n      <p class=\"welcome\">Thanks for downloading Ratchet. This is an example HTML page that's linked up to compiled Ratchet CSS and JS, has the proper meta tags and the HTML structure. Need some more help before you start filling this with your own content? Check out some Ratchet resources:</p>\n      <div class=\"card\">\n        <ul class=\"table-view\">\n          <li class=\"table-view-cell\">\n            <a class=\"navigate-right\" href=\"http://goratchet.com\">\n              <strong>Ratchet documentation</strong>\n            </a>\n          </li>\n          <li class=\"table-view-cell\">\n            <a class=\"navigate-right\" href=\"https://github.com/twbs/ratchet/\">\n              <strong>Ratchet on Github</strong>\n            </a>\n          </li>\n          <li class=\"table-view-cell\">\n            <a class=\"navigate-right\" href=\"https://groups.google.com/forum/#!forum/goratchet\">\n              <strong>Ratchet Google group</strong>\n            </a>\n          </li>\n          <li class=\"table-view-cell\">\n            <a class=\"navigate-right\" href=\"https://twitter.com/goratchet\">\n              <strong>Ratchet on Twitter</strong>\n            </a>\n          </li>\n        </ul>\n      </div>\n    </div>\n\n    <!-- Include the compiled Ratchet JS -->\n    <script src=\"/dist/js/ratchet.min.js\"></script>\n  </body>\n</html>\n"
  },
  {
    "path": "docs/two.html",
    "content": "<!DOCTYPE html>\n<html>\n  <head>\n    <meta charset=\"utf-8\">\n    <title>Ratchet</title>\n    <meta name=\"description\" content=\"\">\n    <meta name=\"author\" content=\"\">\n    <meta name=\"viewport\" content=\"initial-scale=1, maximum-scale=1, user-scalable=no\">\n    <link rel=\"shortcut icon\" href=\"favicon.ico\">\n    <meta name=\"apple-mobile-web-app-capable\" content=\"yes\">\n    <meta name=\"apple-mobile-web-app-status-bar-style\" content=\"black\">\n    <link rel=\"stylesheet\" href=\"/dist/css/ratchet.min.css\">\n\n    <link rel=\"apple-touch-icon-precomposed\" sizes=\"114x114\" href=\"/assets/img/apple-touch-icon-114x114.png\">\n  </head>\n  <body ontouchstart=\"\">\n    <header class=\"bar bar-nav\">\n      <a class=\"icon icon-left-nav pull-left\" href=\"/one.html\" data-transition=\"slide-out\"></a>\n      <h1 class=\"title\">Page two</h1>\n    </header>\n    <div class=\"content\">\n      <div class=\"card\">\n        <ul class=\"table-view\">\n          <li class=\"table-view-cell\">\n            <a href=\"/one.html\" data-transition=\"slide-out\">Tap or click here to go back. You can also try your browser's back button.</a>\n          </li>\n        </ul>\n      </div>\n    </div>\n  </body>\n</html>\n"
  },
  {
    "path": "grunt/ratchicons-data-generator.js",
    "content": "/*!\n * Ratchet Grunt task for Ratchicons data generation\n * http://goratchet.com\n * Original script from Bootstrap (http://getbootstrap.com).\n * Bootstrap is copyright 2015 Twitter, Inc. and licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE).\n */\n\n/* jshint node: true */\n\n'use strict';\n\nvar fs = require('fs');\n\nmodule.exports = function generateRatchiconsData(grunt) {\n  // Pass encoding, utf8, so `readFileSync` will return a string instead of a\n  // buffer\n  var ratchiconsFile = fs.readFileSync('sass/ratchicons.scss', 'utf8');\n  var ratchiconsLines = ratchiconsFile.split('\\n');\n\n  // Use any line that starts with \".icon-\" and capture the class name\n  var iconClassName = /^\\.(icon-[^\\s]+)/;\n  var ratchiconsData = '# This file is generated via Grunt task. **Do not edit directly.**\\n' +\n                       '# See the \\'build-ratchicons-data\\' task in Gruntfile.js.\\n\\n';\n  var ratchiconsYml = 'docs/_data/ratchicons.yml';\n  for (var i = 0, len = ratchiconsLines.length; i < len; i++) {\n    var match = ratchiconsLines[i].match(iconClassName);\n\n    if (match !== null) {\n      ratchiconsData += '- ' + match[1] + '\\n';\n    }\n  }\n\n  // Create the `_data` directory if it doesn't already exist\n  if (!fs.existsSync('docs/_data')) {\n    fs.mkdirSync('docs/_data');\n  }\n\n  try {\n    fs.writeFileSync(ratchiconsYml, ratchiconsData);\n  } catch (err) {\n    grunt.fail.warn(err);\n  }\n  grunt.log.writeln('File ' + ratchiconsYml.cyan + ' created.');\n};\n"
  },
  {
    "path": "js/.jscsrc",
    "content": "{\n  \"disallowEmptyBlocks\": true,\n  \"disallowKeywords\": [\"with\"],\n  \"disallowMixedSpacesAndTabs\": true,\n  \"disallowMultipleLineStrings\": true,\n  \"disallowMultipleVarDecl\": true,\n  \"disallowQuotedKeysInObjects\": \"allButReserved\",\n  \"disallowSpaceAfterPrefixUnaryOperators\": [\"++\", \"--\", \"+\", \"-\", \"~\", \"!\"],\n  \"disallowSpaceBeforeBinaryOperators\": [\",\"],\n  \"disallowSpaceBeforePostfixUnaryOperators\": [\"++\", \"--\"],\n  //\"disallowSpacesInFunctionDeclaration\": { \"beforeOpeningRoundBrace\": true },\n  \"disallowSpacesInNamedFunctionExpression\": { \"beforeOpeningRoundBrace\": true },\n  \"disallowSpacesInsideArrayBrackets\": true,\n  \"disallowSpacesInsideParentheses\": true,\n  \"disallowTrailingComma\": true,\n  \"disallowTrailingWhitespace\": true,\n  //\"requireBlocksOnNewline\": true,\n  \"requireCamelCaseOrUpperCaseIdentifiers\": true,\n  \"requireCapitalizedConstructors\": true,\n  \"requireCommaBeforeLineBreak\": true,\n  \"requireCurlyBraces\": true,\n  //\"requireDollarBeforejQueryAssignment\": true,\n  \"requireDotNotation\": true,\n  \"requireLineFeedAtFileEnd\": true,\n  \"requirePaddingNewLinesAfterUseStrict\": true,\n  \"requirePaddingNewLinesBeforeExport\": true,\n  \"requireParenthesesAroundIIFE\": true,\n  \"requireSemicolons\": true,\n  \"requireSpaceAfterBinaryOperators\": [\"+\", \"-\", \"/\", \"*\", \"=\", \"==\", \"===\", \"!=\", \"!==\", \">\", \"<\", \">=\", \"<=\"],\n  \"requireSpaceAfterKeywords\": [\"if\", \"else\", \"for\", \"while\", \"do\", \"switch\", \"return\", \"try\", \"catch\"],\n  \"requireSpaceAfterLineComment\": true,\n  \"requireSpaceBeforeBinaryOperators\": [\"+\", \"-\", \"/\", \"*\", \"=\", \"==\", \"===\", \"!=\", \"!==\", \">\", \"<\", \">=\", \"<=\"],\n  \"requireSpaceBeforeBlockStatements\": true,\n  \"requireSpaceBetweenArguments\": true,\n  \"requireSpacesInAnonymousFunctionExpression\": { \"beforeOpeningCurlyBrace\": true, \"beforeOpeningRoundBrace\": true },\n  \"requireSpacesInConditionalExpression\": true,\n  //\"requireSpacesInForStatement\": true,\n  \"requireSpacesInFunction\": { \"beforeOpeningCurlyBrace\": true },\n  \"requireSpacesInFunctionDeclaration\": { \"beforeOpeningCurlyBrace\": true },\n  \"requireSpacesInFunctionExpression\": { \"beforeOpeningCurlyBrace\": true },\n  \"requireSpacesInNamedFunctionExpression\": { \"beforeOpeningCurlyBrace\": true },\n  \"requireSpacesInsideObjectBrackets\": \"allButNested\",\n  \"validateAlignedFunctionParameters\": true,\n  \"validateIndentation\": 2,\n  \"validateLineBreaks\": \"LF\",\n  \"validateNewlineAfterArrayElements\": true,\n  \"validateParameterSeparator\": \", \",\n  \"validateQuoteMarks\": \"'\"\n}\n"
  },
  {
    "path": "js/.jshintrc",
    "content": "{\n  \"bitwise\" : true,\n  \"browser\" : true,\n  \"devel\"   : true,\n  \"eqeqeq\"  : true,\n  \"expr\"    : true,\n  \"forin\"   : true,\n  \"freeze\"  : true,\n  \"latedef\" : false,\n  \"nonbsp\"  : true,\n  \"strict\"  : true,\n  \"undef\"   : true,\n  \"unused\"  : true\n}\n"
  },
  {
    "path": "js/common.js",
    "content": "/* ========================================================================\n * Ratchet: common.js v2.0.2\n * http://goratchet.com/\n * ========================================================================\n * Copyright 2015 Connor Sears\n * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)\n * ======================================================================== */\n\n!(function () {\n  'use strict';\n\n  // Compatible With CustomEvent\n  if (!window.CustomEvent) {\n    window.CustomEvent = function (type, config) {\n      var e = document.createEvent('CustomEvent');\n      e.initCustomEvent(type, config.bubbles, config.cancelable, config.detail);\n      return e;\n    };\n  }\n\n  // Create Ratchet namespace\n  if (typeof window.RATCHET === 'undefined') {\n    window.RATCHET = {};\n  }\n\n  // Original script from http://davidwalsh.name/vendor-prefix\n  window.RATCHET.getBrowserCapabilities = (function () {\n    var styles = window.getComputedStyle(document.documentElement, '');\n    var pre = (Array.prototype.slice\n        .call(styles)\n        .join('')\n        .match(/-(moz|webkit|ms)-/) || (styles.OLink === '' && ['', 'o'])\n      )[1];\n    return {\n      prefix: '-' + pre + '-',\n      transform: pre[0].toUpperCase() + pre.substr(1) + 'Transform'\n    };\n  })();\n\n  window.RATCHET.getTransitionEnd = (function () {\n    var el = document.createElement('ratchet');\n    var transEndEventNames = {\n      WebkitTransition : 'webkitTransitionEnd',\n      MozTransition : 'transitionend',\n      OTransition : 'oTransitionEnd otransitionend',\n      transition : 'transitionend'\n    };\n\n    for (var name in transEndEventNames) {\n      if (el.style[name] !== undefined) {\n        return transEndEventNames[name];\n      }\n    }\n\n    return transEndEventNames.transition;\n  })();\n}());\n"
  },
  {
    "path": "js/modals.js",
    "content": "/* ========================================================================\n * Ratchet: modals.js v2.0.2\n * http://goratchet.com/components#modals\n * ========================================================================\n * Copyright 2015 Connor Sears\n * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)\n * ======================================================================== */\n\n!(function () {\n  'use strict';\n\n  var findModals = function (target) {\n    var i;\n    var modals = document.querySelectorAll('a');\n\n    for (; target && target !== document; target = target.parentNode) {\n      for (i = modals.length; i--;) {\n        if (modals[i] === target) {\n          return target;\n        }\n      }\n    }\n  };\n\n  var getModal = function (event) {\n    var modalToggle = findModals(event.target);\n    if (modalToggle && modalToggle.hash) {\n      return document.querySelector(modalToggle.hash);\n    }\n  };\n\n  window.addEventListener('touchend', function (event) {\n    var modal = getModal(event);\n    if (modal && modal.classList.contains('modal')) {\n      var eventToDispatch = null;\n      if (modal.classList.contains('active')) {\n        eventToDispatch = new CustomEvent('modalClose', {\n          bubbles: true,\n          cancelable: true\n        });\n      }\n      else {\n        eventToDispatch = new CustomEvent('modalOpen', {\n          bubbles: true,\n          cancelable: true\n        });\n      }\n      modal.dispatchEvent(eventToDispatch);\n      modal.classList.toggle('active');\n      event.preventDefault(); // prevents rewriting url (apps can still use hash values in url)\n    }\n  });\n}());\n"
  },
  {
    "path": "js/popovers.js",
    "content": "/* ========================================================================\n * Ratchet: popovers.js v2.0.2\n * http://goratchet.com/components#popovers\n * ========================================================================\n * Copyright 2015 Connor Sears\n * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)\n * ======================================================================== */\n\n!(function () {\n  'use strict';\n\n  var popover;\n\n  var findPopovers = function (target) {\n    var i;\n    var popovers = document.querySelectorAll('a');\n\n    for (; target && target !== document; target = target.parentNode) {\n      for (i = popovers.length; i--;) {\n        if (popovers[i] === target) {\n          return target;\n        }\n      }\n    }\n  };\n\n  var onPopoverHidden = function () {\n    popover.style.display = 'none';\n    popover.removeEventListener(window.RATCHET.getTransitionEnd, onPopoverHidden);\n  };\n\n  var backdrop = (function () {\n    var element = document.createElement('div');\n\n    element.classList.add('backdrop');\n\n    element.addEventListener('touchend', function () {\n      popover.addEventListener(window.RATCHET.getTransitionEnd, onPopoverHidden);\n      popover.classList.remove('visible');\n      popover.parentNode.removeChild(backdrop);\n    });\n\n    return element;\n  }());\n\n  var getPopover = function (e) {\n    var anchor = findPopovers(e.target);\n\n    if (!anchor || !anchor.hash || (anchor.hash.indexOf('/') > 0)) {\n      return;\n    }\n\n    try {\n      popover = document.querySelector(anchor.hash);\n    } catch (error) {\n      popover = null;\n    }\n\n    if (popover === null) {\n      return;\n    }\n\n    if (!popover || !popover.classList.contains('popover')) {\n      return;\n    }\n\n    return popover;\n  };\n\n  var showHidePopover = function (e) {\n    var popover = getPopover(e);\n\n    if (!popover) {\n      return;\n    }\n\n    popover.style.display = 'block';\n    popover.offsetHeight;\n    popover.classList.add('visible');\n\n    popover.parentNode.appendChild(backdrop);\n  };\n\n  window.addEventListener('touchend', showHidePopover);\n\n}());\n"
  },
  {
    "path": "js/push.js",
    "content": "/* ========================================================================\n * Ratchet: push.js v2.0.2\n * http://goratchet.com/components#push\n * ========================================================================\n * inspired by @defunkt's jquery.pjax.js\n * Copyright 2015 Connor Sears\n * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)\n * ======================================================================== */\n\n/* global _gaq: true */\n\n!(function () {\n  'use strict';\n\n  var noop = function () {};\n\n\n  // Pushstate caching\n  // ==================\n\n  var isScrolling;\n  var maxCacheLength = 20;\n  var cacheMapping   = sessionStorage;\n  var domCache       = {};\n  // Change these to unquoted camelcase in the next major version bump\n  var transitionMap  = {\n    'slide-in'  : 'slide-out',\n    'slide-out' : 'slide-in',\n    fade        : 'fade'\n  };\n\n  var bars = {\n    bartab             : '.bar-tab',\n    barnav             : '.bar-nav',\n    barfooter          : '.bar-footer',\n    barheadersecondary : '.bar-header-secondary'\n  };\n\n  var cacheReplace = function (data, updates) {\n    PUSH.id = data.id;\n    if (updates) {\n      data = getCached(data.id);\n    }\n    cacheMapping[data.id] = JSON.stringify(data);\n    window.history.replaceState(data.id, data.title, data.url);\n  };\n\n  var cachePush = function () {\n    var id = PUSH.id;\n\n    var cacheForwardStack = JSON.parse(cacheMapping.cacheForwardStack || '[]');\n    var cacheBackStack    = JSON.parse(cacheMapping.cacheBackStack    || '[]');\n\n    cacheBackStack.push(id);\n\n    while (cacheForwardStack.length) {\n      delete cacheMapping[cacheForwardStack.shift()];\n    }\n    while (cacheBackStack.length > maxCacheLength) {\n      delete cacheMapping[cacheBackStack.shift()];\n    }\n\n    if (getCached(PUSH.id).url) {\n      window.history.pushState(null, '', getCached(PUSH.id).url);\n    }\n\n    cacheMapping.cacheForwardStack = JSON.stringify(cacheForwardStack);\n    cacheMapping.cacheBackStack    = JSON.stringify(cacheBackStack);\n  };\n\n  var cachePop = function (id, direction) {\n    var forward           = direction === 'forward';\n    var cacheForwardStack = JSON.parse(cacheMapping.cacheForwardStack || '[]');\n    var cacheBackStack    = JSON.parse(cacheMapping.cacheBackStack    || '[]');\n    var pushStack         = forward ? cacheBackStack    : cacheForwardStack;\n    var popStack          = forward ? cacheForwardStack : cacheBackStack;\n\n    if (PUSH.id) {\n      pushStack.push(PUSH.id);\n    }\n    popStack.pop();\n\n    cacheMapping.cacheForwardStack = JSON.stringify(cacheForwardStack);\n    cacheMapping.cacheBackStack    = JSON.stringify(cacheBackStack);\n  };\n\n  var getCached = function (id) {\n    return JSON.parse(cacheMapping[id] || null) || {};\n  };\n\n  var getTarget = function (e) {\n    var target = findTarget(e.target);\n\n    if (!target ||\n        e.which > 1 ||\n        e.metaKey ||\n        e.ctrlKey ||\n        isScrolling ||\n        location.protocol !== target.protocol ||\n        location.host     !== target.host ||\n        !target.hash && /#/.test(target.href) ||\n        target.hash && target.href.replace(target.hash, '') === location.href.replace(location.hash, '') ||\n        target.getAttribute('data-ignore') === 'push') { return; }\n\n    return target;\n  };\n\n\n  // Main event handlers (touchend, popstate)\n  // ==========================================\n\n  var touchend = function (e) {\n    var target = getTarget(e);\n\n    if (!target) {\n      return;\n    }\n\n    e.preventDefault();\n\n    PUSH({\n      url        : target.href,\n      hash       : target.hash,\n      timeout    : target.getAttribute('data-timeout'),\n      transition : target.getAttribute('data-transition')\n    });\n  };\n\n  var popstate = function (e) {\n    var key;\n    var barElement;\n    var activeObj;\n    var activeDom;\n    var direction;\n    var transition;\n    var transitionFrom;\n    var transitionFromObj;\n    var id = e.state;\n\n    if (!id || !cacheMapping[id]) {\n      return;\n    }\n\n    direction = PUSH.id < id ? 'forward' : 'back';\n\n    cachePop(id, direction);\n\n    activeObj = getCached(id);\n    activeDom = domCache[id];\n\n    if (activeObj.title) {\n      document.title = activeObj.title;\n    }\n\n    if (direction === 'back') {\n      transitionFrom    = JSON.parse(direction === 'back' ? cacheMapping.cacheForwardStack : cacheMapping.cacheBackStack);\n      transitionFromObj = getCached(transitionFrom[transitionFrom.length - 1]);\n    } else {\n      transitionFromObj = activeObj;\n    }\n\n    if (direction === 'back' && !transitionFromObj.id) {\n      return (PUSH.id = id);\n    }\n\n    transition = direction === 'back' ? transitionMap[transitionFromObj.transition] : transitionFromObj.transition;\n\n    if (!activeDom) {\n      return PUSH({\n        id         : activeObj.id,\n        url        : activeObj.url,\n        title      : activeObj.title,\n        timeout    : activeObj.timeout,\n        transition : transition,\n        ignorePush : true\n      });\n    }\n\n    if (transitionFromObj.transition) {\n      activeObj = extendWithDom(activeObj, '.content', activeDom.cloneNode(true));\n      for (key in bars) {\n        if (bars.hasOwnProperty(key)) {\n          barElement = document.querySelector(bars[key]);\n          if (activeObj[key]) {\n            swapContent(activeObj[key], barElement);\n          } else if (barElement) {\n            barElement.parentNode.removeChild(barElement);\n          }\n        }\n      }\n    }\n\n    swapContent(\n      (activeObj.contents || activeDom).cloneNode(true),\n      document.querySelector('.content'),\n      transition, function () {\n        triggerStateChange();\n      }\n    );\n\n    PUSH.id = id;\n\n    document.body.offsetHeight; // force reflow to prevent scroll\n  };\n\n\n  // Core PUSH functionality\n  // =======================\n\n  var PUSH = function (options) {\n    var key;\n    var xhr = PUSH.xhr;\n\n    options.container = options.container || options.transition ? document.querySelector('.content') : document.body;\n\n    var isFileProtocol = /^file:/.test(window.location.protocol);\n\n    for (key in bars) {\n      if (bars.hasOwnProperty(key)) {\n        options[key] = options[key] || document.querySelector(bars[key]);\n      }\n    }\n\n    if (xhr && xhr.readyState < 4) {\n      xhr.onreadystatechange = noop;\n      xhr.abort();\n    }\n\n    xhr = new XMLHttpRequest();\n    if (isFileProtocol) {\n      xhr.open('GET', options.url, false);\n    } else {\n      xhr.open('GET', options.url, true);\n      xhr.setRequestHeader('X-PUSH', 'true');\n\n      xhr.onreadystatechange = function () {\n        if (options._timeout) {\n          clearTimeout(options._timeout);\n        }\n        if (xhr.readyState === 4) {\n          if (xhr.status === 200) {\n            success(xhr, options);\n          } else {\n            failure(options.url);\n          }\n        }\n      };\n    }\n\n    if (!PUSH.id) {\n      cacheReplace({\n        id         : +new Date(),\n        url        : window.location.href,\n        title      : document.title,\n        timeout    : options.timeout,\n        transition : options.transition\n      });\n    }\n\n    cacheCurrentContent();\n\n    if (options.timeout) {\n      options._timeout = setTimeout(function () {  xhr.abort('timeout'); }, options.timeout);\n    }\n\n    xhr.send();\n\n    if (isFileProtocol) {\n      if (xhr.status === 0 || xhr.status === 200) {\n        success(xhr, options);\n      } else {\n        failure(options.url);\n      }\n    }\n\n    if (xhr.readyState && !options.ignorePush) {\n      cachePush();\n    }\n  };\n\n  function cacheCurrentContent () {\n    domCache[PUSH.id] = document.body.cloneNode(true);\n  }\n\n\n  // Main XHR handlers\n  // =================\n\n  var success = function (xhr, options) {\n    var key;\n    var barElement;\n    var data = parseXHR(xhr, options);\n\n    if (!data.contents) {\n      return locationReplace(options.url);\n    }\n\n    if (data.title) {\n      document.title = data.title;\n    }\n\n    if (options.transition) {\n      for (key in bars) {\n        if (bars.hasOwnProperty(key)) {\n          barElement = document.querySelector(bars[key]);\n          if (data[key]) {\n            swapContent(data[key], barElement);\n          } else if (barElement) {\n            barElement.parentNode.removeChild(barElement);\n          }\n        }\n      }\n    }\n\n    swapContent(data.contents, options.container, options.transition, function () {\n      cacheReplace({\n        id         : options.id || +new Date(),\n        url        : data.url,\n        title      : data.title,\n        timeout    : options.timeout,\n        transition : options.transition\n      }, options.id);\n      triggerStateChange();\n    });\n\n    if (!options.ignorePush && window._gaq) {\n      _gaq.push(['_trackPageview']); // google analytics\n    }\n    if (!options.hash) {\n      return;\n    }\n  };\n\n  var failure = function (url) {\n    throw new Error('Could not get: ' + url);\n  };\n\n\n  // PUSH helpers\n  // ============\n\n  var swapContent = function (swap, container, transition, complete) {\n    var enter;\n    var containerDirection;\n    var swapDirection;\n\n    if (!transition) {\n      if (container) {\n        container.innerHTML = swap.innerHTML;\n      } else if (swap.classList.contains('content')) {\n        document.body.appendChild(swap);\n      } else {\n        document.body.insertBefore(swap, document.querySelector('.content'));\n      }\n    } else {\n      enter = /in$/.test(transition);\n\n      if (transition === 'fade') {\n        container.classList.add('in');\n        container.classList.add('fade');\n        swap.classList.add('fade');\n      }\n\n      if (/slide/.test(transition)) {\n        swap.classList.add('sliding-in', enter ? 'right' : 'left');\n        swap.classList.add('sliding');\n        container.classList.add('sliding');\n      }\n\n      container.parentNode.insertBefore(swap, container);\n    }\n\n    if (!transition) {\n      if (complete) {\n        complete();\n      }\n    }\n\n    if (transition === 'fade') {\n      container.offsetWidth; // force reflow\n      container.classList.remove('in');\n      var fadeContainerEnd = function () {\n        container.removeEventListener(window.RATCHET.getTransitionEnd, fadeContainerEnd);\n        swap.classList.add('in');\n        swap.addEventListener(window.RATCHET.getTransitionEnd, fadeSwapEnd);\n      };\n      var fadeSwapEnd = function () {\n        swap.removeEventListener(window.RATCHET.getTransitionEnd, fadeSwapEnd);\n        container.parentNode.removeChild(container);\n        swap.classList.remove('fade');\n        swap.classList.remove('in');\n        if (complete) {\n          complete();\n        }\n      };\n      container.addEventListener(window.RATCHET.getTransitionEnd, fadeContainerEnd);\n\n    }\n\n    if (/slide/.test(transition)) {\n      var slideEnd = function () {\n        swap.removeEventListener(window.RATCHET.getTransitionEnd, slideEnd);\n        swap.classList.remove('sliding', 'sliding-in');\n        swap.classList.remove(swapDirection);\n        container.parentNode.removeChild(container);\n        if (complete) {\n          complete();\n        }\n      };\n\n      container.offsetWidth; // force reflow\n      swapDirection      = enter ? 'right' : 'left';\n      containerDirection = enter ? 'left' : 'right';\n      container.classList.add(containerDirection);\n      swap.classList.remove(swapDirection);\n      swap.addEventListener(window.RATCHET.getTransitionEnd, slideEnd);\n    }\n  };\n\n  var triggerStateChange = function () {\n    var e = new CustomEvent('push', {\n      detail: { state: getCached(PUSH.id) },\n      bubbles: true,\n      cancelable: true\n    });\n\n    window.dispatchEvent(e);\n  };\n\n  var findTarget = function (target) {\n    var i;\n    var toggles = document.querySelectorAll('a');\n\n    for (; target && target !== document; target = target.parentNode) {\n      for (i = toggles.length; i--;) {\n        if (toggles[i] === target) {\n          return target;\n        }\n      }\n    }\n  };\n\n  var locationReplace = function (url) {\n    window.history.replaceState(null, '', '#');\n    window.location.replace(url);\n  };\n\n  var extendWithDom = function (obj, fragment, dom) {\n    var i;\n    var result = {};\n\n    for (i in obj) {\n      if (obj.hasOwnProperty(i)) {\n        result[i] = obj[i];\n      }\n    }\n\n    Object.keys(bars).forEach(function (key) {\n      var el = dom.querySelector(bars[key]);\n      if (el) {\n        el.parentNode.removeChild(el);\n      }\n      result[key] = el;\n    });\n\n    result.contents = dom.querySelector(fragment);\n\n    return result;\n  };\n\n  var parseXHR = function (xhr, options) {\n    var head;\n    var body;\n    var data = {};\n    var responseText = xhr.responseText;\n\n    data.url = options.url;\n\n    if (!responseText) {\n      return data;\n    }\n\n    if (/<html/i.test(responseText)) {\n      head           = document.createElement('div');\n      body           = document.createElement('div');\n      head.innerHTML = responseText.match(/<head[^>]*>([\\s\\S.]*)<\\/head>/i)[0];\n      body.innerHTML = responseText.match(/<body[^>]*>([\\s\\S.]*)<\\/body>/i)[0];\n    } else {\n      head           = body = document.createElement('div');\n      head.innerHTML = responseText;\n    }\n\n    data.title = head.querySelector('title') || document.querySelector('title');\n    var text = 'innerText' in data.title ? 'innerText' : 'textContent';\n    data.title = data.title && data.title[text].trim();\n\n    if (options.transition) {\n      data = extendWithDom(data, '.content', body);\n    } else {\n      data.contents = body;\n    }\n\n    return data;\n  };\n\n\n  // Attach PUSH event handlers\n  // ==========================\n\n  window.addEventListener('touchstart', function () { isScrolling = false; });\n  window.addEventListener('touchmove', function () { isScrolling = true; });\n  window.addEventListener('touchend', touchend);\n  window.addEventListener('click', function (e) {\n    if (getTarget(e)) {\n      e.preventDefault();\n    }\n  });\n  window.addEventListener('popstate', popstate);\n\n  // TODO : Remove this line in the next major version\n  window.PUSH = PUSH;\n  window.RATCHET.push = PUSH;\n\n}());\n"
  },
  {
    "path": "js/segmented-controllers.js",
    "content": "/* ========================================================================\n * Ratchet: segmented-controllers.js v2.0.2\n * http://goratchet.com/components#segmentedControls\n * ========================================================================\n * Copyright 2015 Connor Sears\n * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)\n * ======================================================================== */\n\n!(function () {\n  'use strict';\n\n  var getTarget = function (target) {\n    var i;\n    var segmentedControls = document.querySelectorAll('.segmented-control .control-item');\n\n    for (; target && target !== document; target = target.parentNode) {\n      for (i = segmentedControls.length; i--;) {\n        if (segmentedControls[i] === target) {\n          return target;\n        }\n      }\n    }\n  };\n\n  window.addEventListener('touchend', function (e) {\n    var activeTab;\n    var activeBodies;\n    var targetBody;\n    var targetTab     = getTarget(e.target);\n    var className     = 'active';\n    var classSelector = '.' + className;\n\n    if (!targetTab) {\n      return;\n    }\n\n    activeTab = targetTab.parentNode.querySelector(classSelector);\n\n    if (activeTab) {\n      activeTab.classList.remove(className);\n    }\n\n    targetTab.classList.add(className);\n\n    if (!targetTab.hash) {\n      return;\n    }\n\n    targetBody = document.querySelector(targetTab.hash);\n\n    if (!targetBody) {\n      return;\n    }\n\n    activeBodies = targetBody.parentNode.querySelectorAll(classSelector);\n\n    for (var i = 0; i < activeBodies.length; i++) {\n      activeBodies[i].classList.remove(className);\n    }\n\n    targetBody.classList.add(className);\n  });\n\n  window.addEventListener('click', function (e) {\n    if (getTarget(e.target)) {\n      e.preventDefault();\n    }\n  });\n\n}());\n"
  },
  {
    "path": "js/sliders.js",
    "content": "/* ========================================================================\n * Ratchet: sliders.js v2.0.2\n * http://goratchet.com/components#sliders\n * ========================================================================\n   Adapted from Brad Birdsall's swipe\n * Copyright 2015 Connor Sears\n * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)\n * ======================================================================== */\n\n!(function () {\n  'use strict';\n\n  var pageX;\n  var pageY;\n  var slider;\n  var deltaX;\n  var deltaY;\n  var offsetX;\n  var lastSlide;\n  var startTime;\n  var resistance;\n  var sliderWidth;\n  var slideNumber;\n  var isScrolling;\n  var scrollableArea;\n  var startedMoving;\n\n  var transformPrefix   = window.RATCHET.getBrowserCapabilities.prefix;\n  var transformProperty = window.RATCHET.getBrowserCapabilities.transform;\n\n  var getSlider = function (target) {\n    var i;\n    var sliders = document.querySelectorAll('.slider > .slide-group');\n\n    for (; target && target !== document; target = target.parentNode) {\n      for (i = sliders.length; i--;) {\n        if (sliders[i] === target) {\n          return target;\n        }\n      }\n    }\n  };\n\n  var getScroll = function () {\n    var translate3d = slider.style[transformProperty].match(/translate3d\\(([^,]*)/);\n    var ret = translate3d ? translate3d[1] : 0;\n    return parseInt(ret, 10);\n  };\n\n  var setSlideNumber = function (offset) {\n    var round = offset ? (deltaX < 0 ? 'ceil' : 'floor') : 'round';\n    slideNumber = Math[round](getScroll() / (scrollableArea / slider.children.length));\n    slideNumber += offset;\n    slideNumber = Math.min(slideNumber, 0);\n    slideNumber = Math.max(-(slider.children.length - 1), slideNumber);\n  };\n\n  var onTouchStart = function (e) {\n    slider = getSlider(e.target);\n\n    if (!slider) {\n      return;\n    }\n\n    var firstItem  = slider.querySelector('.slide');\n\n    scrollableArea = firstItem.offsetWidth * slider.children.length;\n    isScrolling    = undefined;\n    sliderWidth    = slider.offsetWidth;\n    resistance     = 1;\n    lastSlide      = -(slider.children.length - 1);\n    startTime      = +new Date();\n    pageX          = e.touches[0].pageX;\n    pageY          = e.touches[0].pageY;\n    deltaX         = 0;\n    deltaY         = 0;\n\n    setSlideNumber(0);\n\n    slider.style[transformPrefix + 'transition-duration'] = 0;\n  };\n\n  var onTouchMove = function (e) {\n    if (e.touches.length > 1 || !slider) {\n      return; // Exit if a pinch || no slider\n    }\n\n    // adjust the starting position if we just started to avoid jumpage\n    if (!startedMoving) {\n      pageX += (e.touches[0].pageX - pageX) - 1;\n    }\n\n    deltaX = e.touches[0].pageX - pageX;\n    deltaY = e.touches[0].pageY - pageY;\n    pageX  = e.touches[0].pageX;\n    pageY  = e.touches[0].pageY;\n\n    if (typeof isScrolling === 'undefined' && startedMoving) {\n      isScrolling = Math.abs(deltaY) > Math.abs(deltaX);\n    }\n\n    if (isScrolling) {\n      return;\n    }\n\n    offsetX = (deltaX / resistance) + getScroll();\n\n    e.preventDefault();\n\n    resistance = slideNumber === 0         && deltaX > 0 ? (pageX / sliderWidth) + 1.25 :\n                 slideNumber === lastSlide && deltaX < 0 ? (Math.abs(pageX) / sliderWidth) + 1.25 : 1;\n\n    slider.style[transformProperty] = 'translate3d(' + offsetX + 'px,0,0)';\n\n    // started moving\n    startedMoving = true;\n  };\n\n  var onTouchEnd = function (e) {\n    if (!slider || isScrolling) {\n      return;\n    }\n\n    // we're done moving\n    startedMoving = false;\n\n    setSlideNumber((+new Date()) - startTime < 1000 && Math.abs(deltaX) > 15 ? (deltaX < 0 ? -1 : 1) : 0);\n\n    offsetX = slideNumber * sliderWidth;\n\n    slider.style[transformPrefix + 'transition-duration'] = '.2s';\n    slider.style[transformProperty] = 'translate3d(' + offsetX + 'px,0,0)';\n\n    e = new CustomEvent('slide', {\n      detail: { slideNumber: Math.abs(slideNumber) },\n      bubbles: true,\n      cancelable: true\n    });\n\n    slider.parentNode.dispatchEvent(e);\n  };\n\n  window.addEventListener('touchstart', onTouchStart);\n  window.addEventListener('touchmove', onTouchMove);\n  window.addEventListener('touchend', onTouchEnd);\n\n}());\n"
  },
  {
    "path": "js/tests/.jshintrc",
    "content": "{\n  \"devel\"   : true,\n  \"es3\"     : false,\n  \"jasmine\" : true\n}\n"
  },
  {
    "path": "js/tests/SpecRunner.html",
    "content": "<!doctype html>\n<html>\n<head>\n  <meta charset=\"utf-8\">\n  <title>Jasmine Spec Runner</title>\n  <link rel=\"shortcut icon\" type=\"image/png\" href=\".grunt/grunt-contrib-jasmine/jasmine_favicon.png\">\n\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"../../.grunt/grunt-contrib-jasmine/jasmine.css\">\n\n  <link rel=\"stylesheet\" type=\"text/css\" href=\"../../dist/ratchet.min.css\">\n\n\n</head>\n<body>\n\n  \n  <script src=\"../../.grunt/grunt-contrib-jasmine/es5-shim.js\"></script>\n  \n  <script src=\"../../.grunt/grunt-contrib-jasmine/jasmine.js\"></script>\n  \n  <script src=\"../../.grunt/grunt-contrib-jasmine/jasmine-html.js\"></script>\n  \n  <script src=\"../../.grunt/grunt-contrib-jasmine/json2.js\"></script>\n  \n  <script src=\"../../.grunt/grunt-contrib-jasmine/boot.js\"></script>\n  \n  <script src=\"../../docs/assets/js/fingerblast.js\"></script>\n  \n  <script src=\"../common.js\"></script>\n  \n  <script src=\"../modals.js\"></script>\n  \n  <script src=\"../popovers.js\"></script>\n  \n  <script src=\"../push.js\"></script>\n  \n  <script src=\"../segmented-controllers.js\"></script>\n  \n  <script src=\"../sliders.js\"></script>\n  \n  <script src=\"../toggles.js\"></script>\n  \n  <script src=\"vendor/touchfaker.min.js\"></script>\n  \n  <script src=\"../common.js\"></script>\n  \n  <script src=\"../modals.js\"></script>\n  \n  <script src=\"../popovers.js\"></script>\n  \n  <script src=\"../push.js\"></script>\n  \n  <script src=\"../segmented-controllers.js\"></script>\n  \n  <script src=\"../sliders.js\"></script>\n  \n  <script src=\"../toggles.js\"></script>\n  \n  <script src=\"commonSpec.js\"></script>\n  \n  <script src=\"modalsSpec.js\"></script>\n  \n  <script src=\"sliderSpec.js\"></script>\n  \n  <script src=\"../../.grunt/grunt-contrib-jasmine/reporter.js\"></script>\n  \n\n</body>\n</html>\n"
  },
  {
    "path": "js/tests/commonSpec.js",
    "content": "describe('Common', function () {\n  it('RATCHET namespace is defined', function () {\n    expect(typeof RATCHET !== 'undefined').toBe(true);\n  });\n\n  it('window.CustomEvent exists', function () {\n    expect(typeof window.CustomEvent !== 'undefined').toBe(true);\n  });\n\n  it('RATCHET.getBrowserCapabilities returns an object', function () {\n    var result = RATCHET.getBrowserCapabilities;\n    expect(typeof result === 'object').toBe(true);\n  });\n\n  it('RATCHET.getTransitionEnd returns string', function () {\n    var result = RATCHET.getTransitionEnd;\n    expect(typeof result === 'string').toBe(true);\n    expect(result.length > 0).toBe(true);\n  });\n});\n"
  },
  {
    "path": "js/tests/modalsSpec.js",
    "content": "describe('Modals', function () {\n  beforeEach(function () {\n    var templateModal = [\n        '<a id=\"linkOpenModal\" href=\"#myModal\" class=\"btn\">Open modal</a>',\n        '<div id=\"myModal\" class=\"modal\">',\n          '<header class=\"bar bar-nav\">',\n            '<a id=\"linkCloseModal\" class=\"icon icon-close pull-right\" href=\"#myModal\"></a>',\n            '<h1 class=\"title\">Modal</h1>',\n          '</header>',\n          '<div class=\"content\">',\n            '<p class=\"content-padded\">The contents of my modal go here.</p>',\n          '</div>',\n        '</div>'\n    ].join('');\n    document.body.innerHTML += templateModal;\n  });\n\n  afterEach(function () {\n    var linkModal = document.getElementById('linkOpenModal');\n    var modal = document.getElementById('myModal');\n    linkModal.parentNode.removeChild(linkModal);\n    modal.parentNode.removeChild(modal);\n  });\n\n  it('Modal should fire modalOpen event', function (done) {\n    window.addEventListener('modalOpen', function () {\n      expect(true).toBe(true);\n      done();\n    });\n    var link = document.getElementById('linkOpenModal');\n    var eventTouchEnd = new CustomEvent('touchend', {\n      bubbles: true,\n      cancelable: true\n    });\n    link.dispatchEvent(eventTouchEnd);\n  });\n\n  it('Modal should fire modalClose event', function (done) {\n    var link = document.getElementById('linkOpenModal');\n    var eventTouchEnd = new CustomEvent('touchend', {\n      bubbles: true,\n      cancelable: true\n    });\n    window.addEventListener('modalClose', function () {\n      expect(true).toBe(true);\n      done();\n    });\n    link.dispatchEvent(eventTouchEnd);\n    var closeLink = document.getElementById('linkCloseModal');\n    closeLink.dispatchEvent(eventTouchEnd);\n  });\n});\n"
  },
  {
    "path": "js/tests/sliderSpec.js",
    "content": "describe('Slider', function () {\n  var slider = null;\n  beforeEach(function () {\n    var templateSlider = [\n    '<div class=\"slider\" id=\"mySlider\">',\n      '<div id=\"mySlider\" class=\"slide-group\">',\n        '<div id=\"firstSlide\" class=\"slide\">',\n          '<img src=\"http://goratchet.com/assets/img/slide-2.jpg\">',\n        '</div>',\n        '<div class=\"slide\">',\n          '<img src=\"http://goratchet.com/assets/img/slide-3.jpg\">',\n        '</div>',\n      '</div>',\n    '</div>'\n    ].join('');\n    document.body.innerHTML += templateSlider;\n    slider = document.getElementById('mySlider');\n  });\n\n  afterEach(function () {\n    slider.parentNode.removeChild(slider);\n    slider = null;\n  });\n\n  it('Slider should fire slide event', function (done) {\n    slider.addEventListener('slide', function () {\n      expect(true).toBe(true);\n      done();\n    });\n    TouchFaker.fakeEvent('touchstart', '#firstSlide');\n  });\n});\n"
  },
  {
    "path": "js/toggles.js",
    "content": "/* ========================================================================\n * Ratchet: toggles.js v2.0.2\n * http://goratchet.com/components#toggles\n * ========================================================================\n   Adapted from Brad Birdsall's swipe\n * Copyright 2015 Connor Sears\n * Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE)\n * ======================================================================== */\n\n!(function () {\n  'use strict';\n\n  var start     = {};\n  var touchMove = false;\n  var distanceX = false;\n  var toggle    = false;\n  var transformProperty = window.RATCHET.getBrowserCapabilities.transform;\n\n  var findToggle = function (target) {\n    var i;\n    var toggles = document.querySelectorAll('.toggle');\n\n    for (; target && target !== document; target = target.parentNode) {\n      for (i = toggles.length; i--;) {\n        if (toggles[i] === target) {\n          return target;\n        }\n      }\n    }\n  };\n\n  window.addEventListener('touchstart', function (e) {\n    e = e.originalEvent || e;\n\n    toggle = findToggle(e.target);\n\n    if (!toggle) {\n      return;\n    }\n\n    var handle      = toggle.querySelector('.toggle-handle');\n    var toggleWidth = toggle.clientWidth;\n    var handleWidth = handle.clientWidth;\n    var offset      = toggle.classList.contains('active') ? (toggleWidth - handleWidth) : 0;\n\n    start     = { pageX : e.touches[0].pageX - offset, pageY : e.touches[0].pageY };\n    touchMove = false;\n  });\n\n  window.addEventListener('touchmove', function (e) {\n    e = e.originalEvent || e;\n\n    if (e.touches.length > 1) {\n      return; // Exit if a pinch\n    }\n\n    if (!toggle) {\n      return;\n    }\n\n    var handle      = toggle.querySelector('.toggle-handle');\n    var current     = e.touches[0];\n    var toggleWidth = toggle.clientWidth;\n    var handleWidth = handle.clientWidth;\n    var offset      = toggleWidth - handleWidth;\n\n    touchMove = true;\n    distanceX = current.pageX - start.pageX;\n\n    if (Math.abs(distanceX) < Math.abs(current.pageY - start.pageY)) {\n      return;\n    }\n\n    e.preventDefault();\n\n    if (distanceX < 0) {\n      return (handle.style[transformProperty] = 'translate3d(0,0,0)');\n    }\n    if (distanceX > offset) {\n      return (handle.style[transformProperty] = 'translate3d(' + offset + 'px,0,0)');\n    }\n\n    handle.style[transformProperty] = 'translate3d(' + distanceX + 'px,0,0)';\n\n    toggle.classList[(distanceX > (toggleWidth / 2 - handleWidth / 2)) ? 'add' : 'remove']('active');\n  });\n\n  window.addEventListener('touchend', function (e) {\n    if (!toggle) {\n      return;\n    }\n\n    var handle      = toggle.querySelector('.toggle-handle');\n    var toggleWidth = toggle.clientWidth;\n    var handleWidth = handle.clientWidth;\n    var offset      = (toggleWidth - handleWidth);\n    var slideOn     = (!touchMove && !toggle.classList.contains('active')) || (touchMove && (distanceX > (toggleWidth / 2 - handleWidth / 2)));\n\n    if (slideOn) {\n      handle.style[transformProperty] = 'translate3d(' + offset + 'px,0,0)';\n    } else {\n      handle.style[transformProperty] = 'translate3d(0,0,0)';\n    }\n\n    toggle.classList[slideOn ? 'add' : 'remove']('active');\n\n    e = new CustomEvent('toggle', {\n      detail: {\n        isActive: slideOn\n      },\n      bubbles: true,\n      cancelable: true\n    });\n\n    toggle.dispatchEvent(e);\n\n    touchMove = false;\n    toggle    = false;\n  });\n\n}());\n"
  },
  {
    "path": "package.json",
    "content": "{\n  \"name\": \"ratchet\",\n  \"description\": \"Build mobile apps with simple HTML, CSS, and JS components.\",\n  \"version\": \"2.0.2\",\n  \"keywords\": [\n    \"css\",\n    \"fonts\",\n    \"ios\",\n    \"android\",\n    \"mobile\",\n    \"prototype\"\n  ],\n  \"homepage\": \"http://goratchet.com\",\n  \"author\": \"Connor Sears\",\n  \"style\": \"dist/css/ratchet.css\",\n  \"sass\": \"sass/ratchet.scss\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"https://github.com/twbs/ratchet.git\"\n  },\n  \"bugs\": {\n    \"url\": \"https://github.com/twbs/ratchet/issues\"\n  },\n  \"license\": \"MIT\",\n  \"scripts\": {\n    \"test\": \"grunt test\"\n  },\n  \"devDependencies\": {\n    \"grunt\": \"^0.4.5\",\n    \"grunt-autoprefixer\": \"^3.0.0\",\n    \"grunt-banner\": \"^0.6.0\",\n    \"grunt-contrib-clean\": \"^1.0.0\",\n    \"grunt-contrib-compress\": \"^1.1.0\",\n    \"grunt-contrib-concat\": \"^1.0.0\",\n    \"grunt-contrib-connect\": \"^1.0.0\",\n    \"grunt-contrib-copy\": \"^1.0.0\",\n    \"grunt-contrib-csslint\": \"^1.0.0\",\n    \"grunt-contrib-cssmin\": \"^1.0.0\",\n    \"grunt-contrib-htmlmin\": \"^1.0.0\",\n    \"grunt-contrib-jshint\": \"^1.0.0\",\n    \"grunt-contrib-uglify\": \"^1.0.0\",\n    \"grunt-contrib-watch\": \"^1.0.0\",\n    \"grunt-csscomb\": \"^3.1.0\",\n    \"grunt-html\": \"^6.0.0\",\n    \"grunt-contrib-jasmine\": \"^1.0.0\",\n    \"grunt-jekyll\": \"^0.4.2\",\n    \"grunt-jscs\": \"^2.8.0\",\n    \"grunt-sass\": \"^1.1.0\",\n    \"grunt-sed\": \"twbs/grunt-sed#v0.2.0\",\n    \"load-grunt-tasks\": \"^3.4.0\",\n    \"time-grunt\": \"^1.3.0\"\n  },\n  \"engines\": {\n    \"node\": \">=0.10.1\"\n  }\n}\n"
  },
  {
    "path": "sass/.csscomb.json",
    "content": "{\n  \"always-semicolon\": true,\n  \"block-indent\": 2,\n  \"color-case\": \"lower\",\n  \"color-shorthand\": true,\n  \"element-case\": \"lower\",\n  \"eof-newline\": true,\n  \"leading-zero\": false,\n  \"remove-empty-rulesets\": true,\n  \"space-after-colon\": 1,\n  \"space-after-combinator\": 1,\n  \"space-before-selector-delimiter\": 0,\n  \"space-between-declarations\": \"\\n\",\n  \"space-after-opening-brace\": \"\\n\",\n  \"space-before-closing-brace\": \"\\n\",\n  \"space-before-colon\": 0,\n  \"space-before-combinator\": 1,\n  \"space-before-opening-brace\": 1,\n  \"strip-spaces\": true,\n  \"unitless-zero\": true,\n  \"vendor-prefix-align\": true,\n  \"sort-order\": [\n    [\n      \"position\",\n      \"top\",\n      \"right\",\n      \"bottom\",\n      \"left\",\n      \"z-index\",\n      \"display\",\n      \"float\",\n      \"width\",\n      \"min-width\",\n      \"max-width\",\n      \"height\",\n      \"min-height\",\n      \"max-height\",\n      \"-webkit-box-sizing\",\n      \"-moz-box-sizing\",\n      \"box-sizing\",\n      \"-webkit-appearance\",\n      \"padding\",\n      \"padding-top\",\n      \"padding-right\",\n      \"padding-bottom\",\n      \"padding-left\",\n      \"margin\",\n      \"margin-top\",\n      \"margin-right\",\n      \"margin-bottom\",\n      \"margin-left\",\n      \"overflow\",\n      \"overflow-x\",\n      \"overflow-y\",\n      \"-webkit-overflow-scrolling\",\n      \"-ms-overflow-x\",\n      \"-ms-overflow-y\",\n      \"-ms-overflow-style\",\n      \"clip\",\n      \"clear\",\n      \"font\",\n      \"font-family\",\n      \"font-size\",\n      \"font-style\",\n      \"font-weight\",\n      \"font-variant\",\n      \"font-size-adjust\",\n      \"font-stretch\",\n      \"font-effect\",\n      \"font-emphasize\",\n      \"font-emphasize-position\",\n      \"font-emphasize-style\",\n      \"font-smooth\",\n      \"-webkit-hyphens\",\n      \"-moz-hyphens\",\n      \"hyphens\",\n      \"line-height\",\n      \"color\",\n      \"text-align\",\n      \"-webkit-text-align-last\",\n      \"-moz-text-align-last\",\n      \"-ms-text-align-last\",\n      \"text-align-last\",\n      \"text-emphasis\",\n      \"text-emphasis-color\",\n      \"text-emphasis-style\",\n      \"text-emphasis-position\",\n      \"text-decoration\",\n      \"text-indent\",\n      \"text-justify\",\n      \"text-outline\",\n      \"-ms-text-overflow\",\n      \"text-overflow\",\n      \"text-overflow-ellipsis\",\n      \"text-overflow-mode\",\n      \"text-shadow\",\n      \"text-transform\",\n      \"text-wrap\",\n      \"-webkit-text-size-adjust\",\n      \"-ms-text-size-adjust\",\n      \"letter-spacing\",\n      \"-ms-word-break\",\n      \"word-break\",\n      \"word-spacing\",\n      \"-ms-word-wrap\",\n      \"word-wrap\",\n      \"-moz-tab-size\",\n      \"-o-tab-size\",\n      \"tab-size\",\n      \"white-space\",\n      \"vertical-align\",\n      \"list-style\",\n      \"list-style-position\",\n      \"list-style-type\",\n      \"list-style-image\",\n      \"pointer-events\",\n      \"-ms-touch-action\",\n      \"touch-action\",\n      \"cursor\",\n      \"visibility\",\n      \"zoom\",\n      \"flex-direction\",\n      \"flex-order\",\n      \"flex-pack\",\n      \"flex-align\",\n      \"table-layout\",\n      \"empty-cells\",\n      \"caption-side\",\n      \"border-spacing\",\n      \"border-collapse\",\n      \"content\",\n      \"quotes\",\n      \"counter-reset\",\n      \"counter-increment\",\n      \"resize\",\n      \"-webkit-user-select\",\n      \"-moz-user-select\",\n      \"-ms-user-select\",\n      \"-o-user-select\",\n      \"user-select\",\n      \"nav-index\",\n      \"nav-up\",\n      \"nav-right\",\n      \"nav-down\",\n      \"nav-left\",\n      \"background\",\n      \"background-color\",\n      \"background-image\",\n      \"-ms-filter:\\\\'progid:DXImageTransform.Microsoft.gradient\",\n      \"filter:progid:DXImageTransform.Microsoft.gradient\",\n      \"filter:progid:DXImageTransform.Microsoft.AlphaImageLoader\",\n      \"filter\",\n      \"background-repeat\",\n      \"background-attachment\",\n      \"background-position\",\n      \"background-position-x\",\n      \"background-position-y\",\n      \"-webkit-background-clip\",\n      \"-moz-background-clip\",\n      \"background-clip\",\n      \"background-origin\",\n      \"-webkit-background-size\",\n      \"-moz-background-size\",\n      \"-o-background-size\",\n      \"background-size\",\n      \"border\",\n      \"border-color\",\n      \"border-style\",\n      \"border-width\",\n      \"border-top\",\n      \"border-top-color\",\n      \"border-top-style\",\n      \"border-top-width\",\n      \"border-right\",\n      \"border-right-color\",\n      \"border-right-style\",\n      \"border-right-width\",\n      \"border-bottom\",\n      \"border-bottom-color\",\n      \"border-bottom-style\",\n      \"border-bottom-width\",\n      \"border-left\",\n      \"border-left-color\",\n      \"border-left-style\",\n      \"border-left-width\",\n      \"border-radius\",\n      \"border-top-left-radius\",\n      \"border-top-right-radius\",\n      \"border-bottom-right-radius\",\n      \"border-bottom-left-radius\",\n      \"-webkit-border-image\",\n      \"-moz-border-image\",\n      \"-o-border-image\",\n      \"border-image\",\n      \"-webkit-border-image-source\",\n      \"-moz-border-image-source\",\n      \"-o-border-image-source\",\n      \"border-image-source\",\n      \"-webkit-border-image-slice\",\n      \"-moz-border-image-slice\",\n      \"-o-border-image-slice\",\n      \"border-image-slice\",\n      \"-webkit-border-image-width\",\n      \"-moz-border-image-width\",\n      \"-o-border-image-width\",\n      \"border-image-width\",\n      \"-webkit-border-image-outset\",\n      \"-moz-border-image-outset\",\n      \"-o-border-image-outset\",\n      \"border-image-outset\",\n      \"-webkit-border-image-repeat\",\n      \"-moz-border-image-repeat\",\n      \"-o-border-image-repeat\",\n      \"border-image-repeat\",\n      \"outline\",\n      \"outline-width\",\n      \"outline-style\",\n      \"outline-color\",\n      \"outline-offset\",\n      \"-webkit-box-shadow\",\n      \"-moz-box-shadow\",\n      \"box-shadow\",\n      \"filter:progid:DXImageTransform.Microsoft.Alpha(Opacity\",\n      \"-ms-filter:\\\\'progid:DXImageTransform.Microsoft.Alpha\",\n      \"opacity\",\n      \"-ms-interpolation-mode\",\n      \"-webkit-transition\",\n      \"-moz-transition\",\n      \"-ms-transition\",\n      \"-o-transition\",\n      \"transition\",\n      \"-webkit-transition-delay\",\n      \"-moz-transition-delay\",\n      \"-ms-transition-delay\",\n      \"-o-transition-delay\",\n      \"transition-delay\",\n      \"-webkit-transition-timing-function\",\n      \"-moz-transition-timing-function\",\n      \"-ms-transition-timing-function\",\n      \"-o-transition-timing-function\",\n      \"transition-timing-function\",\n      \"-webkit-transition-duration\",\n      \"-moz-transition-duration\",\n      \"-ms-transition-duration\",\n      \"-o-transition-duration\",\n      \"transition-duration\",\n      \"-webkit-transition-property\",\n      \"-moz-transition-property\",\n      \"-ms-transition-property\",\n      \"-o-transition-property\",\n      \"transition-property\",\n      \"-webkit-transform\",\n      \"-moz-transform\",\n      \"-ms-transform\",\n      \"-o-transform\",\n      \"transform\",\n      \"-webkit-transform-origin\",\n      \"-moz-transform-origin\",\n      \"-ms-transform-origin\",\n      \"-o-transform-origin\",\n      \"transform-origin\",\n      \"-webkit-animation\",\n      \"-moz-animation\",\n      \"-ms-animation\",\n      \"-o-animation\",\n      \"animation\",\n      \"-webkit-animation-name\",\n      \"-moz-animation-name\",\n      \"-ms-animation-name\",\n      \"-o-animation-name\",\n      \"animation-name\",\n      \"-webkit-animation-duration\",\n      \"-moz-animation-duration\",\n      \"-ms-animation-duration\",\n      \"-o-animation-duration\",\n      \"animation-duration\",\n      \"-webkit-animation-play-state\",\n      \"-moz-animation-play-state\",\n      \"-ms-animation-play-state\",\n      \"-o-animation-play-state\",\n      \"animation-play-state\",\n      \"-webkit-animation-timing-function\",\n      \"-moz-animation-timing-function\",\n      \"-ms-animation-timing-function\",\n      \"-o-animation-timing-function\",\n      \"animation-timing-function\",\n      \"-webkit-animation-delay\",\n      \"-moz-animation-delay\",\n      \"-ms-animation-delay\",\n      \"-o-animation-delay\",\n      \"animation-delay\",\n      \"-webkit-animation-iteration-count\",\n      \"-moz-animation-iteration-count\",\n      \"-ms-animation-iteration-count\",\n      \"-o-animation-iteration-count\",\n      \"animation-iteration-count\",\n      \"-webkit-animation-direction\",\n      \"-moz-animation-direction\",\n      \"-ms-animation-direction\",\n      \"-o-animation-direction\",\n      \"animation-direction\"\n    ]\n  ]\n}\n"
  },
  {
    "path": "sass/.csslintrc",
    "content": "{\n  \"adjoining-classes\": false,\n  \"box-sizing\": false,\n  \"box-model\": false,\n  \"compatible-vendor-prefixes\": false,\n  \"fallback-colors\": false,\n  \"font-sizes\": false,\n  \"gradients\": false,\n  \"important\": false,\n  \"known-properties\": false,\n  \"outline-none\": false,\n  \"qualified-headings\": false,\n  \"unique-headings\": false,\n  \"universal-selector\": false,\n  \"unqualified-attributes\": false\n}\n"
  },
  {
    "path": "sass/badges.scss",
    "content": "//\n// Badges\n// --------------------------------------------------\n\n.badge {\n  display: inline-block;\n  padding: 2px 9px 3px;\n  font-size: 12px;\n  line-height: 1;\n  color: #333;\n  background-color: rgba(0,0,0,.15);\n  border-radius: 100px;\n\n  // Inverted badges have no background.\n  &.badge-inverted {\n    padding: 0 5px 0 0;\n    background-color: transparent;\n  }\n}\n\n\n// Badge modifiers\n// --------------------------------------------------\n\n// Main badge\n.badge-primary {\n  color: #fff;\n  background-color: $primary-color;\n\n  &.badge-inverted {\n    color: $primary-color;\n  }\n}\n\n// Positive badge\n.badge-positive {\n  color: #fff;\n  background-color: $positive-color;\n\n  &.badge-inverted {\n    color: $positive-color;\n  }\n}\n\n// Negative badge\n.badge-negative {\n  color: #fff;\n  background-color: $negative-color;\n\n  &.badge-inverted {\n    color: $negative-color;\n  }\n}\n"
  },
  {
    "path": "sass/bars.scss",
    "content": "//\n// Bars\n// --------------------------------------------------\n\n.bar {\n  position: fixed;\n  right: 0;\n  left: 0;\n  z-index: 10;\n  height: $bar-base-height;\n  padding-right: $bar-side-spacing;\n  padding-left: $bar-side-spacing;\n  background-color: $chrome-color;\n  border-bottom: $border-default;\n  -webkit-backface-visibility: hidden; // Make sure the bar is visible when a modal animates in.\n          backface-visibility: hidden;\n}\n\n// Modifier class to dock any bar below .bar-nav\n.bar-header-secondary {\n  top: $bar-base-height;\n}\n\n// Modifier class for footer bars\n.bar-footer {\n  bottom: 0;\n}\n\n// Modifier class to dock any bar above a standard bar\n.bar-footer-secondary {\n  bottom: $bar-base-height;\n}\n\n// Modifier class to dock any bar above a .bar-tab\n.bar-footer-secondary-tab {\n  bottom: $bar-tab-height;\n}\n\n// Give the footers the correct border\n.bar-footer,\n.bar-footer-secondary,\n.bar-footer-secondary-tab {\n  border-top: $border-default;\n  border-bottom: 0;\n}\n\n\n// Nav bar\n// --------------------------------------------------\n\n// Bar docked to top of viewport for showing page title and actions\n.bar-nav {\n  top: 0;\n}\n\n// Centered text in the .bar-nav\n//\n// We position the absolutely to make sure the title is always centered\n.title {\n  position: absolute;\n  display: block;\n  width: 100%;\n  padding: 0;\n  margin: 0 (-$bar-side-spacing);\n  font-size: $font-size-default;\n  font-weight: $font-weight;\n  line-height: $bar-base-height;\n  color: #000;\n  text-align: center;\n  white-space: nowrap;\n}\n// Retain specified title color\n.title a {\n  color: inherit;\n}\n\n\n// Tab bar\n// --------------------------------------------------\n\n// Bar docked to bottom and used for primary app navigation\n.bar-tab {\n  display: table;\n  bottom: 0;\n  width: 100%;\n  height: $bar-tab-height;\n  padding: 0;\n  table-layout: fixed;\n  border-top: $border-default;\n  border-bottom: 0;\n\n  // Navigational tab (Nested to be more specific for the icons in tab-items)\n  .tab-item {\n    position: relative;\n    display: table-cell;\n    width: 1%;\n    height: $bar-tab-height;\n    color: #929292;\n    text-align: center;\n    vertical-align: middle;\n\n    // Active states for the tab bar\n    &.active,\n    &:active {\n      color: $primary-color;\n    }\n\n    // Activity badge on an icon\n    .badge {\n      vertical-align: top;\n      position: absolute;\n      top: 3px;\n      left: 50%;\n    }\n\n    // Tab icon\n    .icon {\n      top: 3px;\n      width: 24px;\n      height: 24px;\n      padding-top: 0;\n      padding-bottom: 0;\n\n      // Make the text smaller if it's used with an icon\n      ~ .tab-label {\n        display: block;\n        font-size: 11px;\n      }\n    }\n  }\n}\n\n// Bars with buttons\n// --------------------------------------------------\n\n.bar .btn {\n  position: relative;\n  top: 7px;\n  z-index: 20; // Position the buttons on top of .title\n  padding: 6px 12px 7px;\n  margin-top: 0;\n  font-weight: $font-weight-light;\n\n  // Give buttons that are floated left and right side margin\n  &.pull-right {\n    margin-left: $bar-side-spacing;\n  }\n  &.pull-left {\n    margin-right: $bar-side-spacing;\n  }\n}\n\n// Bars with link buttons (Line the text up with content)\n.bar .btn-link {\n  top: 0;\n  padding: 0;\n  font-size: 16px;\n  line-height: $bar-base-height;\n  color: $primary-color;\n  border: 0;\n\n  &:active,\n  &.active {\n    color: darken($primary-color, 10%);\n  }\n}\n\n// Bars with block buttons\n//\n// Add proper padding\n.bar .btn-block {\n  top: 6px;\n  padding: 7px 0;\n  margin-bottom: 0;\n  font-size: 16px; // Scale down font size to fit in bar.\n}\n\n// Nav buttons (Only applicable within bars)\n//\n// Buttons inside bars that sit closer against the viewport.\n.bar .btn-nav {\n  &.pull-left {\n    margin-left: -5px;\n\n    .icon-left-nav {\n      margin-right: -3px;\n    }\n  }\n  &.pull-right {\n    margin-right: -5px;\n\n    .icon-right-nav {\n      margin-left: -3px;\n    }\n  }\n}\n\n\n// Bars with Ratchicons\n// --------------------------------------------------\n\n.bar {\n  .icon {\n    position: relative;\n    z-index: 20; // Position the buttons on top of .title\n    padding-top: 10px;\n    padding-bottom: 10px;\n    font-size: 24px;\n  }\n\n  // Vertical center the larger icons in btns.\n  .btn .icon {\n    top: 3px;\n    padding: 0;\n  }\n\n  // Handle carets in the titles\n  .title .icon {\n    padding: 0;\n\n    // Specific postioning of the caret icon within a title. Used with popover.js.\n    &.icon-caret {\n      top: 4px;\n      margin-left: -5px;\n    }\n  }\n}\n\n\n// Bars for search forms\n// --------------------------------------------------\n\n// Position/size search bar within the bar\n.bar input[type=\"search\"] {\n  height: 29px;\n  margin: 6px 0;\n}\n\n\n// Bars with segmented controls\n// --------------------------------------------------\n\n// Position the control correctly inside a bar.\n.bar .segmented-control {\n  top: 7px;\n  margin: 0 auto;\n}\n"
  },
  {
    "path": "sass/base.scss",
    "content": "//\n// Base styles\n// --------------------------------------------------\n\n// Use box sizing on all the things!\n* {\n  -webkit-box-sizing: border-box;\n     -moz-box-sizing: border-box;\n          box-sizing: border-box;\n}\n\n// We fix position the body and scroll `.content`.\nbody {\n  position: fixed;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  font-family: $font-family-default;\n  font-size: $font-size-default;\n  line-height: $line-height-default;\n  color: #000;\n  background-color: #fff;\n}\n\n// Universal link styling\na {\n  color: $primary-color;\n  text-decoration: none;\n  -webkit-tap-highlight-color: rgba(0,0,0,0); // Removes the dark touch outlines on links in webkit browsers.\n\n  &:active {\n    color: darken($primary-color, 10%);\n  }\n}\n\n// Wrapper to be used around all content not in .bar-title and .bar-tab\n.content {\n  position: absolute;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  overflow: auto;\n  background-color: #fff;\n  -webkit-overflow-scrolling: touch;\n}\n\n// Hack to force all relatively and absolutely positioned elements still render while scrolling\n// Note: This is a bug for \"-webkit-overflow-scrolling: touch\"\n.content > * {\n  @include transform(translateZ(0));\n}\n\n// Pad top/bottom of content so it doesn't hide behind bars.\n// Note: For these to work, content must come after both bars in the markup\n.bar-nav ~ .content {\n  padding-top: $bar-base-height;\n}\n.bar-header-secondary ~ .content {\n  padding-top: ($bar-base-height*2);\n}\n\n// Footer bar padding\n.bar-footer ~ .content {\n  padding-bottom: $bar-base-height;\n}\n.bar-footer-secondary ~ .content {\n  padding-bottom: ($bar-base-height*2);\n}\n\n// Tab bar padding\n.bar-tab ~ .content {\n  padding-bottom: $bar-tab-height;\n}\n.bar-footer-secondary-tab ~ .content {\n  padding-bottom: ($bar-tab-height+$bar-base-height);\n}\n\n// Utility classes\n.content-padded {\n  margin: $bar-side-spacing;\n}\n.text-center {\n  text-align: center;\n}\n.pull-left {\n  float: left;\n}\n.pull-right {\n  float: right;\n}\n.clearfix {\n  @include clearfix();\n}\n"
  },
  {
    "path": "sass/buttons.scss",
    "content": "//\n// Buttons\n// --------------------------------------------------\n\n.btn {\n  position: relative;\n  display: inline-block;\n  padding: 6px 8px 7px;\n  margin-bottom: 0; // For input.btn\n  font-size: $button-font-size;\n  font-weight: $font-weight-light;\n  line-height: 1;\n  color: #333;\n  text-align: center;\n  white-space: nowrap;\n  vertical-align: top;\n  cursor: pointer;\n  background-color: $chrome-color;\n  border: 1px solid #ccc;\n  border-radius: 3px;\n\n  // Active & filled button styles\n  &:active,\n  &.active {\n    color: inherit; // Overriding the global style for all anchors.\n    background-color: #ccc;\n  }\n\n  // Disabled styles & filled button active styles\n  &:disabled,\n  &.disabled {\n    opacity: .6;\n  }\n}\n\n\n// Other button types\n// --------------------------------------------------\n\n// Primary button (Default color is blue)\n.btn-primary {\n  color: #fff;\n  background-color: $primary-color;\n  border: 1px solid $primary-color;\n\n  &:active,\n  &.active {\n    color: #fff;\n    background-color: darken($primary-color, 10%);\n    border: 1px solid darken($primary-color, 10%);\n  }\n}\n\n// Positive button (Default color is green)\n.btn-positive {\n  color: #fff;\n  background-color: $positive-color;\n  border: 1px solid $positive-color;\n\n  &:active,\n  &.active {\n    color: #fff;\n    background-color: darken($positive-color, 10%);\n    border: 1px solid darken($positive-color, 10%);\n  }\n}\n\n// Negative button (Default color is red)\n.btn-negative {\n  color: #fff;\n  background-color: $negative-color;\n  border: 1px solid $negative-color;\n\n  &:active,\n  &.active {\n    color: #fff;\n    background-color: darken($negative-color, 10%);\n    border: 1px solid darken($negative-color, 10%);\n  }\n}\n\n// Outlined buttons\n.btn-outlined {\n  background-color: transparent;\n\n  &.btn-primary {\n    color: $primary-color;\n  }\n  &.btn-positive {\n    color: $positive-color;\n  }\n  &.btn-negative {\n    color: $negative-color;\n  }\n  // Active states\n  &.btn-primary:active,\n  &.btn-positive:active,\n  &.btn-negative:active {\n    color: #fff;\n  }\n}\n\n// Link button (Buttons that look like links)\n.btn-link {\n  padding-top: 6px;\n  padding-bottom: 6px;\n  color: $primary-color;\n  background-color: transparent;\n  border: 0;\n\n  &:active,\n  &.active {\n    color: darken($primary-color, 10%);\n    background-color: transparent;\n  }\n}\n\n// Block level buttons (full width buttons)\n.btn-block {\n  display: block;\n  width: 100%;\n  padding: 15px 0;\n  margin-bottom: 10px;\n  font-size: 18px;\n}\n\n\n// Button overrides\n// --------------------------------------------------\n\ninput[type=\"submit\"],\ninput[type=\"reset\"],\ninput[type=\"button\"] {\n  width: 100%;\n}\n\n\n// Buttons with badges\n// --------------------------------------------------\n\n// Generic styles for all badges within default buttons\n.btn .badge {\n  margin: -2px -4px -2px 4px;\n  font-size: 12px;\n  background-color: rgba(0,0,0,.15);\n}\n\n// Buttons with inverted badges\n.btn .badge-inverted,\n.btn:active .badge-inverted {\n  background-color: transparent;\n}\n.btn-primary:active .badge-inverted,\n.btn-positive:active .badge-inverted,\n.btn-negative:active .badge-inverted {\n  color: #fff;\n}\n\n// Position badges within block level buttons\n// Note: These are absolutely positioned so that text of button isn't \"pushed\" by badge and always\n// stays at the center of button\n.btn-block .badge {\n  position: absolute;\n  right: 0;\n  margin-right: 10px;\n}\n\n\n// Buttons with Ratchicons\n// --------------------------------------------------\n\n.btn .icon {\n  font-size: inherit;\n}\n"
  },
  {
    "path": "sass/cards.scss",
    "content": "//\n// Cards\n// --------------------------------------------------\n\n.card {\n  margin: $bar-side-spacing;\n  overflow: hidden;\n  background-color: $card-bg;\n  border: $border-default;\n  border-radius: $border-radius;\n}\n\n\n// Cards with table-views\n// --------------------------------------------------\n.card .table-view {\n  margin-bottom: 0;\n  border-top: 0;\n  border-bottom: 0;\n\n  // Rounding first divider on carded lists and remove border on the top\n  .table-view-divider:first-child {\n    top: 0;\n    border-top-left-radius: $border-radius;\n    border-top-right-radius: $border-radius;\n  }\n\n  // Rounding last divider on carded table views\n  .table-view-divider:last-child {\n    border-bottom-left-radius: $border-radius;\n    border-bottom-right-radius: $border-radius;\n  }\n}\n// Remove the bottom border from last table cell\n.card .table-view-cell:last-child {\n  border-bottom: 0;\n}\n"
  },
  {
    "path": "sass/docs.scss",
    "content": "@import \"variables.scss\";\n@import \"mixins.scss\";\n\n// Clearfix mixin for docs\n\n//\n// Documentation\n// --------------------------------------------------\n\nhtml,\nbody {\n  width: 100%;\n  height: 100%;\n}\nbody {\n  position: relative !important; // Overrides the fixed positioning of body in Ratchet\n  font: 400 14px/1.5 \"Open Sans\", sans-serif;\n  color: #333;\n  -webkit-text-size-adjust: 100%;\n  background-color: #fff;\n  -webkit-font-smoothing: antialiased; // Fix for webkit rendering\n}\n\n// Typography\n//\n// Gets scoped to a common class in the docs so we don't collide with any of\n// Ratchet's styles.\n\n.docs-content {\n  font-size: 14px;\n\n  @media screen and (min-width: 768px) {\n    font-size: 18px;\n  }\n\n  h1, h2, h3, h4, h5, h6 {\n    font-weight: 400;\n    color: #222;\n  }\n  h2 {\n    margin-bottom: .25em;\n    font-size: 2em;\n  }\n  h3 {\n    margin-bottom: .5em;\n    font-size: 1.25em;\n  }\n\n  p {\n    margin-bottom: 1.5em;\n    font-size: 1em;\n    color: #555;\n  }\n  .lead {\n    font-size: 1.1em;\n    color: #777;\n  }\n}\n\n\n// Jumbotron\n// --------------------------------------------------\n.docs-header,\n.docs-sub-header {\n  position: relative;\n  @include directional-gradient(#0a1855, #da0024)\n}\n.docs-header {\n  height: 100vh;\n  min-height: 750px;\n\n  // Ad on the homepage\n  .carbonad {\n    position: relative !important;\n    margin-top: 0 !important;\n    @include animation-name(fadeintext);\n    @include animation-duration(2s);\n  }\n  .version {\n    margin-top: 15px;\n    color: rgba(255,255,255,.5);\n    text-align: center;\n  }\n}\n.docs-header-bottom {\n  position: absolute;\n  right: 0;\n  bottom: 0;\n  left: 0;\n}\n// Desktop jumbotron\n@media screen and (min-width: 768px) {\n  .docs-header {\n    min-height: 870px;\n\n    // Ads on the homepage\n    .carbonad {\n      left: 50% !important;\n      width: 330px !important;\n      margin-bottom: 60px !important;\n      margin-left: -165px !important;\n    }\n  }\n\n  // Positon ads correctly on sub pages\n  .docs-sub-header .carbonad {\n    position: absolute !important;\n    top: 50% !important;\n    right: 15px !important;\n    margin-top: 0 !important;\n    @include transform(translateY(-50%) !important);\n  }\n}\n\n// Masthead and nav\n.docs-masthead {\n  position: relative;\n  padding-top: 15px;\n  padding-bottom: 15px;\n  border-bottom: 1px solid rgba(255,255,255,.1);\n}\n.docs-title {\n  position: absolute;\n  left: 50%;\n  z-index: 20;\n  margin-bottom: 0;\n  font-size: 22px;\n  font-weight: 400;\n  @include transform(translateX(-50%));\n}\n.docs-nav {\n  .docs-nav-trigger {\n    color: #fff;\n    opacity: .7;\n\n    &.active {\n      opacity: 1;\n    }\n  }\n  .docs-nav-group {\n    position: absolute;\n    top: 40px;\n    right: 0;\n    left: 0;\n    z-index: 20;\n    height: 0;\n    overflow: hidden;\n    background-color: rgba(0,0,0,.9);\n    opacity: 0;\n\n    &.active {\n      height: auto;\n      opacity: 1;\n    }\n  }\n  .docs-nav-item {\n    display: block;\n    padding: 20px 15px;\n    font-size: 22px;\n  }\n}\n.docs-jump-menu,\n.docs-component-group {\n  display: none;\n}\n.docs-title a,\n.docs-nav-item {\n  color: #fff;\n  @include transition(opacity .2s linear);\n\n  &:active,\n  &:focus {\n    color: #fff;\n    opacity: .5;\n  }\n}\n\n// Desktop: Masthead and nav\n@media screen and (min-width: 768px) {\n  .docs-title {\n    position: static;\n    float: left;\n    font-weight: 300;\n    @include transform(translateX(0));\n  }\n\n  // Docs nav\n  .docs-nav {\n    float: right;\n\n    .docs-nav-trigger {\n      display: none;\n    }\n    .docs-nav-group {\n      position: static;\n      display: block;\n      height: auto;\n      background-color: transparent;\n      opacity: 1;\n    }\n    .docs-nav-item {\n      position: relative;\n      display: inline-block;\n      padding: 0 15px;\n      font-size: 14px;\n    }\n  }\n\n  // Component jump menu\n  .docs-jump-menu {\n    position: absolute;\n    left: 15px;\n    display: block;\n    color: #777;\n    cursor: pointer;\n    @include transition(opacity .2 linear);\n\n    &:hover {\n      color: $primary-color;\n    }\n    &:active {\n      opacity: .5;\n    }\n    .icon-list {\n      margin-right: 3px;\n      font-size: 16px;\n    }\n    .icon-caret {\n      position: relative;\n      top: 4px;\n      margin-left: -5px;\n    }\n  }\n  .docs-component-group {\n    position: absolute;\n    top: 35px;\n    left: 15px;\n    padding-top: 10px;\n    padding-bottom: 10px;\n    background-color: #fff;\n    background-clip: padding-box;\n    border: 1px solid rgba(0,0,0,.2);\n    border-radius: 3px;\n    @include box-shadow(0 0 8px rgba(0,0,0,.05));\n\n    &.active {\n      display: block;\n    }\n    &:before,\n    &:after {\n      position: absolute;\n      left: 30px;\n      width: 0;\n      height: 0;\n      content: '';\n    }\n    &:before {\n      top: -11px;\n      margin-left: -11px;\n      border-right: 11px solid transparent;\n      border-bottom: 11px solid rgba(0,0,0,.3);\n      border-left: 11px solid transparent;\n    }\n    &:after {\n      top: -10px;\n      margin-left: -10px;\n      border-right: 10px solid transparent;\n      border-bottom: 10px solid #fff;\n      border-left: 10px solid transparent\n    }\n    .docs-component-item {\n      display: block;\n      padding: 10px 20px;\n      color: #777;\n\n      &:hover {\n        color: #fff;\n        background-color: $primary-color;\n      }\n    }\n  }\n}\n\n// Main homepage header content\n// \"Build mobile apps using simple...\"\n.docs-header-content {\n  position: relative;\n  padding: 50px 10px;\n  text-align: center;\n  @include animation-name(fadeintext);\n  @include animation-duration(2s);\n\n  .btn {\n    display: block;\n    padding: 15px 60px 16px; // Creates a button that's 330px wide.\n    margin-bottom: 0;\n    font-size: 18px;\n    color: #0a1855;\n    background-color: #fff;\n    border: 0;\n    @include transition(all .2s linear);\n\n    &:hover {\n      background-color: #fff;\n      @include box-shadow(0 0 50px rgba(255,255,255,.3));\n    }\n    &:active {\n      opacity: .5;\n    }\n  }\n}\n.docs-subtitle {\n  max-width: 750px;\n  margin: 0 auto 20px;\n  font-size: 28px;\n  font-weight: 300;\n  line-height: 38px;\n  color: #fff;\n}\n\n// Desktop header content\n@media screen and (min-width: 768px) {\n  .docs-header-content {\n    top: 30%;\n    @include transform(translateY(-50%));\n\n    .btn {\n      display: inline-block;\n    }\n  }\n  .docs-subtitle {\n    margin-bottom: 30px;\n    font-size: 41px;\n    line-height: 60px;\n  }\n}\n\n// Ads\n.carbonad {\n  width: 100% !important;\n  height: auto !important;\n  padding: 15px !important;\n  font-size: 13px !important;\n  line-height: 18px !important;\n  background: transparent !important;\n  border-top: 1px solid rgba(255,255,255,.1) !important;\n  border-right: 0 !important;\n  border-bottom: 0 !important;\n  border-left: 0 !important;\n}\n.carbonad-img {\n  margin: 0 !important;\n}\n.carbonad-text,\n.carbonad-tag {\n  display: block !important;\n  float: none !important;\n  width: auto !important;\n  height: auto !important;\n  margin-left: 145px !important;\n  color: rgba(255,255,255,.65) !important;\n  font-family: \"Open Sans\", sans-serif !important;\n}\n.carbonad-text {\n  padding-top: 0 !important;\n}\n.carbonad-tag {\n  text-align: left !important;\n}\n.carbonad-text a,\n.carbonad-tag a {\n  color: #fff !important;\n}\n.carbonad #azcarbon>img {\n  display: none;\n}\n\n// Desktop styles for ads\n@media screen and (min-width: 768px) {\n  .carbonad {\n    width: 360px !important;\n    border-right: 1px solid rgba(255,255,255,.1) !important;\n    border-bottom: 1px solid rgba(255,255,255,.1) !important;\n    border-left: 1px solid rgba(255,255,255,.1) !important;\n    border-radius: 3px !important;\n  }\n}\n\n\n// Subpage Header\n// --------------------------------------------------\n\n.docs-sub-content {\n  position: relative;\n  overflow: hidden;\n  padding: 55px 15px 65px;\n  color: #fff;\n  text-align: center;\n\n  .page-title,\n  .page-description {\n    margin-top: 0;\n    margin-bottom: 0;\n    font-weight: 300;\n  }\n  .page-title {\n    margin-bottom: 5px;\n    font-size: 40px;\n  }\n  .page-description {\n    font-size: 24px;\n    color: #fff;\n    opacity: .7;\n  }\n}\n\n// Desktop: Left align the text\n@media screen and (min-width: 768px) {\n  .docs-sub-content {\n    margin-right: 380px;\n    text-align: left;\n  }\n}\n\n\n// Content sections\n// --------------------------------------------------\n\n// Wrap each section of the docs\n.docs-section {\n  padding-top: 50px;\n  padding-bottom: 50px;\n  border-bottom: 1px solid #ddd;\n}\n.docs-section:last-child {\n  border-bottom: 0;\n}\n\n// Docs modules\n@media screen and (min-width: 768px) {\n  .docs-module {\n    margin-top: 35px;\n  }\n}\n\n// Docs modules\n.docs-module {\n  padding: 20px;\n  margin-top: 20px;\n  border: $border-default;\n  border-radius: 3px;\n\n  .btn-block {\n    margin-bottom: 0;\n  }\n}\n.version {\n  margin-top: 10px;\n  margin-bottom: 0;\n  font-size: 90%;\n  color: #777;\n}\n\n\n// Footer\n// --------------------------------------------------\n\n.docs-footer {\n  border-top: 1px solid #ddd;\n  padding: 30px 20px;\n  margin-top: 50px;\n  font-size: 14px;\n  text-align: center;\n  color: #777;\n\n  .social {\n    padding: 0 0 20px;\n    margin: 0;\n    list-style: none;\n\n    li {\n      display: inline-block;\n      height: 20px;\n      vertical-align: top;\n    }\n    .twitter-follow-button {\n      margin-top: 5px;\n    }\n  }\n  @media screen and (min-width: 768px) {\n    // Remove the top margin on desktop\n    .social .twitter-follow-button {\n      margin-top: 0;\n    }\n  }\n}\n.docs-footer-text {\n  margin-top: 0;\n  margin-bottom: 0;\n}\n@media screen and (min-width: 768px) {\n  .docs-footer-text {\n    width: 550px;\n    padding-left: 0;\n    padding-right: 0;\n    margin: 0 auto;\n  }\n}\n.docs-footer-links {\n  padding-left: 0;\n\n  li {\n    display: inline;\n    padding-left: 3px;\n    padding-right: 3px;\n  }\n}\n\n// Overrides for the homepage's footer\n.docs-header .docs-footer {\n  margin-top: 0;\n  border-top: 1px solid rgba(255,255,255,.1);\n\n  .docs-footer-text,\n  .docs-footer-links {\n    color: rgba(255,255,255,.5);\n\n    a {\n      color: rgba(255,255,255,.8);\n    }\n  }\n}\n\n// Style the GitHub buttons via CSS instead of inline attributes\n.github-btn {\n  border: 0;\n  overflow: hidden;\n}\n\n\n// Platform toggle\n// --------------------------------------------------\n\n.docs-component-toolbar {\n  position: fixed;\n  top: 0;\n  bottom: auto;\n  left: 0;\n  right: 0;\n  z-index: 20;\n  height: 44px;\n  padding-top: 8px;\n  padding-bottom: 8px;\n  background-color: #fff;\n  border-bottom: 1px solid #ddd;\n  -webkit-transition: -webkit-transform .5s;\n     -moz-transition: -moz-transform .5s;\n          transition: transform .5s;\n  @include transform(translate3d(0, -55px, 0));\n\n  &.visible {\n    @include transform(translate3d(0, 0, 0));\n  }\n\n  .segmented-control {\n    max-width: 300px;\n    margin: 0 auto;\n\n    .control-item {\n      cursor: pointer;\n    }\n  }\n}\n\n\n// Example devices\n// --------------------------------------------------\n.docs-examples {\n  margin-top: 30px;\n}\n.example-wrap {\n  margin-bottom: 30px;\n\n  .example {\n    display: block;\n    width: 100%;\n    padding: 3px;\n    overflow: hidden;\n    border: $border-default;\n    border-radius: 3px;\n  }\n  .example-title {\n    margin-top: 10px;\n  }\n  img {\n    display: block;\n    width: 100%;\n    height: auto;\n  }\n}\n\n\n// Components\n// --------------------------------------------------\n\ncode {\n  padding: 2px 4px;\n  font-size: 90%;\n  font-family: Menlo, Monaco, Consolas, \"Courier New\", monospace;\n  background-color: #f9f9f9;\n  border-radius: 3px;\n}\n.component {\n  padding: 50px 15px;\n  margin-left: -15px;\n  margin-right: -15px;\n  border-bottom: 1px solid #ddd;\n\n  // Added to the last component so the footer\n  // doesn't create a double border.\n  &.no-border {\n    border-bottom: 0;\n  }\n}\n@media screen and (min-width: 768px) {\n  .component {\n    border-bottom: 0;\n  }\n}\n.component-title {\n  margin-bottom: 10px;\n  font-size: 24px;\n  line-height: 34px;\n}\n.component-description {\n  margin-bottom: 15px;\n  font-size: 16px;\n}\n.component-example {\n  font-size: $font-size-default;\n  font-family: $font-family-default;\n  line-height: $line-height-default;\n}\n.component-example,\n.component-example .bar,\n.component-example .content {\n  position: relative;\n}\n.component-example .bar {\n  border-top: $border-default;\n  border-bottom: $border-default;\n\n  &.bar-header-secondary {\n    top: 0 !important;\n    border-top: 0;\n  }\n}\n.component-example > .content-padded {\n  margin: 15px;\n}\n.component-example > .card {\n  margin: 15px 0 0;\n\n  .control-content {\n    padding: 15px;\n  }\n}\n.component-example > .btn,\n.component-example > .toggle {\n  margin-bottom: 10px;\n}\n.component-example .slider {\n  height: 300px;\n\n  .slide {\n    height: 300px;\n  }\n}\n.component-example .slide img {\n  width: 100%;\n}\n.component-example .slide-text {\n  position: absolute;\n  top: 45%;\n  left: 0;\n  width: 100%;\n  text-align: center;\n  font-size: 24px;\n  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);\n  color: #fff;\n}\n.component-example-fullbleed,\n.highlight {\n  margin-left: -15px;\n  margin-right: -15px;\n}\n.bar-nav ~ .content {\n  padding: 0;\n}\n.highlight pre {\n  padding: 15px;\n  margin-top: 15px;\n  overflow-x: auto;\n  font-size: 13px;\n  color: #777;\n  background-color: #fafafa;\n  border-top: 1px solid #ddd;\n  border-bottom: 1px solid #ddd;\n  white-space: pre;\n  word-wrap: normal;\n}\n.highlight pre code {\n  padding: 0;\n}\n@media screen and (min-width: 768px) {\n  .component,\n  .component-example-fullbleed,\n  .highlight {\n    margin-left: 0;\n    margin-right: 0;\n  }\n  .component {\n    padding-left: 0;\n    padding-right: 0;\n    opacity: .3;\n    @include transition(opacity .2s ease-in-out);\n\n    &.active {\n      opacity: 1;\n    }\n  }\n  .component-example {\n    display: none;\n  }\n  .highlight pre {\n    border-left: 1px solid #ddd;\n    border-right: 1px solid #ddd;\n    border-radius: 3px;\n  }\n}\n\n\n// Specific example overrides\n#ratchicons .icon,\n#ratchiconsInDevice .icon {\n  width: 50px;\n  height: 50px;\n  margin: 3px;\n  font-size: 24px;\n  line-height: 50px;\n  text-align: center;\n  background-color: #fff;\n  border: 1px solid #ddd;\n  border-radius: 25px;\n}\n// Modals\n#modals .modal {\n  left: 0;\n  z-index: 50;\n}\n// Push\n#push .component-example {\n  height: 150px;\n  overflow: hidden;\n}\n\n// Buttons\n#buttonsInDevice,\n#buttonsBadgesInDevice,\n#buttonsWithIconsInDevice {\n  .btn {\n    margin-top: 10px;\n    margin-right: 100px;\n    margin-left: 10px;\n  }\n}\n#blockButtonsInDevice .btn-block {\n  width: 300px;\n  margin: 10px auto;\n}\n\n//Segmented Control\n#segmentedControlsInDevice {\n  .segmented-control {\n    margin-top: 10px;\n    margin-right: 10px;\n    margin-left: 10px;\n  }\n  .card span {\n    padding: 10px;\n  }\n}\n\n// Badges\n#badgesInDevice {\n  text-align: center;\n\n  .badge {\n    margin-top: 10px;\n  }\n}\n\n// Forms\n#formsInDevice form {\n  margin: 10px;\n\n  &.input-group {\n    margin: 0;\n  }\n}\n\n// Toggles\n#togglesInDevice .toggle {\n  margin: 10px auto;\n}\n\n.toggle {\n  cursor: pointer;\n}\n\n// Popovers\n#popoversInDevice {\n  #iwindow:before {\n    position: absolute;\n    top: 0;\n    right: 0;\n    bottom: 0;\n    left: 0;\n    z-index: 11;\n    background-color: rgba(0,0,0,.3);\n    content: '';\n  }\n}\n@media screen and (min-width: 768px) {\n  .popover {\n    position: absolute;\n    display: block;\n    top: 72px;\n    opacity: 1;\n  }\n}\n\n// Modals\n#modalsInDevice {\n  #iwindow > .btn {\n    margin: 10px;\n  }\n}\n\n// Sliders\n@media screen and (min-width: 768px) {\n  .slider .slide {\n    cursor: -webkit-grab;\n    cursor:    -moz-grab;\n    cursor:         grab;\n  }\n  .slider .slide img {\n    width: 100%;\n    height: 570px; // Fullscreen fun times\n    display: block;\n  }\n  .slider .slide-group .slide-text {\n    position: absolute;\n    top: 45%;\n    left: 0;\n    width: 100%;\n    color: #fff;\n    text-align: center;\n    font-size: 24px;\n    text-shadow: 0 0 10px rgba(0,0,0,.5);\n  }\n}\n\n\n// Example device\n// --------------------------------------------------\n\n.device {\n  display: none;\n  font-size: $font-size-default;\n  font-family: $font-family-default;\n  line-height: $line-height-default;\n}\n@media screen and (min-width: 768px) {\n  .device {\n    position: relative;\n    top: 50px;\n    display: block;\n    width: 395px;\n    height: 813px;\n    margin-left: -20px;\n    font-family: \"Helvetica Neue\", sans-serif;\n    background-image: url(\"../img/device-sprite.png\");\n    background-size: 300%;\n    background-repeat: no-repeat;\n    background-position: 0 0;\n    @include transition(background-image .1s linear);\n\n    &.device-fixed {\n      position: fixed;\n      right: auto;\n    }\n  }\n  .device .device-content {\n    position: absolute;\n    top: 117px;\n    left: 37px;\n    width: 321px;\n    height: 569px;\n    overflow: hidden;\n    font-size: $font-size-default;\n    line-height: $line-height-default;\n    background-color: #fff;\n  }\n  .device .content,\n  .device .bar,\n  .device .modal {\n    position: absolute;\n  }\n  .device .content {\n    top: 44px;\n    left: 0;\n    right: 0;\n    bottom: 0;\n  }\n}\n@media screen and (min-width: 1200px) {\n  .device {\n    margin-left: 39px;\n  }\n}\n\n\n// Misc\n// --------------------------------------------------\n\nhr {\n  height: 0;\n  margin: 10px 0 30px;\n  border: solid #ddd;\n  border-width: 1px 0 0;\n  clear: both;\n}\n\n.column-group {\n  @include clearfix;\n}\n\n\n// The Chassis grid\n// --------------------------------------------------\n\n.container {\n  position: relative;\n  margin-left: auto;\n  margin-right: auto;\n  padding-left: 0;\n  padding-right: 0;\n}\n.column-group {\n  width: auto;\n}\n.column {\n  padding-left: 15px;\n  padding-right: 15px;\n  float: left;\n  width: 100%;\n\n  &.pull-right {\n    float: right;\n  }\n}\n// Lines nested grids up correctly.\n.column .column-group {\n  margin-left: -15px;\n  margin-right: -15px;\n}\n\n\n// Tablet to desktop\n// --------------------------------------------------\n\n @media screen and (min-width: 768px) {\n  .container {\n    padding: 0;\n    max-width: 940px;\n  }\n\n  // Twelve column fluid grid\n  .lg-units-4  { width: 33.333%; }\n  .lg-units-5  { width: 41.666%; }\n  .lg-units-7  { width: 58.333%; }\n  .lg-units-8  { width: 66.666%; }\n}\n\n\n// Standard sized screens to large screens\n// --------------------------------------------------\n\n@media screen and (min-width: 1200px) {\n  .container {\n    max-width: 1170px;\n  }\n}\n\n\n// Example platform styles\n// --------------------------------------------------\n\n.platform-ios {\n  @import \"theme-ios.scss\";\n\n  .device {\n    background-position: -395px 0;\n\n    .device-content {\n      background-color: #efeff4;\n    }\n  }\n}\n.platform-android {\n  @import \"theme-android.scss\";\n\n  .device {\n    font-family: 'Roboto', sans-serif;\n    background-position: -790px 0;\n\n    .device-content {\n      font-size: 18px;\n      line-height: 22px;\n      background-color: #f2f2f2;\n    }\n    .content {\n      top: 50px;\n    }\n    .popover {\n      @include transform(scale(1));\n    }\n  }\n  .bar ~ .content {\n    padding: 0;\n  }\n}\n\n// Animations\n@-webkit-keyframes fadeintext {\n  0% {\n   opacity: 0;\n  }\n  100% {\n   opacity: 1;\n  }\n}\n\n// Taken from Bootstrap docs\n//\n// Callouts\n//\n// Not quite alerts, but custom and helpful notes for folks reading the docs.\n// Requires a base and modifier class.\n\n// Common styles for all types\n.bs-callout {\n  padding: 20px;\n  margin: 20px 0;\n  border-left: 3px solid #eee;\n}\n.bs-callout h4 {\n  margin-top: 0;\n  margin-bottom: 5px;\n}\n.bs-callout p:last-child {\n  margin-bottom: 0;\n}\n.bs-callout code {\n  background-color: #fff;\n  border-radius: 3px;\n}\n\n// Variations\n.bs-callout-danger {\n  background-color: #fdf7f7;\n  border-color: #d9534f;\n}\n.bs-callout-danger h4 {\n  color: #d9534f;\n}\n.bs-callout-warning {\n  background-color: #fcf8f2;\n  border-color: #f0ad4e;\n}\n.bs-callout-warning h4 {\n  color: #f0ad4e;\n}\n.bs-callout-info {\n  background-color: #f4f8fa;\n  border-color: #5bc0de;\n}\n.bs-callout-info h4 {\n  color: #5bc0de;\n}\n\n// Team module\n.list-group {\n  margin-bottom: 20px;\n  padding-left: 0;\n}\n.list-group-item:first-child {\n  border-top-right-radius: 4px;\n  border-top-left-radius: 4px;\n}\n.list-group-item {\n  position: relative;\n  display: block;\n  padding: 10px 15px;\n  margin-bottom: -1px;\n  background-color: #fff;\n  border: 1px solid #ddd;\n}\n.list-group .team-member {\n  color: #555;\n  font-size: 14px;\n  line-height: 32px;\n}\n.list-group img {\n  float: left;\n  width: 32px;\n  margin-right: 10px;\n  border-radius: 4px;\n}\n.list-group .team-member-info {\n  overflow: hidden;\n}\n.list-group .github-btn {\n  float: right;\n  margin-top: 6px;\n  width: 121px;\n  height: 20px;\n}\n\n// Browser support table\n.browser-support-table td,\n.browser-support-table th {\n  border: 1px solid #ddd;\n  padding: 5px;\n}\n.browser-support-maybe {\n  color: #fff;\n  background-color: #f0ad4e;\n}\n.browser-support-yes {\n  background-color: $positive-color;\n}\n.browser-support-no {\n  background-color: $negative-color;\n}\n"
  },
  {
    "path": "sass/forms.scss",
    "content": "//\n// Forms\n// --------------------------------------------------\n\n// Force form elements to inherit font styles\ninput,\ntextarea,\nbutton,\nselect {\n  font-family: $font-family-default;\n  font-size: $font-size-default;\n}\n\n// Stretch inputs/textareas to full width and add height to maintain a consistent baseline\nselect,\ntextarea,\ninput[type=\"text\"],\ninput[type=\"search\"],\ninput[type=\"password\"],\ninput[type=\"datetime\"],\ninput[type=\"datetime-local\"],\ninput[type=\"date\"],\ninput[type=\"month\"],\ninput[type=\"time\"],\ninput[type=\"week\"],\ninput[type=\"number\"],\ninput[type=\"email\"],\ninput[type=\"url\"],\ninput[type=\"tel\"],\ninput[type=\"color\"] {\n  width: 100%;\n  height: 35px;\n  -webkit-appearance: none;\n  padding: 0 15px;\n  margin-bottom: 15px;\n  line-height: $line-height-default;\n  background-color: #fff;\n  border: $border-default;\n  border-radius: 3px;\n  outline: none;\n}\n\n// Rounded search input\ninput[type=\"search\"] {\n  padding: 0 10px;\n  font-size: 16px;\n  border-radius: 20px;\n  // Override content-box in normalize\n  -webkit-box-sizing: border-box;\n     -moz-box-sizing: border-box;\n          box-sizing: border-box;\n}\ninput[type=\"search\"]:focus {\n  text-align: left;\n}\n\n// Allow text area's height to grow larger than a normal input\ntextarea {\n  height: auto;\n}\n\n// Style select button to look like part of the Ratchet's style\nselect {\n  height: auto;\n  font-size: 14px;\n  background-color: #f8f8f8;\n  @include box-shadow(inset 0 1px 1px rgba(0, 0, 0, .1));\n}\n\n\n// Input groups (cluster multiple inputs together into a single group)\n// -------------------------------------------------------------------\n\n// Remove spacing, borders, shadows and rounding since it all belongs on the .input-group not the input\n.input-group {\n  background-color: #fff;\n}\n.input-group input,\n.input-group textarea {\n  margin-bottom: 0;\n  background-color: transparent;\n  border-top: 0;\n  border-right: 0;\n  border-left: 0;\n  border-radius: 0;\n  @include box-shadow(none);\n}\n\n// Input groups with labels\n// --------------------------------------------------\n\n// To use labels with input groups, wrap a label and an input in an .input-row\n.input-row {\n  overflow: hidden;\n  height: 35px; // Matches the height of inputs.\n  border-bottom: $border-default;\n}\n\n// Labels get floated left with a set percentage width\n.input-row label {\n  float: left;\n  width: 35%;\n  padding: 8px 15px;\n  font-family: $font-family-default;\n  line-height: 1.1; // Put the text on the baseline.\n}\n\n// Actual inputs float to right of labels and also have a set percentage\n.input-row input {\n  float: right;\n  width: 65%;\n  padding-left: 0;\n  margin-bottom: 0;\n  border: 0;\n}\n"
  },
  {
    "path": "sass/mixins.scss",
    "content": "//\n// Mixins\n// --------------------------------------------------\n\n\n// General\n// --------------------------------------------------\n\n// Utilities\n// -------------------------\n\n// Clearfix\n// Source: http://nicolasgallagher.com/micro-clearfix-hack/\n//\n// For modern browsers\n// 1. The space content is one way to avoid an Opera bug when the\n//    contenteditable attribute is included anywhere else in the document.\n//    Otherwise it causes space to appear at the top and bottom of elements\n//    that are clearfixed.\n// 2. The use of `table` rather than `block` is only necessary if using\n//    `:before` to contain the top-margins of child elements.\n@mixin clearfix() {\n  &:before,\n  &:after {\n    display: table; // 2\n    content: \" \";   // 1\n  }\n  &:after {\n    clear: both;\n  }\n}\n\n// Box shadow\n@mixin box-shadow($shadow...) {\n  -webkit-box-shadow: $shadow;\n          box-shadow: $shadow;\n}\n\n// Gradients\n@mixin linear-gradient($color-from, $color-to) {\n  background-color: $color-from; // Old browsers\n  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, $color-from), color-stop(100%, $color-to)); // Chrome, Safari4+\n  background-image: -webkit-linear-gradient(top, $color-from 0%, $color-to 100%);           // Chrome10+, Safari5.1+\n  background-image:    -moz-linear-gradient(top, $color-from 0%, $color-to 100%);           // FF3.6+\n  background-image:     -ms-linear-gradient(top, $color-from 0%, $color-to 100%);           // IE10+\n  background-image:      -o-linear-gradient(top, $color-from 0%, $color-to 100%);           // Opera 11.10+\n  background-image:         linear-gradient(to bottom, $color-from 0%, $color-to 100%);     // W3C\n  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#{$color-from}', endColorstr='#{$color-to}', GradientType=0 ); // IE6-9\n}\n@mixin directional-gradient($color-from, $color-to, $deg: 45deg) {\n  background-color: $color-from; // Old browsers\n  background-image: -webkit-gradient(linear, left bottom, right top, color-stop(0%, $color-from), color-stop(100%, $color-to)); // Chrome, Safari4+\n  background-image: -webkit-linear-gradient($deg, $color-from 0%, $color-to 100%);          // Chrome10+, Safari5.1+\n  background-image:    -moz-linear-gradient($deg, $color-from 0%, $color-to 100%);          // FF3.6+\n  background-image:     -ms-linear-gradient($deg, $color-from 0%, $color-to 100%);          // IE10+\n  background-image:      -o-linear-gradient($deg, $color-from 0%, $color-to 100%);          // Opera 11.10+\n  background-image:         linear-gradient($deg, $color-from 0%, $color-to 100%);          // W3C\n  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#{$color-from}', endColorstr='#{$color-to}', GradientType=1 ); // IE6-9\n}\n\n\n// Transforms\n// --------------------------------------------------\n@mixin transform($transform...) {\n  -webkit-transform: $transform;\n      -ms-transform: $transform;\n          transform: $transform;\n}\n\n\n// Transitions\n// --------------------------------------------------\n@mixin transition($transition...) {\n  -webkit-transition: $transition;\n     -moz-transition: $transition;\n          transition: $transition;\n}\n@mixin transition-property($property...) {\n  -webkit-transition-property: $property;\n     -moz-transition-property: $property;\n          transition-property: $property;\n}\n@mixin transition-duration($duration...) {\n  -webkit-transition-duration: $duration;\n     -moz-transition-duration: $duration;\n          transition-duration: $duration;\n}\n@mixin transition-timing-function($function...) {\n  -webkit-transition-timing-function: $function;\n     -moz-transition-timing-function: $function;\n          transition-timing-function: $function;\n}\n\n\n// Animations\n// --------------------------------------------------\n@mixin animation-name($name) {\n  -webkit-animation-name: $name;\n     -moz-animation-name: $name;\n          animation-name: $name;\n}\n@mixin animation-duration($duration) {\n  -webkit-animation-duration: $duration;\n     -moz-animation-duration: $duration;\n          animation-duration: $duration;\n}\n@mixin animation-direction($direction) {\n  -webkit-animation-direction: $direction;\n     -moz-animation-direction: $direction;\n          animation-direction: $direction;\n}\n\n\n// Misc\n// --------------------------------------------------\n@mixin hairline($type, $color, $offset) {\n  @if $type == single {\n    background-image: url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='1'><rect fill='#{$color}' x='0' y='0' width='100%' height='0.5'/></svg>\");\n    background-position: $offset 100%;\n\n  } @else if $type == double {\n    background-image: url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='1'><rect fill='#{$color}' x='0' y='0' width='100%' height='0.5'/></svg>\"),\n                      url(\"data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='1'><rect fill='#{$color}' x='0' y='0' width='100%' height='0.5'/></svg>\");\n    background-position: $offset 100%, $offset 0;\n  }\n  background-repeat: no-repeat;\n}\n"
  },
  {
    "path": "sass/modals.scss",
    "content": "//\n// Modals\n// --------------------------------------------------\n\n.modal {\n  position: fixed;\n  top: 0;\n  z-index: 11;\n  width: 100%;\n  min-height: 100%;\n  overflow: hidden;\n  background-color: #fff;\n  opacity: 0;\n  -webkit-transition: -webkit-transform .25s, opacity 1ms .25s;\n     -moz-transition: -moz-transform .25s, opacity 1ms .25s;\n          transition: transform .25s, opacity 1ms .25s;\n  @include transform(translate3d(0, 100%, 0));\n\n  // Active modal\n  &.active {\n    height: 100%;\n    opacity: 1;\n    -webkit-transition: -webkit-transform .25s;\n       -moz-transition: -moz-transform .25s;\n            transition: transform .25s;\n    @include transform(translate3d(0, 0, 0));\n  }\n}\n"
  },
  {
    "path": "sass/normalize.scss",
    "content": "/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */\n\n//\n// 1. Set default font family to sans-serif.\n// 2. Prevent iOS and IE text size adjust after device orientation change,\n//    without disabling user zoom.\n//\n\nhtml {\n  font-family: sans-serif; // 1\n  -ms-text-size-adjust: 100%; // 2\n  -webkit-text-size-adjust: 100%; // 2\n}\n\n//\n// Remove default margin.\n//\n\nbody {\n  margin: 0;\n}\n\n// HTML5 display definitions\n// ==========================================================================\n\n//\n// Correct `block` display not defined for any HTML5 element in IE 8/9.\n// Correct `block` display not defined for `details` or `summary` in IE 10/11\n// and Firefox.\n// Correct `block` display not defined for `main` in IE 11.\n//\n\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nmenu,\nnav,\nsection,\nsummary {\n  display: block;\n}\n\n//\n// 1. Correct `inline-block` display not defined in IE 8/9.\n// 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.\n//\n\naudio,\ncanvas,\nprogress,\nvideo {\n  display: inline-block; // 1\n  vertical-align: baseline; // 2\n}\n\n//\n// Prevent modern browsers from displaying `audio` without controls.\n// Remove excess height in iOS 5 devices.\n//\n\naudio:not([controls]) {\n  display: none;\n  height: 0;\n}\n\n//\n// Address `[hidden]` styling not present in IE 8/9/10.\n// Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.\n//\n\n[hidden],\ntemplate {\n  display: none;\n}\n\n// Links\n// ==========================================================================\n\n//\n// Remove the gray background color from active links in IE 10.\n//\n\na {\n  background-color: transparent;\n}\n\n//\n// Improve readability of focused elements when they are also in an\n// active/hover state.\n//\n\na:active,\na:hover {\n  outline: 0;\n}\n\n// Text-level semantics\n// ==========================================================================\n\n//\n// Address styling not present in IE 8/9/10/11, Safari, and Chrome.\n//\n\nabbr[title] {\n  border-bottom: 1px dotted;\n}\n\n//\n// Address style set to `bolder` in Firefox 4+, Safari, and Chrome.\n//\n\nb,\nstrong {\n  font-weight: bold;\n}\n\n//\n// Address styling not present in Safari and Chrome.\n//\n\ndfn {\n  font-style: italic;\n}\n\n//\n// Address variable `h1` font-size and margin within `section` and `article`\n// contexts in Firefox 4+, Safari, and Chrome.\n//\n\nh1 {\n  font-size: 2em;\n  margin: 0.67em 0;\n}\n\n//\n// Address styling not present in IE 8/9.\n//\n\nmark {\n  background: #ff0;\n  color: #000;\n}\n\n//\n// Address inconsistent and variable font size in all browsers.\n//\n\nsmall {\n  font-size: 80%;\n}\n\n//\n// Prevent `sub` and `sup` affecting `line-height` in all browsers.\n//\n\nsub,\nsup {\n  font-size: 75%;\n  line-height: 0;\n  position: relative;\n  vertical-align: baseline;\n}\n\nsup {\n  top: -0.5em;\n}\n\nsub {\n  bottom: -0.25em;\n}\n\n// Embedded content\n// ==========================================================================\n\n//\n// Remove border when inside `a` element in IE 8/9/10.\n//\n\nimg {\n  border: 0;\n}\n\n//\n// Correct overflow not hidden in IE 9/10/11.\n//\n\nsvg:not(:root) {\n  overflow: hidden;\n}\n\n// Grouping content\n// ==========================================================================\n\n//\n// Address margin not present in IE 8/9 and Safari.\n//\n\nfigure {\n  margin: 1em 40px;\n}\n\n//\n// Address differences between Firefox and other browsers.\n//\n\nhr {\n  box-sizing: content-box;\n  height: 0;\n}\n\n//\n// Contain overflow in all browsers.\n//\n\npre {\n  overflow: auto;\n}\n\n//\n// Address odd `em`-unit font size rendering in all browsers.\n//\n\ncode,\nkbd,\npre,\nsamp {\n  font-family: monospace, monospace;\n  font-size: 1em;\n}\n\n// Forms\n// ==========================================================================\n\n//\n// Known limitation: by default, Chrome and Safari on OS X allow very limited\n// styling of `select`, unless a `border` property is set.\n//\n\n//\n// 1. Correct color not being inherited.\n//    Known issue: affects color of disabled elements.\n// 2. Correct font properties not being inherited.\n// 3. Address margins set differently in Firefox 4+, Safari, and Chrome.\n//\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n  color: inherit; // 1\n  font: inherit; // 2\n  margin: 0; // 3\n}\n\n//\n// Address `overflow` set to `hidden` in IE 8/9/10/11.\n//\n\nbutton {\n  overflow: visible;\n}\n\n//\n// Address inconsistent `text-transform` inheritance for `button` and `select`.\n// All other form control elements do not inherit `text-transform` values.\n// Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.\n// Correct `select` style inheritance in Firefox.\n//\n\nbutton,\nselect {\n  text-transform: none;\n}\n\n//\n// 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`\n//    and `video` controls.\n// 2. Correct inability to style clickable `input` types in iOS.\n// 3. Improve usability and consistency of cursor style between image-type\n//    `input` and others.\n//\n\nbutton,\nhtml input[type=\"button\"], // 1\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n  -webkit-appearance: button; // 2\n  cursor: pointer; // 3\n}\n\n//\n// Re-set default cursor for disabled elements.\n//\n\nbutton[disabled],\nhtml input[disabled] {\n  cursor: default;\n}\n\n//\n// Remove inner padding and border in Firefox 4+.\n//\n\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n  border: 0;\n  padding: 0;\n}\n\n//\n// Address Firefox 4+ setting `line-height` on `input` using `!important` in\n// the UA stylesheet.\n//\n\ninput {\n  line-height: normal;\n}\n\n//\n// It's recommended that you don't attempt to style these elements.\n// Firefox's implementation doesn't respect box-sizing, padding, or width.\n//\n// 1. Address box sizing set to `content-box` in IE 8/9/10.\n// 2. Remove excess padding in IE 8/9/10.\n//\n\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n  box-sizing: border-box; // 1\n  padding: 0; // 2\n}\n\n//\n// Fix the cursor style for Chrome's increment/decrement buttons. For certain\n// `font-size` values of the `input`, it causes the cursor style of the\n// decrement button to change from `default` to `text`.\n//\n\ninput[type=\"number\"]::-webkit-inner-spin-button,\ninput[type=\"number\"]::-webkit-outer-spin-button {\n  height: auto;\n}\n\n//\n// 1. Address `appearance` set to `searchfield` in Safari and Chrome.\n// 2. Address `box-sizing` set to `border-box` in Safari and Chrome.\n//\n\ninput[type=\"search\"] {\n  -webkit-appearance: textfield; // 1\n  box-sizing: content-box; // 2\n}\n\n//\n// Remove inner padding and search cancel button in Safari and Chrome on OS X.\n// Safari (but not Chrome) clips the cancel button when the search input has\n// padding (and `textfield` appearance).\n//\n\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n  -webkit-appearance: none;\n}\n\n//\n// Define consistent border, margin, and padding.\n//\n\nfieldset {\n  border: 1px solid #c0c0c0;\n  margin: 0 2px;\n  padding: 0.35em 0.625em 0.75em;\n}\n\n//\n// 1. Correct `color` not being inherited in IE 8/9/10/11.\n// 2. Remove padding so people aren't caught out if they zero out fieldsets.\n//\n\nlegend {\n  border: 0; // 1\n  padding: 0; // 2\n}\n\n//\n// Remove default vertical scrollbar in IE 8/9/10/11.\n//\n\ntextarea {\n  overflow: auto;\n}\n\n//\n// Don't inherit the `font-weight` (applied by a rule above).\n// NOTE: the default cannot safely be changed in Chrome and Safari on OS X.\n//\n\noptgroup {\n  font-weight: bold;\n}\n\n// Tables\n// ==========================================================================\n\n//\n// Remove most spacing between table cells.\n//\n\ntable {\n  border-collapse: collapse;\n  border-spacing: 0;\n}\n\ntd,\nth {\n  padding: 0;\n}\n"
  },
  {
    "path": "sass/popovers.scss",
    "content": "//\n// Popovers (to be used with popovers.js)\n// --------------------------------------------------\n\n.popover {\n  position: fixed;\n  top: 55px;\n  left: 50%;\n  z-index: 20;\n  display: none;\n  width: 280px;\n  margin-left: -140px;\n  background-color: $chrome-color;\n  border-radius: $border-radius;\n  opacity: 0;\n  @include box-shadow(0 0 15px rgba(0, 0, 0, .1));\n  @include transform(translate3d(0, -15px, 0));\n  @include transition(all .25s linear);\n\n  // Caret on top of popover using CSS triangles (thanks to @chriscoyier for solution)\n  &:before {\n    position: absolute;\n    top: -15px;\n    left: 50%;\n    width: 0;\n    height: 0;\n    margin-left: -15px;\n    content: '';\n    border-right: 15px solid transparent;\n    border-bottom: 15px solid $chrome-color;\n    border-left: 15px solid transparent;\n  }\n\n  // Popover transition\n  // --------------------------------------------------\n\n  &.visible {\n    opacity: 1;\n    @include transform(translate3d(0, 0, 0));\n  }\n\n  // Give correct spacing to the content if there is a bar inside the popover.\n  .bar ~ .table-view {\n    padding-top: $bar-base-height;\n  }\n}\n\n// Backdrop (used as invisible touch escape)\n// --------------------------------------------------\n\n.backdrop {\n  position: fixed;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  z-index: 15;\n  background-color: rgba(0,0,0,.3);\n}\n\n// Block level buttons in popovers\n// --------------------------------------------------\n\n.popover .btn-block {\n  margin-bottom: 5px;\n\n  // Remove extra margin on bottom of last button\n  &:last-child {\n    margin-bottom: 0;\n  }\n}\n\n\n// Popovers with nav bars\n// --------------------------------------------------\n\n.popover .bar-nav {\n  border-bottom: $border-default;\n  border-top-left-radius: 12px;\n  border-top-right-radius: 12px;\n  @include box-shadow(none);\n}\n\n\n// Table views in popovers\n// --------------------------------------------------\n\n.popover .table-view {\n  max-height: 300px;\n  margin-bottom: 0;\n  overflow: auto;\n  -webkit-overflow-scrolling: touch;\n  background-color: #fff;\n  border-top: 0;\n  border-bottom: 0;\n  border-radius: $border-radius;\n}\n"
  },
  {
    "path": "sass/push.scss",
    "content": "//\n// Push styles (to be used with push.js)\n// --------------------------------------------------\n\n.content {\n  // Fade animation\n  &.fade {\n    left: 0;\n    opacity: 0;\n    @include transition(opacity .4s);\n\n    &.in {\n      opacity: 1;\n    }\n  }\n\n  // Slide animation\n  &.sliding {\n    z-index: 2;\n    -webkit-transition: -webkit-transform .4s;\n       -moz-transition: -moz-transform .4s;\n            transition: transform .4s;\n    @include transform(translate3d(0, 0, 0));\n\n    &.left {\n      z-index: 1;\n      @include transform(translate3d(-100%, 0, 0));\n    }\n\n    &.right {\n      z-index: 3;\n      @include transform(translate3d(100%, 0, 0));\n    }\n  }\n}\n\n// Add chevrons to elements\n.navigate-left,\n.navigate-right,\n.push-left,\n.push-right {\n  &:after {\n    position: absolute;\n    top: 50%;\n    display: inline-block;\n    font-family: Ratchicons;\n    font-size: inherit;\n    line-height: 1;\n    color: #bbb;\n    text-decoration: none;\n    -webkit-font-smoothing: antialiased;\n    @include transform(translateY(-50%));\n  }\n}\n.navigate-left:after,\n.push-left:after {\n  left: 15px;\n  content: '\\e822';\n}\n.navigate-right:after,\n.push-right:after{\n  right: 15px;\n  content: '\\e826';\n}\n"
  },
  {
    "path": "sass/ratchet.scss",
    "content": "\n// Variables\n@import \"variables.scss\";\n\n// Mixins\n@import \"mixins.scss\";\n\n// Normalize & Base CSS\n@import \"normalize.scss\";\n@import \"base.scss\";\n@import \"type.scss\";\n\n// Components\n@import \"buttons.scss\";\n@import \"bars.scss\";\n@import \"badges.scss\";\n@import \"cards.scss\";\n@import \"table-views.scss\";\n@import \"forms.scss\";\n@import \"segmented-controls.scss\";\n@import \"popovers.scss\";\n\n// Javascript components\n@import \"modals.scss\";\n@import \"sliders.scss\";\n@import \"toggles.scss\";\n@import \"push.scss\";\n\n// Ratchicons\n@import \"ratchicons.scss\";\n"
  },
  {
    "path": "sass/ratchicons.scss",
    "content": "//\n// Ratchicons\n// --------------------------------------------------\n\n@font-face {\n  font-family: Ratchicons;\n  font-weight: normal;\n  font-style: normal;\n  src: url('../fonts/ratchicons.eot');\n  src: url('../fonts/ratchicons.eot?#iefix') format('embedded-opentype'),\n       url('../fonts/ratchicons.woff') format('woff'),\n       url('../fonts/ratchicons.ttf') format('truetype'),\n       url('../fonts/ratchicons.svg#svgFontName') format('svg');\n}\n\n.icon {\n  display: inline-block;\n  font-family: Ratchicons;\n  font-size: 24px;\n  line-height: 1;\n  text-decoration: none;\n  -webkit-font-smoothing: antialiased;\n}\n\n.icon-back                  { &:before { content: '\\e80a'; } }\n.icon-bars                  { &:before { content: '\\e80e'; } }\n.icon-caret                 { &:before { content: '\\e80f'; } }\n.icon-check                 { &:before { content: '\\e810'; } }\n.icon-close                 { &:before { content: '\\e811'; } }\n.icon-code                  { &:before { content: '\\e812'; } }\n.icon-compose               { &:before { content: '\\e813'; } }\n.icon-download              { &:before { content: '\\e815'; } }\n.icon-edit                  { &:before { content: '\\e829'; } }\n.icon-forward               { &:before { content: '\\e82a'; } }\n.icon-gear                  { &:before { content: '\\e821'; } }\n.icon-home                  { &:before { content: '\\e82b'; } }\n.icon-info                  { &:before { content: '\\e82c'; } }\n.icon-list                  { &:before { content: '\\e823'; } }\n.icon-more-vertical         { &:before { content: '\\e82e'; } }\n.icon-more                  { &:before { content: '\\e82f'; } }\n.icon-pages                 { &:before { content: '\\e824'; } }\n.icon-pause                 { &:before { content: '\\e830'; } }\n.icon-person                { &:before { content: '\\e832'; } }\n.icon-play                  { &:before { content: '\\e816'; } }\n.icon-plus                  { &:before { content: '\\e817'; } }\n.icon-refresh               { &:before { content: '\\e825'; } }\n.icon-search                { &:before { content: '\\e819'; } }\n.icon-share                 { &:before { content: '\\e81a'; } }\n.icon-sound                 { &:before { content: '\\e827'; } }\n.icon-sound2                { &:before { content: '\\e828'; } }\n.icon-sound3                { &:before { content: '\\e80b'; } }\n.icon-sound4                { &:before { content: '\\e80c'; } }\n.icon-star-filled           { &:before { content: '\\e81b'; } }\n.icon-star                  { &:before { content: '\\e81c'; } }\n.icon-stop                  { &:before { content: '\\e81d'; } }\n.icon-trash                 { &:before { content: '\\e81e'; } }\n.icon-up-nav                { &:before { content: '\\e81f'; } }\n.icon-up                    { &:before { content: '\\e80d'; } }\n.icon-right-nav             { &:before { content: '\\e818'; } }\n.icon-right                 { &:before { content: '\\e826'; } }\n.icon-down-nav              { &:before { content: '\\e814'; } }\n.icon-down                  { &:before { content: '\\e820'; } }\n.icon-left-nav              { &:before { content: '\\e82d'; } }\n.icon-left                  { &:before { content: '\\e822'; } }\n"
  },
  {
    "path": "sass/segmented-controls.scss",
    "content": "//\n// Segmented controllers\n// --------------------------------------------------\n\n.segmented-control {\n  position: relative;\n  display: table;\n  overflow: hidden;\n  font-size: 12px;\n  font-weight: $font-weight-light;\n  background-color: $chrome-color;\n  border: 1px solid #ccc;\n  border-radius: 3px;\n\n  // Section within controller\n  .control-item {\n    display: table-cell;\n    width: 1%;\n    padding-top: 6px;\n    padding-bottom: 7px;\n    overflow: hidden;\n    line-height: 1;\n    color: #333;\n    text-align: center;\n    text-overflow: ellipsis;\n    white-space: nowrap;\n    border-left: 1px solid #ccc;\n\n    // Remove border-left and shadow from first section\n    &:first-child {\n      border-left-width: 0;\n    }\n\n    // Tap state of segmented controller\n    &:active {\n      background-color: #eee;\n    }\n\n    // Selected state of segmented controller\n    &.active {\n      background-color: #ccc;\n    }\n  }\n}\n\n// Other segmented controller types\n// --------------------------------------------------\n\n// Primary\n.segmented-control-primary {\n  border-color: $primary-color;\n\n  .control-item {\n    color: $primary-color;\n    border-color: inherit;\n\n    &:active {\n      background-color: lighten($primary-color, 35%);\n    }\n    &.active {\n      color: #fff;\n      background-color: $primary-color;\n    }\n  }\n}\n\n// Positive\n.segmented-control-positive {\n  border-color: $positive-color;\n\n  .control-item {\n    color: $positive-color;\n    border-color: inherit;\n\n    &:active {\n      background-color: lighten($positive-color, 35%);\n    }\n    &.active {\n      color: #fff;\n      background-color: $positive-color;\n    }\n  }\n}\n\n// Negative\n.segmented-control-negative {\n  border-color: $negative-color;\n\n  .control-item {\n    color: $negative-color;\n    border-color: inherit;\n\n    &:active {\n      background-color: lighten($negative-color, 35%);\n    }\n    &.active {\n      color: #fff;\n      background-color: $negative-color;\n    }\n  }\n}\n\n// This is used to by the js to show and hide content tide to the segmented control.\n.control-content {\n  display: none;\n\n  &.active {\n    display: block;\n  }\n}\n"
  },
  {
    "path": "sass/sliders.scss",
    "content": "//\n// Slider styles (to be used with sliders.js)\n// --------------------------------------------------\n\n// Width of slider\n.slider {\n  width: 100%;\n}\n\n// Outer wrapper for slider\n.slider {\n  overflow: hidden;\n  background-color: #000;\n\n  // Inner wrapper for slider (width of all slides together)\n  .slide-group {\n    position: relative;\n    font-size: 0; // Remove spaces from inline-block children\n    white-space: nowrap;\n    @include transition(all 0s linear);\n\n    // Individual slide\n    .slide {\n      display: inline-block;\n      width: 100%;\n      height: 100%;\n      font-size: 14px;\n      vertical-align: top; // Ensure that li always aligns to top\n    }\n  }\n}\n"
  },
  {
    "path": "sass/table-views.scss",
    "content": "//\n// Table views\n// --------------------------------------------------\n\n.table-view {\n  padding-left: 0;\n  margin-top: 0;\n  margin-bottom: 15px;\n  list-style: none; // Remove usual bullet styles from table view\n  background-color: #fff;\n  border-top: $border-default;\n  border-bottom: $border-default;\n}\n\n// Pad each table view item and add dividers\n.table-view-cell {\n  position: relative;\n  padding: 11px 65px 11px 15px;\n  overflow: hidden;\n  border-bottom: $border-default;\n\n  // Remove the border from the last table view item\n  &:last-child {\n    border-bottom: 0;\n  }\n  // If it's a table view of links, make sure the child <a> takes up full table view item tap area (want to avoid selecting child buttons though)\n  > a:not(.btn) {\n    position: relative;\n    display: block;\n    padding: inherit;\n    margin: -11px -65px -11px -15px; // Make the entire list item tappable.\n    overflow: hidden;\n    color: inherit;\n\n    &:active {\n      background-color: #eee;\n    }\n  }\n  p {\n    margin-bottom: 0;\n  }\n}\n\n\n// Table view dividers\n// --------------------------------------------------\n\n.table-view-divider {\n  padding-top: 6px;\n  padding-bottom: 6px;\n  padding-left: 15px;\n  margin-top: -1px; // Hides the border of the previous list item\n  margin-left: 0;\n  font-weight: $font-weight;\n  color: #999;\n  background-color: #fafafa;\n  border-top: $border-default;\n  border-bottom: $border-default;\n}\n\n\n// Table-views with media (images,avatars, icons)\n// --------------------------------------------------\n\n.table-view .media,\n.table-view .media-body {\n  overflow: hidden;\n}\n.table-view .media-object {\n  &.pull-left {\n    margin-right: 10px;\n  }\n  &.pull-right {\n    margin-left: 10px;\n  }\n}\n\n\n// Table-views with buttons, badges and toggles\n// --------------------------------------------------\n.table-view-cell,\n.table-view-cell > a {\n  > .btn,\n  > .badge,\n  > .toggle {\n    position: absolute;\n    top: 50%;\n    right: 15px;\n    @include transform(translateY(-50%));\n  }\n\n  // If the cell has a chevron, give some more room.\n  .navigate-left,\n  .navigate-right,\n  .push-left,\n  .push-right {\n    > .btn,\n    > .badge,\n    > .toggle {\n      right: 35px;\n    }\n  }\n}\n\n// If the table view is the first component, give it extra margin on top.\n.content > .table-view:first-child {\n  margin-top: 15px;\n}\n"
  },
  {
    "path": "sass/theme-android.scss",
    "content": "@import \"mixins.scss\";\n\n//\n// Android theme\n// Visuals and interactions in the style of Android\n//\n// --------------------------------------------------\n\n\n// Variables\n// --------------------------------------------------\n\n// Type\n$font-family-default: 'Roboto', sans-serif !global;\n$font-size-default: 18px !global;\n$font-weight: 500 !global;\n$font-weight-light: 400 !global;\n$line-height-default: 22px !global;\n\n// Colors\n//\n// Main theme colors\n$primary-color:  #33b5e5 !global;\n$chrome-color:   #dddddd !global;\n$text-color:     #222 !global;\n\n// Action colors\n$default-color:  #999 !global;\n$positive-color: #99cc00 !global;\n$negative-color: #ff4444 !global;\n\n// Bars\n$bar-base-height: 50px !global;\n$bar-tab-height:  50px !global;\n\n// Borders\n$border-default: 1px solid #b1b1b1 !global;\n$border-radius: 2px !global;\n\n\n// Base\n// --------------------------------------------------\n\nbody {\n  font-family: $font-family-default;\n  font-size: $font-size-default;\n  line-height: $line-height-default;\n  color: $text-color;\n}\n\n// Universal link styling\na {\n  color: $primary-color;\n\n  &:active {\n    color: darken($primary-color, 10%);\n  }\n}\n\n// Content\n.content {\n  background-color: #f2f2f2;\n}\n// Pad top/bottom of content so it doesn't hide behind .bar-title and .bar-tab.\n// Note: For these to work, content must come after both bars in the markup\n.bar-nav ~ .content {\n  padding-top: $bar-base-height;\n}\n.bar-header-secondary ~ .content {\n  padding-top: $bar-base-height*2;\n}\n.bar-tab ~ .content {\n  padding-top: $bar-tab-height;\n  padding-bottom: 0;\n}\n.bar-footer ~ .content {\n  padding-bottom: $bar-base-height;\n}\n.bar-footer-secondary ~ .content {\n  padding-bottom: ($bar-base-height*2);\n}\n\n// Buttons\n// --------------------------------------------------\n\n.btn {\n  padding: 8px 15px;\n  font-size: 14px;\n  color: $text-color;\n  background-color: #cecece;\n  border: 0;\n  border-radius: $border-radius;\n  @include box-shadow(inset 0 -1px 0 rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 1px rgba(0,0,0,.25));\n\n  // Active & filled button styles\n  &:active,\n  &.active {\n    color: $text-color;\n    background-color: $default-color;\n    border: 0;\n    @include box-shadow(inset 0 -1px 0 rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.2));\n  }\n}\n\n\n// Other button types\n// --------------------------------------------------\n\n// Primary button (Default color is blue)\n.btn-primary {\n  color: #fff;\n  background-color: $primary-color;\n  border: 0;\n\n  &:active,\n  &.active {\n    color: #fff;\n    border: 0;\n    background-color: darken($primary-color, 10%);\n  }\n}\n\n// Positive button (Default color is green)\n.btn-positive {\n  color: #fff;\n  background-color: $positive-color;\n  border: 0;\n\n  &:active,\n  &.active {\n    color: #fff;\n    background-color: darken($positive-color, 10%);\n    border: 0;\n  }\n}\n\n// Negative button (Default color is red)\n.btn-negative {\n  color: #fff;\n  background-color: $negative-color;\n  border: 0;\n\n  &:active,\n  &.active {\n    color: #fff;\n    background-color: darken($negative-color, 10%);\n    border: 0;\n  }\n}\n\n// Outlined buttons\n.btn-outlined {\n  background-color: transparent;\n  border: 1px solid $default-color;\n  @include box-shadow(none);\n\n\n  &.btn-primary {\n    color: $primary-color;\n    border: 1px solid $primary-color;\n\n    &:active {\n      background-color: $primary-color;\n      border: 1px solid $primary-color;\n    }\n  }\n  &.btn-positive {\n    color: $positive-color;\n    border: 1px solid $positive-color;\n\n    &:active {\n      background-color: $positive-color;\n      border: 1px solid $positive-color;\n    }\n  }\n  &.btn-negative {\n    color: $negative-color;\n    border: 1px solid $negative-color;\n\n    &:active {\n      background-color: $negative-color;\n      border: 1px solid $negative-color;\n    }\n  }\n  // Active states\n  &:active {\n    background-color: $default-color;\n    border: 1px solid $default-color;\n    @include box-shadow(none);\n  }\n  &.btn-primary:active,\n  &.btn-positive:active,\n  &.btn-negative:active {\n    color: #fff;\n    @include box-shadow(none);\n  }\n}\n\n// Link button (Buttons that look like links)\n.btn-link {\n  color: $primary-color;\n  background-color: transparent;\n  border: none;\n  @include box-shadow(none);\n\n  &:active,\n  &.active {\n    color: darken($primary-color, 10%);\n    background-color: transparent;\n    @include box-shadow(none);\n  }\n}\n\n// Block buttons\n.btn-block {\n  padding: 15px 0;\n  font-size: 18px;\n}\n\n// Buttons with badges\n.btn {\n  .badge {\n    background-color: rgba(0,0,0,.15);\n\n    &.badge-inverted {\n      background-color: transparent;\n    }\n  }\n\n  // Active states\n  &:active .badge {\n    color: #fff;\n  }\n}\n\n\n// Bars\n// --------------------------------------------------\n\n.bar {\n  height: $bar-base-height;\n  background-color: $chrome-color;\n  border-bottom: $border-default;\n  @include box-shadow(inset 0 -2px 0 #d2d2d2, 0 3px 3px rgba(0,0,0,.07));\n\n  // Modifier class to dock any bar below .bar-nav\n  &.bar-header-secondary {\n    top: $bar-base-height;\n  }\n\n  // Modifier class to dock any bar above a standard bar\n  &.bar-footer-secondary {\n    bottom: $bar-base-height;\n  }\n\n  // Modifier class to dock any bar above a .bar-tab\n  &.bar-footer-secondary-tab {\n    bottom: $bar-tab-height;\n  }\n\n  // Give the footers the correct border\n  .bar-footer,\n  .bar-footer-secondary,\n  .bar-footer-secondary-tab {\n    border-top: $border-default;\n    border-bottom: 0;\n    @include box-shadow(inset 0 -2px 0 $primary-color);\n  }\n}\n.bar-tab {\n  top: 0;\n  bottom: auto;\n  height: $bar-tab-height;\n  border-top: 0;\n\n  .tab-item {\n    color: #929292;\n\n    // Active states for the tab bar\n    &.active {\n      color: $primary-color;\n      @include box-shadow(inset 0 -2px 0 $primary-color);\n    }\n    //Pressed state\n    &:active {\n      color: #929292;\n      background-color: #78c6e3;\n    }\n    .icon {\n      top: 3px;\n      padding-top: 0;\n      padding-bottom: 0;\n    }\n  }\n}\n\n// Left aligned text in the .bar-nav\n.title {\n  position: static;\n  padding-left: 15px;\n  font-size: $font-size-default;\n  line-height: 49px;\n  text-align: left;\n}\n\n// Bars with buttons\n.bar {\n  .btn {\n    top: 7px;\n    padding-top: 10px;\n    padding-bottom: 10px;\n  }\n  .btn-link {\n    top: 0;\n    padding: 0;\n    font-size: $font-size-default;\n    line-height: 49px;\n    color: $primary-color;\n\n    &:active,\n    &.active {\n      color: darken($primary-color, 10%);\n    }\n\n    // Make sure link buttons w/ icons line up with the content correctly\n    .icon {\n      top: 2px;\n      padding: 0;\n    }\n  }\n  .btn-block {\n    top: 4px;\n  }\n}\n\n// Bars with segmented-controls\n//\n// Remove standard segmented bottom margin\n.bar .segmented-control {\n  top: 7px;\n}\n\n// Bars with Ratchicons\n.bar {\n  .icon {\n    padding-top: 13px;\n    padding-bottom: 13px;\n  }\n  // Handle carets in the titles\n  .title .icon {\n    padding: 0;\n\n    &.icon-caret {\n      top: 10px;\n      color: #777;\n    }\n  }\n}\n\n// Standard bars with search forms\n//\n// Position/size search bar within the bar\n.bar input[type=\"search\"] {\n  height: 35px;\n}\n\n\n// Badges\n// --------------------------------------------------\n\n.badge {\n  &.badge-inverted {\n    color: $default-color;\n    background-color: transparent;\n  }\n}\n\n// Badge modifiers\n//\n// Main badge\n.badge-primary {\n  color: #fff;\n  background-color: $primary-color;\n\n  &.badge-inverted {\n    color: $primary-color;\n    background-color: transparent;\n  }\n}\n\n// Positive badge\n.badge-positive {\n  color: #fff;\n  background-color: $positive-color;\n\n  &.badge-inverted {\n    color: $positive-color;\n    background-color: transparent;\n  }\n}\n\n// Negative badge\n.badge-negative {\n  color: #fff;\n  background-color: $negative-color;\n\n  &.badge-inverted {\n    color: $negative-color;\n    background-color: transparent;\n  }\n}\n\n\n// Cards\n// --------------------------------------------------\n\n.card {\n  background-color: transparent;\n  border-color: #d9d9d9;\n  border-radius: $border-radius;\n}\n\n\n// Table views\n// --------------------------------------------------\n\n.table-view {\n  background-color: transparent;\n\n  .table-view-cell {\n    border-bottom: 1px solid #d9d9d9;\n\n    // Remove the border from the last table view item\n    &:last-child {\n      background-image: none;\n    }\n    > a:not(.btn):active {\n      color: inherit;\n      background-color: #e0e0e0;\n\n      .icon {\n        color: #fff;\n      }\n    }\n  }\n\n  // Table view dividers\n  .table-view-divider {\n    padding-top: 25px;\n    font-size: 12px;\n    font-weight: bold;\n    text-transform: uppercase;\n    background-color: transparent;\n    border-top: 0;\n    border-bottom: 2px solid #a9a9a9;\n  }\n}\n\n// Table-views with buttons, badges and toggles\n// --------------------------------------------------\n.table-view-cell,\n.table-view-cell > a {\n  // Android has no cheverons so don't bump the buttons, badges, or toggles over.\n  .navigate-left,\n  .navigate-right,\n  .push-left,\n  .push-right {\n    > .btn,\n    > .badge,\n    > .toggle {\n      right: 15px;\n    }\n  }\n}\n\n// Forms\n// --------------------------------------------------\n\nselect,\ntextarea,\ninput[type=\"text\"],\ninput[type=\"search\"],\ninput[type=\"password\"],\ninput[type=\"datetime\"],\ninput[type=\"datetime-local\"],\ninput[type=\"date\"],\ninput[type=\"month\"],\ninput[type=\"time\"],\ninput[type=\"week\"],\ninput[type=\"number\"],\ninput[type=\"email\"],\ninput[type=\"url\"],\ninput[type=\"tel\"],\ninput[type=\"color\"],\n.input-group {\n  height: 40px;\n  padding: 10px 15px;\n  border: 1px solid rgba(0, 0, 0, .2);\n  @include box-shadow(0 1px 1px rgba(0,0,0,.1));\n}\n\ninput[type=\"search\"] {\n  border-radius: $border-radius;\n}\n\nselect,\ntextarea,\n.input-group {\n  height: auto;\n}\n\n// Input groups (cluster multiple inputs together into a single group)\n// -------------------------------------------------------------------\n.input-group {\n  padding: 0;\n  border: 0;\n}\n.input-group input {\n  border: 0;\n  border-bottom: 1px solid #d9d9d9;\n  @include box-shadow(none);\n}\n// Remove bottom border on last input to avoid double bottom border\n.input-group input:last-child {\n  background-image: none;\n}\n\n// Input groups with labels\n// --------------------------------------------------\n\n// To use labels with input groups, wrap a label and an input in an .input-row\n.input-row {\n  height: 40px; // Matches the height of inputs.\n  border-bottom: 1px solid #d9d9d9;\n}\n.input-row label {\n  padding-top: 10px;\n  padding-bottom: 10px;\n}\n// Remove bottom border on last input-row to avoid double bottom border\n.input-row label + input {\n  background-image: none;\n  border-bottom: 0;\n}\n\n\n// Segmented controllers\n// --------------------------------------------------\n\n.segmented-control {\n  font-size: 14px;\n  background-color: #cecece;\n  border: 0;\n  border-radius: $border-radius;\n  @include box-shadow(0 1px 1px rgba(0,0,0,.25));\n\n  .control-item {\n    padding-top: 10px;\n    padding-bottom: 10px;\n    color: $text-color;\n    border-left: 1px solid #999;\n    @include box-shadow(inset 0 -1px 0 rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.2));\n\n    // Remove border-left and shadow from first section\n    &:first-child {\n      border-left-width: 0;\n    }\n\n    &:active,\n    &.active {\n      background-color: $default-color;\n    }\n  }\n}\n\n\n// Other segmented controller types\n// --------------------------------------------------\n\n// Primary\n.segmented-control-primary {\n  border: 0;\n\n  .control-item {\n    color: #fff;\n    border-color: inherit;\n\n    &:active,\n    &.active {\n      color: #fff;\n      background-color: $primary-color;\n    }\n  }\n}\n\n// Positive\n.segmented-control-positive {\n  border: 0;\n\n  .control-item {\n    color: #fff;\n    border-color: inherit;\n\n    &:active,\n    &.active {\n      color: #fff;\n      background-color: $positive-color;\n    }\n  }\n}\n\n// Negative\n.segmented-control-negative {\n  border: 0;\n\n  .control-item {\n    color: #fff;\n    border-color: inherit;\n\n    &:active,\n    &.active {\n      color: #fff;\n      background-color: $negative-color;\n    }\n  }\n}\n\n\n// Popovers\n// --------------------------------------------------\n\n.popover {\n  top: 47px;\n  left: 15px;\n  width: 200px;\n  margin-left: 0;\n  border: 1px solid #9b9b9b;\n  border-radius: 0;\n  -webkit-transition: -webkit-transform .1s ease-in-out, opacity .2s ease-in-out;\n     -moz-transition: -moz-transform .1s ease-in-out, opacity .2s ease-in-out;\n          transition: transform .1s ease-in-out, opacity .2s ease-in-out;\n  @include box-shadow(0 0 3px rgba(0,0,0,.2));\n  @include transform(scale(.75));\n\n  &:before {\n    display: none;\n  }\n  &.visible {\n    @include transform(scale(1));\n  }\n}\n\n// Remove the popover's backdrop\n.backdrop {\n  background-color: transparent;\n}\n\n// Popovers with bars\n.popover {\n  .bar {\n    border-radius: 0;\n  }\n\n  // Padding the content correctly.\n  .bar-nav ~ .table-view {\n    padding-top: $bar-base-height;\n  }\n}\n\n// Popovers with table-views\n.popover .table-view {\n  border-radius: 12px;\n}\n\n\n// Toggles styles\n// --------------------------------------------------\n\n.toggle {\n  width: 104px;\n  height: 28px;\n  background-color: #d7d7d7;\n  border: 2px solid #d7d7d7;\n  border-radius: 0;\n\n  // Sliding handle\n  .toggle-handle {\n    top: 0;\n    left: 0;\n    width: 50px;\n    height: 24px;\n    background-color: #bebebe;\n    border: 1px solid #b5b5b5;\n    border-radius: 2px;\n    @include box-shadow(inset 0 1px 0 rgba(255,255,255,.3), inset 0 -1px 0 rgba(0,0,0,.1));\n  }\n  &:before {\n    top: 1px;\n    right: auto;\n    left: 11px;\n    z-index: 3;\n    color: #fff;\n  }\n\n  // Active state for toggle\n  &.active {\n    background-color: #d7d7d7;\n    border: 2px solid #d7d7d7;\n\n    .toggle-handle {\n      margin-right: 2px;\n      background-color: $primary-color;\n      border-color: $primary-color;\n      @include transform(translate3d(50px,0,0));\n    }\n    &:before {\n      right: 14px;\n      left: auto;\n      color: #fff;\n    }\n  }\n}\n\n\n// Push icons\n// --------------------------------------------------\n\n// Deprecated `push-left` and `push-right` as of 2.0.1\n.navigate-left:after,\n.push-left:after {\n  content: '';\n}\n.navigate-right:after,\n.push-right:after {\n  content: '';\n}\n\n\n// Ratchicons for Android\n// --------------------------------------------------\n\n.icon-caret:before         { content: '\\e800'; }\n.icon-down:before,\n.icon-down-nav:before      { content: '\\e801'; }\n.icon-download:before      { content: '\\e802'; }\n.icon-left:before,\n.icon-left-nav:before      { content: '\\e803'; }\n.icon-more-vertical:before { content: '\\e804'; }\n.icon-more:before          { content: '\\e805'; }\n.icon-right:before,\n.icon-right-nav:before     { content: '\\e806'; }\n.icon-search:before        { content: '\\e807'; }\n.icon-share:before         { content: '\\e808'; }\n.icon-up:before,\n.icon-up-nav:before        { content: '\\e809'; }\n"
  },
  {
    "path": "sass/theme-ios.scss",
    "content": "@import \"mixins.scss\";\n\n//\n// iOS theme\n// Visuals and interactions in the style of iOS\n//\n// --------------------------------------------------\n\n\n// Variables\n// --------------------------------------------------\n\n// Colors\n//\n// Main theme colors\n$primary-color:  #007aff !global;\n$chrome-color:   rgba(247,247,247,.98) !global;\n\n// Action colors\n$default-color:  #929292 !global;\n$positive-color: #4cd964 !global;\n$negative-color: #dd524d !global;\n\n// Bars\n$bar-base-height: 44px !global;\n$bar-tab-height:  50px !global;\n\n// iOS style transitions\n$timing-fuction: cubic-bezier(.1, .5, .1, 1) !global; // Inspired by @c2prods\n\n\n// Base\n// --------------------------------------------------\n\n// Universal link styling\na {\n  color: $primary-color;\n\n  &:active {\n    color: darken($primary-color, 10%);\n  }\n}\n\n// Content\n.content {\n  background-color: #efeff4;\n}\n\n\n// Typography\n// --------------------------------------------------\n\n.h5, h5,\n.h6, h6,\np {\n  color: #8f8f94;\n}\n.h5, h5,\n.h6, h6 {\n  font-weight: normal;\n  text-transform: uppercase;\n}\n\n\n// Buttons\n// --------------------------------------------------\n\n.btn {\n  color: $default-color;\n  background-color: $chrome-color;\n  border: 1px solid $default-color;\n  @include transition(all);\n  @include transition-duration(.2s);\n  @include transition-timing-function(linear);\n\n  // Active & filled button styles\n  &:active,\n  &.active {\n    color: #fff;\n    background-color: $default-color;\n  }\n}\n\n\n// Other button types\n// --------------------------------------------------\n\n// Primary button (Default color is blue)\n.btn-primary {\n  color: #fff;\n  background-color: $primary-color;\n  border: 1px solid $primary-color;\n\n  &:active,\n  &.active {\n    background-color: darken($primary-color, 10%);\n    border: 1px solid darken($primary-color, 10%);\n  }\n}\n\n// Positive button (Default color is green)\n.btn-positive {\n  color: #fff;\n  background-color: $positive-color;\n  border: 1px solid $positive-color;\n\n  &:active,\n  &.active {\n    background-color: darken($positive-color, 10%);\n    border: 1px solid darken($positive-color, 10%);\n  }\n}\n\n// Negative button (Default color is red)\n.btn-negative {\n  color: #fff;\n  background-color: $negative-color;\n  border: 1px solid $negative-color;\n\n  &:active,\n  &.active {\n    background-color: darken($negative-color, 10%);\n    border: 1px solid darken($negative-color, 10%);\n  }\n}\n\n// Outlined buttons\n.btn-outlined {\n  background-color: transparent;\n\n  &.btn-primary {\n    color: $primary-color;\n  }\n  &.btn-positive {\n    color: $positive-color;\n  }\n  &.btn-negative {\n    color: $negative-color;\n  }\n  // Active states\n  &.btn-primary:active,\n  &.btn-positive:active,\n  &.btn-negative:active {\n    color: #fff;\n  }\n}\n\n// Link button (Buttons that look like links)\n.btn-link {\n  color: $primary-color;\n  background-color: transparent;\n  border: none;\n\n  &:active,\n  &.active {\n    color: darken($primary-color, 10%);\n    background-color: transparent;\n  }\n}\n\n// Buttons with badges\n.btn {\n  .badge {\n    background-color: rgba(0,0,0,.15);\n\n    &.badge-inverted {\n      background-color: transparent;\n    }\n  }\n\n  // Active states\n  &:active .badge {\n    color: #fff;\n  }\n}\n\n\n// Bars\n// --------------------------------------------------\n\n// Default bar\n.bar {\n  background-color: $chrome-color;\n  border-bottom: 0;\n  @include box-shadow(0 0 1px rgba(0,0,0,.85));\n\n  // Modifier class to dock any bar below .bar-nav\n  &.bar-header-secondary {\n    top: $bar-base-height;\n  }\n\n  // Modifier class to dock any bar above a standard bar\n  &.bar-footer-secondary {\n    bottom: $bar-base-height;\n  }\n\n  // Modifier class to dock any bar above a .bar-tab\n  &.bar-footer-secondary-tab {\n    bottom: $bar-tab-height;\n  }\n  // Give the footers the correct border\n  &.bar-footer,\n  &.bar-footer-secondary,\n  &.bar-footer-secondary-tab {\n    border-top: 0;\n  }\n}\n\n// Tab bar\n.bar-tab {\n  border-top: 0;\n}\n.tab-item {\n  color: #929292;\n\n  // Active states for the tab bar\n  &.active,\n  &:active {\n    color: $primary-color;\n  }\n}\n\n// Nav bars with buttons\n.bar-nav {\n  // Link buttons in nav bars\n  .btn-link {\n    color: $primary-color;\n\n    &:active {\n      color: $primary-color;\n      opacity: .6;\n    }\n  }\n}\n\n\n\n// Badges\n// --------------------------------------------------\n\n.badge {\n  &.badge-inverted {\n    color: $default-color;\n    background-color: transparent;\n  }\n}\n\n\n// Badge modifiers\n//\n// Main badge\n.badge-primary {\n  color: #fff;\n  background-color: $primary-color;\n\n  &.badge-inverted {\n    color: $primary-color;\n    background-color: transparent;\n  }\n}\n\n// Positive badge\n.badge-positive {\n  color: #fff;\n  background-color: $positive-color;\n\n  &.badge-inverted {\n    color: $positive-color;\n    background-color: transparent;\n  }\n}\n\n// Negative badge\n.badge-negative {\n  color: #fff;\n  background-color: $negative-color;\n\n  &.badge-inverted {\n    color: $negative-color;\n    background-color: transparent;\n  }\n}\n\n\n// Cards\n// --------------------------------------------------\n\n// Cards with table-views\n.card .table-view {\n  background-image: none;\n}\n.card .table-view-cell:last-child {\n  background-image: none;\n}\n\n// Table views\n// --------------------------------------------------\n\n.table-view {\n  border-top: 0;\n  border-bottom: 0;\n  @include hairline(double, #c8c7cc, 0); // Double grey border.\n\n  .table-view-cell {\n    border-bottom: 0;\n    @include hairline(single, #c8c7cc, 15px); // Single grey border with 15px offset.\n\n    // Remove the border from the last table view item\n    &:last-child {\n      background-image: none;\n    }\n    > a:not(.btn):active {\n      color: inherit;\n    }\n  }\n\n  // Table view dividers\n  .table-view-divider {\n    border-top: 0;\n    border-bottom: 0;\n    @include hairline(double, #c8c7cc, 0);  // Double (top and bottom) grey border with no offset.\n  }\n}\n\n\n// Forms\n// --------------------------------------------------\n\nselect,\ntextarea,\ninput[type=\"text\"],\ninput[type=\"search\"],\ninput[type=\"password\"],\ninput[type=\"datetime\"],\ninput[type=\"datetime-local\"],\ninput[type=\"date\"],\ninput[type=\"month\"],\ninput[type=\"time\"],\ninput[type=\"week\"],\ninput[type=\"number\"],\ninput[type=\"email\"],\ninput[type=\"url\"],\ninput[type=\"tel\"],\ninput[type=\"color\"],\n.input-group {\n  height: 40px;\n  padding: 10px 15px;\n  border: 1px solid rgba(0, 0, 0, .2);\n}\n\n// Rounded search input\ninput[type=\"search\"] {\n  height: 34px;\n  text-align: center;\n  background-color: rgba(0,0,0,.1);\n  border: 0;\n  border-radius: 6px;\n}\ninput[type=\"search\"]:focus {\n  text-align: left;\n}\nselect,\ntextarea,\n.input-group {\n  height: auto;\n}\n\n// Input groups (cluster multiple inputs together into a single group)\n// -------------------------------------------------------------------\n.input-group {\n  padding: 0;\n  border: 0;\n  @include hairline(double, #c8c7cc, 0); // Double grey border.\n}\n.input-group input {\n  border: 0;\n  @include hairline(single, #c8c7cc, 15px);\n}\n// Remove bottom border on last input to avoid double bottom border\n.input-group input:last-child {\n  background-image: none;\n}\n\n// Input groups with labels\n// --------------------------------------------------\n\n// To use labels with input groups, wrap a label and an input in an .input-row\n.input-row {\n  border-bottom: 0;\n  @include hairline(single, #c8c7cc, 15px); // Single grey border with a 15px offset.\n}\n// Remove bottom border on last input-row to avoid double bottom border\n.input-row:last-child,\n.input-row label + input {\n  background-image: none;\n}\n\n\n// Segmented controls\n// --------------------------------------------------\n\n.segmented-control {\n  background-color: transparent;\n  border: 1px solid $default-color;\n\n  .control-item {\n    color: $default-color;\n    border-color: $default-color;\n    @include transition(background-color .1s linear);\n\n    &:active {\n      background-color: lighten($default-color, 35%);\n    }\n    &.active {\n      color: #fff;\n      background-color: $default-color;\n    }\n  }\n}\n\n// Other segmented controller types\n//\n// Primary\n.segmented-control-primary {\n  border: 1px solid $primary-color;\n\n  .control-item {\n    color: $primary-color;\n    border-color: inherit;\n\n    &:active {\n      background-color: lighten($primary-color, 35%);\n    }\n    &.active {\n      color: #fff;\n      background-color: $primary-color;\n    }\n  }\n}\n\n// Positive\n.segmented-control-positive {\n  border: 1px solid $positive-color;\n\n  .control-item {\n    color: $positive-color;\n    border-color: inherit;\n\n    &:active {\n      background-color: lighten($positive-color, 35%);\n    }\n    &.active {\n      color: #fff;\n      background-color: $positive-color;\n    }\n  }\n}\n\n// Negative\n.segmented-control-negative {\n  border: 1px solid $negative-color;\n\n  .control-item {\n    color: $negative-color;\n    border-color: inherit;\n\n    &:active {\n      background-color: lighten($negative-color, 35%);\n    }\n    &.active {\n      color: #fff;\n      background-color: $negative-color;\n    }\n  }\n}\n\n\n// Popovers\n// --------------------------------------------------\n\n.popover {\n  border-radius: 12px;\n  @include transition(-webkit-transform 0.2s ease-in-out, opacity 0.2s ease-in-out);\n\n  &:before {\n    border-bottom: 15px solid $chrome-color;\n  }\n}\n\n// Popovers with `bar`\n.popover .bar {\n  @include box-shadow(none);\n}\n\n// Popovers with `bar-nav`\n.popover .bar-nav {\n  border-bottom: 1px solid rgba(0,0,0,.15);\n}\n\n// Popovers with `table-views`\n.popover .table-view {\n  background-image: none;\n  border-radius: 12px;\n}\n\n\n// Modal styles\n// --------------------------------------------------\n\n.modal {\n  @include transition-timing-function($timing-fuction);\n\n  // Active modal\n  &.active {\n    @include transition-timing-function($timing-fuction);\n  }\n}\n\n\n// Toggles styles\n// --------------------------------------------------\n.toggle {\n  width: 47px;\n  border: 2px solid #e6e6e6;\n  @include box-shadow(inset 0 0 0 0 #e1e1e1);\n  @include transition-property(box-shadow, border);\n  @include transition-duration(.2s);\n\n  // Sliding handle\n  .toggle-handle {\n    border: 1px solid rgba(0, 0, 0, .2);\n    -webkit-transition-property: -webkit-transform, border, width;\n       -moz-transition-property: -moz-transform, border, width;\n            transition-property: transform, border, width;\n    @include box-shadow(0 3px 3px rgba(0,0,0,.08));\n  }\n  &:before {\n    display: none;\n  }\n  // Active state for toggle\n  &.active {\n    background-color: transparent;\n    border: 2px solid $positive-color;\n    @include box-shadow(inset 0 0 0 13px $positive-color);\n\n    .toggle-handle {\n      @include transform(translate3d(17px,0,0));\n    }\n\n    .toggle-handle {\n      border-color: $positive-color;\n    }\n  }\n}\n\n\n// Push styles\n// --------------------------------------------------\n.content {\n  // Fade animation\n  &.fade {\n    @include transition(opacity .2s ease-in-out);\n  }\n  // Slide animation\n  &.sliding {\n    @include transition-timing-function ($timing-fuction);\n\n    // Adding the overlay\n    &.sliding-in,\n    &.right:not([class*=\"sliding-in\"]) {\n      @include animation-name(fadeOverlay);\n      @include animation-duration(.4s);\n    }\n\n    &.right:not([class*=\"sliding-in\"]) {\n      @include animation-direction(reverse);\n    }\n\n    &.left {\n      @include transform(translate3d(-20%, 0, 0)); // Creates the parallax effect\n    }\n  }\n}\n\n// Overlay animation for the slide transition\n@at-root {\n  @-webkit-keyframes fadeOverlay {\n    from { @include box-shadow(0 0 10px rgba(0,0,0,0), -320px 0 0 rgba(0,0,0,0)); }\n    to   { @include box-shadow(0 0 10px rgba(0,0,0,.3), -320px 0 0 rgba(0,0,0,.1)); }\n  }\n}\n"
  },
  {
    "path": "sass/toggles.scss",
    "content": "//\n// Toggle styles (to be used with toggles.js)\n// --------------------------------------------------\n\n.toggle {\n  position: relative;\n  display: block;\n  width: 74px;\n  height: 30px;\n  background-color: #fff;\n  border: 2px solid #ddd;\n  border-radius: 20px;\n  @include transition-property(background-color, border);\n  @include transition-duration(.2s);\n\n  // Sliding handle\n  .toggle-handle {\n    position: absolute;\n    top: -1px;\n    left: -1px;\n    z-index: 2;\n    width: 28px;\n    height: 28px;\n    background-color: #fff;\n    border: 1px solid #ddd;\n    border-radius: 100px;\n    -webkit-transition-property: -webkit-transform, border, width;\n       -moz-transition-property: -moz-transform, border, width;\n            transition-property: transform, border, width;\n    @include transition-duration(.2s);\n  }\n  &:before {\n    position: absolute;\n    top: 3px;\n    right: 11px;\n    font-size: 13px;\n    color: #999;\n    text-transform: uppercase;\n    content: \"Off\";\n  }\n\n  // Active state for toggle\n  &.active {\n    background-color: $positive-color;\n    border: 2px solid $positive-color;\n\n    .toggle-handle {\n      border-color: $positive-color;\n      @include transform(translate3d(44px,0,0));\n    }\n    &:before {\n      right: auto;\n      left: 15px;\n      color: #fff;\n      content: \"On\";\n    }\n  }\n  // Hide the checkbox\n  input[type=\"checkbox\"] {\n    display: none;\n  }\n}\n"
  },
  {
    "path": "sass/type.scss",
    "content": "//\n// Typography\n// --------------------------------------------------\n\nh1, h2, h3, h4, h5, h6 {\n  margin-top: 0;\n  margin-bottom: 10px;\n  line-height: 1;\n}\nh1, .h1 { font-size: 36px; }\nh2, .h2 { font-size: 30px; }\nh3, .h3 { font-size: 24px; }\nh4, .h4 { font-size: 18px; }\nh5, .h5 { font-size: 14px; margin-top: 20px; }\nh6, .h6 { font-size: 12px; margin-top: 20px; }\n\n// Paragraphs\np {\n  margin-top: 0;\n  margin-bottom: 10px;\n  font-size: 14px;\n  color: #777;\n}\n"
  },
  {
    "path": "sass/variables.scss",
    "content": "//\n// Variables\n// --------------------------------------------------\n\n\n// Type\n// --------------------------------------------------\n$font-family-default: \"Helvetica Neue\", Helvetica, sans-serif !default;\n$font-size-default: 17px !default;\n$font-weight: 500 !default;\n$font-weight-light: 400 !default;\n$line-height-default: 21px !default;\n\n\n// Colors\n// --------------------------------------------------\n\n// Main theme colors\n$primary-color: #428bca !default;\n$chrome-color:  #fff !default;\n\n// Action colors\n$default-color:  #fff !default;\n$positive-color: #5cb85c !default;\n$negative-color: #d9534f !default;\n\n\n// Bars\n// --------------------------------------------------\n\n$bar-base-height:  44px !default;\n$bar-tab-height:   50px !default;\n$bar-side-spacing: 10px !default;\n\n\n// Cards\n// --------------------------------------------------\n\n$card-bg: #fff !default;\n\n\n// Buttons\n// --------------------------------------------------\n\n$button-font-size: 12px !default;\n\n\n// Transitions\n// --------------------------------------------------\n\n$timing-fuction: cubic-bezier(.1,.5,.1,1) !default; // Inspired by @c2prods\n\n\n// Borders\n// --------------------------------------------------\n\n$border-default-width: 1px;\n$border-default: $border-default-width solid #ddd;\n$border-radius: 6px !default;\n"
  }
]