@ -0,0 +1,92 @@
|
||||
module.exports = function(grunt) { |
||||
|
||||
// Project configuration.
|
||||
grunt.initConfig({ |
||||
pkg: grunt.file.readJSON('package.json'), |
||||
|
||||
// Metadata.
|
||||
meta: { |
||||
distPath: 'dist/', |
||||
docsPath: 'docs/dist/', |
||||
docsAssetsPath: 'docs/assets/' |
||||
}, |
||||
|
||||
banner: '/*\n' + |
||||
' * =====================================================\n' + |
||||
' * Ratchet v<%= pkg.version %>\n' + |
||||
' * Copyright <%= grunt.template.today("yyyy") %> <%= pkg.author %>\n' + |
||||
' * Licensed under <%= _.pluck(pkg.licenses, "url").join(", ") %>\n' + |
||||
' *\n' + |
||||
' * V<%= pkg.version %> designed by @connors.\n' + |
||||
' * =====================================================\n' + |
||||
' */\n', |
||||
|
||||
concat: { |
||||
options: { |
||||
banner: '<%= banner %>' |
||||
}, |
||||
ratchet: { |
||||
src: [ |
||||
'js/modals.js', |
||||
'js/popovers.js', |
||||
'js/push.js', |
||||
'js/segmented-controllers.js', |
||||
'js/sliders.js', |
||||
'js/toggles.js' |
||||
], |
||||
dest: '<%= meta.distPath %><%= pkg.name %>.js' |
||||
}, |
||||
docs: { |
||||
src: '<%= meta.distPath %><%= pkg.name %>.js', |
||||
dest: '<%= meta.docsPath %><%= pkg.name %>.js' |
||||
} |
||||
}, |
||||
|
||||
sass: { |
||||
options: { |
||||
banner: '<%= banner %>', |
||||
style: 'expanded', |
||||
}, |
||||
dist: { |
||||
files: { |
||||
'<%= meta.distPath %><%= pkg.name %>.css': 'sass/ratchet.scss', |
||||
'<%= meta.distPath %><%= pkg.name %>-theme-ios.css': 'sass/theme-ios.scss', |
||||
'<%= meta.distPath %><%= pkg.name %>-theme-android.css': 'sass/theme-android.scss', |
||||
'<%= meta.docsAssetsPath %>css/docs.css': 'sass/docs.scss' |
||||
} |
||||
} |
||||
}, |
||||
|
||||
copy: { |
||||
docs: { |
||||
expand: true, |
||||
cwd: 'dist', |
||||
src: [ |
||||
'*' |
||||
], |
||||
dest: 'docs/dist' |
||||
} |
||||
}, |
||||
|
||||
watch: { |
||||
scripts: { |
||||
files: [ |
||||
'<%= meta.srcPath %>/**/*.scss' |
||||
], |
||||
tasks: ['sass'] |
||||
} |
||||
} |
||||
}); |
||||
|
||||
// Load the plugins
|
||||
grunt.loadNpmTasks('grunt-contrib-concat'); |
||||
grunt.loadNpmTasks('grunt-contrib-copy'); |
||||
grunt.loadNpmTasks('grunt-contrib-sass'); |
||||
grunt.loadNpmTasks('grunt-contrib-watch'); |
||||
grunt.loadNpmTasks('grunt-jekyll'); |
||||
|
||||
|
||||
// Default task(s).
|
||||
grunt.registerTask('default', ['sass', 'concat', 'copy']); |
||||
grunt.registerTask('build', ['sass', 'concat', 'copy']); |
||||
}; |
@ -1,7 +1,20 @@
|
||||
Copyright (c) 2012 DHG, CONNORS, FAT and other contributors |
||||
The MIT License (MIT) |
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: |
||||
Copyright (c) 2014 connors and other contributors |
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. |
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of |
||||
this software and associated documentation files (the "Software"), to deal in |
||||
the Software without restriction, including without limitation the rights to |
||||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of |
||||
the Software, and to permit persons to whom the Software is furnished to do so, |
||||
subject to the following conditions: |
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
||||
The above copyright notice and this permission notice shall be included in all |
||||
copies or substantial portions of the Software. |
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS |
||||
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR |
||||
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER |
||||
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
||||
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
||||
|
@ -1,69 +0,0 @@
|
||||
#
|
||||
# BUILD LIB FILES
|
||||
#
|
||||
|
||||
build: |
||||
mkdir -p dist
|
||||
cat lib/css/base.css lib/css/bars.css lib/css/lists.css lib/css/forms.css lib/css/buttons.css lib/css/chevrons.css lib/css/counts.css lib/css/segmented-controllers.css lib/css/popovers.css lib/css/modals.css lib/css/sliders.css lib/css/toggles.css lib/css/push.css > ./dist/ratchet.tmp.css
|
||||
cat lib/js/*.js > ./dist/ratchet.tmp.js
|
||||
@echo "/**\n * ==================================\n * Ratchet v1.0.2\n * Licensed under The MIT License\n * http://opensource.org/licenses/MIT\n * ==================================\n */\n" > ./dist/copywrite.txt
|
||||
cat ./dist/copywrite.txt ./dist/ratchet.tmp.js > ./dist/ratchet.js
|
||||
cat ./dist/copywrite.txt ./dist/ratchet.tmp.css > ./dist/ratchet.css
|
||||
rm ./dist/ratchet.tmp.css ./dist/ratchet.tmp.js ./dist/copywrite.txt
|
||||
|
||||
|
||||
#
|
||||
# START DOCS SERVER
|
||||
#
|
||||
|
||||
docs: |
||||
open http://localhost:8000/docs
|
||||
python -m SimpleHTTPServer
|
||||
|
||||
|
||||
#
|
||||
# BUILDS GH-PAGES BRANCH
|
||||
#
|
||||
|
||||
gh-pages: build |
||||
mkdir -p gh-pages
|
||||
cp -r docs/ gh-pages/
|
||||
cp -r lib gh-pages/lib
|
||||
cp -r dist gh-pages/dist
|
||||
cd gh-pages
|
||||
cp -r dist ratchet
|
||||
zip -r ratchet.zip ratchet
|
||||
rm -rf ratchet
|
||||
cd ..
|
||||
git fetch origin
|
||||
git checkout gh-pages
|
||||
sed -i -e 's/\.\.\//\.\//g' gh-pages/index.html
|
||||
sed -i -e 's/\.\.\//\.\//g' gh-pages/one.html
|
||||
sed -i -e 's/\.\.\//\.\//g' gh-pages/two.html
|
||||
rm -rf ./css
|
||||
rm -rf ./img
|
||||
rm -rf ./js
|
||||
rm -rf ./lib
|
||||
rm -rf ./dist
|
||||
mv gh-pages/* .
|
||||
rm -rf ./*-e
|
||||
rm -rf gh-pages
|
||||
|
||||
#
|
||||
# START DEMO SERVER
|
||||
#
|
||||
|
||||
demo: build_demo |
||||
open http://localhost:8000/test/app
|
||||
python -m SimpleHTTPServer
|
||||
|
||||
#
|
||||
# START TEST SERVER
|
||||
#
|
||||
|
||||
test: |
||||
open http://localhost:8000/test
|
||||
python -m SimpleHTTPServer
|
||||
|
||||
|
||||
.PHONY: docs demo test gh-pages |
@ -0,0 +1,12 @@
|
||||
name: Ratchet |
||||
authors: Connor Sears |
||||
description: Prototype mobile apps with simple HTML, CSS, and JS components. |
||||
|
||||
pygments: true |
||||
permalink: pretty |
||||
|
||||
# Server |
||||
source: ./docs |
||||
port: 4000 |
||||
baseurl: / |
||||
url: http://localhost:4000 |
@ -0,0 +1,16 @@
|
||||
{ |
||||
"name": "ratchet", |
||||
"version": "2.0.0", |
||||
"main": [ |
||||
"./dist/ratchet.css", |
||||
"./dist/ratchet.js" |
||||
], |
||||
"ignore": [ |
||||
"_config.yml", |
||||
"CNAME", |
||||
"CONTRIBUTING.md", |
||||
"docs-assets" |
||||
], |
||||
"dependencies": { |
||||
} |
||||
} |
@ -1,5 +0,0 @@
|
||||
{ |
||||
"name": "ratchet", |
||||
"version": "1.0.2", |
||||
"main": ["./dist/ratchet.js", "./dist/ratchet.css"] |
||||
} |
@ -0,0 +1,578 @@
|
||||
/* |
||||
* ===================================================== |
||||
* Ratchet v2.0.0 |
||||
* Copyright 2014 Connor Sears |
||||
* Licensed under http://www.opensource.org/licenses/MIT |
||||
* |
||||
* V2.0.0 designed by @connors. |
||||
* ===================================================== |
||||
*/ |
||||
|
||||
body { |
||||
font-family: "Roboto", sans-serif; |
||||
font-size: 18px; |
||||
line-height: 22px; |
||||
color: #222222; |
||||
} |
||||
|
||||
a { |
||||
color: #33b5e5; |
||||
} |
||||
a:active { |
||||
color: #1a9bcb; |
||||
} |
||||
|
||||
.content { |
||||
background-color: #f2f2f2; |
||||
} |
||||
|
||||
.bar-nav ~ .content { |
||||
padding-top: 50px; |
||||
} |
||||
|
||||
.bar-tab ~ .content { |
||||
padding-bottom: 50px; |
||||
} |
||||
|
||||
.bar-header-secondary ~ .content { |
||||
padding-top: 100px; |
||||
} |
||||
|
||||
.btn { |
||||
padding: 8px 15px; |
||||
font-size: 14px; |
||||
color: #222222; |
||||
background-color: #cecece; |
||||
border: 0; |
||||
border-radius: 2px; |
||||
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 1px rgba(0, 0, 0, 0.25); |
||||
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 1px rgba(0, 0, 0, 0.25); |
||||
} |
||||
.btn:active, .btn.active { |
||||
color: #222222; |
||||
border: 0; |
||||
background-color: #999999; |
||||
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2); |
||||
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2); |
||||
} |
||||
|
||||
.btn-primary { |
||||
color: #fff; |
||||
border: 0; |
||||
background-color: #33b5e5; |
||||
} |
||||
.btn-primary:active, .btn-primary.active { |
||||
color: #fff; |
||||
border: 0; |
||||
background-color: #1a9bcb; |
||||
} |
||||
|
||||
.btn-positive { |
||||
color: #fff; |
||||
border: 0; |
||||
background-color: #99cc00; |
||||
} |
||||
.btn-positive:active, .btn-positive.active { |
||||
color: #fff; |
||||
border: 0; |
||||
background-color: #739900; |
||||
} |
||||
|
||||
.btn-negative { |
||||
color: #fff; |
||||
border: 0; |
||||
background-color: #ff4444; |
||||
} |
||||
.btn-negative:active, .btn-negative.active { |
||||
color: #fff; |
||||
border: 0; |
||||
background-color: #ff1111; |
||||
} |
||||
|
||||
.btn-outlined { |
||||
border: 1px solid #999999; |
||||
background-color: transparent; |
||||
-webkit-box-shadow: none; |
||||
box-shadow: none; |
||||
} |
||||
.btn-outlined.btn-primary { |
||||
border: 1px solid #33b5e5; |
||||
color: #33b5e5; |
||||
} |
||||
.btn-outlined.btn-primary:active { |
||||
border: 1px solid #33b5e5; |
||||
background-color: #33b5e5; |
||||
} |
||||
.btn-outlined.btn-positive { |
||||
border: 1px solid #99cc00; |
||||
color: #99cc00; |
||||
} |
||||
.btn-outlined.btn-positive:active { |
||||
border: 1px solid #99cc00; |
||||
background-color: #99cc00; |
||||
} |
||||
.btn-outlined.btn-negative { |
||||
border: 1px solid #ff4444; |
||||
color: #ff4444; |
||||
} |
||||
.btn-outlined.btn-negative:active { |
||||
border: 1px solid #ff4444; |
||||
background-color: #ff4444; |
||||
} |
||||
.btn-outlined:active { |
||||
border: 1px solid #999999; |
||||
background-color: #999999; |
||||
-webkit-box-shadow: none; |
||||
box-shadow: none; |
||||
} |
||||
.btn-outlined.btn-primary:active, .btn-outlined.btn-positive:active, .btn-outlined.btn-negative:active { |
||||
color: #fff; |
||||
-webkit-box-shadow: none; |
||||
box-shadow: none; |
||||
} |
||||
|
||||
.btn-link { |
||||
color: #33b5e5; |
||||
background-color: transparent; |
||||
border: none; |
||||
-webkit-box-shadow: none; |
||||
box-shadow: none; |
||||
} |
||||
.btn-link:active, .btn-link.active { |
||||
color: #1a9bcb; |
||||
background-color: transparent; |
||||
-webkit-box-shadow: none; |
||||
box-shadow: none; |
||||
} |
||||
|
||||
.btn-block { |
||||
padding: 15px 0; |
||||
font-size: 18px; |
||||
} |
||||
|
||||
.btn .badge { |
||||
background-color: rgba(0, 0, 0, 0.15); |
||||
} |
||||
.btn .badge.badge-inverted { |
||||
background-color: transparent; |
||||
} |
||||
.btn:active .badge { |
||||
color: #fff; |
||||
} |
||||
|
||||
.bar { |
||||
height: 50px; |
||||
background-color: #dddddd; |
||||
border-bottom: 1px solid #b1b1b1; |
||||
-webkit-box-shadow: inset 0 -2px 0 #d2d2d2, 0 3px 3px rgba(0, 0, 0, 0.07); |
||||
box-shadow: inset 0 -2px 0 #d2d2d2, 0 3px 3px rgba(0, 0, 0, 0.07); |
||||
} |
||||
.bar.bar-header-secondary { |
||||
top: 50px; |
||||
} |
||||
.bar.bar-footer-secondary { |
||||
bottom: 50px; |
||||
} |
||||
.bar.bar-footer-secondary-tab { |
||||
bottom: 50px; |
||||
} |
||||
.bar .bar-footer, |
||||
.bar .bar-footer-secondary, |
||||
.bar .bar-footer-secondary-tab { |
||||
border-bottom: 0; |
||||
border-top: 1px solid #b1b1b1; |
||||
-webkit-box-shadow: inset 0 -2px 0 #33b5e5; |
||||
box-shadow: inset 0 -2px 0 #33b5e5; |
||||
} |
||||
|
||||
.bar-tab { |
||||
top: 0; |
||||
bottom: auto; |
||||
height: 50px; |
||||
border-top: 0; |
||||
} |
||||
.bar-tab .tab-item { |
||||
color: #929292; |
||||
} |
||||
.bar-tab .tab-item.active { |
||||
color: #33b5e5; |
||||
-webkit-box-shadow: inset 0 -2px 0 #33b5e5; |
||||
box-shadow: inset 0 -2px 0 #33b5e5; |
||||
} |
||||
.bar-tab .tab-item:active { |
||||
color: #929292; |
||||
background-color: #78c6e3; |
||||
} |
||||
.bar-tab .tab-item .icon { |
||||
top: 3px; |
||||
padding-top: 0; |
||||
padding-bottom: 0; |
||||
} |
||||
|
||||
.title { |
||||
position: static; |
||||
padding-left: 15px; |
||||
font-size: 18px; |
||||
line-height: 49px; |
||||
text-align: left; |
||||
} |
||||
|
||||
.bar .btn { |
||||
top: 7px; |
||||
padding-top: 10px; |
||||
padding-bottom: 10px; |
||||
} |
||||
.bar .btn-link { |
||||
top: 0; |
||||
padding: 0; |
||||
color: #33b5e5; |
||||
font-size: 18px; |
||||
line-height: 49px; |
||||
} |
||||
.bar .btn-link:active, .bar .btn-link.active { |
||||
color: #1a9bcb; |
||||
} |
||||
.bar .btn-link .icon { |
||||
top: 2px; |
||||
padding: 0; |
||||
} |
||||
.bar .btn-block { |
||||
top: 4px; |
||||
} |
||||
|
||||
.bar .segmented-control { |
||||
top: 7px; |
||||
} |
||||
|
||||
.bar .icon { |
||||
padding-top: 13px; |
||||
padding-bottom: 13px; |
||||
} |
||||
.bar .title .icon { |
||||
padding: 0; |
||||
} |
||||
.bar .title .icon.icon-caret { |
||||
top: 10px; |
||||
color: #777; |
||||
} |
||||
|
||||
.bar input[type="search"] { |
||||
height: 35px; |
||||
} |
||||
|
||||
.badge.badge-inverted { |
||||
color: #999999; |
||||
background-color: transparent; |
||||
} |
||||
|
||||
.badge-primary { |
||||
color: #fff; |
||||
background-color: #33b5e5; |
||||
} |
||||
.badge-primary.badge-inverted { |
||||
color: #33b5e5; |
||||
background-color: transparent; |
||||
} |
||||
|
||||
.badge-positive { |
||||
color: #fff; |
||||
background-color: #99cc00; |
||||
} |
||||
.badge-positive.badge-inverted { |
||||
color: #99cc00; |
||||
background-color: transparent; |
||||
} |
||||
|
||||
.badge-negative { |
||||
color: #fff; |
||||
background-color: #ff4444; |
||||
} |
||||
.badge-negative.badge-inverted { |
||||
color: #ff4444; |
||||
background-color: transparent; |
||||
} |
||||
|
||||
.card { |
||||
border-color: #d9d9d9; |
||||
border-radius: 2px; |
||||
background-color: transparent; |
||||
} |
||||
|
||||
.table-view { |
||||
background-color: transparent; |
||||
} |
||||
.table-view .table-view-cell { |
||||
border-bottom: 1px solid #d9d9d9; |
||||
} |
||||
.table-view .table-view-cell:last-child { |
||||
background-image: none; |
||||
} |
||||
.table-view .table-view-cell > a:not(.btn):active { |
||||
background-color: #e0e0e0; |
||||
} |
||||
.table-view .table-view-cell > a:not(.btn):active .icon { |
||||
color: #fff; |
||||
} |
||||
.table-view .table-view-divider { |
||||
padding-top: 25px; |
||||
font-size: 12px; |
||||
font-weight: bold; |
||||
text-transform: uppercase; |
||||
border-top: 0; |
||||
border-bottom: 2px solid #a9a9a9; |
||||
background-color: transparent; |
||||
} |
||||
|
||||
select, |
||||
textarea, |
||||
input[type="text"], |
||||
input[type="search"], |
||||
input[type="password"], |
||||
input[type="datetime"], |
||||
input[type="datetime-local"], |
||||
input[type="date"], |
||||
input[type="month"], |
||||
input[type="time"], |
||||
input[type="week"], |
||||
input[type="number"], |
||||
input[type="email"], |
||||
input[type="url"], |
||||
input[type="tel"], |
||||
input[type="color"], |
||||
.input-group { |
||||
height: 40px; |
||||
padding: 10px 15px; |
||||
border: 1px solid rgba(0, 0, 0, 0.2); |
||||
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); |
||||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); |
||||
} |
||||
|
||||
input[type="search"] { |
||||
border-radius: 2px; |
||||
} |
||||
|
||||
select, |
||||
textarea, |
||||
.input-group { |
||||
height: auto; |
||||
} |
||||
|
||||
.input-group { |
||||
padding: 0; |
||||
border: 0; |
||||
} |
||||
|
||||
.input-group input { |
||||
border: 0; |
||||
border-bottom: 1px solid #d9d9d9; |
||||
-webkit-box-shadow: none; |
||||
box-shadow: none; |
||||
} |
||||
|
||||
.input-group input:last-child { |
||||
background-image: none; |
||||
} |
||||
|
||||
.input-row { |
||||
border-bottom: 1px solid #d9d9d9; |
||||
} |
||||
|
||||
.input-row label + input { |
||||
background-image: none; |
||||
border-bottom: 0; |
||||
} |
||||
|
||||
.segmented-control { |
||||
font-size: 14px; |
||||
background-color: #cecece; |
||||
border: 0; |
||||
border-radius: 2px; |
||||
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25); |
||||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25); |
||||
} |
||||
.segmented-control .control-item { |
||||
padding-top: 10px; |
||||
padding-bottom: 10px; |
||||
color: #222222; |
||||
border-left: 1px solid #999; |
||||
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2); |
||||
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2); |
||||
} |
||||
.segmented-control .control-item:first-child { |
||||
border-left-width: 0; |
||||
} |
||||
.segmented-control .control-item:active, .segmented-control .control-item.active { |
||||
background-color: #999999; |
||||
} |
||||
|
||||
.segmented-control-primary { |
||||
border: 0; |
||||
} |
||||
.segmented-control-primary .control-item { |
||||
color: #fff; |
||||
border-color: inherit; |
||||
} |
||||
.segmented-control-primary .control-item:active, .segmented-control-primary .control-item.active { |
||||
color: #fff; |
||||
background-color: #33b5e5; |
||||
} |
||||
|
||||
.segmented-control-positive { |
||||
border: 0; |
||||
} |
||||
.segmented-control-positive .control-item { |
||||
color: #fff; |
||||
border-color: inherit; |
||||
} |
||||
.segmented-control-positive .control-item:active, .segmented-control-positive .control-item.active { |
||||
color: #fff; |
||||
background-color: #99cc00; |
||||
} |
||||
|
||||
.segmented-control-negative { |
||||
border: 0; |
||||
} |
||||
.segmented-control-negative .control-item { |
||||
color: #fff; |
||||
border-color: inherit; |
||||
} |
||||
.segmented-control-negative .control-item:active, .segmented-control-negative .control-item.active { |
||||
color: #fff; |
||||
background-color: #ff4444; |
||||
} |
||||
|
||||
.popover { |
||||
top: 47px; |
||||
left: 15px; |
||||
width: 200px; |
||||
margin-left: 0; |
||||
border: 1px solid #9b9b9b; |
||||
border-radius: 0; |
||||
-webkit-transition: -webkit-transform .1s ease-in-out, opacity .2s ease-in-out; |
||||
-moz-transition: -moz-transform .1s ease-in-out, opacity .2s ease-in-out; |
||||
transition: transform .1s ease-in-out, opacity .2s ease-in-out; |
||||
-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2); |
||||
box-shadow: 0 0 3px rgba(0, 0, 0, 0.2); |
||||
-webkit-transform: scale(0.75); |
||||
-ms-transform: scale(0.75); |
||||
transform: scale(0.75); |
||||
} |
||||
.popover:before { |
||||
display: none; |
||||
} |
||||
.popover.visible { |
||||
-webkit-transform: scale(1); |
||||
-ms-transform: scale(1); |
||||
transform: scale(1); |
||||
} |
||||
|
||||
.backdrop { |
||||
background-color: none; |
||||
} |
||||
|
||||
.popover .bar { |
||||
border-radius: 0; |
||||
} |
||||
.popover .bar-nav ~ .table-view { |
||||
padding-top: 50px; |
||||
} |
||||
|
||||
.popover .table-view { |
||||
border-radius: 12px; |
||||
} |
||||
|
||||
.toggle { |
||||
width: 104px; |
||||
height: 28px; |
||||
border: 2px solid #d7d7d7; |
||||
border-radius: 0; |
||||
background-color: #d7d7d7; |
||||
} |
||||
.toggle .toggle-handle { |
||||
top: 0; |
||||
left: 0; |
||||
width: 50px; |
||||
height: 24px; |
||||
border: 1px solid #b5b5b5; |
||||
border-radius: 2px; |
||||
background-color: #bebebe; |
||||
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.1); |
||||
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.1); |
||||
} |
||||
.toggle:before { |
||||
top: 1px; |
||||
right: auto; |
||||
left: 11px; |
||||
z-index: 3; |
||||
color: #fff; |
||||
} |
||||
.toggle.active { |
||||
border: 2px solid #d7d7d7; |
||||
background-color: #d7d7d7; |
||||
} |
||||
.toggle.active .toggle-handle { |
||||
margin-right: 2px; |
||||
background-color: #33b5e5; |
||||
border-color: #33b5e5; |
||||
-webkit-transform: translate3d(50px, 0, 0); |
||||
-ms-transform: translate3d(50px, 0, 0); |
||||
transform: translate3d(50px, 0, 0); |
||||
} |
||||
.toggle.active:before { |
||||
left: auto; |
||||
right: 14px; |
||||
color: #fff; |
||||
content: "On"; |
||||
} |
||||
|
||||
.push-left:after { |
||||
content: '\e803'; |
||||
} |
||||
|
||||
.push-right:after { |
||||
content: '\e806'; |
||||
} |
||||
|
||||
.icon-caret:before { |
||||
content: '\e800'; |
||||
} |
||||
|
||||
.icon-down:before, |
||||
.icon-down-nav:before { |
||||
content: '\e801'; |
||||
} |
||||
|
||||
.icon-download:before { |
||||
content: '\e802'; |
||||
} |
||||
|
||||
.icon-left:before, |
||||
.icon-left-nav:before { |
||||
content: '\e803'; |
||||
} |
||||
|
||||
.icon-more-vertical:before { |
||||
content: '\e804'; |
||||
} |
||||
|
||||
.icon-more:before { |
||||
content: '\e805'; |
||||
} |
||||
|
||||
.icon-right:before, |
||||
.icon-right-nav:before { |
||||
content: '\e806'; |
||||
} |
||||
|
||||
.icon-search:before { |
||||
content: '\e807'; |
||||
} |
||||
|
||||
.icon-share:before { |
||||
content: '\e808'; |
||||
} |
||||
|
||||
.icon-up:before, |
||||
.icon-up-nav:before { |
||||
content: '\e809'; |
||||
} |
@ -0,0 +1,477 @@
|
||||
/* |
||||
* ===================================================== |
||||
* Ratchet v2.0.0 |
||||
* Copyright 2014 Connor Sears |
||||
* Licensed under http://www.opensource.org/licenses/MIT |
||||
* |
||||
* V2.0.0 designed by @connors. |
||||
* ===================================================== |
||||
*/ |
||||
|
||||
a { |
||||
color: #007aff; |
||||
} |
||||
a:active { |
||||
color: #0062cc; |
||||
} |
||||
|
||||
.content { |
||||
background-color: #efeff4; |
||||
} |
||||
|
||||
.h5, h5, |
||||
.h6, h6, |
||||
p { |
||||
color: #8f8f94; |
||||
} |
||||
|
||||
.h5, h5, |
||||
.h6, h6 { |
||||
font-weight: normal; |
||||
text-transform: uppercase; |
||||
} |
||||
|
||||
.btn { |
||||
border: 1px solid #929292; |
||||
color: #929292; |
||||
background-color: rgba(247, 247, 247, 0.98); |
||||
-webkit-transition: all; |
||||
-moz-transition: all; |
||||
transition: all; |
||||
-webkit-transition-duration: 0.2s; |
||||
-moz-transition-duration: 0.2s; |
||||
transition-duration: 0.2s; |
||||
-webkit-transition-timing-function: linear; |
||||
-moz-transition-timing-function: linear; |
||||
transition-timing-function: linear; |
||||
} |
||||
.btn:active, .btn.active { |
||||
color: #fff; |
||||
background-color: #929292; |
||||
} |
||||
|
||||
.btn-primary { |
||||
color: #fff; |
||||
border: 1px solid #007aff; |
||||
background-color: #007aff; |
||||
} |
||||
.btn-primary:active, .btn-primary.active { |
||||
border: 1px solid #0062cc; |
||||
background-color: #0062cc; |
||||
} |
||||
|
||||
.btn-positive { |
||||
color: #fff; |
||||
border: 1px solid #4cd964; |
||||
background-color: #4cd964; |
||||
} |
||||
.btn-positive:active, .btn-positive.active { |
||||
border: 1px solid #2ac845; |
||||
background-color: #2ac845; |
||||
} |
||||
|
||||
.btn-negative { |
||||
color: #fff; |
||||
border: 1px solid #dd524d; |
||||
background-color: #dd524d; |
||||
} |
||||
.btn-negative:active, .btn-negative.active { |
||||
border: 1px solid #cf2d28; |
||||
background-color: #cf2d28; |
||||
} |
||||
|
||||
.btn-outlined { |
||||
background-color: transparent; |
||||
} |
||||
.btn-outlined.btn-primary { |
||||
color: #007aff; |
||||
} |
||||
.btn-outlined.btn-positive { |
||||
color: #4cd964; |
||||
} |
||||
.btn-outlined.btn-negative { |
||||
color: #dd524d; |
||||
} |
||||
.btn-outlined.btn-primary:active, .btn-outlined.btn-positive:active, .btn-outlined.btn-negative:active { |
||||
color: #fff; |
||||
} |
||||
|
||||
.btn-link { |
||||
color: #007aff; |
||||
background-color: transparent; |
||||
border: none; |
||||
} |
||||
.btn-link:active, .btn-link.active { |
||||
color: #0062cc; |
||||
background-color: transparent; |
||||
} |
||||
|
||||
.btn .badge { |
||||
background-color: rgba(0, 0, 0, 0.15); |
||||
} |
||||
.btn .badge.badge-inverted { |
||||
background-color: transparent; |
||||
} |
||||
.btn:active .badge { |
||||
color: #fff; |
||||
} |
||||
|
||||
.bar { |
||||
border-bottom: 0; |
||||
background-color: rgba(247, 247, 247, 0.98); |
||||
-webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.85); |
||||
box-shadow: 0 0 1px rgba(0, 0, 0, 0.85); |
||||
} |
||||
.bar.bar-header-secondary { |
||||
top: 44px; |
||||
} |
||||
.bar.bar-footer-secondary { |
||||
bottom: 44px; |
||||
} |
||||
.bar.bar-footer-secondary-tab { |
||||
bottom: 50px; |
||||
} |
||||
.bar .bar-footer, |
||||
.bar .bar-footer-secondary, |
||||
.bar .bar-footer-secondary-tab { |
||||
border-top: 0; |
||||
-webkit-box-shadow: 0 0 -1px rgba(0, 0, 0, 0.85); |
||||
box-shadow: 0 0 -1px rgba(0, 0, 0, 0.85); |
||||
} |
||||
|
||||
.bar-tab { |
||||
border-top: 0; |
||||
-webkit-box-shadow: 0 0 -1px rgba(0, 0, 0, 0.85); |
||||
box-shadow: 0 0 -1px rgba(0, 0, 0, 0.85); |
||||
} |
||||
|
||||
.tab-item { |
||||
color: #929292; |
||||
} |
||||
.tab-item.active, .tab-item:active { |
||||
color: #007aff; |
||||
} |
||||
|
||||
.bar-nav .btn-link { |
||||
color: #007aff; |
||||
} |
||||
.bar-nav .btn-link:active { |
||||
color: #007aff; |
||||
opacity: .6; |
||||
} |
||||
|
||||
.badge.badge-inverted { |
||||
color: #929292; |
||||
background-color: transparent; |
||||
} |
||||
|
||||
.badge-primary { |
||||
color: #fff; |
||||
background-color: #007aff; |
||||
} |
||||
.badge-primary.badge-inverted { |
||||
color: #007aff; |
||||
background-color: transparent; |
||||
} |
||||
|
||||
.badge-positive { |
||||
color: #fff; |
||||
background-color: #4cd964; |
||||
} |
||||
.badge-positive.badge-inverted { |
||||
color: #4cd964; |
||||
background-color: transparent; |
||||
} |
||||
|
||||
.badge-negative { |
||||
color: #fff; |
||||
background-color: #dd524d; |
||||
} |
||||
.badge-negative.badge-inverted { |
||||
color: #dd524d; |
||||
background-color: transparent; |
||||
} |
||||
|
||||
.card .table-view { |
||||
background-image: none; |
||||
} |
||||
|
||||
.card .table-view-cell:last-child { |
||||
background-image: none; |
||||
} |
||||
|
||||
.table-view { |
||||
border-top: 0; |
||||
border-bottom: 0; |
||||
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>"); |
||||
background-position: 0 100%, 0 0%; |
||||
background-repeat: no-repeat; |
||||
} |
||||
.table-view .table-view-cell { |
||||
border-bottom: 0; |
||||
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>"); |
||||
background-position: 15px 100%; |
||||
background-repeat: no-repeat; |
||||
} |
||||
.table-view .table-view-cell:last-child { |
||||
background-image: none; |
||||
} |
||||
.table-view .table-view-divider { |
||||
border-top: 0; |
||||
border-bottom: 0; |
||||
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>"); |
||||
background-position: 0 100%, 0 0%; |
||||
background-repeat: no-repeat; |
||||
} |
||||
|
||||
select, |
||||
textarea, |
||||
input[type="text"], |
||||
input[type="search"], |
||||
input[type="password"], |
||||
input[type="datetime"], |
||||
input[type="datetime-local"], |
||||
input[type="date"], |
||||
input[type="month"], |
||||
input[type="time"], |
||||
input[type="week"], |
||||
input[type="number"], |
||||
input[type="email"], |
||||
input[type="url"], |
||||
input[type="tel"], |
||||
input[type="color"], |
||||
.input-group { |
||||
height: 40px; |
||||
padding: 10px 15px; |
||||
border: 1px solid rgba(0, 0, 0, 0.2); |
||||
} |
||||
|
||||
input[type="search"] { |
||||
height: 34px; |
||||
text-align: center; |
||||
background-color: rgba(0, 0, 0, 0.1); |
||||
border: 0; |
||||
border-radius: 6px; |
||||
} |
||||
|
||||
input[type="search"]:focus { |
||||
text-align: left; |
||||
} |
||||
|
||||
select, |
||||
textarea, |
||||
.input-group { |
||||
height: auto; |
||||
} |
||||
|
||||
.input-group { |
||||
padding: 0; |
||||
border: 0; |
||||
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>"); |
||||
background-position: 0 100%, 0 0%; |
||||
background-repeat: no-repeat; |
||||
} |
||||
|
||||
.input-group input { |
||||
border: 0; |
||||
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>"); |
||||
background-position: 15px 100%; |
||||
background-repeat: no-repeat; |
||||
} |
||||
|
||||
.input-group input:last-child { |
||||
background-image: none; |
||||
} |
||||
|
||||
.input-row { |
||||
border-bottom: 0; |
||||
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>"); |
||||
background-position: 15px 100%; |
||||
background-repeat: no-repeat; |
||||
} |
||||
|
||||
.input-row:last-child, |
||||
.input-row label + input { |
||||
background-image: none; |
||||
} |
||||
|
||||
.segmented-control { |
||||
background-color: transparent; |
||||
border: 1px solid #929292; |
||||
} |
||||
.segmented-control .control-item { |
||||
color: #929292; |
||||
border-color: #929292; |
||||
-webkit-transition: background-color 0.1s linear; |
||||
-moz-transition: background-color 0.1s linear; |
||||
transition: background-color 0.1s linear; |
||||
} |
||||
.segmented-control .control-item:active { |
||||
background-color: #ebebeb; |
||||
} |
||||
.segmented-control .control-item.active { |
||||
color: #fff; |
||||
background-color: #929292; |
||||
} |
||||
|
||||
.segmented-control-primary { |
||||
border: 1px solid #007aff; |
||||
} |
||||
.segmented-control-primary .control-item { |
||||
color: #007aff; |
||||
border-color: inherit; |
||||
} |
||||
.segmented-control-primary .control-item:active { |
||||
background-color: #b3d7ff; |
||||
} |
||||
.segmented-control-primary .control-item.active { |
||||
color: #fff; |
||||
background-color: #007aff; |
||||
} |
||||
|
||||
.segmented-control-positive { |
||||
border: 1px solid #4cd964; |
||||
} |
||||
.segmented-control-positive .control-item { |
||||
color: #4cd964; |
||||
border-color: inherit; |
||||
} |
||||
.segmented-control-positive .control-item:active { |
||||
background-color: #dff8e3; |
||||
} |
||||
.segmented-control-positive .control-item.active { |
||||
color: #fff; |
||||
background-color: #4cd964; |
||||
} |
||||
|
||||
.segmented-control-negative { |
||||
border: 1px solid #dd524d; |
||||
} |
||||
.segmented-control-negative .control-item { |
||||
color: #dd524d; |
||||
border-color: inherit; |
||||
} |
||||
.segmented-control-negative .control-item:active { |
||||
background-color: #fae4e3; |
||||
} |
||||
.segmented-control-negative .control-item.active { |
||||
color: #fff; |
||||
background-color: #dd524d; |
||||
} |
||||
|
||||
.popover { |
||||
border-radius: 12px; |
||||
-webkit-transition: -webkit-transform .2s ease-in-out, opacity .2s ease-in-out; |
||||
-moz-transition: -moz-transform .2s ease-in-out, opacity .2s ease-in-out; |
||||
transition: transform .2s ease-in-out, opacity .2s ease-in-out; |
||||
-webkit-transition: -webkit-transform 0.2s ease-in-out, opacity 0.2s ease-in-out; |
||||
-moz-transition: -webkit-transform 0.2s ease-in-out, opacity 0.2s ease-in-out; |
||||
transition: -webkit-transform 0.2s ease-in-out, opacity 0.2s ease-in-out; |
||||
} |
||||
.popover:before { |
||||
border-bottom: 15px solid rgba(247, 247, 247, 0.98); |
||||
} |
||||
|
||||
.popover .bar { |
||||
-webkit-box-shadow: none; |
||||
box-shadow: none; |
||||
} |
||||
|
||||
.popover .bar-nav { |
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.15); |
||||
} |
||||
|
||||
.popover .table-view { |
||||
border-radius: 12px; |
||||
background-image: none; |
||||
} |
||||
|
||||
.modal { |
||||
-webkit-transition-timing-function: cubic-bezier(0.1, 0.5, 0.1, 1); |
||||
-moz-transition-timing-function: cubic-bezier(0.1, 0.5, 0.1, 1); |
||||
transition-timing-function: cubic-bezier(0.1, 0.5, 0.1, 1); |
||||
} |
||||
.modal.active { |
||||
-webkit-transition-timing-function: cubic-bezier(0.1, 0.5, 0.1, 1); |
||||
-moz-transition-timing-function: cubic-bezier(0.1, 0.5, 0.1, 1); |
||||
transition-timing-function: cubic-bezier(0.1, 0.5, 0.1, 1); |
||||
} |
||||
|
||||
.toggle { |
||||
width: 47px; |
||||
border: 2px solid #e6e6e6; |
||||
-webkit-box-shadow: inset 0 0 0 0 #e1e1e1; |
||||
box-shadow: inset 0 0 0 0 #e1e1e1; |
||||
-webkit-transition-property: box-shadow, border; |
||||
-moz-transition-property: box-shadow, border; |
||||
transition-property: box-shadow, border; |
||||
-webkit-transition-duration: 0.2s; |
||||
-moz-transition-duration: 0.2s; |
||||
transition-duration: 0.2s; |
||||
} |
||||
.toggle .toggle-handle { |
||||
border: 1px solid rgba(0, 0, 0, 0.2); |
||||
-webkit-transition-property: -webkit-transform, border, width; |
||||
-moz-transition-property: -moz-transform, border, width; |
||||
transition-property: transform, border, width; |
||||
-webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.08); |
||||
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.08); |
||||
} |
||||
.toggle:before { |
||||
display: none; |
||||
} |
||||
.toggle.active { |
||||
border: 2px solid #4cd964; |
||||
background-color: transparent; |
||||
-webkit-box-shadow: inset 0 0 0 13px #4cd964; |
||||
box-shadow: inset 0 0 0 13px #4cd964; |
||||
} |
||||
.toggle.active .toggle-handle { |
||||
-webkit-transform: translate3d(17px, 0, 0); |
||||
-ms-transform: translate3d(17px, 0, 0); |
||||
transform: translate3d(17px, 0, 0); |
||||
} |
||||
.toggle.active .toggle-handle { |
||||
border-color: #4cd964; |
||||
} |
||||
|
||||
.content.fade { |
||||
-webkit-transition: opacity 0.2s ease-in-out; |
||||
-moz-transition: opacity 0.2s ease-in-out; |
||||
transition: opacity 0.2s ease-in-out; |
||||
} |
||||
.content.sliding { |
||||
-webkit-transition-timing-function: cubic-bezier(0.1, 0.5, 0.1, 1); |
||||
-moz-transition-timing-function: cubic-bezier(0.1, 0.5, 0.1, 1); |
||||
transition-timing-function: cubic-bezier(0.1, 0.5, 0.1, 1); |
||||
} |
||||
.content.sliding.sliding-in, .content.sliding.right:not([class*="sliding-in"]) { |
||||
-webkit-animation-name: fadeOverlay; |
||||
-moz-animation-name: fadeOverlay; |
||||
animation-name: fadeOverlay; |
||||
-webkit-animation-duration: 0.4s; |
||||
-moz-animation-duration: 0.4s; |
||||
animation-duration: 0.4s; |
||||
} |
||||
.content.sliding.right:not([class*="sliding-in"]) { |
||||
-webkit-animation-direction: reverse; |
||||
-moz-animation-direction: reverse; |
||||
animation-direction: reverse; |
||||
} |
||||
.content.sliding.left { |
||||
-webkit-transform: translate3d(-20%, 0, 0); |
||||
-ms-transform: translate3d(-20%, 0, 0); |
||||
transform: translate3d(-20%, 0, 0); |
||||
} |
||||
|
||||
@-webkit-keyframes fadeOverlay { |
||||
from { |
||||
-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0), -320px 0 0 rgba(0, 0, 0, 0); |
||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0), -320px 0 0 rgba(0, 0, 0, 0); |
||||
} |
||||
|
||||
to { |
||||
-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3), -320px 0 0 rgba(0, 0, 0, 0.1); |
||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3), -320px 0 0 rgba(0, 0, 0, 0.1); |
||||
} |
||||
} |
@ -0,0 +1,319 @@
|
||||
Creative Commons Legal Code |
||||
|
||||
Attribution 3.0 Unported |
||||
|
||||
CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE |
||||
LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN |
||||
ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS |
||||
INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES |
||||
REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR |
||||
DAMAGES RESULTING FROM ITS USE. |
||||
|
||||
License |
||||
|
||||
THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE |
||||
COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY |
||||
COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS |
||||
AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. |
||||
|
||||
BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE |
||||
TO BE BOUND BY THE TERMS OF THIS LICENSE. TO THE EXTENT THIS LICENSE MAY |
||||
BE CONSIDERED TO BE A CONTRACT, THE LICENSOR GRANTS YOU THE RIGHTS |
||||
CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND |
||||
CONDITIONS. |
||||
|
||||
1. Definitions |
||||
|
||||
a. "Adaptation" means a work based upon the Work, or upon the Work and |
||||
other pre-existing works, such as a translation, adaptation, |
||||
derivative work, arrangement of music or other alterations of a |
||||
literary or artistic work, or phonogram or performance and includes |
||||
cinematographic adaptations or any other form in which the Work may be |
||||
recast, transformed, or adapted including in any form recognizably |
||||
derived from the original, except that a work that constitutes a |
||||
Collection will not be considered an Adaptation for the purpose of |
||||
this License. For the avoidance of doubt, where the Work is a musical |
||||
work, performance or phonogram, the synchronization of the Work in |
||||
timed-relation with a moving image ("synching") will be considered an |
||||
Adaptation for the purpose of this License. |
||||
b. "Collection" means a collection of literary or artistic works, such as |
||||
encyclopedias and anthologies, or performances, phonograms or |
||||
broadcasts, or other works or subject matter other than works listed |
||||
in Section 1(f) below, which, by reason of the selection and |
||||
arrangement of their contents, constitute intellectual creations, in |
||||
which the Work is included in its entirety in unmodified form along |
||||
with one or more other contributions, each constituting separate and |
||||
independent works in themselves, which together are assembled into a |
||||
collective whole. A work that constitutes a Collection will not be |
||||
considered an Adaptation (as defined above) for the purposes of this |
||||
License. |
||||
c. "Distribute" means to make available to the public the original and |
||||
copies of the Work or Adaptation, as appropriate, through sale or |
||||
other transfer of ownership. |
||||
d. "Licensor" means the individual, individuals, entity or entities that |
||||
offer(s) the Work under the terms of this License. |
||||
e. "Original Author" means, in the case of a literary or artistic work, |
||||
the individual, individuals, entity or entities who created the Work |
||||
or if no individual or entity can be identified, the publisher; and in |
||||
addition (i) in the case of a performance the actors, singers, |
||||
musicians, dancers, and other persons who act, sing, deliver, declaim, |
||||
play in, interpret or otherwise perform literary or artistic works or |
||||
expressions of folklore; (ii) in the case of a phonogram the producer |
||||
being the person or legal entity who first fixes the sounds of a |
||||
performance or other sounds; and, (iii) in the case of broadcasts, the |
||||
organization that transmits the broadcast. |
||||
f. "Work" means the literary and/or artistic work offered under the terms |
||||
of this License including without limitation any production in the |
||||
literary, scientific and artistic domain, whatever may be the mode or |
||||
form of its expression including digital form, such as a book, |
||||
pamphlet and other writing; a lecture, address, sermon or other work |
||||
of the same nature; a dramatic or dramatico-musical work; a |
||||
choreographic work or entertainment in dumb show; a musical |
||||
composition with or without words; a cinematographic work to which are |
||||
assimilated works expressed by a process analogous to cinematography; |
||||
a work of drawing, painting, architecture, sculpture, engraving or |
||||
lithography; a photographic work to which are assimilated works |
||||
expressed by a process analogous to photography; a work of applied |
||||
art; an illustration, map, plan, sketch or three-dimensional work |
||||
relative to geography, topography, architecture or science; a |
||||
performance; a broadcast; a phonogram; a compilation of data to the |
||||
extent it is protected as a copyrightable work; or a work performed by |
||||
a variety or circus performer to the extent it is not otherwise |
||||
considered a literary or artistic work. |
||||
g. "You" means an individual or entity exercising rights under this |
||||
License who has not previously violated the terms of this License with |
||||
respect to the Work, or who has received express permission from the |
||||
Licensor to exercise rights under this License despite a previous |
||||
violation. |
||||
h. "Publicly Perform" means to perform public recitations of the Work and |
||||
to communicate to the public those public recitations, by any means or |
||||
process, including by wire or wireless means or public digital |
||||
performances; to make available to the public Works in such a way that |
||||
members of the public may access these Works from a place and at a |
||||
place individually chosen by them; to perform the Work to the public |
||||
by any means or process and the communication to the public of the |
||||
performances of the Work, including by public digital performance; to |
||||
broadcast and rebroadcast the Work by any means including signs, |
||||
sounds or images. |
||||
i. "Reproduce" means to make copies of the Work by any means including |
||||
without limitation by sound or visual recordings and the right of |
||||
fixation and reproducing fixations of the Work, including storage of a |
||||
protected performance or phonogram in digital form or other electronic |
||||
medium. |
||||
|
||||
2. Fair Dealing Rights. Nothing in this License is intended to reduce, |
||||
limit, or restrict any uses free from copyright or rights arising from |
||||
limitations or exceptions that are provided for in connection with the |
||||
copyright protection under copyright law or other applicable laws. |
||||
|
||||
3. License Grant. Subject to the terms and conditions of this License, |
||||
Licensor hereby grants You a worldwide, royalty-free, non-exclusive, |
||||
perpetual (for the duration of the applicable copyright) license to |
||||
exercise the rights in the Work as stated below: |
||||
|
||||
a. to Reproduce the Work, to incorporate the Work into one or more |
||||
Collections, and to Reproduce the Work as incorporated in the |
||||
Collections; |
||||
b. to create and Reproduce Adaptations provided that any such Adaptation, |
||||
including any translation in any medium, takes reasonable steps to |
||||
clearly label, demarcate or otherwise identify that changes were made |
||||
to the original Work. For example, a translation could be marked "The |
||||
original work was translated from English to Spanish," or a |
||||
modification could indicate "The original work has been modified."; |
||||
c. to Distribute and Publicly Perform the Work including as incorporated |
||||
in Collections; and, |
||||
d. to Distribute and Publicly Perform Adaptations. |
||||
e. For the avoidance of doubt: |
||||
|
||||
i. Non-waivable Compulsory License Schemes. In those jurisdictions in |
||||
which the right to collect royalties through any statutory or |
||||
compulsory licensing scheme cannot be waived, the Licensor |
||||
reserves the exclusive right to collect such royalties for any |
||||
exercise by You of the rights granted under this License; |
||||
ii. Waivable Compulsory License Schemes. In those jurisdictions in |
||||
which the right to collect royalties through any statutory or |
||||
compulsory licensing scheme can be waived, the Licensor waives the |
||||
exclusive right to collect such royalties for any exercise by You |
||||
of the rights granted under this License; and, |
||||
iii. Voluntary License Schemes. The Licensor waives the right to |
||||
collect royalties, whether individually or, in the event that the |
||||
Licensor is a member of a collecting society that administers |
||||
voluntary licensing schemes, via that society, from any exercise |
||||
by You of the rights granted under this License. |
||||
|
||||
The above rights may be exercised in all media and formats whether now |
||||
known or hereafter devised. The above rights include the right to make |
||||
such modifications as are technically necessary to exercise the rights in |
||||
other media and formats. Subject to Section 8(f), all rights not expressly |
||||
granted by Licensor are hereby reserved. |
||||
|
||||
4. Restrictions. The license granted in Section 3 above is expressly made |
||||
subject to and limited by the following restrictions: |
||||
|
||||
a. You may Distribute or Publicly Perform the Work only under the terms |
||||
of this License. You must include a copy of, or the Uniform Resource |
||||
Identifier (URI) for, this License with every copy of the Work You |
||||
Distribute or Publicly Perform. You may not offer or impose any terms |
||||
on the Work that restrict the terms of this License or the ability of |
||||
the recipient of the Work to exercise the rights granted to that |
||||
recipient under the terms of the License. You may not sublicense the |
||||
Work. You must keep intact all notices that refer to this License and |
||||
to the disclaimer of warranties with every copy of the Work You |
||||
Distribute or Publicly Perform. When You Distribute or Publicly |
||||
Perform the Work, You may not impose any effective technological |
||||
measures on the Work that restrict the ability of a recipient of the |
||||
Work from You to exercise the rights granted to that recipient under |
||||
the terms of the License. This Section 4(a) applies to the Work as |
||||
incorporated in a Collection, but this does not require the Collection |
||||
apart from the Work itself to be made subject to the terms of this |
||||
License. If You create a Collection, upon notice from any Licensor You |
||||
must, to the extent practicable, remove from the Collection any credit |
||||
as required by Section 4(b), as requested. If You create an |
||||
Adaptation, upon notice from any Licensor You must, to the extent |
||||
practicable, remove from the Adaptation any credit as required by |
||||
Section 4(b), as requested. |
||||
b. If You Distribute, or Publicly Perform the Work or any Adaptations or |
||||
Collections, You must, unless a request has been made pursuant to |
||||
Section 4(a), keep intact all copyright notices for the Work and |
||||
provide, reasonable to the medium or means You are utilizing: (i) the |
||||
name of the Original Author (or pseudonym, if applicable) if supplied, |
||||
and/or if the Original Author and/or Licensor designate another party |
||||
or parties (e.g., a sponsor institute, publishing entity, journal) for |
||||
attribution ("Attribution Parties") in Licensor's copyright notice, |
||||
terms of service or by other reasonable means, the name of such party |
||||
or parties; (ii) the title of the Work if supplied; (iii) to the |
||||
extent reasonably practicable, the URI, if any, that Licensor |
||||
specifies to be associated with the Work, unless such URI does not |
||||
refer to the copyright notice or licensing information for the Work; |
||||
and (iv) , consistent with Section 3(b), in the case of an Adaptation, |
||||
a credit identifying the use of the Work in the Adaptation (e.g., |
||||
"French translation of the Work by Original Author," or "Screenplay |
||||
based on original Work by Original Author"). The credit required by |
||||
this Section 4 (b) may be implemented in any reasonable manner; |
||||
provided, however, that in the case of a Adaptation or Collection, at |
||||
a minimum such credit will appear, if a credit for all contributing |
||||
authors of the Adaptation or Collection appears, then as part of these |
||||
credits and in a manner at least as prominent as the credits for the |
||||
other contributing authors. For the avoidance of doubt, You may only |
||||
use the credit required by this Section for the purpose of attribution |
||||
in the manner set out above and, by exercising Your rights under this |
||||
License, You may not implicitly or explicitly assert or imply any |
||||
connection with, sponsorship or endorsement by the Original Author, |
||||
Licensor and/or Attribution Parties, as appropriate, of You or Your |
||||
use of the Work, without the separate, express prior written |
||||
permission of the Original Author, Licensor and/or Attribution |
||||
Parties. |
||||
c. Except as otherwise agreed in writing by the Licensor or as may be |
||||
otherwise permitted by applicable law, if You Reproduce, Distribute or |
||||
Publicly Perform the Work either by itself or as part of any |
||||
Adaptations or Collections, You must not distort, mutilate, modify or |
||||
take other derogatory action in relation to the Work which would be |
||||
prejudicial to the Original Author's honor or reputation. Licensor |
||||
agrees that in those jurisdictions (e.g. Japan), in which any exercise |
||||
of the right granted in Section 3(b) of this License (the right to |
||||
make Adaptations) would be deemed to be a distortion, mutilation, |
||||
modification or other derogatory action prejudicial to the Original |
||||
Author's honor and reputation, the Licensor will waive or not assert, |
||||
as appropriate, this Section, to the fullest extent permitted by the |
||||
applicable national law, to enable You to reasonably exercise Your |
||||
right under Section 3(b) of this License (right to make Adaptations) |
||||
but not otherwise. |
||||
|
||||
5. Representations, Warranties and Disclaimer |
||||
|
||||
UNLESS OTHERWISE MUTUALLY AGREED TO BY THE PARTIES IN WRITING, LICENSOR |
||||
OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY |
||||
KIND CONCERNING THE WORK, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, |
||||
INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, |
||||
FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF |
||||
LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, |
||||
WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION |
||||
OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. |
||||
|
||||
6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE |
||||
LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR |
||||
ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES |
||||
ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS |
||||
BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. |
||||
|
||||
7. Termination |
||||
|
||||
a. This License and the rights granted hereunder will terminate |
||||
automatically upon any breach by You of the terms of this License. |
||||
Individuals or entities who have received Adaptations or Collections |
||||
from You under this License, however, will not have their licenses |
||||
terminated provided such individuals or entities remain in full |
||||
compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will |
||||
survive any termination of this License. |
||||
b. Subject to the above terms and conditions, the license granted here is |
||||
perpetual (for the duration of the applicable copyright in the Work). |
||||
Notwithstanding the above, Licensor reserves the right to release the |
||||
Work under different license terms or to stop distributing the Work at |
||||
any time; provided, however that any such election will not serve to |
||||
withdraw this License (or any other license that has been, or is |
||||
required to be, granted under the terms of this License), and this |
||||
License will continue in full force and effect unless terminated as |
||||
stated above. |
||||
|
||||
8. Miscellaneous |
||||
|
||||
a. Each time You Distribute or Publicly Perform the Work or a Collection, |
||||
the Licensor offers to the recipient a license to the Work on the same |
||||
terms and conditions as the license granted to You under this License. |
||||
b. Each time You Distribute or Publicly Perform an Adaptation, Licensor |
||||
offers to the recipient a license to the original Work on the same |
||||
terms and conditions as the license granted to You under this License. |
||||
c. If any provision of this License is invalid or unenforceable under |
||||
applicable law, it shall not affect the validity or enforceability of |
||||
the remainder of the terms of this License, and without further action |
||||
by the parties to this agreement, such provision shall be reformed to |
||||
the minimum extent necessary to make such provision valid and |
||||
enforceable. |
||||
d. No term or provision of this License shall be deemed waived and no |
||||
breach consented to unless such waiver or consent shall be in writing |
||||
and signed by the party to be charged with such waiver or consent. |
||||
e. This License constitutes the entire agreement between the parties with |
||||
respect to the Work licensed here. There are no understandings, |
||||
agreements or representations with respect to the Work not specified |
||||
here. Licensor shall not be bound by any additional provisions that |
||||
may appear in any communication from You. This License may not be |
||||
modified without the mutual written agreement of the Licensor and You. |
||||
f. The rights granted under, and the subject matter referenced, in this |
||||
License were drafted utilizing the terminology of the Berne Convention |
||||
for the Protection of Literary and Artistic Works (as amended on |
||||
September 28, 1979), the Rome Convention of 1961, the WIPO Copyright |
||||
Treaty of 1996, the WIPO Performances and Phonograms Treaty of 1996 |
||||
and the Universal Copyright Convention (as revised on July 24, 1971). |
||||
These rights and subject matter take effect in the relevant |
||||
jurisdiction in which the License terms are sought to be enforced |
||||
according to the corresponding provisions of the implementation of |
||||
those treaty provisions in the applicable national law. If the |
||||
standard suite of rights granted under applicable copyright law |
||||
includes additional rights not granted under this License, such |
||||
additional rights are deemed to be included in the License; this |
||||
License is not intended to restrict the license of any rights under |
||||
applicable law. |
||||
|
||||
|
||||
Creative Commons Notice |
||||
|
||||
Creative Commons is not a party to this License, and makes no warranty |
||||
whatsoever in connection with the Work. Creative Commons will not be |
||||
liable to You or any party on any legal theory for any damages |
||||
whatsoever, including without limitation any general, special, |
||||
incidental or consequential damages arising in connection to this |
||||
license. Notwithstanding the foregoing two (2) sentences, if Creative |
||||
Commons has expressly identified itself as the Licensor hereunder, it |
||||
shall have all rights and obligations of Licensor. |
||||
|
||||
Except for the limited purpose of indicating to the public that the |
||||
Work is licensed under the CCPL, Creative Commons does not authorize |
||||
the use by either party of the trademark "Creative Commons" or any |
||||
related trademark or logo of Creative Commons without the prior |
||||
written consent of Creative Commons. Any permitted use will be in |
||||
compliance with Creative Commons' then-current trademark usage |
||||
guidelines, as may be published on its website or otherwise made |
||||
available upon request from time to time. For the avoidance of doubt, |
||||
this trademark restriction does not form part of this License. |
||||
|
||||
Creative Commons may be contacted at http://creativecommons.org/. |
@ -0,0 +1 @@
|
||||
<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> |
@ -0,0 +1,5 @@
|
||||
<div class="docs-module"> |
||||
<h4 class="docs-module-title">Download Ratchet</h4> |
||||
<p>If you haven't already, download the cource code for Ratchet.</p> |
||||
<a href="https://github.com/twbs/ratchet/archive/v2.0.0.zip" class="btn btn-block btn-primary" data-ignore="push" onClick="_gaq.push(['_trackEvent', 'Downloads', 'V2.0']);">Download Ratchet</a> |
||||
</div> |
@ -0,0 +1,18 @@
|
||||
<div class="docs-footer"> |
||||
<!-- Social links --> |
||||
<ul class="social"> |
||||
<li> |
||||
<iframe src="http://ghbtns.com/github-btn.html?user=twbs&repo=ratchet&type=watch&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="100px" height="20px"></iframe> |
||||
</li> |
||||
<li> |
||||
<a data-ignore="push" href="https://twitter.com/share" class="twitter-share-button" data-url="http://goratchet.com" data-text="Ratchet – Build mobile apps with simple HTML, CSS, and JS components." data-via="GoRatchet">Tweet</a> |
||||
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script> |
||||
</li> |
||||
<li><a data-ignore="push" href="https://twitter.com/GoRatchet" class="twitter-follow-button" data-show-count="true"> |
||||
Follow @GoRatchet</a> |
||||
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script> |
||||
</li> |
||||
</ul> |
||||
|
||||
<p class="docs-footer-content">Code licensed under the MIT license and the docs are licensed under CC BY 3.0. Ratchet version 2.0.0 was lovingly crafted by <a href="https://twitter.com/connors" data-ignore="push">Connor Sears</a>.</p> |
||||
</div> |
@ -0,0 +1,43 @@
|
||||
<meta charset="utf-8"> |
||||
<title>{{ page.title }}</title> |
||||
<meta name="description" content="{{ site.name }}: {{ site.description }}"> |
||||
<meta name="author" content="{{ site.authors }}"> |
||||
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui"> |
||||
<link rel="shortcut icon" href="../favicon.ico"> |
||||
<meta name="apple-mobile-web-app-capable" content="yes"> |
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black"> |
||||
|
||||
<link rel="stylesheet" href="../dist/ratchet.css"> |
||||
<link rel="stylesheet" href="../assets/css/docs.css"> |
||||
<link rel="stylesheet" href="../assets/css/pygments.css"> |
||||
<!--[if lt IE 9]><script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]--> |
||||
|
||||
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="../assets/img/apple-touch-icon-114x114.png"> |
||||
|
||||
<script src="http://code.jquery.com/jquery-1.7.2.min.js"></script> |
||||
<script src="../dist/ratchet.js"></script> |
||||
<script src="../assets/js/docs.js"></script> |
||||
<script src="../assets/js/fingerblast.js"></script> |
||||
|
||||
<!-- Typekit --> |
||||
<script type="text/javascript" src="//use.typekit.net/asj6ttm.js"></script> |
||||
<script type="text/javascript">try{Typekit.load();}catch(e){}</script> |
||||
|
||||
<!-- Roboto --> |
||||
<link href='http://fonts.googleapis.com/css?family=Roboto:400,700,500' rel='stylesheet' type='text/css'> |
||||
|
||||
<script> |
||||
var _gaq = _gaq || []; |
||||
_gaq.push(['_setAccount', 'UA-36050008-1']); |
||||
_gaq.push(['_trackPageview']); |
||||
|
||||
(function() { |
||||
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; |
||||
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; |
||||
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); |
||||
})(); |
||||
// Remove once I add back in the docs.js |
||||
// $(function() { |
||||
// $(window).on('load', function () { new FingerBlast('.body'); }); |
||||
// }); |
||||
</script> |
@ -0,0 +1,21 @@
|
||||
<span class="docs-jump-menu pull-left js-jump-menu"> |
||||
<span class="icon icon-list"></span> |
||||
Jump to |
||||
<span class="icon icon-caret"></span> |
||||
</span> |
||||
|
||||
<div class="docs-component-group js-component-group"> |
||||
<a class="docs-component-item" href="#bars" data-ignore="push">Bars</a> |
||||
<a class="docs-component-item" href="#typography" data-ignore="push">Typography</a> |
||||
<a class="docs-component-item" href="#table-views" data-ignore="push">Table views</a> |
||||
<a class="docs-component-item" href="#buttons" data-ignore="push">Buttons</a> |
||||
<a class="docs-component-item" href="#segmentedControls" data-ignore="push">Segmented controls</a> |
||||
<a class="docs-component-item" href="#badges" data-ignore="push">Badges</a> |
||||
<a class="docs-component-item" href="#forms" data-ignore="push">Forms</a> |
||||
<a class="docs-component-item" href="#toggles" data-ignore="push">Toggles</a> |
||||
<a class="docs-component-item" href="#popovers" data-ignore="push">Popovers</a> |
||||
<a class="docs-component-item" href="#modals" data-ignore="push">Modals</a> |
||||
<a class="docs-component-item" href="#sliders" data-ignore="push">Sliders</a> |
||||
<a class="docs-component-item" href="#push" data-ignore="push">Push</a> |
||||
<a class="docs-component-item" href="#ratchicons" data-ignore="push">Ratchicons</a> |
||||
</div> |
@ -0,0 +1,19 @@
|
||||
<header class="docs-masthead clearfix"> |
||||
<div class="container"> |
||||
<div class="column units-2"> |
||||
<h1 class="docs-title"> |
||||
<a href="/" data-ignore="push">Ratchet</a> |
||||
</h1> |
||||
<nav class="docs-nav clearfix"> |
||||
<a class="docs-nav-trigger icon icon-bars pull-right js-docs-nav-trigger" href="#"></a> |
||||
<div class="docs-nav-group"> |
||||
<a class="docs-nav-item" href="/" data-ignore="push">Home</a> |
||||
<a class="docs-nav-item" href="/getting-started" data-ignore="push">Getting started</a> |
||||
<a class="docs-nav-item" href="/components" data-ignore="push">Components</a> |
||||
<a class="docs-nav-item" href="/examples" data-ignore="push">Examples</a> |
||||
<a class="docs-nav-item" href="https://github.com/twbs/ratchet" data-ignore="push">GitHub project</a> |
||||
</div> |
||||
</nav> |
||||
</div> |
||||
</div> |
||||
</header> |
@ -0,0 +1,19 @@
|
||||
<div class="docs-component-toolbar js-docs-component-toolbar"> |
||||
<div class="container"> |
||||
<div class="column units-2"> |
||||
{% include jump.html %} |
||||
|
||||
<div class="segmented-control"> |
||||
<a class="platform-switch control-item active" data-platform=""> |
||||
Base |
||||
</a> |
||||
<a class="platform-switch control-item" data-platform="platform-ios"> |
||||
iOS |
||||
</a> |
||||
<a class="platform-switch control-item" data-platform="platform-android"> |
||||
Android |
||||
</a> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html> |
||||
<html> |
||||
<head> |
||||
{% include header.html %} |
||||
</head> |
||||
<body ontouchstart=""> |
||||
{{ content }} |
||||
</body> |
||||
</html> |
@ -0,0 +1,9 @@
|
||||
<!DOCTYPE html> |
||||
<html> |
||||
<head> |
||||
{% include header.html %} |
||||
</head> |
||||
<body class="docs-home" ontouchstart=""> |
||||
{{ content }} |
||||
</body> |
||||
</html> |
@ -0,0 +1,61 @@
|
||||
.hll { background-color: #ffffcc } |
||||
.c { color: #999988; font-style: italic } /* Comment */ |
||||
.err { color: #a61717; background-color: #e3d2d2 } /* Error */ |
||||
.k { color: #000000; font-weight: bold } /* Keyword */ |
||||
.o { color: #000000; font-weight: bold } /* Operator */ |
||||
.cm { color: #999988; font-style: italic } /* Comment.Multiline */ |
||||
.cp { color: #999999; font-weight: bold; font-style: italic } /* Comment.Preproc */ |
||||
.c1 { color: #999988; font-style: italic } /* Comment.Single */ |
||||
.cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */ |
||||
.gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */ |
||||
.ge { color: #000000; font-style: italic } /* Generic.Emph */ |
||||
.gr { color: #aa0000 } /* Generic.Error */ |
||||
.gh { color: #999999 } /* Generic.Heading */ |
||||
.gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */ |
||||
.go { color: #888888 } /* Generic.Output */ |
||||
.gp { color: #555555 } /* Generic.Prompt */ |
||||
.gs { font-weight: bold } /* Generic.Strong */ |
||||
.gu { color: #aaaaaa } /* Generic.Subheading */ |
||||
.gt { color: #aa0000 } /* Generic.Traceback */ |
||||
.kc { color: #000000; font-weight: bold } /* Keyword.Constant */ |
||||
.kd { color: #000000; font-weight: bold } /* Keyword.Declaration */ |
||||
.kn { color: #000000; font-weight: bold } /* Keyword.Namespace */ |
||||
.kp { color: #000000; font-weight: bold } /* Keyword.Pseudo */ |
||||
.kr { color: #000000; font-weight: bold } /* Keyword.Reserved */ |
||||
.kt { color: #445588; font-weight: bold } /* Keyword.Type */ |
||||
.m { color: #009999 } /* Literal.Number */ |
||||
.s { color: #d01040 } /* Literal.String */ |
||||
.na { color: #008080 } /* Name.Attribute */ |
||||
.nb { color: #0086B3 } /* Name.Builtin */ |
||||
.nc { color: #445588; font-weight: bold } /* Name.Class */ |
||||
.no { color: #008080 } /* Name.Constant */ |
||||
.nd { color: #3c5d5d; font-weight: bold } /* Name.Decorator */ |
||||
.ni { color: #800080 } /* Name.Entity */ |
||||
.ne { color: #990000; font-weight: bold } /* Name.Exception */ |
||||
.nf { color: #990000; font-weight: bold } /* Name.Function */ |
||||
.nl { color: #990000; font-weight: bold } /* Name.Label */ |
||||
.nn { color: #555555 } /* Name.Namespace */ |
||||
.nt { color: #000080 } /* Name.Tag */ |
||||
.nv { color: #008080 } /* Name.Variable */ |
||||
.ow { color: #000000; font-weight: bold } /* Operator.Word */ |
||||
.w { color: #bbbbbb } /* Text.Whitespace */ |
||||
.mf { color: #009999 } /* Literal.Number.Float */ |
||||
.mh { color: #009999 } /* Literal.Number.Hex */ |
||||
.mi { color: #009999 } /* Literal.Number.Integer */ |
||||
.mo { color: #009999 } /* Literal.Number.Oct */ |
||||
.sb { color: #d01040 } /* Literal.String.Backtick */ |
||||
.sc { color: #d01040 } /* Literal.String.Char */ |
||||
.sd { color: #d01040 } /* Literal.String.Doc */ |
||||
.s2 { color: #d01040 } /* Literal.String.Double */ |
||||
.se { color: #d01040 } /* Literal.String.Escape */ |
||||
.sh { color: #d01040 } /* Literal.String.Heredoc */ |
||||
.si { color: #d01040 } /* Literal.String.Interpol */ |
||||
.sx { color: #d01040 } /* Literal.String.Other */ |
||||
.sr { color: #009926 } /* Literal.String.Regex */ |
||||
.s1 { color: #d01040 } /* Literal.String.Single */ |
||||
.ss { color: #990073 } /* Literal.String.Symbol */ |
||||
.bp { color: #999999 } /* Name.Builtin.Pseudo */ |
||||
.vc { color: #008080 } /* Name.Variable.Class */ |
||||
.vg { color: #008080 } /* Name.Variable.Global */ |
||||
.vi { color: #008080 } /* Name.Variable.Instance */ |
||||
.il { color: #009999 } /* Literal.Number.Integer.Long */ |
After Width: | Height: | Size: 100 KiB |
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 5.2 KiB After Width: | Height: | Size: 5.2 KiB |
Before Width: | Height: | Size: 7.2 KiB After Width: | Height: | Size: 7.2 KiB |
After Width: | Height: | Size: 23 KiB |
After Width: | Height: | Size: 23 KiB |
After Width: | Height: | Size: 266 KiB |
After Width: | Height: | Size: 67 KiB |
After Width: | Height: | Size: 94 KiB |
After Width: | Height: | Size: 221 KiB |
After Width: | Height: | Size: 1.6 MiB |
After Width: | Height: | Size: 1.6 MiB |
After Width: | Height: | Size: 1.4 MiB |
@ -0,0 +1,172 @@
|
||||
$(function() { |
||||
|
||||
var doc; |
||||
var device; |
||||
var platformToggle; |
||||
var windowWidth; |
||||
var windowHeight; |
||||
var pageHeight; |
||||
var contentPadding; |
||||
var footerHeight; |
||||
var navComponentLinks; |
||||
var componentsList; |
||||
var contentSection; |
||||
var currentActive; |
||||
var topCache; |
||||
var eventListeners; |
||||
var toolbarToggle; |
||||
var toggleTop; |
||||
var toggleHeight; |
||||
|
||||
|
||||
var initialize = function () { |
||||
currentActive = 0; |
||||
topCache = []; |
||||
win = $(window); |
||||
doc = $(document); |
||||
bod = $(document.body) |
||||
device = device || $('.js-device'); |
||||
navComponentLinks = $('.js-jump-menu'); |
||||
componentsList = $('.js-component-group'); |
||||
componentLinks = $('.component-example a'); |
||||
contentSection = $('.component'); |
||||
topCache = contentSection.map(function () { return $(this).offset().top }) |
||||
windowHeight = $(window).height() / 3 |
||||
windowWidth = $(window).width(); |
||||
pageHeight = $(document).height(); |
||||
contentPadding = parseInt($('.docs-content').css('padding-bottom')); |
||||
footerHeight = $('.docs-footer').outerHeight(false); |
||||
toolbarToggle = $('.js-docs-component-toolbar'); |
||||
|
||||
// Device placement
|
||||
if (windowWidth >= 768) { |
||||
device.initialLeft = device.offset().left; |
||||
device.initialTop = device.initialTop || device.offset().top; |
||||
device.dockingOffset = ($(window).height() - device.height())/2;
|
||||
} |
||||
|
||||
checkDesktopContent(); |
||||
calculateScroll(); |
||||
calculateToggle(); |
||||
|
||||
if (!eventListeners) addEventListeners(); |
||||
} |
||||
|
||||
var addEventListeners = function () { |
||||
eventListeners = true; |
||||
|
||||
device.on('click', function (e) { |
||||
e.preventDefault(); |
||||
}); |
||||
|
||||
// Mobile navigation
|
||||
$('.js-docs-nav-trigger').on('click', function () { |
||||
var nav = $('.docs-nav-group'); |
||||
var trigger = $('.js-docs-nav-trigger'); |
||||
|
||||
trigger.toggleClass('active'); |
||||
nav.toggleClass('active');
|
||||
}); |
||||
|
||||
navComponentLinks.click(function(e) { |
||||
e.stopPropagation(); |
||||
e.preventDefault(); |
||||
componentsList.toggleClass('active'); |
||||
}) |
||||
|
||||
doc.on('click', function () { |
||||
componentsList.removeClass('active'); |
||||
}) |
||||
|
||||
// Platform switcher
|
||||
$('.platform-switch').on('click', function () { |
||||
var components = $('.docs-components'); |
||||
var platform = $(this).attr('data-platform'); |
||||
|
||||
// Set platform
|
||||
if (components.hasClass('platform-ios')) { |
||||
components.removeClass('platform-ios'); |
||||
components.addClass(platform); |
||||
} else if (components.hasClass('platform-android')) { |
||||
components.removeClass('platform-android'); |
||||
components.addClass(platform); |
||||
} else { |
||||
components.addClass(platform); |
||||
} |
||||
|
||||
// Deal with active states
|
||||
$(this).siblings('.active').removeClass('active'); |
||||
$(this).addClass('active'); |
||||
}); |
||||
|
||||
win.on('scroll', calculateScroll); |
||||
win.on('scroll', calculateToggle); |
||||
} |
||||
|
||||
var checkDesktopContent = function () { |
||||
windowWidth = $(window).width(); |
||||
if (windowWidth <= 768) { |
||||
var content = $('.content') |
||||
if (content.length > 1) { |
||||
$(content[0]).remove() |
||||
} |
||||
} |
||||
} |
||||
|
||||
var calculateScroll = function() { |
||||
// if small screen don't worry about this
|
||||
if (windowWidth <= 768) return |
||||
|
||||
// Save scrollTop value
|
||||
var contentSectionItem; |
||||
var currentTop = win.scrollTop(); |
||||
|
||||
if((device.initialTop - currentTop) <= device.dockingOffset) { |
||||
device[0].className = "device device-fixed"; |
||||
device.css({top: device.dockingOffset}) |
||||
} else { |
||||
device[0].className = "device" |
||||
device[0].setAttribute('style','') |
||||
} |
||||
|
||||
// Injection of components into device
|
||||
for (var l = contentSection.length; l--;) { |
||||
if ((topCache[l] - currentTop) < windowHeight) { |
||||
if (currentActive == l) return; |
||||
currentActive = l; |
||||
bod.find('.component.active').removeClass('active'); |
||||
contentSectionItem = $(contentSection[l]) |
||||
contentSectionItem.addClass('active') |
||||
if(contentSectionItem.attr('id')) { |
||||
device.attr("id", contentSectionItem.attr('id') + "InDevice"); |
||||
} else { |
||||
device.attr("id", "") |
||||
} |
||||
if (!contentSectionItem.hasClass('informational')) { |
||||
updateContent(contentSectionItem.find('.highlight .html').text()) |
||||
} |
||||
break |
||||
} |
||||
} |
||||
|
||||
function updateContent(content) { |
||||
$('#iwindow').html(content); |
||||
} |
||||
} |
||||
|
||||
// Toolbar toggle
|
||||
var calculateToggle = function () { |
||||
var currentTop = win.scrollTop(); |
||||
var headerHeight = $('.docs-sub-header').outerHeight(); |
||||
|
||||
if(currentTop >= headerHeight) { |
||||
toolbarToggle.addClass('visible'); |
||||
} else if (currentTop <= headerHeight) { |
||||
toolbarToggle.removeClass('visible'); |
||||
componentsList.removeClass('active'); |
||||
} |
||||
} |
||||
|
||||
$(window).on('load resize', initialize); |
||||
$(window).on('load', function () { new FingerBlast('.device-content'); }); |
||||
}); |
@ -1 +0,0 @@
|
||||
.pln{color:#000}@media screen{.str{color:#080}.kwd{color:#008}.com{color:#999}.typ{color:#606}.lit{color:#066}.pun,.opn,.clo{color:#660}.tag{color:#008}.atn{color:teal}.atv{color:#d14}.dec,.var{color:#606}.fun{color:red}}@media print,projection{.str{color:#060}.kwd{color:#006;font-weight:bold}.com{color:#600;font-style:italic}.typ{color:#404;font-weight:bold}.lit{color:#044}.pun,.opn,.clo{color:#440}.tag{color:#006;font-weight:bold}.atn{color:#404}.atv{color:#060}}pre.prettyprint{padding:2px;border:1px solid #888}ol.linenums{margin-top:0;margin-bottom:0}li.L0,li.L1,li.L2,li.L3,li.L5,li.L6,li.L7,li.L8{list-style-type:none}li.L1,li.L3,li.L5,li.L7,li.L9{background:#eee} |
@ -0,0 +1,578 @@
|
||||
/* |
||||
* ===================================================== |
||||
* Ratchet v2.0.0 |
||||
* Copyright 2014 Connor Sears |
||||
* Licensed under http://www.opensource.org/licenses/MIT |
||||
* |
||||
* V2.0.0 designed by @connors. |
||||
* ===================================================== |
||||
*/ |
||||
|
||||
body { |
||||
font-family: "Roboto", sans-serif; |
||||
font-size: 18px; |
||||
line-height: 22px; |
||||
color: #222222; |
||||
} |
||||
|
||||
a { |
||||
color: #33b5e5; |
||||
} |
||||
a:active { |
||||
color: #1a9bcb; |
||||
} |
||||
|
||||
.content { |
||||
background-color: #f2f2f2; |
||||
} |
||||
|
||||
.bar-nav ~ .content { |
||||
padding-top: 50px; |
||||
} |
||||
|
||||
.bar-tab ~ .content { |
||||
padding-bottom: 50px; |
||||
} |
||||
|
||||
.bar-header-secondary ~ .content { |
||||
padding-top: 100px; |
||||
} |
||||
|
||||
.btn { |
||||
padding: 8px 15px; |
||||
font-size: 14px; |
||||
color: #222222; |
||||
background-color: #cecece; |
||||
border: 0; |
||||
border-radius: 2px; |
||||
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 1px rgba(0, 0, 0, 0.25); |
||||
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 1px rgba(0, 0, 0, 0.25); |
||||
} |
||||
.btn:active, .btn.active { |
||||
color: #222222; |
||||
border: 0; |
||||
background-color: #999999; |
||||
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2); |
||||
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2); |
||||
} |
||||
|
||||
.btn-primary { |
||||
color: #fff; |
||||
border: 0; |
||||
background-color: #33b5e5; |
||||
} |
||||
.btn-primary:active, .btn-primary.active { |
||||
color: #fff; |
||||
border: 0; |
||||
background-color: #1a9bcb; |
||||
} |
||||
|
||||
.btn-positive { |
||||
color: #fff; |
||||
border: 0; |
||||
background-color: #99cc00; |
||||
} |
||||
.btn-positive:active, .btn-positive.active { |
||||
color: #fff; |
||||
border: 0; |
||||
background-color: #739900; |
||||
} |
||||
|
||||
.btn-negative { |
||||
color: #fff; |
||||
border: 0; |
||||
background-color: #ff4444; |
||||
} |
||||
.btn-negative:active, .btn-negative.active { |
||||
color: #fff; |
||||
border: 0; |
||||
background-color: #ff1111; |
||||
} |
||||
|
||||
.btn-outlined { |
||||
border: 1px solid #999999; |
||||
background-color: transparent; |
||||
-webkit-box-shadow: none; |
||||
box-shadow: none; |
||||
} |
||||
.btn-outlined.btn-primary { |
||||
border: 1px solid #33b5e5; |
||||
color: #33b5e5; |
||||
} |
||||
.btn-outlined.btn-primary:active { |
||||
border: 1px solid #33b5e5; |
||||
background-color: #33b5e5; |
||||
} |
||||
.btn-outlined.btn-positive { |
||||
border: 1px solid #99cc00; |
||||
color: #99cc00; |
||||
} |
||||
.btn-outlined.btn-positive:active { |
||||
border: 1px solid #99cc00; |
||||
background-color: #99cc00; |
||||
} |
||||
.btn-outlined.btn-negative { |
||||
border: 1px solid #ff4444; |
||||
color: #ff4444; |
||||
} |
||||
.btn-outlined.btn-negative:active { |
||||
border: 1px solid #ff4444; |
||||
background-color: #ff4444; |
||||
} |
||||
.btn-outlined:active { |
||||
border: 1px solid #999999; |
||||
background-color: #999999; |
||||
-webkit-box-shadow: none; |
||||
box-shadow: none; |
||||
} |
||||
.btn-outlined.btn-primary:active, .btn-outlined.btn-positive:active, .btn-outlined.btn-negative:active { |
||||
color: #fff; |
||||
-webkit-box-shadow: none; |
||||
box-shadow: none; |
||||
} |
||||
|
||||
.btn-link { |
||||
color: #33b5e5; |
||||
background-color: transparent; |
||||
border: none; |
||||
-webkit-box-shadow: none; |
||||
box-shadow: none; |
||||
} |
||||
.btn-link:active, .btn-link.active { |
||||
color: #1a9bcb; |
||||
background-color: transparent; |
||||
-webkit-box-shadow: none; |
||||
box-shadow: none; |
||||
} |
||||
|
||||
.btn-block { |
||||
padding: 15px 0; |
||||
font-size: 18px; |
||||
} |
||||
|
||||
.btn .badge { |
||||
background-color: rgba(0, 0, 0, 0.15); |
||||
} |
||||
.btn .badge.badge-inverted { |
||||
background-color: transparent; |
||||
} |
||||
.btn:active .badge { |
||||
color: #fff; |
||||
} |
||||
|
||||
.bar { |
||||
height: 50px; |
||||
background-color: #dddddd; |
||||
border-bottom: 1px solid #b1b1b1; |
||||
-webkit-box-shadow: inset 0 -2px 0 #d2d2d2, 0 3px 3px rgba(0, 0, 0, 0.07); |
||||
box-shadow: inset 0 -2px 0 #d2d2d2, 0 3px 3px rgba(0, 0, 0, 0.07); |
||||
} |
||||
.bar.bar-header-secondary { |
||||
top: 50px; |
||||
} |
||||
.bar.bar-footer-secondary { |
||||
bottom: 50px; |
||||
} |
||||
.bar.bar-footer-secondary-tab { |
||||
bottom: 50px; |
||||
} |
||||
.bar .bar-footer, |
||||
.bar .bar-footer-secondary, |
||||
.bar .bar-footer-secondary-tab { |
||||
border-bottom: 0; |
||||
border-top: 1px solid #b1b1b1; |
||||
-webkit-box-shadow: inset 0 -2px 0 #33b5e5; |
||||
box-shadow: inset 0 -2px 0 #33b5e5; |
||||
} |
||||
|
||||
.bar-tab { |
||||
top: 0; |
||||
bottom: auto; |
||||
height: 50px; |
||||
border-top: 0; |
||||
} |
||||
.bar-tab .tab-item { |
||||
color: #929292; |
||||
} |
||||
.bar-tab .tab-item.active { |
||||
color: #33b5e5; |
||||
-webkit-box-shadow: inset 0 -2px 0 #33b5e5; |
||||
box-shadow: inset 0 -2px 0 #33b5e5; |
||||
} |
||||
.bar-tab .tab-item:active { |
||||
color: #929292; |
||||
background-color: #78c6e3; |
||||
} |
||||
.bar-tab .tab-item .icon { |
||||
top: 3px; |
||||
padding-top: 0; |
||||
padding-bottom: 0; |
||||
} |
||||
|
||||
.title { |
||||
position: static; |
||||
padding-left: 15px; |
||||
font-size: 18px; |
||||
line-height: 49px; |
||||
text-align: left; |
||||
} |
||||
|
||||
.bar .btn { |
||||
top: 7px; |
||||
padding-top: 10px; |
||||
padding-bottom: 10px; |
||||
} |
||||
.bar .btn-link { |
||||
top: 0; |
||||
padding: 0; |
||||
color: #33b5e5; |
||||
font-size: 18px; |
||||
line-height: 49px; |
||||
} |
||||
.bar .btn-link:active, .bar .btn-link.active { |
||||
color: #1a9bcb; |
||||
} |
||||
.bar .btn-link .icon { |
||||
top: 2px; |
||||
padding: 0; |
||||
} |
||||
.bar .btn-block { |
||||
top: 4px; |
||||
} |
||||
|
||||
.bar .segmented-control { |
||||
top: 7px; |
||||
} |
||||
|
||||
.bar .icon { |
||||
padding-top: 13px; |
||||
padding-bottom: 13px; |
||||
} |
||||
.bar .title .icon { |
||||
padding: 0; |
||||
} |
||||
.bar .title .icon.icon-caret { |
||||
top: 10px; |
||||
color: #777; |
||||
} |
||||
|
||||
.bar input[type="search"] { |
||||
height: 35px; |
||||
} |
||||
|
||||
.badge.badge-inverted { |
||||
color: #999999; |
||||
background-color: transparent; |
||||
} |
||||
|
||||
.badge-primary { |
||||
color: #fff; |
||||
background-color: #33b5e5; |
||||
} |
||||
.badge-primary.badge-inverted { |
||||
color: #33b5e5; |
||||
background-color: transparent; |
||||
} |
||||
|
||||
.badge-positive { |
||||
color: #fff; |
||||
background-color: #99cc00; |
||||
} |
||||
.badge-positive.badge-inverted { |
||||
color: #99cc00; |
||||
background-color: transparent; |
||||
} |
||||
|
||||
.badge-negative { |
||||
color: #fff; |
||||
background-color: #ff4444; |
||||
} |
||||
.badge-negative.badge-inverted { |
||||
color: #ff4444; |
||||
background-color: transparent; |
||||
} |
||||
|
||||
.card { |
||||
border-color: #d9d9d9; |
||||
border-radius: 2px; |
||||
background-color: transparent; |
||||
} |
||||
|
||||
.table-view { |
||||
background-color: transparent; |
||||
} |
||||
.table-view .table-view-cell { |
||||
border-bottom: 1px solid #d9d9d9; |
||||
} |
||||
.table-view .table-view-cell:last-child { |
||||
background-image: none; |
||||
} |
||||
.table-view .table-view-cell > a:not(.btn):active { |
||||
background-color: #e0e0e0; |
||||
} |
||||
.table-view .table-view-cell > a:not(.btn):active .icon { |
||||
color: #fff; |
||||
} |
||||
.table-view .table-view-divider { |
||||
padding-top: 25px; |
||||
font-size: 12px; |
||||
font-weight: bold; |
||||
text-transform: uppercase; |
||||
border-top: 0; |
||||
border-bottom: 2px solid #a9a9a9; |
||||
background-color: transparent; |
||||
} |
||||
|
||||
select, |
||||
textarea, |
||||
input[type="text"], |
||||
input[type="search"], |
||||
input[type="password"], |
||||
input[type="datetime"], |
||||
input[type="datetime-local"], |
||||
input[type="date"], |
||||
input[type="month"], |
||||
input[type="time"], |
||||
input[type="week"], |
||||
input[type="number"], |
||||
input[type="email"], |
||||
input[type="url"], |
||||
input[type="tel"], |
||||
input[type="color"], |
||||
.input-group { |
||||
height: 40px; |
||||
padding: 10px 15px; |
||||
border: 1px solid rgba(0, 0, 0, 0.2); |
||||
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); |
||||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); |
||||
} |
||||
|
||||
input[type="search"] { |
||||
border-radius: 2px; |
||||
} |
||||
|
||||
select, |
||||
textarea, |
||||
.input-group { |
||||
height: auto; |
||||
} |
||||
|
||||
.input-group { |
||||
padding: 0; |
||||
border: 0; |
||||
} |
||||
|
||||
.input-group input { |
||||
border: 0; |
||||
border-bottom: 1px solid #d9d9d9; |
||||
-webkit-box-shadow: none; |
||||
box-shadow: none; |
||||
} |
||||
|
||||
.input-group input:last-child { |
||||
background-image: none; |
||||
} |
||||
|
||||
.input-row { |
||||
border-bottom: 1px solid #d9d9d9; |
||||
} |
||||
|
||||
.input-row label + input { |
||||
background-image: none; |
||||
border-bottom: 0; |
||||
} |
||||
|
||||
.segmented-control { |
||||
font-size: 14px; |
||||
background-color: #cecece; |
||||
border: 0; |
||||
border-radius: 2px; |
||||
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25); |
||||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25); |
||||
} |
||||
.segmented-control .control-item { |
||||
padding-top: 10px; |
||||
padding-bottom: 10px; |
||||
color: #222222; |
||||
border-left: 1px solid #999; |
||||
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2); |
||||
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2); |
||||
} |
||||
.segmented-control .control-item:first-child { |
||||
border-left-width: 0; |
||||
} |
||||
.segmented-control .control-item:active, .segmented-control .control-item.active { |
||||
background-color: #999999; |
||||
} |
||||
|
||||
.segmented-control-primary { |
||||
border: 0; |
||||
} |
||||
.segmented-control-primary .control-item { |
||||
color: #fff; |
||||
border-color: inherit; |
||||
} |
||||
.segmented-control-primary .control-item:active, .segmented-control-primary .control-item.active { |
||||
color: #fff; |
||||
background-color: #33b5e5; |
||||
} |
||||
|
||||
.segmented-control-positive { |
||||
border: 0; |
||||
} |
||||
.segmented-control-positive .control-item { |
||||
color: #fff; |
||||
border-color: inherit; |
||||
} |
||||
.segmented-control-positive .control-item:active, .segmented-control-positive .control-item.active { |
||||
color: #fff; |
||||
background-color: #99cc00; |
||||
} |
||||
|
||||
.segmented-control-negative { |
||||
border: 0; |
||||
} |
||||
.segmented-control-negative .control-item { |
||||
color: #fff; |
||||
border-color: inherit; |
||||
} |
||||
.segmented-control-negative .control-item:active, .segmented-control-negative .control-item.active { |
||||
color: #fff; |
||||
background-color: #ff4444; |
||||
} |
||||
|
||||
.popover { |
||||
top: 47px; |
||||
left: 15px; |
||||
width: 200px; |
||||
margin-left: 0; |
||||
border: 1px solid #9b9b9b; |
||||
border-radius: 0; |
||||
-webkit-transition: -webkit-transform .1s ease-in-out, opacity .2s ease-in-out; |
||||
-moz-transition: -moz-transform .1s ease-in-out, opacity .2s ease-in-out; |
||||
transition: transform .1s ease-in-out, opacity .2s ease-in-out; |
||||
-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2); |
||||
box-shadow: 0 0 3px rgba(0, 0, 0, 0.2); |
||||
-webkit-transform: scale(0.75); |
||||
-ms-transform: scale(0.75); |
||||
transform: scale(0.75); |
||||
} |
||||
.popover:before { |
||||
display: none; |
||||
} |
||||
.popover.visible { |
||||
-webkit-transform: scale(1); |
||||
-ms-transform: scale(1); |
||||
transform: scale(1); |
||||
} |
||||
|
||||
.backdrop { |
||||
background-color: none; |
||||
} |
||||
|
||||
.popover .bar { |
||||
border-radius: 0; |
||||
} |
||||
.popover .bar-nav ~ .table-view { |
||||
padding-top: 50px; |
||||
} |
||||
|
||||
.popover .table-view { |
||||
border-radius: 12px; |
||||
} |
||||
|
||||
.toggle { |
||||
width: 104px; |
||||
height: 28px; |
||||
border: 2px solid #d7d7d7; |
||||
border-radius: 0; |
||||
background-color: #d7d7d7; |
||||
} |
||||
.toggle .toggle-handle { |
||||
top: 0; |
||||
left: 0; |
||||
width: 50px; |
||||
height: 24px; |
||||
border: 1px solid #b5b5b5; |
||||
border-radius: 2px; |
||||
background-color: #bebebe; |
||||
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.1); |
||||
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.1); |
||||
} |
||||
.toggle:before { |
||||
top: 1px; |
||||
right: auto; |
||||
left: 11px; |
||||
z-index: 3; |
||||
color: #fff; |
||||
} |
||||
.toggle.active { |
||||
border: 2px solid #d7d7d7; |
||||
background-color: #d7d7d7; |
||||
} |
||||
.toggle.active .toggle-handle { |
||||
margin-right: 2px; |
||||
background-color: #33b5e5; |
||||
border-color: #33b5e5; |
||||
-webkit-transform: translate3d(50px, 0, 0); |
||||
-ms-transform: translate3d(50px, 0, 0); |
||||
transform: translate3d(50px, 0, 0); |
||||
} |
||||
.toggle.active:before { |
||||
left: auto; |
||||
right: 14px; |
||||
color: #fff; |
||||
content: "On"; |
||||
} |
||||
|
||||
.push-left:after { |
||||
content: '\e803'; |
||||
} |
||||
|
||||
.push-right:after { |
||||
content: '\e806'; |
||||
} |
||||
|
||||
.icon-caret:before { |
||||
content: '\e800'; |
||||
} |
||||
|
||||
.icon-down:before, |
||||
.icon-down-nav:before { |
||||
content: '\e801'; |
||||
} |
||||
|
||||
.icon-download:before { |
||||
content: '\e802'; |
||||
} |
||||
|
||||
.icon-left:before, |
||||
.icon-left-nav:before { |
||||
content: '\e803'; |
||||
} |
||||
|
||||
.icon-more-vertical:before { |
||||
content: '\e804'; |
||||
} |
||||
|
||||
.icon-more:before { |
||||
content: '\e805'; |
||||
} |
||||
|
||||
.icon-right:before, |
||||
.icon-right-nav:before { |
||||
content: '\e806'; |
||||
} |
||||
|
||||
.icon-search:before { |
||||
content: '\e807'; |
||||
} |
||||
|
||||
.icon-share:before { |
||||
content: '\e808'; |
||||
} |
||||
|
||||
.icon-up:before, |
||||
.icon-up-nav:before { |
||||
content: '\e809'; |
||||
} |
@ -0,0 +1,477 @@
|
||||
/* |
||||
* ===================================================== |
||||
* Ratchet v2.0.0 |
||||
* Copyright 2014 Connor Sears |
||||
* Licensed under http://www.opensource.org/licenses/MIT |
||||
* |
||||
* V2.0.0 designed by @connors. |
||||
* ===================================================== |
||||
*/ |
||||
|
||||
a { |
||||
color: #007aff; |
||||
} |
||||
a:active { |
||||
color: #0062cc; |
||||
} |
||||
|
||||
.content { |
||||
background-color: #efeff4; |
||||
} |
||||
|
||||
.h5, h5, |
||||
.h6, h6, |
||||
p { |
||||
color: #8f8f94; |
||||
} |
||||
|
||||
.h5, h5, |
||||
.h6, h6 { |
||||
font-weight: normal; |
||||
text-transform: uppercase; |
||||
} |
||||
|
||||
.btn { |
||||
border: 1px solid #929292; |
||||
color: #929292; |
||||
background-color: rgba(247, 247, 247, 0.98); |
||||
-webkit-transition: all; |
||||
-moz-transition: all; |
||||
transition: all; |
||||
-webkit-transition-duration: 0.2s; |
||||
-moz-transition-duration: 0.2s; |
||||
transition-duration: 0.2s; |
||||
-webkit-transition-timing-function: linear; |
||||
-moz-transition-timing-function: linear; |
||||
transition-timing-function: linear; |
||||
} |
||||
.btn:active, .btn.active { |
||||
color: #fff; |
||||
background-color: #929292; |
||||
} |
||||
|
||||
.btn-primary { |
||||
color: #fff; |
||||
border: 1px solid #007aff; |
||||
background-color: #007aff; |
||||
} |
||||
.btn-primary:active, .btn-primary.active { |
||||
border: 1px solid #0062cc; |
||||
background-color: #0062cc; |
||||
} |
||||
|
||||
.btn-positive { |
||||
color: #fff; |
||||
border: 1px solid #4cd964; |
||||
background-color: #4cd964; |
||||
} |
||||
.btn-positive:active, .btn-positive.active { |
||||
border: 1px solid #2ac845; |
||||
background-color: #2ac845; |
||||
} |
||||
|
||||
.btn-negative { |
||||
color: #fff; |
||||
border: 1px solid #dd524d; |
||||
background-color: #dd524d; |
||||
} |
||||
.btn-negative:active, .btn-negative.active { |
||||
border: 1px solid #cf2d28; |
||||
background-color: #cf2d28; |
||||
} |
||||
|
||||
.btn-outlined { |
||||
background-color: transparent; |
||||
} |
||||
.btn-outlined.btn-primary { |
||||
color: #007aff; |
||||
} |
||||
.btn-outlined.btn-positive { |
||||
color: #4cd964; |
||||
} |
||||
.btn-outlined.btn-negative { |
||||
color: #dd524d; |
||||
} |
||||
.btn-outlined.btn-primary:active, .btn-outlined.btn-positive:active, .btn-outlined.btn-negative:active { |
||||
color: #fff; |
||||
} |
||||
|
||||
.btn-link { |
||||
color: #007aff; |
||||
background-color: transparent; |
||||
border: none; |
||||
} |
||||
.btn-link:active, .btn-link.active { |
||||
color: #0062cc; |
||||
background-color: transparent; |
||||
} |
||||
|
||||
.btn .badge { |
||||
background-color: rgba(0, 0, 0, 0.15); |
||||
} |
||||
.btn .badge.badge-inverted { |
||||
background-color: transparent; |
||||
} |
||||
.btn:active .badge { |
||||
color: #fff; |
||||
} |
||||
|
||||
.bar { |
||||
border-bottom: 0; |
||||
background-color: rgba(247, 247, 247, 0.98); |
||||
-webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.85); |
||||
box-shadow: 0 0 1px rgba(0, 0, 0, 0.85); |
||||
} |
||||
.bar.bar-header-secondary { |
||||
top: 44px; |
||||
} |
||||
.bar.bar-footer-secondary { |
||||
bottom: 44px; |
||||
} |
||||
.bar.bar-footer-secondary-tab { |
||||
bottom: 50px; |
||||
} |
||||
.bar .bar-footer, |
||||
.bar .bar-footer-secondary, |
||||
.bar .bar-footer-secondary-tab { |
||||
border-top: 0; |
||||
-webkit-box-shadow: 0 0 -1px rgba(0, 0, 0, 0.85); |
||||
box-shadow: 0 0 -1px rgba(0, 0, 0, 0.85); |
||||
} |
||||
|
||||
.bar-tab { |
||||
border-top: 0; |
||||
-webkit-box-shadow: 0 0 -1px rgba(0, 0, 0, 0.85); |
||||
box-shadow: 0 0 -1px rgba(0, 0, 0, 0.85); |
||||
} |
||||
|
||||
.tab-item { |
||||
color: #929292; |
||||
} |
||||
.tab-item.active, .tab-item:active { |
||||
color: #007aff; |
||||
} |
||||
|
||||
.bar-nav .btn-link { |
||||
color: #007aff; |
||||
} |
||||
.bar-nav .btn-link:active { |
||||
color: #007aff; |
||||
opacity: .6; |
||||
} |
||||
|
||||
.badge.badge-inverted { |
||||
color: #929292; |
||||
background-color: transparent; |
||||
} |
||||
|
||||
.badge-primary { |
||||
color: #fff; |
||||
background-color: #007aff; |
||||
} |
||||
.badge-primary.badge-inverted { |
||||
color: #007aff; |
||||
background-color: transparent; |
||||
} |
||||
|
||||
.badge-positive { |
||||
color: #fff; |
||||
background-color: #4cd964; |
||||
} |
||||
.badge-positive.badge-inverted { |
||||
color: #4cd964; |
||||
background-color: transparent; |
||||
} |
||||
|
||||
.badge-negative { |
||||
color: #fff; |
||||
background-color: #dd524d; |
||||
} |
||||
.badge-negative.badge-inverted { |
||||
color: #dd524d; |
||||
background-color: transparent; |
||||
} |
||||
|
||||
.card .table-view { |
||||
background-image: none; |
||||
} |
||||
|
||||
.card .table-view-cell:last-child { |
||||
background-image: none; |
||||
} |
||||
|
||||
.table-view { |
||||
border-top: 0; |
||||
border-bottom: 0; |
||||
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>"); |
||||
background-position: 0 100%, 0 0%; |
||||
background-repeat: no-repeat; |
||||
} |
||||
.table-view .table-view-cell { |
||||
border-bottom: 0; |
||||
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>"); |
||||
background-position: 15px 100%; |
||||
background-repeat: no-repeat; |
||||
} |
||||
.table-view .table-view-cell:last-child { |
||||
background-image: none; |
||||
} |
||||
.table-view .table-view-divider { |
||||
border-top: 0; |
||||
border-bottom: 0; |
||||
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>"); |
||||
background-position: 0 100%, 0 0%; |
||||
background-repeat: no-repeat; |
||||
} |
||||
|
||||
select, |
||||
textarea, |
||||
input[type="text"], |
||||
input[type="search"], |
||||
input[type="password"], |
||||
input[type="datetime"], |
||||
input[type="datetime-local"], |
||||
input[type="date"], |
||||
input[type="month"], |
||||
input[type="time"], |
||||
input[type="week"], |
||||
input[type="number"], |
||||
input[type="email"], |
||||
input[type="url"], |
||||
input[type="tel"], |
||||
input[type="color"], |
||||
.input-group { |
||||
height: 40px; |
||||
padding: 10px 15px; |
||||
border: 1px solid rgba(0, 0, 0, 0.2); |
||||
} |
||||
|
||||
input[type="search"] { |
||||
height: 34px; |
||||
text-align: center; |
||||
background-color: rgba(0, 0, 0, 0.1); |
||||
border: 0; |
||||
border-radius: 6px; |
||||
} |
||||
|
||||
input[type="search"]:focus { |
||||
text-align: left; |
||||
} |
||||
|
||||
select, |
||||
textarea, |
||||
.input-group { |
||||
height: auto; |
||||
} |
||||
|
||||
.input-group { |
||||
padding: 0; |
||||
border: 0; |
||||
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>"); |
||||
background-position: 0 100%, 0 0%; |
||||
background-repeat: no-repeat; |
||||
} |
||||
|
||||
.input-group input { |
||||
border: 0; |
||||
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>"); |
||||
background-position: 15px 100%; |
||||
background-repeat: no-repeat; |
||||
} |
||||
|
||||
.input-group input:last-child { |
||||
background-image: none; |
||||
} |
||||
|
||||
.input-row { |
||||
border-bottom: 0; |
||||
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>"); |
||||
background-position: 15px 100%; |
||||
background-repeat: no-repeat; |
||||
} |
||||
|
||||
.input-row:last-child, |
||||
.input-row label + input { |
||||
background-image: none; |
||||
} |
||||
|
||||
.segmented-control { |
||||
background-color: transparent; |
||||
border: 1px solid #929292; |
||||
} |
||||
.segmented-control .control-item { |
||||
color: #929292; |
||||
border-color: #929292; |
||||
-webkit-transition: background-color 0.1s linear; |
||||
-moz-transition: background-color 0.1s linear; |
||||
transition: background-color 0.1s linear; |
||||
} |
||||
.segmented-control .control-item:active { |
||||
background-color: #ebebeb; |
||||
} |
||||
.segmented-control .control-item.active { |
||||
color: #fff; |
||||
background-color: #929292; |
||||
} |
||||
|
||||
.segmented-control-primary { |
||||
border: 1px solid #007aff; |
||||
} |
||||
.segmented-control-primary .control-item { |
||||
color: #007aff; |
||||
border-color: inherit; |
||||
} |
||||
.segmented-control-primary .control-item:active { |
||||
background-color: #b3d7ff; |
||||
} |
||||
.segmented-control-primary .control-item.active { |
||||
color: #fff; |
||||
background-color: #007aff; |
||||
} |
||||
|
||||
.segmented-control-positive { |
||||
border: 1px solid #4cd964; |
||||
} |
||||
.segmented-control-positive .control-item { |
||||
color: #4cd964; |
||||
border-color: inherit; |
||||
} |
||||
.segmented-control-positive .control-item:active { |
||||
background-color: #dff8e3; |
||||
} |
||||
.segmented-control-positive .control-item.active { |
||||
color: #fff; |
||||
background-color: #4cd964; |
||||
} |
||||
|
||||
.segmented-control-negative { |
||||
border: 1px solid #dd524d; |
||||
} |
||||
.segmented-control-negative .control-item { |
||||
color: #dd524d; |
||||
border-color: inherit; |
||||
} |
||||
.segmented-control-negative .control-item:active { |
||||
background-color: #fae4e3; |
||||
} |
||||
.segmented-control-negative .control-item.active { |
||||
color: #fff; |
||||
background-color: #dd524d; |
||||
} |
||||
|
||||
.popover { |
||||
border-radius: 12px; |
||||
-webkit-transition: -webkit-transform .2s ease-in-out, opacity .2s ease-in-out; |
||||
-moz-transition: -moz-transform .2s ease-in-out, opacity .2s ease-in-out; |
||||
transition: transform .2s ease-in-out, opacity .2s ease-in-out; |
||||
-webkit-transition: -webkit-transform 0.2s ease-in-out, opacity 0.2s ease-in-out; |
||||
-moz-transition: -webkit-transform 0.2s ease-in-out, opacity 0.2s ease-in-out; |
||||
transition: -webkit-transform 0.2s ease-in-out, opacity 0.2s ease-in-out; |
||||
} |
||||
.popover:before { |
||||
border-bottom: 15px solid rgba(247, 247, 247, 0.98); |
||||
} |
||||
|
||||
.popover .bar { |
||||
-webkit-box-shadow: none; |
||||
box-shadow: none; |
||||
} |
||||
|
||||
.popover .bar-nav { |
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.15); |
||||
} |
||||
|
||||
.popover .table-view { |
||||
border-radius: 12px; |
||||
background-image: none; |
||||
} |
||||
|
||||
.modal { |
||||
-webkit-transition-timing-function: cubic-bezier(0.1, 0.5, 0.1, 1); |
||||
-moz-transition-timing-function: cubic-bezier(0.1, 0.5, 0.1, 1); |
||||
transition-timing-function: cubic-bezier(0.1, 0.5, 0.1, 1); |
||||
} |
||||
.modal.active { |
||||
-webkit-transition-timing-function: cubic-bezier(0.1, 0.5, 0.1, 1); |
||||
-moz-transition-timing-function: cubic-bezier(0.1, 0.5, 0.1, 1); |
||||
transition-timing-function: cubic-bezier(0.1, 0.5, 0.1, 1); |
||||
} |
||||
|
||||
.toggle { |
||||
width: 47px; |
||||
border: 2px solid #e6e6e6; |
||||
-webkit-box-shadow: inset 0 0 0 0 #e1e1e1; |
||||
box-shadow: inset 0 0 0 0 #e1e1e1; |
||||
-webkit-transition-property: box-shadow, border; |
||||
-moz-transition-property: box-shadow, border; |
||||
transition-property: box-shadow, border; |
||||
-webkit-transition-duration: 0.2s; |
||||
-moz-transition-duration: 0.2s; |
||||
transition-duration: 0.2s; |
||||
} |
||||
.toggle .toggle-handle { |
||||
border: 1px solid rgba(0, 0, 0, 0.2); |
||||
-webkit-transition-property: -webkit-transform, border, width; |
||||
-moz-transition-property: -moz-transform, border, width; |
||||
transition-property: transform, border, width; |
||||
-webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.08); |
||||
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.08); |
||||
} |
||||
.toggle:before { |
||||
display: none; |
||||
} |
||||
.toggle.active { |
||||
border: 2px solid #4cd964; |
||||
background-color: transparent; |
||||
-webkit-box-shadow: inset 0 0 0 13px #4cd964; |
||||
box-shadow: inset 0 0 0 13px #4cd964; |
||||
} |
||||
.toggle.active .toggle-handle { |
||||
-webkit-transform: translate3d(17px, 0, 0); |
||||
-ms-transform: translate3d(17px, 0, 0); |
||||
transform: translate3d(17px, 0, 0); |
||||
} |
||||
.toggle.active .toggle-handle { |
||||
border-color: #4cd964; |
||||
} |
||||
|
||||
.content.fade { |
||||
-webkit-transition: opacity 0.2s ease-in-out; |
||||
-moz-transition: opacity 0.2s ease-in-out; |
||||
transition: opacity 0.2s ease-in-out; |
||||
} |
||||
.content.sliding { |
||||
-webkit-transition-timing-function: cubic-bezier(0.1, 0.5, 0.1, 1); |
||||
-moz-transition-timing-function: cubic-bezier(0.1, 0.5, 0.1, 1); |
||||
transition-timing-function: cubic-bezier(0.1, 0.5, 0.1, 1); |
||||
} |
||||
.content.sliding.sliding-in, .content.sliding.right:not([class*="sliding-in"]) { |
||||
-webkit-animation-name: fadeOverlay; |
||||
-moz-animation-name: fadeOverlay; |
||||
animation-name: fadeOverlay; |
||||
-webkit-animation-duration: 0.4s; |
||||
-moz-animation-duration: 0.4s; |
||||
animation-duration: 0.4s; |
||||
} |
||||
.content.sliding.right:not([class*="sliding-in"]) { |
||||
-webkit-animation-direction: reverse; |
||||
-moz-animation-direction: reverse; |
||||
animation-direction: reverse; |
||||
} |
||||
.content.sliding.left { |
||||
-webkit-transform: translate3d(-20%, 0, 0); |
||||
-ms-transform: translate3d(-20%, 0, 0); |
||||
transform: translate3d(-20%, 0, 0); |
||||
} |
||||
|
||||
@-webkit-keyframes fadeOverlay { |
||||
from { |
||||
-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0), -320px 0 0 rgba(0, 0, 0, 0); |
||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0), -320px 0 0 rgba(0, 0, 0, 0); |
||||
} |
||||
|
||||
to { |
||||
-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3), -320px 0 0 rgba(0, 0, 0, 0.1); |
||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3), -320px 0 0 rgba(0, 0, 0, 0.1); |
||||
} |
||||
} |
@ -0,0 +1,784 @@
|
||||
/* |
||||
* ===================================================== |
||||
* Ratchet v2.0.0 |
||||
* Copyright 2014 Connor Sears |
||||
* Licensed under http://www.opensource.org/licenses/MIT
|
||||
* |
||||
* V2.0.0 designed by @connors. |
||||
* ===================================================== |
||||
*/ |
||||
/* ---------------------------------- |
||||
* MODAL v2.0.0 |
||||
* Licensed under The MIT License |
||||
* http://opensource.org/licenses/MIT
|
||||
* ---------------------------------- */ |
||||
|
||||
!function () { |
||||
var findModals = function (target) { |
||||
var i, modals = document.querySelectorAll('a'); |
||||
for (; target && target !== document; target = target.parentNode) { |
||||
for (i = modals.length; i--;) { if (modals[i] === target) return target; } |
||||
} |
||||
}; |
||||
|
||||
var getModal = function (event) { |
||||
var modalToggle = findModals(event.target); |
||||
if (modalToggle && modalToggle.hash) return document.querySelector(modalToggle.hash); |
||||
}; |
||||
|
||||
window.addEventListener('touchend', function (event) { |
||||
var modal = getModal(event); |
||||
if (modal) { |
||||
if (modal && modal.classList.contains('modal')) modal.classList.toggle('active'); |
||||
event.preventDefault(); // prevents rewriting url (apps can still use hash values in url)
|
||||
} |
||||
}); |
||||
}(); |
||||
|
||||
/* ---------------------------------- |
||||
* POPOVER v2.0.0 |
||||
* Licensed under The MIT License |
||||
* http://opensource.org/licenses/MIT
|
||||
* ---------------------------------- */ |
||||
|
||||
!function () { |
||||
|
||||
var popover; |
||||
|
||||
var findPopovers = function (target) { |
||||
var i, popovers = document.querySelectorAll('a'); |
||||
for (; target && target !== document; target = target.parentNode) { |
||||
for (i = popovers.length; i--;) { if (popovers[i] === target) return target; } |
||||
} |
||||
}; |
||||
|
||||
var onPopoverHidden = function () { |
||||
popover.style.display = 'none'; |
||||
popover.removeEventListener('webkitTransitionEnd', onPopoverHidden); |
||||
} |
||||
|
||||
var backdrop = function () { |
||||
var element = document.createElement('div'); |
||||
|
||||
element.classList.add('backdrop'); |
||||
|
||||
element.addEventListener('touchend', function () { |
||||
popover.addEventListener('webkitTransitionEnd', onPopoverHidden); |
||||
popover.classList.remove('visible'); |
||||
popover.parentNode.removeChild(backdrop); |
||||
}); |
||||
|
||||
return element; |
||||
}(); |
||||
|
||||
var getPopover = function (e) { |
||||
var anchor = findPopovers(e.target); |
||||
|
||||
if (!anchor || !anchor.hash || (anchor.hash.indexOf("/") > 0)) return; |
||||
|
||||
try { |
||||
popover = document.querySelector(anchor.hash); |
||||
} |
||||
catch (error) { |
||||
popover = null; |
||||
} |
||||
|
||||
if (popover == null) return; |
||||
|
||||
if (!popover || !popover.classList.contains('popover')) return; |
||||
|
||||
return popover; |
||||
} |
||||
|
||||
var showHidePopover = function (e) { |
||||
var popover = getPopover(e); |
||||
|
||||
if (!popover) return; |
||||
|
||||
popover.style.display = 'block'; |
||||
popover.offsetHeight; |
||||
popover.classList.add('visible'); |
||||
|
||||
popover.parentNode.appendChild(backdrop); |
||||
}; |
||||
|
||||
window.addEventListener('touchend', showHidePopover); |
||||
window.addEventListener('click', showHidePopover); |
||||
|
||||
}(); |
||||
|
||||
/* ---------------------------------- |
||||
* PUSH v2.0.0 |
||||
* Licensed under The MIT License |
||||
* inspired by chris's jquery.pjax.js |
||||
* http://opensource.org/licenses/MIT
|
||||
* ---------------------------------- */ |
||||
|
||||
!function () { |
||||
|
||||
var noop = function () {}; |
||||
|
||||
|
||||
// Pushstate cacheing
|
||||
// ==================
|
||||
|
||||
var isScrolling; |
||||
var maxCacheLength = 20; |
||||
var cacheMapping = sessionStorage; |
||||
var domCache = {}; |
||||
var transitionMap = { |
||||
'slide-in' : 'slide-out', |
||||
'slide-out' : 'slide-in', |
||||
'fade' : 'fade' |
||||
}; |
||||
|
||||
var bars = { |
||||
bartab : '.bar-tab', |
||||
barnav : '.bar-nav', |
||||
barfooter : '.bar-footer', |
||||
barheadersecondary : '.bar-header-secondary' |
||||
}; |
||||
|
||||
var cacheReplace = function (data, updates) { |
||||
PUSH.id = data.id; |
||||
if (updates) data = getCached(data.id); |
||||
cacheMapping[data.id] = JSON.stringify(data); |
||||
window.history.replaceState(data.id, data.title, data.url); |
||||
domCache[data.id] = document.body.cloneNode(true); |
||||
}; |
||||
|
||||
var cachePush = function () { |
||||
var id = PUSH.id; |
||||
|
||||
var cacheForwardStack = JSON.parse(cacheMapping.cacheForwardStack || '[]'); |
||||
var cacheBackStack = JSON.parse(cacheMapping.cacheBackStack || '[]'); |
||||
|
||||
cacheBackStack.push(id); |
||||
|
||||
while (cacheForwardStack.length) delete cacheMapping[cacheForwardStack.shift()]; |
||||
while (cacheBackStack.length > maxCacheLength) delete cacheMapping[cacheBackStack.shift()]; |
||||
|
||||
window.history.pushState(null, '', cacheMapping[PUSH.id].url); |
||||
|
||||
cacheMapping.cacheForwardStack = JSON.stringify(cacheForwardStack); |
||||
cacheMapping.cacheBackStack = JSON.stringify(cacheBackStack); |
||||
}; |
||||
|
||||
var cachePop = function (id, direction) { |
||||
var forward = direction == 'forward'; |
||||
var cacheForwardStack = JSON.parse(cacheMapping.cacheForwardStack || '[]'); |
||||
var cacheBackStack = JSON.parse(cacheMapping.cacheBackStack || '[]'); |
||||
var pushStack = forward ? cacheBackStack : cacheForwardStack; |
||||
var popStack = forward ? cacheForwardStack : cacheBackStack; |
||||
|
||||
if (PUSH.id) pushStack.push(PUSH.id); |
||||
popStack.pop(); |
||||
|
||||
cacheMapping.cacheForwardStack = JSON.stringify(cacheForwardStack); |
||||
cacheMapping.cacheBackStack = JSON.stringify(cacheBackStack); |
||||
}; |
||||
|
||||
var getCached = function (id) { |
||||
return JSON.parse(cacheMapping[id] || null) || {}; |
||||
}; |
||||
|
||||
var getTarget = function (e) { |
||||
var target = findTarget(e.target); |
||||
|
||||
if ( |
||||
! target |
||||
|| e.which > 1 |
||||
|| e.metaKey |
||||
|| e.ctrlKey |
||||
|| isScrolling |
||||
|| location.protocol !== target.protocol |
||||
|| location.host !== target.host |
||||
|| !target.hash && /#/.test(target.href) |
||||
|| target.hash && target.href.replace(target.hash, '') === location.href.replace(location.hash, '') |
||||
|| target.getAttribute('data-ignore') == 'push' |
||||
) return; |
||||
|
||||
return target; |
||||
}; |
||||
|
||||
|
||||
// Main event handlers (touchend, popstate)
|
||||
// ==========================================
|
||||
|
||||
var touchend = function (e) { |
||||
var target = getTarget(e); |
||||
|
||||
if (!target) return; |
||||
|
||||
e.preventDefault(); |
||||
|
||||
PUSH({ |
||||
url : target.href, |
||||
hash : target.hash, |
||||
timeout : target.getAttribute('data-timeout'), |
||||
transition : target.getAttribute('data-transition') |
||||
}); |
||||
}; |
||||
|
||||
var popstate = function (e) { |
||||
var key; |
||||
var barElement; |
||||
var activeObj; |
||||
var activeDom; |
||||
var direction; |
||||
var transition; |
||||
var transitionFrom; |
||||
var transitionFromObj; |
||||
var id = e.state; |
||||
|
||||
if (!id || !cacheMapping[id]) return; |
||||
|
||||
direction = PUSH.id < id ? 'forward' : 'back'; |
||||
|
||||
cachePop(id, direction); |
||||
|
||||
activeObj = getCached(id); |
||||
activeDom = domCache[id]; |
||||
|
||||
if (activeObj.title) document.title = activeObj.title; |
||||
|
||||
if (direction == 'back') { |
||||
transitionFrom = JSON.parse(direction == 'back' ? cacheMapping.cacheForwardStack : cacheMapping.cacheBackStack); |
||||
transitionFromObj = getCached(transitionFrom[transitionFrom.length - 1]); |
||||
} else { |
||||
transitionFromObj = activeObj; |
||||
} |
||||
|
||||
if (direction == 'back' && !transitionFromObj.id) return PUSH.id = id; |
||||
|
||||
transition = direction == 'back' ? transitionMap[transitionFromObj.transition] : transitionFromObj.transition; |
||||
|
||||
if (!activeDom) { |
||||
return PUSH({ |
||||
id : activeObj.id, |
||||
url : activeObj.url, |
||||
title : activeObj.title, |
||||
timeout : activeObj.timeout, |
||||
transition : transition, |
||||
ignorePush : true |
||||
}); |
||||
} |
||||
|
||||
if (transitionFromObj.transition) { |
||||
activeObj = extendWithDom(activeObj, '.content', activeDom.cloneNode(true)); |
||||
for (key in bars) { |
||||
barElement = document.querySelector(bars[key]) |
||||
if (activeObj[key]) swapContent(activeObj[key], barElement); |
||||
else if (barElement) barElement.parentNode.removeChild(barElement); |
||||
} |
||||
} |
||||
|
||||
swapContent( |
||||
(activeObj.contents || activeDom).cloneNode(true), |
||||
document.querySelector('.content'), |
||||
transition |
||||
); |
||||
|
||||
PUSH.id = id; |
||||
|
||||
document.body.offsetHeight; // force reflow to prevent scroll
|
||||
}; |
||||
|
||||
|
||||
// Core PUSH functionality
|
||||
// =======================
|
||||
|
||||
var PUSH = function (options) { |
||||
var key; |
||||
var data = {}; |
||||
var xhr = PUSH.xhr; |
||||
|
||||
options.container = options.container || options.transition ? document.querySelector('.content') : document.body; |
||||
|
||||
for (key in bars) { |
||||
options[key] = options[key] || document.querySelector(bars[key]); |
||||
} |
||||
|
||||
if (xhr && xhr.readyState < 4) { |
||||
xhr.onreadystatechange = noop; |
||||
xhr.abort() |
||||
} |
||||
|
||||
xhr = new XMLHttpRequest(); |
||||
xhr.open('GET', options.url, true); |
||||
xhr.setRequestHeader('X-PUSH', 'true'); |
||||
|
||||
xhr.onreadystatechange = function () { |
||||
if (options._timeout) clearTimeout(options._timeout); |
||||
if (xhr.readyState == 4) xhr.status == 200 ? success(xhr, options) : failure(options.url); |
||||
}; |
||||
|
||||
if (!PUSH.id) { |
||||
cacheReplace({ |
||||
id : +new Date, |
||||
url : window.location.href, |
||||
title : document.title, |
||||
timeout : options.timeout, |
||||
transition : null |
||||
}); |
||||
} |
||||
|
||||
if (options.timeout) { |
||||
options._timeout = setTimeout(function () { xhr.abort('timeout'); }, options.timeout); |
||||
} |
||||
|
||||
xhr.send(); |
||||
|
||||
if (xhr.readyState && !options.ignorePush) cachePush(); |
||||
}; |
||||
|
||||
|
||||
// Main XHR handlers
|
||||
// =================
|
||||
|
||||
var success = function (xhr, options) { |
||||
var key; |
||||
var barElement; |
||||
var data = parseXHR(xhr, options); |
||||
|
||||
if (!data.contents) return locationReplace(options.url); |
||||
|
||||
if (data.title) document.title = data.title; |
||||
|
||||
if (options.transition) { |
||||
for (key in bars) { |
||||
barElement = document.querySelector(bars[key]) |
||||
if (data[key]) swapContent(data[key], barElement); |
||||
else if (barElement) barElement.parentNode.removeChild(barElement); |
||||
} |
||||
} |
||||
|
||||
swapContent(data.contents, options.container, options.transition, function () { |
||||
cacheReplace({ |
||||
id : options.id || +new Date, |
||||
url : data.url, |
||||
title : data.title, |
||||
timeout : options.timeout, |
||||
transition : options.transition |
||||
}, options.id); |
||||
triggerStateChange(); |
||||
}); |
||||
|
||||
if (!options.ignorePush && window._gaq) _gaq.push(['_trackPageview']) // google analytics
|
||||
if (!options.hash) return; |
||||
}; |
||||
|
||||
var failure = function (url) { |
||||
throw new Error('Could not get: ' + url) |
||||
}; |
||||
|
||||
|
||||
// PUSH helpers
|
||||
// ============
|
||||
|
||||
var swapContent = function (swap, container, transition, complete) { |
||||
var enter; |
||||
var containerDirection; |
||||
var swapDirection; |
||||
|
||||
if (!transition) { |
||||
if (container) container.innerHTML = swap.innerHTML; |
||||
else if (swap.classList.contains('content')) document.body.appendChild(swap); |
||||
else document.body.insertBefore(swap, document.querySelector('.content')); |
||||
} else { |
||||
enter = /in$/.test(transition); |
||||
|
||||
if (transition == 'fade') { |
||||
container.classList.add('in'); |
||||
container.classList.add('fade'); |
||||
swap.classList.add('fade'); |
||||
} |
||||
|
||||
if (/slide/.test(transition)) { |
||||
swap.classList.add('sliding-in', enter ? 'right' : 'left'); |
||||
swap.classList.add('sliding'); |
||||
container.classList.add('sliding'); |
||||
} |
||||
|
||||
container.parentNode.insertBefore(swap, container); |
||||
} |
||||
|
||||
if (!transition) complete && complete(); |
||||
|
||||
if (transition == 'fade') { |
||||
container.offsetWidth; // force reflow
|
||||
container.classList.remove('in'); |
||||
container.addEventListener('webkitTransitionEnd', fadeContainerEnd); |
||||
|
||||
function fadeContainerEnd() { |
||||
container.removeEventListener('webkitTransitionEnd', fadeContainerEnd); |
||||
swap.classList.add('in'); |
||||
swap.addEventListener('webkitTransitionEnd', fadeSwapEnd); |
||||
} |
||||
function fadeSwapEnd () { |
||||
swap.removeEventListener('webkitTransitionEnd', fadeSwapEnd); |
||||
container.parentNode.removeChild(container); |
||||
swap.classList.remove('fade'); |
||||
swap.classList.remove('in'); |
||||
complete && complete(); |
||||
} |
||||
} |
||||
|
||||
if (/slide/.test(transition)) { |
||||
container.offsetWidth; // force reflow
|
||||
swapDirection = enter ? 'right' : 'left' |
||||
containerDirection = enter ? 'left' : 'right' |
||||
container.classList.add(containerDirection); |
||||
swap.classList.remove(swapDirection); |
||||
swap.addEventListener('webkitTransitionEnd', slideEnd); |
||||
|
||||
function slideEnd() { |
||||
swap.removeEventListener('webkitTransitionEnd', slideEnd); |
||||
swap.classList.remove('sliding', 'sliding-in'); |
||||
swap.classList.remove(swapDirection); |
||||
container.parentNode.removeChild(container); |
||||
complete && complete(); |
||||
} |
||||
} |
||||
}; |
||||
|
||||
var triggerStateChange = function () { |
||||
var e = new CustomEvent('push', { |
||||
detail: { state: getCached(PUSH.id) }, |
||||
bubbles: true, |
||||
cancelable: true |
||||
}); |
||||
|
||||
window.dispatchEvent(e); |
||||
}; |
||||
|
||||
var findTarget = function (target) { |
||||
var i, toggles = document.querySelectorAll('a'); |
||||
for (; target && target !== document; target = target.parentNode) { |
||||
for (i = toggles.length; i--;) { if (toggles[i] === target) return target; } |
||||
} |
||||
}; |
||||
|
||||
var locationReplace = function (url) { |
||||
window.history.replaceState(null, '', '#'); |
||||
window.location.replace(url); |
||||
}; |
||||
|
||||
var parseURL = function (url) { |
||||
var a = document.createElement('a'); a.href = url; return a; |
||||
}; |
||||
|
||||
var extendWithDom = function (obj, fragment, dom) { |
||||
var i; |
||||
var result = {}; |
||||
|
||||
for (i in obj) result[i] = obj[i]; |
||||
|
||||
Object.keys(bars).forEach(function (key) { |
||||
var el = dom.querySelector(bars[key]); |
||||
if (el) el.parentNode.removeChild(el); |
||||
result[key] = el; |
||||
}); |
||||
|
||||
result.contents = dom.querySelector(fragment); |
||||
|
||||
return result; |
||||
}; |
||||
|
||||
var parseXHR = function (xhr, options) { |
||||
var head; |
||||
var body; |
||||
var data = {}; |
||||
var responseText = xhr.responseText; |
||||
|
||||
data.url = options.url; |
||||
|
||||
if (!responseText) return data; |
||||
|
||||
if (/<html/i.test(responseText)) { |
||||
head = document.createElement('div'); |
||||
body = document.createElement('div'); |
||||
head.innerHTML = responseText.match(/<head[^>]*>([\s\S.]*)<\/head>/i)[0] |
||||
body.innerHTML = responseText.match(/<body[^>]*>([\s\S.]*)<\/body>/i)[0] |
||||
} else { |
||||
head = body = document.createElement('div'); |
||||
head.innerHTML = responseText; |
||||
} |
||||
|
||||
data.title = head.querySelector('title'); |
||||
data.title = data.title && data.title.innerText.trim(); |
||||
|
||||
if (options.transition) data = extendWithDom(data, '.content', body); |
||||
else data.contents = body; |
||||
|
||||
return data; |
||||
}; |
||||
|
||||
|
||||
// Attach PUSH event handlers
|
||||
// ==========================
|
||||
|
||||
window.addEventListener('touchstart', function () { isScrolling = false; }); |
||||
window.addEventListener('touchmove', function () { isScrolling = true; }) |
||||
window.addEventListener('touchend', touchend); |
||||
window.addEventListener('click', function (e) { if (getTarget(e)) e.preventDefault(); }); |
||||
window.addEventListener('popstate', popstate); |
||||
window.PUSH = PUSH; |
||||
|
||||
}(); |
||||
|
||||
/* ---------------------------------- |
||||
* Segmented controls v2.0.0 |
||||
* Licensed under The MIT License |
||||
* http://opensource.org/licenses/MIT
|
||||
* ---------------------------------- */ |
||||
|
||||
!function () { |
||||
var getTarget = function (target) { |
||||
var i, segmentedControls = document.querySelectorAll('.segmented-control .control-item'); |
||||
for (; target && target !== document; target = target.parentNode) { |
||||
for (i = segmentedControls.length; i--;) { if (segmentedControls[i] === target) return target; } |
||||
} |
||||
}; |
||||
|
||||
window.addEventListener("touchend", function (e) { |
||||
var activeTab; |
||||
var activeBodies; |
||||
var targetBody; |
||||
var targetTab = getTarget(e.target); |
||||
var className = 'active'; |
||||
var classSelector = '.' + className; |
||||
|
||||
if (!targetTab) return; |
||||
|
||||
activeTab = targetTab.parentNode.querySelector(classSelector); |
||||
|
||||
if (activeTab) activeTab.classList.remove(className); |
||||
|
||||
targetTab.classList.add(className); |
||||
|
||||
if (!targetTab.hash) return; |
||||
|
||||
targetBody = document.querySelector(targetTab.hash); |
||||
|
||||
if (!targetBody) return; |
||||
|
||||
activeBodies = targetBody.parentNode.querySelectorAll(classSelector); |
||||
|
||||
for (var i = 0; i < activeBodies.length; i++) { |
||||
activeBodies[i].classList.remove(className); |
||||
} |
||||
|
||||
targetBody.classList.add(className); |
||||
}); |
||||
|
||||
window.addEventListener('click', function (e) { if (getTarget(e.target)) e.preventDefault(); }); |
||||
}(); |
||||
/* ---------------------------------- |
||||
* SLIDER v2.0.0 |
||||
* Licensed under The MIT License |
||||
* Adapted from Brad Birdsall's swipe |
||||
* http://opensource.org/licenses/MIT
|
||||
* ---------------------------------- */ |
||||
|
||||
!function () { |
||||
|
||||
var pageX; |
||||
var pageY; |
||||
var slider; |
||||
var deltaX; |
||||
var deltaY; |
||||
var offsetX; |
||||
var lastSlide; |
||||
var startTime; |
||||
var resistance; |
||||
var sliderWidth; |
||||
var slideNumber; |
||||
var isScrolling; |
||||
var scrollableArea; |
||||
|
||||
var getSlider = function (target) { |
||||
var i, sliders = document.querySelectorAll('.slider > .slide-group'); |
||||
for (; target && target !== document; target = target.parentNode) { |
||||
for (i = sliders.length; i--;) { if (sliders[i] === target) return target; } |
||||
} |
||||
} |
||||
|
||||
var getScroll = function () { |
||||
var translate3d = slider.style.webkitTransform.match(/translate3d\(([^,]*)/); |
||||
return parseInt(translate3d ? translate3d[1] : 0) |
||||
}; |
||||
|
||||
var setSlideNumber = function (offset) { |
||||
var round = offset ? (deltaX < 0 ? 'ceil' : 'floor') : 'round'; |
||||
slideNumber = Math[round](getScroll() / ( scrollableArea / slider.children.length) ); |
||||
slideNumber += offset; |
||||
slideNumber = Math.min(slideNumber, 0); |
||||
slideNumber = Math.max(-(slider.children.length - 1), slideNumber); |
||||
} |
||||
|
||||
var onTouchStart = function (e) { |
||||
slider = getSlider(e.target); |
||||
|
||||
if (!slider) return; |
||||
|
||||
var firstItem = slider.querySelector('.slide'); |
||||
|
||||
scrollableArea = firstItem.offsetWidth * slider.children.length; |
||||
isScrolling = undefined; |
||||
sliderWidth = slider.offsetWidth; |
||||
resistance = 1; |
||||
lastSlide = -(slider.children.length - 1); |
||||
startTime = +new Date; |
||||
pageX = e.touches[0].pageX; |
||||
pageY = e.touches[0].pageY; |
||||
deltaX = 0; |
||||
deltaY = 0; |
||||
|
||||
setSlideNumber(0); |
||||
|
||||
slider.style['-webkit-transition-duration'] = 0; |
||||
}; |
||||
|
||||
var onTouchMove = function (e) { |
||||
if (e.touches.length > 1 || !slider) return; // Exit if a pinch || no slider
|
||||
|
||||
deltaX = e.touches[0].pageX - pageX; |
||||
deltaY = e.touches[0].pageY - pageY; |
||||
pageX = e.touches[0].pageX; |
||||
pageY = e.touches[0].pageY; |
||||
|
||||
if (typeof isScrolling == 'undefined') { |
||||
isScrolling = Math.abs(deltaY) > Math.abs(deltaX); |
||||
} |
||||
|
||||
if (isScrolling) return; |
||||
|
||||
offsetX = (deltaX / resistance) + getScroll(); |
||||
|
||||
e.preventDefault(); |
||||
|
||||
resistance = slideNumber == 0 && deltaX > 0 ? (pageX / sliderWidth) + 1.25 : |
||||
slideNumber == lastSlide && deltaX < 0 ? (Math.abs(pageX) / sliderWidth) + 1.25 : 1; |
||||
|
||||
slider.style.webkitTransform = 'translate3d(' + offsetX + 'px,0,0)'; |
||||
}; |
||||
|
||||
var onTouchEnd = function (e) { |
||||
if (!slider || isScrolling) return; |
||||
|
||||
setSlideNumber( |
||||
(+new Date) - startTime < 1000 && Math.abs(deltaX) > 15 ? (deltaX < 0 ? -1 : 1) : 0 |
||||
); |
||||
|
||||
offsetX = slideNumber * sliderWidth; |
||||
|
||||
slider.style['-webkit-transition-duration'] = '.2s'; |
||||
slider.style.webkitTransform = 'translate3d(' + offsetX + 'px,0,0)'; |
||||
|
||||
e = new CustomEvent('slide', { |
||||
detail: { slideNumber: Math.abs(slideNumber) }, |
||||
bubbles: true, |
||||
cancelable: true |
||||
}); |
||||
|
||||
slider.parentNode.dispatchEvent(e); |
||||
}; |
||||
|
||||
window.addEventListener('touchstart', onTouchStart); |
||||
window.addEventListener('touchmove', onTouchMove); |
||||
window.addEventListener('touchend', onTouchEnd); |
||||
|
||||
}(); |
||||
|
||||
/* ---------------------------------- |
||||
* TOGGLE v2.0.0 |
||||
* Licensed under The MIT License |
||||
* http://opensource.org/licenses/MIT
|
||||
* ---------------------------------- */ |
||||
|
||||
!function () { |
||||
|
||||
var start = {}; |
||||
var touchMove = false; |
||||
var distanceX = false; |
||||
var toggle = false; |
||||
|
||||
var findToggle = function (target) { |
||||
var i, toggles = document.querySelectorAll('.toggle'); |
||||
for (; target && target !== document; target = target.parentNode) { |
||||
for (i = toggles.length; i--;) { if (toggles[i] === target) return target; } |
||||
} |
||||
} |
||||
|
||||
window.addEventListener('touchstart', function (e) { |
||||
e = e.originalEvent || e; |
||||
|
||||
toggle = findToggle(e.target); |
||||
|
||||
if (!toggle) return; |
||||
|
||||
var handle = toggle.querySelector('.toggle-handle'); |
||||
var toggleWidth = toggle.clientWidth; |
||||
var handleWidth = handle.clientWidth; |
||||
var offset = toggle.classList.contains('active') ? (toggleWidth - handleWidth) : 0; |
||||
|
||||
start = { pageX : e.touches[0].pageX - offset, pageY : e.touches[0].pageY }; |
||||
touchMove = false; |
||||
}); |
||||
|
||||
window.addEventListener('touchmove', function (e) { |
||||
e = e.originalEvent || e; |
||||
|
||||
if (e.touches.length > 1) return; // Exit if a pinch
|
||||
|
||||
if (!toggle) return; |
||||
|
||||
var handle = toggle.querySelector('.toggle-handle'); |
||||
var current = e.touches[0]; |
||||
var toggleWidth = toggle.clientWidth; |
||||
var handleWidth = handle.clientWidth; |
||||
var offset = toggleWidth - handleWidth; |
||||
|
||||
touchMove = true; |
||||
distanceX = current.pageX - start.pageX; |
||||
|
||||
if (Math.abs(distanceX) < Math.abs(current.pageY - start.pageY)) return; |
||||
|
||||
e.preventDefault(); |
||||
|
||||
if (distanceX < 0) return handle.style.webkitTransform = 'translate3d(0,0,0)'; |
||||
if (distanceX > offset) return handle.style.webkitTransform = 'translate3d(' + offset + 'px,0,0)'; |
||||
|
||||
handle.style.webkitTransform = 'translate3d(' + distanceX + 'px,0,0)'; |
||||
|
||||
toggle.classList[(distanceX > (toggleWidth/2 - handleWidth/2)) ? 'add' : 'remove']('active'); |
||||
}); |
||||
|
||||
window.addEventListener('touchend', function (e) { |
||||
if (!toggle) return; |
||||
|
||||
var handle = toggle.querySelector('.toggle-handle'); |
||||
var toggleWidth = toggle.clientWidth; |
||||
var handleWidth = handle.clientWidth; |
||||
var offset = (toggleWidth - handleWidth); |
||||
var slideOn = (!touchMove && !toggle.classList.contains('active')) || (touchMove && (distanceX > (toggleWidth/2 - handleWidth/2))); |
||||
|
||||
if (slideOn) handle.style.webkitTransform = 'translate3d(' + offset + 'px,0,0)'; |
||||
else handle.style.webkitTransform = 'translate3d(0,0,0)'; |
||||
|
||||
toggle.classList[slideOn ? 'add' : 'remove']('active'); |
||||
|
||||
e = new CustomEvent('toggle', { |
||||
detail: { isActive: slideOn }, |
||||
bubbles: true, |
||||
cancelable: true |
||||
}); |
||||
|
||||
toggle.dispatchEvent(e); |
||||
|
||||
touchMove = false; |
||||
toggle = false; |
||||
}); |
||||
|
||||
}(); |
After Width: | Height: | Size: 12 KiB |
@ -0,0 +1,74 @@
|
||||
<!DOCTYPE html> |
||||
<html> |
||||
<head> |
||||
<meta charset="utf-8"> |
||||
<title>Ratchet template page</title> |
||||
|
||||
<!-- Sets initial viewport load and disables zooming --> |
||||
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no"> |
||||
|
||||
<!-- Makes your prototype chrome-less once bookmarked to your phone's home screen --> |
||||
<meta name="apple-mobile-web-app-capable" content="yes"> |
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black"> |
||||
|
||||
<!-- Set a shorter title for iOS6 devices when saved to home screen --> |
||||
<meta name="apple-mobile-web-app-title" content="Ratchet"> |
||||
|
||||
<!-- Set Apple icons for when prototype is saved to home screen --> |
||||
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="touch-icons/apple-touch-icon-114x114.png"> |
||||
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="touch-icons/apple-touch-icon-72x72.png"> |
||||
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="touch-icons/apple-touch-icon-57x57.png"> |
||||
|
||||
<!-- Include the compiled Ratchet CSS --> |
||||
<link rel="stylesheet" href="ratchet.css"> |
||||
|
||||
<!-- Include the compiled Ratchet JS --> |
||||
<script src="ratchet.js"></script> |
||||
|
||||
<!-- Intro paragraph styles. Delete once you start using this page --> |
||||
<style type="text/css"> |
||||
.welcome { |
||||
line-height: 1.5; |
||||
color: #555; |
||||
} |
||||
</style> |
||||
|
||||
</head> |
||||
<body> |
||||
|
||||
<!-- Make sure all your bars are the first things in your <body> --> |
||||
<header class="bar bar-nav"> |
||||
<h1 class="title">Ratchet</h1> |
||||
</header> |
||||
|
||||
<!-- Wrap all non-bar HTML in the .content div (this is actually what scrolls) --> |
||||
<div class="content"> |
||||
<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> |
||||
<div class="card"> |
||||
<ul class="table-view"> |
||||
<li class="table-view-cell"> |
||||
<a class="push-right" href="http://goratchet.com"> |
||||
<strong>Ratchet documentation</strong> |
||||
</a> |
||||
</li> |
||||
<li class="table-view-cell"> |
||||
<a class="push-right" href="https://goratchet.com"> |
||||
<strong>Ratchet on Github</strong> |
||||
</a> |
||||
</li> |
||||
<li class="table-view-cell"> |
||||
<a class="push-right" href="https://groups.google.com/forum/#!forum/goratchet"> |
||||
<strong>Ratchet Google group</strong> |
||||
</a> |
||||
</li> |
||||
<li class="table-view-cell"> |
||||
<a class="push-right" href="http://www.twitter.com/GoRatchet"> |
||||
<strong>Ratchet on Twitter</strong> |
||||
</a> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
|
||||
</body> |
||||
</html> |
@ -0,0 +1,56 @@
|
||||
--- |
||||
layout: default |
||||
title: Examples · Ratchet |
||||
--- |
||||
|
||||
<div class="docs-sub-header"> |
||||
{% include masthead.html %} |
||||
<div class="container"> |
||||
<div class="column-group"> |
||||
<div class="column units-2"> |
||||
<div class="docs-sub-content"> |
||||
<h2 class="page-title">Examples</h2> |
||||
<p class="page-description">Take a look at some of these example apps built on Ratchet.</p> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
{% include ad.html %} |
||||
</div> |
||||
</div> |
||||
|
||||
<div class="container"> |
||||
<div class="column-group"> |
||||
<div class="column units-2 lg-units-8 docs-examples"> |
||||
<p class="section-lead">Checkout out the examples on a desktop browser or visit on your mobile device see the apps as intended.</p> |
||||
|
||||
<div class="docs-example-group"> |
||||
<div class="example-wrap"> |
||||
<a class="example" href="../examples/app-movies" data-ignore="push"> |
||||
<img src="../assets/img/example.png"> |
||||
</a> |
||||
<h5>Movie finder</h5> |
||||
</div> |
||||
<div class="example-wrap"> |
||||
<a class="example" href="../examples/app-ios-mail" data-ignore="push"> |
||||
<img src="../assets/img/example-ios.png"> |
||||
</a> |
||||
<h5>iOS mail app</h5> |
||||
</div> |
||||
<div class="example-wrap"> |
||||
<a class="example" href="../examples/app-android-notes" data-ignore="push"> |
||||
<img src="../assets/img/example-android.png"> |
||||
</a> |
||||
<h5>Android notes app</h5> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="column units-2 lg-units-4"> |
||||
{% include download-module.html %} |
||||
</div> |
||||
</div> |
||||
|
||||
<div class="column units-2"> |
||||
<!-- Footer --> |
||||
{% include footer.html %} |
||||
</div> |
||||
</div> |
@ -0,0 +1,5 @@
|
||||
.slider, |
||||
.slider img { |
||||
margin-bottom: 0; |
||||
height: 150px; |
||||
} |
@ -0,0 +1,178 @@
|
||||
<!DOCTYPE html> |
||||
<html> |
||||
<head> |
||||
<meta charset="utf-8"> |
||||
<title>Notes</title> |
||||
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui"> |
||||
<meta name="apple-mobile-web-app-capable" content="yes"> |
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black"> |
||||
|
||||
<link rel="stylesheet" href="../../dist/ratchet.css"> |
||||
<link rel="stylesheet" href="../../dist/ratchet-theme-android.css"> |
||||
<link rel="stylesheet" href="css/app.css"> |
||||
<script src="../../dist/ratchet.js"></script> |
||||
|
||||
|
||||
<!-- Roboto --> |
||||
<link href='http://fonts.googleapis.com/css?family=Roboto:400,700,500' rel='stylesheet' type='text/css'> |
||||
</head> |
||||
<body> |
||||
<header class="bar bar-nav"> |
||||
<a class="icon icon-compose pull-right" href="#composeModal"></a> |
||||
<a href="#navPopover"> |
||||
<h1 class="title"> |
||||
<span class="icon icon-home"></span> |
||||
Notes |
||||
<span class="icon icon-caret"></span> |
||||
</h1> |
||||
</a> |
||||
</header> |
||||
|
||||
<div class="content"> |
||||
|
||||
<ul class="table-view"> |
||||
<li class="table-view-cell"> |
||||
<a class="push-right" href="choose-theater.html" data-transition="slide-in"> |
||||
Note title goes here |
||||
<p>Lorem ipsum dolor sit amet...</p> |
||||
</a> |
||||
</li> |
||||
<li class="table-view-cell"> |
||||
<a class="push-right" href="choose-theater.html" data-transition="slide-in"> |
||||
Note title goes here |
||||
<p>Lorem ipsum dolor sit amet...</p> |
||||
</a> |
||||
</li> |
||||
<li class="table-view-cell"> |
||||
<a class="push-right" href="choose-theater.html" data-transition="slide-in"> |
||||
Note title goes here |
||||
<p>Lorem ipsum dolor sit amet...</p> |
||||
</a> |
||||
</li> |
||||
<li class="table-view-cell"> |
||||
<a class="push-right" href="choose-theater.html" data-transition="slide-in"> |
||||
Note title goes here |
||||
<p>Lorem ipsum dolor sit amet...</p> |
||||
</a> |
||||
</li> |
||||
<li class="table-view-cell"> |
||||
<a class="push-right" href="choose-theater.html" data-transition="slide-in"> |
||||
Note title goes here |
||||
<p>Lorem ipsum dolor sit amet...</p> |
||||
</a> |
||||
</li> |
||||
<li class="table-view-cell"> |
||||
<a class="push-right" href="choose-theater.html" data-transition="slide-in"> |
||||
Note title goes here |
||||
<p>Lorem ipsum dolor sit amet...</p> |
||||
</a> |
||||
</li> |
||||
<li class="table-view-cell"> |
||||
<a class="push-right" href="choose-theater.html" data-transition="slide-in"> |
||||
Note title goes here |
||||
<p>Lorem ipsum dolor sit amet...</p> |
||||
</a> |
||||
</li> |
||||
<li class="table-view-cell"> |
||||
<a class="push-right" href="choose-theater.html" data-transition="slide-in"> |
||||
Note title goes here |
||||
<p>Lorem ipsum dolor sit amet...</p> |
||||
</a> |
||||
</li> |
||||
<li class="table-view-cell"> |
||||
<a class="push-right" href="choose-theater.html" data-transition="slide-in"> |
||||
Note title goes here |
||||
<p>Lorem ipsum dolor sit amet...</p> |
||||
</a> |
||||
</li> |
||||
<li class="table-view-cell"> |
||||
<a class="push-right" href="choose-theater.html" data-transition="slide-in"> |
||||
Note title goes here |
||||
<p>Lorem ipsum dolor sit amet...</p> |
||||
</a> |
||||
</li> |
||||
<li class="table-view-cell"> |
||||
<a class="push-right" href="choose-theater.html" data-transition="slide-in"> |
||||
Note title goes here |
||||
<p>Lorem ipsum dolor sit amet...</p> |
||||
</a> |
||||
</li> |
||||
<li class="table-view-cell"> |
||||
<a class="push-right" href="choose-theater.html" data-transition="slide-in"> |
||||
Note title goes here |
||||
<p>Lorem ipsum dolor sit amet...</p> |
||||
</a> |
||||
</li> |
||||
<li class="table-view-cell"> |
||||
<a class="push-right" href="choose-theater.html" data-transition="slide-in"> |
||||
Note title goes here |
||||
<p>Lorem ipsum dolor sit amet...</p> |
||||
</a> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
|
||||
<!-- Settings modal --> |
||||
<div id="composeModal" class="modal"> |
||||
<header class="bar bar-nav"> |
||||
<a class="icon icon-close pull-right" href="#composeModal"></a> |
||||
<h1 class="title"> |
||||
<span class="icon icon-gear"></span> |
||||
Settings |
||||
</h1> |
||||
</header> |
||||
|
||||
<div class="content"> |
||||
<h5>User settings</h5> |
||||
|
||||
<form class="input-group"> |
||||
<input type="text" placeholder="Full name"> |
||||
<input type="email" placeholder="Email"> |
||||
<input type="text" placeholder="Username"> |
||||
</form> |
||||
|
||||
<h5>App settings</h5> |
||||
|
||||
<ul class="table-view"> |
||||
<li class="table-view-cell media"> |
||||
<span class="media-object pull-left icon icon-sound"></span> |
||||
<div class="media-body"> |
||||
Enable sounds |
||||
</div> |
||||
<div class="toggle"> |
||||
<div class="toggle-handle"></div> |
||||
</div> |
||||
</li> |
||||
<li class="table-view-cell media"> |
||||
<span class="media-object pull-left icon icon-person"></span> |
||||
<div class="media-body"> |
||||
Parental controls |
||||
</div> |
||||
<div class="toggle"> |
||||
<div class="toggle-handle"></div> |
||||
</div> |
||||
</li> |
||||
</ul> |
||||
<div class="container"> |
||||
<a class="btn btn-positive btn-block">Save settings</a> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
|
||||
<!-- Popover --> |
||||
<div id="navPopover" class="popover"> |
||||
<ul class="table-view"> |
||||
<li class="table-view-cell">Item1</li> |
||||
<li class="table-view-cell">Item2</li> |
||||
<li class="table-view-cell">Item3</li> |
||||
<li class="table-view-cell">Item4</li> |
||||
<li class="table-view-cell">Item5</li> |
||||
<li class="table-view-cell">Item6</li> |
||||
<li class="table-view-cell">Item7</li> |
||||
<li class="table-view-cell">Item8</li> |
||||
<li class="table-view-cell">Item9</li> |
||||
<li class="table-view-cell">Item10</li> |
||||
</ul> |
||||
</div> |
||||
</body> |
||||
</html> |
@ -0,0 +1,12 @@
|
||||
.updated-text { |
||||
position: absolute; |
||||
left: 0; |
||||
right: 0; |
||||
padding: 10px 0; |
||||
font-size: 11px; |
||||
text-align: center; |
||||
} |
||||
|
||||
.table-view-cell .icon { |
||||
color: #007aff; |
||||
} |
@ -0,0 +1,118 @@
|
||||
<!DOCTYPE html> |
||||
<html> |
||||
<head> |
||||
<meta charset="utf-8"> |
||||
<title>Mail</title> |
||||
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui"> |
||||
<meta name="apple-mobile-web-app-capable" content="yes"> |
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black"> |
||||
|
||||
<link rel="stylesheet" href="../../dist/ratchet.css"> |
||||
<link rel="stylesheet" href="../../dist/ratchet-theme-ios.css"> |
||||
<link rel="stylesheet" href="css/app.css"> |
||||
<script src="../../dist/ratchet.js"></script> |
||||
</head> |
||||
<body> |
||||
<header class="bar bar-nav"> |
||||
<a class="icon icon-left-nav pull-left" href="index.html" data-transition="slide-out"></a> |
||||
<a class="icon icon-refresh pull-right"></a> |
||||
<h1 class="title">All inboxes</h1> |
||||
</header> |
||||
|
||||
<div class="content"> |
||||
|
||||
<ul class="table-view"> |
||||
<li class="table-view-cell"> |
||||
<a class="push-right" href="#"> |
||||
Email subject line here |
||||
<p>Lorem ipsum dolor sit amet...</p> |
||||
</a> |
||||
</li> |
||||
<li class="table-view-cell"> |
||||
<a class="push-right" href="#"> |
||||
Email subject line here |
||||
<p>Lorem ipsum dolor sit amet...</p> |
||||
</a> |
||||
</li> |
||||
<li class="table-view-cell"> |
||||
<a class="push-right" href="#"> |
||||
Email subject line here |
||||
<p>Lorem ipsum dolor sit amet...</p> |
||||
</a> |
||||
</li> |
||||
<li class="table-view-cell"> |
||||
<a class="push-right" href="#"> |
||||
Email subject line here |
||||
<p>Lorem ipsum dolor sit amet...</p> |
||||
</a> |
||||
</li> |
||||
<li class="table-view-cell"> |
||||
<a class="push-right" href="#"> |
||||
Email subject line here |
||||
<p>Lorem ipsum dolor sit amet...</p> |
||||
</a> |
||||
</li> |
||||
<li class="table-view-cell"> |
||||
<a class="push-right" href="#"> |
||||
Email subject line here |
||||
<p>Lorem ipsum dolor sit amet...</p> |
||||
</a> |
||||
</li> |
||||
<li class="table-view-cell"> |
||||
<a class="push-right" href="#"> |
||||
Email subject line here |
||||
<p>Lorem ipsum dolor sit amet...</p> |
||||
</a> |
||||
</li> |
||||
<li class="table-view-cell"> |
||||
<a class="push-right" href="#"> |
||||
Email subject line here |
||||
<p>Lorem ipsum dolor sit amet...</p> |
||||
</a> |
||||
</li> |
||||
<li class="table-view-cell"> |
||||
<a class="push-right" href="#"> |
||||
Email subject line here |
||||
<p>Lorem ipsum dolor sit amet...</p> |
||||
</a> |
||||
</li> |
||||
<li class="table-view-cell"> |
||||
<a class="push-right" href="#"> |
||||
Email subject line here |
||||
<p>Lorem ipsum dolor sit amet...</p> |
||||
</a> |
||||
</li> |
||||
<li class="table-view-cell"> |
||||
<a class="push-right" href="#"> |
||||
Email subject line here |
||||
<p>Lorem ipsum dolor sit amet...</p> |
||||
</a> |
||||
</li> |
||||
<li class="table-view-cell"> |
||||
<a class="push-right" href="#"> |
||||
Email subject line here |
||||
<p>Lorem ipsum dolor sit amet...</p> |
||||
</a> |
||||
</li> |
||||
<li class="table-view-cell"> |
||||
<a class="push-right" href="#"> |
||||
Email subject line here |
||||
<p>Lorem ipsum dolor sit amet...</p> |
||||
</a> |
||||
</li> |
||||
<li class="table-view-cell"> |
||||
<a class="push-right" href="#"> |
||||
Email subject line here |
||||
<p>Lorem ipsum dolor sit amet...</p> |
||||
</a> |
||||
</li> |
||||
<li class="table-view-cell"> |
||||
<a class="push-right" href="#"> |
||||
Email subject line here |
||||
<p>Lorem ipsum dolor sit amet...</p> |
||||
</a> |
||||
</li> |
||||
</ul> |
||||
</div><!-- /.content --> |
||||
</body> |
||||
</html> |
@ -0,0 +1,98 @@
|
||||
<!DOCTYPE html> |
||||
<html> |
||||
<head> |
||||
<meta charset="utf-8"> |
||||
<title>Mail</title> |
||||
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui"> |
||||
<meta name="apple-mobile-web-app-capable" content="yes"> |
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black"> |
||||
|
||||
<link rel="stylesheet" href="../../dist/ratchet.css"> |
||||
<link rel="stylesheet" href="../../dist/ratchet-theme-ios.css"> |
||||
<link rel="stylesheet" href="css/app.css"> |
||||
<script src="../../dist/ratchet.js"></script> |
||||
</head> |
||||
<body> |
||||
<header class="bar bar-nav"> |
||||
<a class="icon icon-refresh pull-right"></a> |
||||
<h1 class="title">Mailboxes</h1> |
||||
</header> |
||||
|
||||
<div class="bar bar-footer"> |
||||
<a class="icon icon-compose pull-right" href="#composeModal"></a> |
||||
<small class="updated-text">Updated just now</small> |
||||
</div> |
||||
|
||||
<div class="content"> |
||||
|
||||
<ul class="table-view"> |
||||
<li class="table-view-cell media"> |
||||
<a class="push-right" href="inbox.html" data-transition="slide-in"> |
||||
<span class="media-object icon icon-pages pull-left"></span> |
||||
<div class="media-body"> |
||||
All inboxes |
||||
</div> |
||||
</a> |
||||
</li> |
||||
<li class="table-view-cell media"> |
||||
<a class="push-right" href="inbox.html" data-transition="slide-in"> |
||||
<span class="media-object icon icon-person pull-left"></span> |
||||
<div class="media-body"> |
||||
Personal email |
||||
</div> |
||||
</a> |
||||
</li> |
||||
<li class="table-view-cell media"> |
||||
<a class="push-right" href="inbox.html" data-transition="slide-in"> |
||||
<span class="media-object icon icon-star-filled pull-left"></span> |
||||
<div class="media-body"> |
||||
Starred |
||||
</div> |
||||
</a> |
||||
</li> |
||||
<li class="table-view-cell media"> |
||||
<a class="push-right" href="inbox.html" data-transition="slide-in"> |
||||
<span class="media-object icon icon-trash pull-left"></span> |
||||
<div class="media-body"> |
||||
Trash |
||||
</div> |
||||
</a> |
||||
</li> |
||||
</ul> |
||||
|
||||
<h5 class="content-padded">Other accounts</h5> |
||||
<ul class="table-view"> |
||||
<li class="table-view-cell media"> |
||||
<a class="push-right" href="inbox.html" data-transition="slide-in"> |
||||
<span class="media-object icon icon-more pull-left"></span> |
||||
<div class="media-body"> |
||||
Misc |
||||
</div> |
||||
</a> |
||||
</li> |
||||
</ul> |
||||
</div><!-- /.content --> |
||||
|
||||
<!-- Compose modal --> |
||||
<div id="composeModal" class="modal"> |
||||
<header class="bar bar-nav"> |
||||
<a class="btn btn-link pull-right" href="#composeModal"> |
||||
<strong>Send</strong> |
||||
</a> |
||||
<a class="btn btn-link pull-left" href="#composeModal"> |
||||
Cancel |
||||
</a> |
||||
<h1 class="title">New message</h1> |
||||
</header> |
||||
|
||||
<div class="content"> |
||||
<form class="input-group"> |
||||
<input type="text" placeholder="To:"> |
||||
<input type="email" placeholder="From:"> |
||||
<input type="text" placeholder="Subject:"> |
||||
<textarea rows="20"></textarea> |
||||
</form> |
||||
</div> |
||||
</div><!-- /.modal --> |
||||
</body> |
||||
</html> |
@ -0,0 +1,85 @@
|
||||
<!DOCTYPE html> |
||||
<html> |
||||
<head> |
||||
<meta charset="utf-8"> |
||||
<title>Movie finder</title> |
||||
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui"> |
||||
<meta name="apple-mobile-web-app-capable" content="yes"> |
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black"> |
||||
|
||||
<link rel="stylesheet" href="../../dist/ratchet.css"> |
||||
<link rel="stylesheet" href="css/app.css"> |
||||
<script src="../../dist/ratchet.js"></script> |
||||
</head> |
||||
<body> |
||||
<header class="bar bar-nav"> |
||||
<a class="btn btn-link btn-nav pull-left" href="index.html" data-transition="slide-out"> |
||||
<span class="icon icon-left-nav"></span> |
||||
Back |
||||
</a> |
||||
<h1 class="title">Argo</h1> |
||||
</header> |
||||
|
||||
<div class="bar bar-standard bar-header-secondary"> |
||||
<form> |
||||
<input type="search" placeholder="Search theaters"> |
||||
</form> |
||||
</div> |
||||
|
||||
<div class="content"> |
||||
<ul class="table-view"> |
||||
<li class="table-view-cell table-view-divider">Theaters nearby</li> |
||||
<li class="table-view-cell"> |
||||
Metreon 16 |
||||
<p>1.3 miles away</p> |
||||
<a class="btn btn-outlined btn-positive" href="#">Buy Tickets</a> |
||||
</li> |
||||
<li class="table-view-cell"> |
||||
AMC 5 |
||||
<p>3.5 miles away</p> |
||||
<a class="btn btn-outlined btn-positive" href="#">Buy Tickets</a> |
||||
</li> |
||||
<li class="table-view-cell"> |
||||
Regal 42 |
||||
<p>7.3 miles away</p> |
||||
<a class="btn btn-outlined btn-positive" href="#">Buy Tickets</a> |
||||
</li> |
||||
<li class="table-view-cell"> |
||||
Shorline theater |
||||
<p>12.5 miles away</p> |
||||
<a class="btn btn-outlined btn-positive" href="#">Buy Tickets</a> |
||||
</li> |
||||
<li class="table-view-cell"> |
||||
AMC 16 |
||||
<p>12.2 miles away</p> |
||||
<a class="btn btn-outlined btn-positive" href="#">Buy Tickets</a> |
||||
</li> |
||||
<li class="table-view-cell"> |
||||
BW3 16 |
||||
<p>13.4 miles away</p> |
||||
<a class="btn btn-outlined btn-positive" href="#">Buy Tickets</a> |
||||
</li> |
||||
<li class="table-view-cell"> |
||||
MC Hammer 16 |
||||
<p>14.1 miles away</p> |
||||
<a class="btn btn-outlined btn-positive" href="#">Buy Tickets</a> |
||||
</li> |
||||
<li class="table-view-cell"> |
||||
AMC 3 |
||||
<p>14.3 miles away</p> |
||||
<a class="btn btn-outlined btn-positive" href="#">Buy Tickets</a> |
||||
</li> |
||||
<li class="table-view-cell"> |
||||
AMC 2 |
||||
<p>14.7 miles away</p> |
||||
<a class="btn btn-outlined btn-positive" href="#">Buy Tickets</a> |
||||
</li> |
||||
<li class="table-view-cell"> |
||||
AMC 10 |
||||
<p>15 miles away</p> |
||||
<a class="btn btn-outlined btn-positive" href="#">Buy Tickets</a> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</body> |
||||
</html> |
@ -0,0 +1,8 @@
|
||||
.slider, |
||||
.slider img { |
||||
margin-bottom: 0; |
||||
height: 150px; |
||||
} |
||||
.content-padded { |
||||
margin: 30px 15px 15px; |
||||
} |
Before Width: | Height: | Size: 257 KiB After Width: | Height: | Size: 257 KiB |
Before Width: | Height: | Size: 49 KiB After Width: | Height: | Size: 49 KiB |
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 30 KiB |
@ -0,0 +1,170 @@
|
||||
<!DOCTYPE html> |
||||
<html> |
||||
<head> |
||||
<meta charset="utf-8"> |
||||
<title>Movie finder</title> |
||||
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui"> |
||||
<meta name="apple-mobile-web-app-capable" content="yes"> |
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black"> |
||||
|
||||
<link rel="stylesheet" href="../../dist/ratchet.css"> |
||||
<link rel="stylesheet" href="css/app.css"> |
||||
<script src="../../dist/ratchet.js"></script> |
||||
</head> |
||||
<body> |
||||
<header class="bar bar-nav"> |
||||
<a class="icon icon-gear pull-right" href="#settingsModal" ></a> |
||||
<h1 class="title">Movie finder</h1> |
||||
</header> |
||||
|
||||
<div class="bar bar-standard bar-header-secondary"> |
||||
<form> |
||||
<input type="search" placeholder="Search"> |
||||
</form> |
||||
</div> |
||||
|
||||
<div class="content"> |
||||
|
||||
<div class="slider"> |
||||
<div class="slide-group"> |
||||
<div class="slide"> |
||||
<img src="img/argo.png"> |
||||
</div> |
||||
<div class="slide"> |
||||
<img src="img/skyfall.png"> |
||||
</div> |
||||
<div class="slide"> |
||||
<img src="img/ralph.png"> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
|
||||
<ul class="table-view"> |
||||
<li class="table-view-cell table-view-divider">Recommended movies</li> |
||||
<li class="table-view-cell media"> |
||||
<a class="push-right" href="choose-theater.html" data-transition="slide-in"> |
||||
<img class="media-object pull-left" src="http://placehold.it/64x64"> |
||||
<div class="media-body"> |
||||
Argo |
||||
<p>Lorem ipsum dolor sit amet, consectetur.</p> |
||||
</div> |
||||
</a> |
||||
</li> |
||||
<li class="table-view-cell media"> |
||||
<a class="push-right" href="choose-theater.html" data-transition="slide-in"> |
||||
<img class="media-object pull-left" src="http://placehold.it/64x64"> |
||||
<div class="media-body"> |
||||
Skyfall: 007 |
||||
<p>Lorem ipsum dolor sit amet, consectetur.</p> |
||||
</div> |
||||
</a> |
||||
</li> |
||||
<li class="table-view-cell media"> |
||||
<a class="push-right" href="choose-theater.html" data-transition="slide-in"> |
||||
<img class="media-object pull-left" src="http://placehold.it/64x64"> |
||||
<div class="media-body"> |
||||
Wreck-it Ralph |
||||
<p>Lorem ipsum dolor sit amet, consectetur.</p> |
||||
</div> |
||||
</a> |
||||
</li> |
||||
<li class="table-view-cell media"> |
||||
<a class="push-right" href="choose-theater.html" data-transition="slide-in"> |
||||
<img class="media-object pull-left" src="http://placehold.it/64x64"> |
||||
<div class="media-body"> |
||||
Argo |
||||
<p>Lorem ipsum dolor sit amet, consectetur.</p> |
||||
</div> |
||||
</a> |
||||
</li> |
||||
<li class="table-view-cell media"> |
||||
<a class="push-right" href="choose-theater.html" data-transition="slide-in"> |
||||
<img class="media-object pull-left" src="http://placehold.it/64x64"> |
||||
<div class="media-body"> |
||||
Skyfall: 007 |
||||
<p>Lorem ipsum dolor sit amet, consectetur.</p> |
||||
</div> |
||||
</a> |
||||
</li> |
||||
<li class="table-view-cell media"> |
||||
<a class="push-right" href="choose-theater.html" data-transition="slide-in"> |
||||
<img class="media-object pull-left" src="http://placehold.it/64x64"> |
||||
<div class="media-body"> |
||||
Wreck-it Ralph |
||||
<p>Lorem ipsum dolor sit amet, consectetur.</p> |
||||
</div> |
||||
</a> |
||||
</li> |
||||
<li class="table-view-cell media"> |
||||
<a class="push-right" href="choose-theater.html" data-transition="slide-in"> |
||||
<img class="media-object pull-left" src="http://placehold.it/64x64"> |
||||
<div class="media-body"> |
||||
Argo |
||||
<p>Lorem ipsum dolor sit amet, consectetur.</p> |
||||
</div> |
||||
</a> |
||||
</li> |
||||
<li class="table-view-cell media"> |
||||
<a class="push-right" href="choose-theater.html" data-transition="slide-in"> |
||||
<img class="media-object pull-left" src="http://placehold.it/64x64"> |
||||
<div class="media-body"> |
||||
Skyfall: 007 |
||||
<p>Lorem ipsum dolor sit amet, consectetur.</p> |
||||
</div> |
||||
</a> |
||||
</li> |
||||
<li class="table-view-cell media"> |
||||
<a class="push-right" href="choose-theater.html" data-transition="slide-in"> |
||||
<img class="media-object pull-left" src="http://placehold.it/64x64"> |
||||
<div class="media-body"> |
||||
Wreck-it Ralph |
||||
<p>Lorem ipsum dolor sit amet, consectetur.</p> |
||||
</div> |
||||
</a> |
||||
</li> |
||||
</ul> |
||||
</div><!-- /.content --> |
||||
|
||||
<!-- Settings modal --> |
||||
<div id="settingsModal" class="modal"> |
||||
<header class="bar bar-nav"> |
||||
<a class="icon icon-close pull-right" href="#settingsModal"></a> |
||||
<h1 class="title">Settings</h1> |
||||
</header> |
||||
|
||||
<div class="content"> |
||||
<form class="input-group"> |
||||
<input type="text" placeholder="Full name"> |
||||
<input type="email" placeholder="Email"> |
||||
<input type="text" placeholder="Username"> |
||||
</form> |
||||
|
||||
<h5 class="content-padded">App settings</h5> |
||||
|
||||
<ul class="table-view"> |
||||
<li class="table-view-cell media"> |
||||
<span class="media-object pull-left icon icon-sound"></span> |
||||
<div class="media-body"> |
||||
Enable sounds |
||||
</div> |
||||
<div class="toggle"> |
||||
<div class="toggle-handle"></div> |
||||
</div> |
||||
</li> |
||||
<li class="table-view-cell media"> |
||||
<span class="media-object pull-left icon icon-person"></span> |
||||
<div class="media-body"> |
||||
Parental controls |
||||
</div> |
||||
<div class="toggle"> |
||||
<div class="toggle-handle"></div> |
||||
</div> |
||||
</li> |
||||
</ul> |
||||
<div class="container"> |
||||
<a class="btn btn-positive btn-block content-padded">Save settings</a> |
||||
</div> |
||||
</div> |
||||
</div><!-- /.modal --> |
||||
</body> |
||||
</html> |
@ -0,0 +1,134 @@
|
||||
--- |
||||
layout: default |
||||
title: Getting started · Ratchet |
||||
--- |
||||
|
||||
<div class="docs-sub-header"> |
||||
{% include masthead.html %} |
||||
<div class="container"> |
||||
<div class="column-group"> |
||||
<div class="column units-2"> |
||||
<div class="docs-sub-content"> |
||||
<h2 class="page-title">Getting started</h2> |
||||
<p class="page-description">Once you've downloaded Ratchet, here's what to do next.</p> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
{% include ad.html %} |
||||
</div> |
||||
</div> |
||||
|
||||
<div class="container"> |
||||
<div class="column-group"> |
||||
<div class="column units-2 lg-units-8"> |
||||
<ol class="docs-steps"> |
||||
<li class="step"> |
||||
<h3 class="step-title">1. Create your pages</h3> |
||||
<p class="step-description">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><head></code> if you have a specific platform in mind.</p> |
||||
</li> |
||||
<li class="step"> |
||||
<h3 class="step-title">2. Connect pages with push.js</h3> |
||||
<p class="step-description">Read about <a href="/components/#push" data-ignore="push">push.js</a> then start connecting your pages. Push.js allows you to create a prototype that feels like a real app when you save it to your phone. (Need to have a server running).</p> |
||||
</li> |
||||
<li class="step"> |
||||
<h3 class="step-title">3. Save the prototype to your phone</h3> |
||||
<p class="step-description">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://developers.google.com/chrome/mobile/docs/installtohomescreen" data-ignore="push">this guide</a>.</p> |
||||
</li> |
||||
</ol> |
||||
|
||||
<hr> |
||||
|
||||
<h2 class="section-heading">Page setup</h2> |
||||
<p class="section-lead">Three simple rules for structuring your Ratchet pages</p> |
||||
<ol class="docs-steps"> |
||||
<li class="step"> |
||||
<h3 class="step-title">1. Fixed bars come first</h3> |
||||
<p class="step-description">All fixed bars (<code>.bar</code>) should always be the first thing in the <code><body></code> of the page. This is really important!</p> |
||||
</li> |
||||
<li class="step"> |
||||
<h3 class="step-title">2. Everything else goes in <code>.content</code></h3> |
||||
<p class="step-description">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><body></code> tag. The <code>.content</code> div is what actually scrolls in a Ratchet prototype.</p> |
||||
</li> |
||||
<li class="step"> |
||||
<h3 class="step-title">3. Don't forget your meta tags</h3> |
||||
<p class="step-description">They're included in the template.html page included in the download, but make sure they stay in the page. They are important to Ratchet working just right.</p> |
||||
</li> |
||||
</ol> |
||||
|
||||
|
||||
<hr> |
||||
|
||||
<h2 id="pageLayout" class="section-heading">Basic template</h2> |
||||
<p class="section-lead">Use this basic template to get your app started.</p> |
||||
{% highlight html %} |
||||
<!DOCTYPE html> |
||||
<html> |
||||
<head> |
||||
<meta charset="utf-8"> |
||||
<title>Ratchet template page</title> |
||||
|
||||
<!-- Sets initial viewport load and disables zooming --> |
||||
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no"> |
||||
|
||||
<!-- Makes your prototype chrome-less once bookmarked to your phone's home screen --> |
||||
<meta name="apple-mobile-web-app-capable" content="yes"> |
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black"> |
||||
|
||||
<!-- Include the compiled Ratchet CSS --> |
||||
<link href="ratchet.css" rel="stylesheet"> |
||||
|
||||
<!-- Include the compiled Ratchet JS --> |
||||
<script src="ratchet.js"></script> |
||||
|
||||
</head> |
||||
<body> |
||||
|
||||
<!-- Make sure all your bars are the first things in your <body> --> |
||||
<header class="bar bar-nav"> |
||||
<h1 class="title">Ratchet</h1> |
||||
</header> |
||||
|
||||
<!-- Wrap all non-bar HTML in the .content div (this is actually what scrolls) --> |
||||
<div class="content"> |
||||
<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> |
||||
<div class="card"> |
||||
<ul class="table-view"> |
||||
<li class="table-view-cell"> |
||||
<a class="push-right" href="http://goratchet.com"> |
||||
<strong>Ratchet documentation</strong> |
||||
</a> |
||||
</li> |
||||
<li class="table-view-cell"> |
||||
<a class="push-right" href="https://www.github.com/twbs/ratchet/"> |
||||
<strong>Ratchet on Github</strong> |
||||
</a> |
||||
</li> |
||||
<li class="table-view-cell"> |
||||
<a class="push-right" href="https://groups.google.com/forum/#!forum/goratchet"> |
||||
<strong>Ratchet Google group</strong> |
||||
</a> |
||||
</li> |
||||
<li class="table-view-cell"> |
||||
<a class="push-right" href="http://www.twitter.com/GoRatchet"> |
||||
<strong>Ratchet on Twitter</strong> |
||||
</a> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
|
||||
</body> |
||||
</html> |
||||
{% endhighlight %} |
||||
</div> |
||||
|
||||
<div class="column units-2 lg-units-4"> |
||||
{% include download-module.html %} |
||||
</div> |
||||
</div> |
||||
|
||||
<div class="column units-2"> |
||||
<!-- Footer --> |
||||
{% include footer.html %} |
||||
</div> |
||||
</div> |
Before Width: | Height: | Size: 56 KiB |
Before Width: | Height: | Size: 49 KiB |
Before Width: | Height: | Size: 46 KiB |
Before Width: | Height: | Size: 42 KiB |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 56 KiB |
Before Width: | Height: | Size: 23 KiB |
Before Width: | Height: | Size: 48 KiB |
Before Width: | Height: | Size: 48 KiB |
Before Width: | Height: | Size: 45 KiB |
@ -1,128 +0,0 @@
|
||||
$(function() { |
||||
|
||||
var doc; |
||||
var iphone; |
||||
var windowWidth; |
||||
var windowHeight; |
||||
var pageHeight; |
||||
var contentPadding; |
||||
var footerHeight; |
||||
var noticeBanner; |
||||
var componentsList; |
||||
var navComponentLinks; |
||||
var contentSection; |
||||
var currentActive; |
||||
var topCache; |
||||
var eventListeners; |
||||
|
||||
prettyPrint(); |
||||
|
||||
var initialize = function () { |
||||
currentActive = 0; |
||||
topCache = []; |
||||
win = $(window); |
||||
doc = $(document); |
||||
bod = $(document.body) |
||||
iphone = iphone || $('.iphone'); |
||||
noticeBanner = $('.notice-banner'); |
||||
navComponentLinks = $('.nav-components-link'); |
||||
componentsList = $('.components-list'); |
||||
componentLinks = $('.component-example a'); |
||||
contentSection = $('.component'); |
||||
topCache = contentSection.map(function () { return $(this).offset().top }) |
||||
windowHeight = $(window).height() / 3 |
||||
pageHeight = $(document).height(); |
||||
contentPadding = parseInt($('.docs-content').css('padding-bottom')); |
||||
footerHeight = $('.docs-footer').outerHeight(false); |
||||
|
||||
iphone.initialLeft = iphone.offset().left; |
||||
iphone.initialTop = iphone.initialTop || iphone.offset().top; |
||||
iphone.dockingOffset = ($(window).height() + 20 + $('.docs-masthead').height() - iphone.height())/2; |
||||
checkDesktopContent(); |
||||
calculateScroll(); |
||||
|
||||
if (!eventListeners) addEventListeners(); |
||||
} |
||||
|
||||
var addEventListeners = function () { |
||||
eventListeners = true; |
||||
|
||||
noticeBanner.on('click', function () { |
||||
$(this).hide(); |
||||
}); |
||||
|
||||
iphone.on('click', function (e) { |
||||
e.preventDefault(); |
||||
}); |
||||
|
||||
navComponentLinks.click(function(e) { |
||||
e.stopPropagation(); |
||||
e.preventDefault(); |
||||
componentsList.toggleClass('active'); |
||||
}) |
||||
|
||||
doc.on('click', function () { |
||||
componentsList.removeClass('active'); |
||||
}) |
||||
|
||||
win.on('scroll', calculateScroll); |
||||
} |
||||
|
||||
var checkDesktopContent = function () { |
||||
windowWidth = $(window).width(); |
||||
if (windowWidth <= 768) { |
||||
var content = $('.content') |
||||
if (content.length > 1) { |
||||
$(content[0]).remove() |
||||
} |
||||
} |
||||
} |
||||
|
||||
var calculateScroll = function() { |
||||
// if small screen don't worry about this
|
||||
if (windowWidth <= 768) return |
||||
|
||||
// Save scrollTop value
|
||||
var contentSectionItem; |
||||
var currentTop = win.scrollTop(); |
||||
|
||||
// If page is scrolled to bottom near footers
|
||||
if(pageHeight - currentTop < footerHeight + contentPadding + 1400) { |
||||
iphone[0].className = "iphone iphone-bottom"; |
||||
iphone[0].setAttribute('style','') |
||||
} else if((iphone.initialTop - currentTop) <= iphone.dockingOffset) { |
||||
iphone[0].className = "iphone iphone-fixed"; |
||||
iphone.css({top: iphone.dockingOffset}) |
||||
} else { |
||||
iphone[0].className = "iphone" |
||||
iphone[0].setAttribute('style','') |
||||
} |
||||
|
||||
// Injection of components into phone
|
||||
for (var l = contentSection.length; l--;) { |
||||
if ((topCache[l] - currentTop) < windowHeight) { |
||||
if (currentActive == l) return; |
||||
currentActive = l; |
||||
bod.find('.component.active').removeClass('active'); |
||||
contentSectionItem = $(contentSection[l]) |
||||
contentSectionItem.addClass('active') |
||||
if(contentSectionItem.attr('id')) { |
||||
iphone.attr("id", contentSectionItem.attr('id') + "InPhone"); |
||||
} else { |
||||
iphone.attr("id", "") |
||||
} |
||||
if (!contentSectionItem.hasClass('informational')) { |
||||
updateContent(contentSectionItem.find('.prettyprint').not('.js').text()) |
||||
} |
||||
break |
||||
} |
||||
} |
||||
|
||||
function updateContent(content) { |
||||
$('#iwindow').html(content); |
||||
} |
||||
} |
||||
|
||||
$(window).on('load resize', initialize); |
||||
$(window).on('load', function () { new FingerBlast('.iphone-content'); }); |
||||
}); |
@ -1,28 +0,0 @@
|
||||
var q=null;window.PR_SHOULD_USE_CONTINUATION=!0; |
||||
(function(){function L(a){function m(a){var f=a.charCodeAt(0);if(f!==92)return f;var b=a.charAt(1);return(f=r[b])?f:"0"<=b&&b<="7"?parseInt(a.substring(1),8):b==="u"||b==="x"?parseInt(a.substring(2),16):a.charCodeAt(1)}function e(a){if(a<32)return(a<16?"\\x0":"\\x")+a.toString(16);a=String.fromCharCode(a);if(a==="\\"||a==="-"||a==="["||a==="]")a="\\"+a;return a}function h(a){for(var f=a.substring(1,a.length-1).match(/\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\[0-3][0-7]{0,2}|\\[0-7]{1,2}|\\[\S\s]|[^\\]/g),a= |
||||
[],b=[],o=f[0]==="^",c=o?1:0,i=f.length;c<i;++c){var j=f[c];if(/\\[bdsw]/i.test(j))a.push(j);else{var j=m(j),d;c+2<i&&"-"===f[c+1]?(d=m(f[c+2]),c+=2):d=j;b.push([j,d]);d<65||j>122||(d<65||j>90||b.push([Math.max(65,j)|32,Math.min(d,90)|32]),d<97||j>122||b.push([Math.max(97,j)&-33,Math.min(d,122)&-33]))}}b.sort(function(a,f){return a[0]-f[0]||f[1]-a[1]});f=[];j=[NaN,NaN];for(c=0;c<b.length;++c)i=b[c],i[0]<=j[1]+1?j[1]=Math.max(j[1],i[1]):f.push(j=i);b=["["];o&&b.push("^");b.push.apply(b,a);for(c=0;c< |
||||
f.length;++c)i=f[c],b.push(e(i[0])),i[1]>i[0]&&(i[1]+1>i[0]&&b.push("-"),b.push(e(i[1])));b.push("]");return b.join("")}function y(a){for(var f=a.source.match(/\[(?:[^\\\]]|\\[\S\s])*]|\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\\d+|\\[^\dux]|\(\?[!:=]|[()^]|[^()[\\^]+/g),b=f.length,d=[],c=0,i=0;c<b;++c){var j=f[c];j==="("?++i:"\\"===j.charAt(0)&&(j=+j.substring(1))&&j<=i&&(d[j]=-1)}for(c=1;c<d.length;++c)-1===d[c]&&(d[c]=++t);for(i=c=0;c<b;++c)j=f[c],j==="("?(++i,d[i]===void 0&&(f[c]="(?:")):"\\"===j.charAt(0)&& |
||||
(j=+j.substring(1))&&j<=i&&(f[c]="\\"+d[i]);for(i=c=0;c<b;++c)"^"===f[c]&&"^"!==f[c+1]&&(f[c]="");if(a.ignoreCase&&s)for(c=0;c<b;++c)j=f[c],a=j.charAt(0),j.length>=2&&a==="["?f[c]=h(j):a!=="\\"&&(f[c]=j.replace(/[A-Za-z]/g,function(a){a=a.charCodeAt(0);return"["+String.fromCharCode(a&-33,a|32)+"]"}));return f.join("")}for(var t=0,s=!1,l=!1,p=0,d=a.length;p<d;++p){var g=a[p];if(g.ignoreCase)l=!0;else if(/[a-z]/i.test(g.source.replace(/\\u[\da-f]{4}|\\x[\da-f]{2}|\\[^UXux]/gi,""))){s=!0;l=!1;break}}for(var r= |
||||
{b:8,t:9,n:10,v:11,f:12,r:13},n=[],p=0,d=a.length;p<d;++p){g=a[p];if(g.global||g.multiline)throw Error(""+g);n.push("(?:"+y(g)+")")}return RegExp(n.join("|"),l?"gi":"g")}function M(a){function m(a){switch(a.nodeType){case 1:if(e.test(a.className))break;for(var g=a.firstChild;g;g=g.nextSibling)m(g);g=a.nodeName;if("BR"===g||"LI"===g)h[s]="\n",t[s<<1]=y++,t[s++<<1|1]=a;break;case 3:case 4:g=a.nodeValue,g.length&&(g=p?g.replace(/\r\n?/g,"\n"):g.replace(/[\t\n\r ]+/g," "),h[s]=g,t[s<<1]=y,y+=g.length, |
||||
t[s++<<1|1]=a)}}var e=/(?:^|\s)nocode(?:\s|$)/,h=[],y=0,t=[],s=0,l;a.currentStyle?l=a.currentStyle.whiteSpace:window.getComputedStyle&&(l=document.defaultView.getComputedStyle(a,q).getPropertyValue("white-space"));var p=l&&"pre"===l.substring(0,3);m(a);return{a:h.join("").replace(/\n$/,""),c:t}}function B(a,m,e,h){m&&(a={a:m,d:a},e(a),h.push.apply(h,a.e))}function x(a,m){function e(a){for(var l=a.d,p=[l,"pln"],d=0,g=a.a.match(y)||[],r={},n=0,z=g.length;n<z;++n){var f=g[n],b=r[f],o=void 0,c;if(typeof b=== |
||||
"string")c=!1;else{var i=h[f.charAt(0)];if(i)o=f.match(i[1]),b=i[0];else{for(c=0;c<t;++c)if(i=m[c],o=f.match(i[1])){b=i[0];break}o||(b="pln")}if((c=b.length>=5&&"lang-"===b.substring(0,5))&&!(o&&typeof o[1]==="string"))c=!1,b="src";c||(r[f]=b)}i=d;d+=f.length;if(c){c=o[1];var j=f.indexOf(c),k=j+c.length;o[2]&&(k=f.length-o[2].length,j=k-c.length);b=b.substring(5);B(l+i,f.substring(0,j),e,p);B(l+i+j,c,C(b,c),p);B(l+i+k,f.substring(k),e,p)}else p.push(l+i,b)}a.e=p}var h={},y;(function(){for(var e=a.concat(m), |
||||
l=[],p={},d=0,g=e.length;d<g;++d){var r=e[d],n=r[3];if(n)for(var k=n.length;--k>=0;)h[n.charAt(k)]=r;r=r[1];n=""+r;p.hasOwnProperty(n)||(l.push(r),p[n]=q)}l.push(/[\S\s]/);y=L(l)})();var t=m.length;return e}function u(a){var m=[],e=[];a.tripleQuotedStrings?m.push(["str",/^(?:'''(?:[^'\\]|\\[\S\s]|''?(?=[^']))*(?:'''|$)|"""(?:[^"\\]|\\[\S\s]|""?(?=[^"]))*(?:"""|$)|'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$))/,q,"'\""]):a.multiLineStrings?m.push(["str",/^(?:'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$)|`(?:[^\\`]|\\[\S\s])*(?:`|$))/, |
||||
q,"'\"`"]):m.push(["str",/^(?:'(?:[^\n\r'\\]|\\.)*(?:'|$)|"(?:[^\n\r"\\]|\\.)*(?:"|$))/,q,"\"'"]);a.verbatimStrings&&e.push(["str",/^@"(?:[^"]|"")*(?:"|$)/,q]);var h=a.hashComments;h&&(a.cStyleComments?(h>1?m.push(["com",/^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)/,q,"#"]):m.push(["com",/^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\n\r]*)/,q,"#"]),e.push(["str",/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h|[a-z]\w*)>/,q])):m.push(["com",/^#[^\n\r]*/, |
||||
q,"#"]));a.cStyleComments&&(e.push(["com",/^\/\/[^\n\r]*/,q]),e.push(["com",/^\/\*[\S\s]*?(?:\*\/|$)/,q]));a.regexLiterals&&e.push(["lang-regex",/^(?:^^\.?|[!+-]|!=|!==|#|%|%=|&|&&|&&=|&=|\(|\*|\*=|\+=|,|-=|->|\/|\/=|:|::|;|<|<<|<<=|<=|=|==|===|>|>=|>>|>>=|>>>|>>>=|[?@[^]|\^=|\^\^|\^\^=|{|\||\|=|\|\||\|\|=|~|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\s*(\/(?=[^*/])(?:[^/[\\]|\\[\S\s]|\[(?:[^\\\]]|\\[\S\s])*(?:]|$))+\/)/]);(h=a.types)&&e.push(["typ",h]);a=(""+a.keywords).replace(/^ | $/g, |
||||
"");a.length&&e.push(["kwd",RegExp("^(?:"+a.replace(/[\s,]+/g,"|")+")\\b"),q]);m.push(["pln",/^\s+/,q," \r\n\t\xa0"]);e.push(["lit",/^@[$_a-z][\w$@]*/i,q],["typ",/^(?:[@_]?[A-Z]+[a-z][\w$@]*|\w+_t\b)/,q],["pln",/^[$_a-z][\w$@]*/i,q],["lit",/^(?:0x[\da-f]+|(?:\d(?:_\d+)*\d*(?:\.\d*)?|\.\d\+)(?:e[+-]?\d+)?)[a-z]*/i,q,"0123456789"],["pln",/^\\[\S\s]?/,q],["pun",/^.[^\s\w"-$'./@\\`]*/,q]);return x(m,e)}function D(a,m){function e(a){switch(a.nodeType){case 1:if(k.test(a.className))break;if("BR"===a.nodeName)h(a), |
||||
a.parentNode&&a.parentNode.removeChild(a);else for(a=a.firstChild;a;a=a.nextSibling)e(a);break;case 3:case 4:if(p){var b=a.nodeValue,d=b.match(t);if(d){var c=b.substring(0,d.index);a.nodeValue=c;(b=b.substring(d.index+d[0].length))&&a.parentNode.insertBefore(s.createTextNode(b),a.nextSibling);h(a);c||a.parentNode.removeChild(a)}}}}function h(a){function b(a,d){var e=d?a.cloneNode(!1):a,f=a.parentNode;if(f){var f=b(f,1),g=a.nextSibling;f.appendChild(e);for(var h=g;h;h=g)g=h.nextSibling,f.appendChild(h)}return e} |
||||
for(;!a.nextSibling;)if(a=a.parentNode,!a)return;for(var a=b(a.nextSibling,0),e;(e=a.parentNode)&&e.nodeType===1;)a=e;d.push(a)}var k=/(?:^|\s)nocode(?:\s|$)/,t=/\r\n?|\n/,s=a.ownerDocument,l;a.currentStyle?l=a.currentStyle.whiteSpace:window.getComputedStyle&&(l=s.defaultView.getComputedStyle(a,q).getPropertyValue("white-space"));var p=l&&"pre"===l.substring(0,3);for(l=s.createElement("LI");a.firstChild;)l.appendChild(a.firstChild);for(var d=[l],g=0;g<d.length;++g)e(d[g]);m===(m|0)&&d[0].setAttribute("value", |
||||
m);var r=s.createElement("OL");r.className="linenums";for(var n=Math.max(0,m-1|0)||0,g=0,z=d.length;g<z;++g)l=d[g],l.className="L"+(g+n)%10,l.firstChild||l.appendChild(s.createTextNode("\xa0")),r.appendChild(l);a.appendChild(r)}function k(a,m){for(var e=m.length;--e>=0;){var h=m[e];A.hasOwnProperty(h)?window.console&&console.warn("cannot override language handler %s",h):A[h]=a}}function C(a,m){if(!a||!A.hasOwnProperty(a))a=/^\s*</.test(m)?"default-markup":"default-code";return A[a]}function E(a){var m= |
||||
a.g;try{var e=M(a.h),h=e.a;a.a=h;a.c=e.c;a.d=0;C(m,h)(a);var k=/\bMSIE\b/.test(navigator.userAgent),m=/\n/g,t=a.a,s=t.length,e=0,l=a.c,p=l.length,h=0,d=a.e,g=d.length,a=0;d[g]=s;var r,n;for(n=r=0;n<g;)d[n]!==d[n+2]?(d[r++]=d[n++],d[r++]=d[n++]):n+=2;g=r;for(n=r=0;n<g;){for(var z=d[n],f=d[n+1],b=n+2;b+2<=g&&d[b+1]===f;)b+=2;d[r++]=z;d[r++]=f;n=b}for(d.length=r;h<p;){var o=l[h+2]||s,c=d[a+2]||s,b=Math.min(o,c),i=l[h+1],j;if(i.nodeType!==1&&(j=t.substring(e,b))){k&&(j=j.replace(m,"\r"));i.nodeValue= |
||||
j;var u=i.ownerDocument,v=u.createElement("SPAN");v.className=d[a+1];var x=i.parentNode;x.replaceChild(v,i);v.appendChild(i);e<o&&(l[h+1]=i=u.createTextNode(t.substring(b,o)),x.insertBefore(i,v.nextSibling))}e=b;e>=o&&(h+=2);e>=c&&(a+=2)}}catch(w){"console"in window&&console.log(w&&w.stack?w.stack:w)}}var v=["break,continue,do,else,for,if,return,while"],w=[[v,"auto,case,char,const,default,double,enum,extern,float,goto,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"], |
||||
"catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof"],F=[w,"alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,dynamic_cast,explicit,export,friend,inline,late_check,mutable,namespace,nullptr,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where"],G=[w,"abstract,boolean,byte,extends,final,finally,implements,import,instanceof,null,native,package,strictfp,super,synchronized,throws,transient"], |
||||
H=[G,"as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,interface,internal,into,is,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var"],w=[w,"debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN"],I=[v,"and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None"], |
||||
J=[v,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"],v=[v,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"],K=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)/,N=/\S/,O=u({keywords:[F,H,w,"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END"+ |
||||
I,J,v],hashComments:!0,cStyleComments:!0,multiLineStrings:!0,regexLiterals:!0}),A={};k(O,["default-code"]);k(x([],[["pln",/^[^<?]+/],["dec",/^<!\w[^>]*(?:>|$)/],["com",/^<\!--[\S\s]*?(?:--\>|$)/],["lang-",/^<\?([\S\s]+?)(?:\?>|$)/],["lang-",/^<%([\S\s]+?)(?:%>|$)/],["pun",/^(?:<[%?]|[%?]>)/],["lang-",/^<xmp\b[^>]*>([\S\s]+?)<\/xmp\b[^>]*>/i],["lang-js",/^<script\b[^>]*>([\S\s]*?)(<\/script\b[^>]*>)/i],["lang-css",/^<style\b[^>]*>([\S\s]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i]]), |
||||
["default-markup","htm","html","mxml","xhtml","xml","xsl"]);k(x([["pln",/^\s+/,q," \t\r\n"],["atv",/^(?:"[^"]*"?|'[^']*'?)/,q,"\"'"]],[["tag",/^^<\/?[a-z](?:[\w-.:]*\w)?|\/?>$/i],["atn",/^(?!style[\s=]|on)[a-z](?:[\w:-]*\w)?/i],["lang-uq.val",/^=\s*([^\s"'>]*(?:[^\s"'/>]|\/(?=\s)))/],["pun",/^[/<->]+/],["lang-js",/^on\w+\s*=\s*"([^"]+)"/i],["lang-js",/^on\w+\s*=\s*'([^']+)'/i],["lang-js",/^on\w+\s*=\s*([^\s"'>]+)/i],["lang-css",/^style\s*=\s*"([^"]+)"/i],["lang-css",/^style\s*=\s*'([^']+)'/i],["lang-css", |
||||
/^style\s*=\s*([^\s"'>]+)/i]]),["in.tag"]);k(x([],[["atv",/^[\S\s]+/]]),["uq.val"]);k(u({keywords:F,hashComments:!0,cStyleComments:!0,types:K}),["c","cc","cpp","cxx","cyc","m"]);k(u({keywords:"null,true,false"}),["json"]);k(u({keywords:H,hashComments:!0,cStyleComments:!0,verbatimStrings:!0,types:K}),["cs"]);k(u({keywords:G,cStyleComments:!0}),["java"]);k(u({keywords:v,hashComments:!0,multiLineStrings:!0}),["bsh","csh","sh"]);k(u({keywords:I,hashComments:!0,multiLineStrings:!0,tripleQuotedStrings:!0}), |
||||
["cv","py"]);k(u({keywords:"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END",hashComments:!0,multiLineStrings:!0,regexLiterals:!0}),["perl","pl","pm"]);k(u({keywords:J,hashComments:!0,multiLineStrings:!0,regexLiterals:!0}),["rb"]);k(u({keywords:w,cStyleComments:!0,regexLiterals:!0}),["js"]);k(u({keywords:"all,and,by,catch,class,else,extends,false,finally,for,if,in,is,isnt,loop,new,no,not,null,of,off,on,or,return,super,then,true,try,unless,until,when,while,yes", |
||||
hashComments:3,cStyleComments:!0,multilineStrings:!0,tripleQuotedStrings:!0,regexLiterals:!0}),["coffee"]);k(x([],[["str",/^[\S\s]+/]]),["regex"]);window.prettyPrintOne=function(a,m,e){var h=document.createElement("PRE");h.innerHTML=a;e&&D(h,e);E({g:m,i:e,h:h});return h.innerHTML};window.prettyPrint=function(a){function m(){for(var e=window.PR_SHOULD_USE_CONTINUATION?l.now()+250:Infinity;p<h.length&&l.now()<e;p++){var n=h[p],k=n.className;if(k.indexOf("prettyprint")>=0){var k=k.match(g),f,b;if(b= |
||||
!k){b=n;for(var o=void 0,c=b.firstChild;c;c=c.nextSibling)var i=c.nodeType,o=i===1?o?b:c:i===3?N.test(c.nodeValue)?b:o:o;b=(f=o===b?void 0:o)&&"CODE"===f.tagName}b&&(k=f.className.match(g));k&&(k=k[1]);b=!1;for(o=n.parentNode;o;o=o.parentNode)if((o.tagName==="pre"||o.tagName==="code"||o.tagName==="xmp")&&o.className&&o.className.indexOf("prettyprint")>=0){b=!0;break}b||((b=(b=n.className.match(/\blinenums\b(?::(\d+))?/))?b[1]&&b[1].length?+b[1]:!0:!1)&&D(n,b),d={g:k,h:n,i:b},E(d))}}p<h.length?setTimeout(m, |
||||
250):a&&a()}for(var e=[document.getElementsByTagName("pre"),document.getElementsByTagName("code"),document.getElementsByTagName("xmp")],h=[],k=0;k<e.length;++k)for(var t=0,s=e[k].length;t<s;++t)h.push(e[k][t]);var e=q,l=Date;l.now||(l={now:function(){return+new Date}});var p=0,d,g=/\blang(?:uage)?-([\w.]+)(?!\S)/;m()};window.PR={createSimpleLexer:x,registerLangHandler:k,sourceDecorator:u,PR_ATTRIB_NAME:"atn",PR_ATTRIB_VALUE:"atv",PR_COMMENT:"com",PR_DECLARATION:"dec",PR_KEYWORD:"kwd",PR_LITERAL:"lit", |
||||
PR_NOCODE:"nocode",PR_PLAIN:"pln",PR_PUNCTUATION:"pun",PR_SOURCE:"src",PR_STRING:"str",PR_TAG:"tag",PR_TYPE:"typ"}})(); |
@ -1,332 +0,0 @@
|
||||
/* General bar styles |
||||
-------------------------------------------------- */ |
||||
|
||||
[class*="bar-"] { |
||||
position: fixed; |
||||
right: 0; |
||||
left: 0; |
||||
z-index: 10; |
||||
height: 44px; |
||||
padding: 5px; |
||||
box-sizing: border-box; |
||||
} |
||||
|
||||
/* Modifier class to dock any bar below .bar-title */ |
||||
.bar-header-secondary { |
||||
top: 45px; |
||||
} |
||||
|
||||
/* Modifier class to dock any bar to bottom of viewport */ |
||||
.bar-footer { |
||||
bottom: 0; |
||||
} |
||||
|
||||
/* Generic bar for wrapping buttons, segmented controllers, etc. */ |
||||
.bar-standard { |
||||
background-color: #f2f2f2; |
||||
background-image: -webkit-linear-gradient(top, #f2f2f2 0, #e5e5e5 100%); |
||||
background-image: linear-gradient(to bottom, #f2f2f2 0, #e5e5e5 100%); |
||||
border-bottom: 1px solid #aaa; |
||||
box-shadow: inset 0 1px 1px -1px #fff; |
||||
} |
||||
|
||||
/* Flip border position to top for footer bars */ |
||||
.bar-footer.bar-standard, |
||||
.bar-footer-secondary.bar-standard { |
||||
border-top: 1px solid #aaa; |
||||
border-bottom-width: 0; |
||||
} |
||||
|
||||
/* Title bar |
||||
-------------------------------------------------- */ |
||||
|
||||
/* Bar docked to top of viewport for showing page title and actions */ |
||||
.bar-title { |
||||
top: 0; |
||||
display: -webkit-box; |
||||
display: box; |
||||
background-color: #1eb0e9; |
||||
background-image: -webkit-linear-gradient(top, #1eb0e9 0, #109adc 100%); |
||||
background-image: linear-gradient(to bottom, #1eb0e9 0, #109adc 100%); |
||||
border-bottom: 1px solid #0e5895; |
||||
box-shadow: inset 0 1px 1px -1px rgba(255, 255, 255, .8); |
||||
-webkit-box-orient: horizontal; |
||||
box-orient: horizontal; |
||||
} |
||||
|
||||
/* Centered text in the .bar-title */ |
||||
.bar-title .title { |
||||
position: absolute; |
||||
top: 0; |
||||
left: 0; |
||||
display: block; |
||||
width: 100%; |
||||
font-size: 20px; |
||||
font-weight: bold; |
||||
line-height: 44px; |
||||
color: #fff; |
||||
text-align: center; |
||||
text-shadow: 0 -1px rgba(0, 0, 0, .5); |
||||
white-space: nowrap; |
||||
} |
||||
|
||||
.bar-title > a:not([class*="button"]) { |
||||
display: block; |
||||
width: 100%; |
||||
height: 100%; |
||||
} |
||||
|
||||
/* Retain specified title color */ |
||||
.bar-title .title a { |
||||
color: inherit; |
||||
} |
||||
|
||||
/* Tab bar |
||||
-------------------------------------------------- */ |
||||
|
||||
/* Bar docked to bottom used for primary app navigation */ |
||||
.bar-tab { |
||||
bottom: 0; |
||||
height: 50px; |
||||
padding: 0; |
||||
background-color: #393939; |
||||
background-image: -webkit-linear-gradient(top, #393939 0, #2b2b2b 100%); |
||||
background-image: linear-gradient(to bottom, #393939 0, #2b2b2b 100%); |
||||
border-top: 1px solid #000; |
||||
border-bottom-width: 0; |
||||
box-shadow: inset 0 1px 1px -1px rgba(255, 255, 255, .6); |
||||
} |
||||
|
||||
/* Wrapper for individual tab */ |
||||
.tab-inner { |
||||
display: -webkit-box; |
||||
display: box; |
||||
height: 100%; |
||||
list-style: none; |
||||
-webkit-box-orient: horizontal; |
||||
box-orient: horizontal; |
||||
} |
||||
|
||||
/* Navigational tab */ |
||||
.tab-item { |
||||
height: 100%; |
||||
padding-top: 9px; |
||||
text-align: center; |
||||
box-sizing: border-box; |
||||
-webkit-box-flex: 1; |
||||
box-flex: 1; |
||||
} |
||||
|
||||
/* Active state for tab */ |
||||
.tab-item.active { |
||||
box-shadow: inset 0 0 20px rgba(0, 0, 0, .5); |
||||
} |
||||
|
||||
/* Icon for tab */ |
||||
.tab-icon { |
||||
display: block; |
||||
height: 18px; |
||||
margin: 0 auto; |
||||
} |
||||
|
||||
/* Label for tab */ |
||||
.tab-label { |
||||
margin-top: 1px; |
||||
font-size: 10px; |
||||
font-weight: bold; |
||||
color: #fff; |
||||
text-shadow: 0 1px rgba(0, 0, 0, .3); |
||||
} |
||||
|
||||
/* Buttons in title bars |
||||
-------------------------------------------------- */ |
||||
|
||||
/* Generic style for all buttons in .bar-title */ |
||||
.bar-title [class*="button"] { |
||||
position: relative; |
||||
z-index: 10; /* Places buttons over full width title */ |
||||
font-size: 12px; |
||||
line-height: 23px; |
||||
color: #fff; |
||||
text-shadow: 0 -1px 0 rgba(0, 0, 0, .3); |
||||
background-color: #1eb0e9; |
||||
background-image: -webkit-linear-gradient(top, #1eb0e9 0, #0984c6 100%); |
||||
background-image: linear-gradient(to bottom, #1eb0e9 0, #0984c6 100%); |
||||
border: 1px solid #0e5895; |
||||
box-shadow: 0 1px rgba(255, 255, 255, .25); |
||||
-webkit-box-flex: 0; |
||||
box-flex: 0; |
||||
} |
||||
|
||||
|
||||
/* Hacky way to right align buttons outside of flex-box system |
||||
Note: is only absolutely positioned button, would be better if flex-box had an "align right" option */ |
||||
.bar-title .title + [class*="button"]:last-child, |
||||
.bar-title .button + [class*="button"]:last-child, |
||||
.bar-title [class*="button"].pull-right { |
||||
position: absolute; |
||||
top: 5px; |
||||
right: 5px; |
||||
} |
||||
|
||||
/* Override standard button active states */ |
||||
.bar-title .button:active { |
||||
color: #fff; |
||||
background-color: #0876b1; |
||||
} |
||||
|
||||
/* Directional buttons in title bars (thanks to @GregorAdams for solution - http://cssnerd.com/2011/11/30/the-best-pure-css3-ios-style-arrow-back-button/) |
||||
-------------------------------------------------- */ |
||||
|
||||
/* Add relative positioning so :before content is positioned properly */ |
||||
.bar-title .button-prev, |
||||
.bar-title .button-next { |
||||
position: relative; |
||||
} |
||||
|
||||
/* Prev/next button base styles */ |
||||
.bar-title .button-prev { |
||||
margin-left: 7px; /* Push over to make room for :before content */ |
||||
border-left: 0; |
||||
border-bottom-left-radius: 10px 15px; |
||||
border-top-left-radius: 10px 15px; |
||||
} |
||||
.bar-title .button-next { |
||||
margin-right: 7px; /* Push over to make room for :before content */ |
||||
border-right: 0; |
||||
border-top-right-radius: 10px 15px; |
||||
border-bottom-right-radius: 10px 15px; |
||||
} |
||||
|
||||
/* Pointed part of directional button */ |
||||
.bar-title .button-prev:before, |
||||
.bar-title .button-next:before { |
||||
position: absolute; |
||||
top: 2px; |
||||
width: 27px; |
||||
height: 27px; |
||||
border-radius: 30px 100px 2px 40px / 2px 40px 30px 100px; |
||||
content: ''; |
||||
box-shadow: inset 1px 0 #0e5895, inset 0 1px #0e5895; |
||||
-webkit-mask-image: -webkit-gradient(linear, left top, right bottom, from(#000), color-stop(.33, #000), color-stop(.5, transparent), to(transparent)); |
||||
mask-image: gradient(linear, left top, right bottom, from(#000), color-stop(.33, #000), color-stop(.5, transparent), to(transparent)); |
||||
} |
||||
.bar-title .button-prev:before { |
||||
left: -5px; |
||||
background-image: -webkit-gradient(linear, left bottom, right top, from(#0984c6), to(#1eb0e9)); |
||||
background-image: gradient(linear, left bottom, right top, from(#0984c6), to(#1eb0e9)); |
||||
border-left: 1.5px solid rgba(255, 255, 255, .25); |
||||
-webkit-transform: rotate(-45deg) skew(-10deg, -10deg); |
||||
transform: rotate(-45deg) skew(-10deg, -10deg); |
||||
} |
||||
.bar-title .button-next:before { |
||||
right: -5px; |
||||
background-image: -webkit-gradient(linear, left bottom, right top, from(#1eb0e9), to(#0984c6)); |
||||
background-image: gradient(linear, left bottom, right top, from(#1eb0e9), to(#0984c6)); |
||||
border-top: 1.5px solid rgba(255, 255, 255, .25); |
||||
-webkit-transform: rotate(135deg) skew(-10deg, -10deg); |
||||
transform: rotate(135deg) skew(-10deg, -10deg); |
||||
} |
||||
|
||||
/* Active states for the directional buttons */ |
||||
.bar-title .button-prev:active, |
||||
.bar-title .button-next:active, |
||||
.bar-title .button-prev:active:before, |
||||
.bar-title .button-next:active:before { |
||||
color: #fff; |
||||
background-color: #0876b1; |
||||
background-image: none; |
||||
} |
||||
.bar-title .button-prev:active:before, |
||||
.bar-title .button-next:active:before { |
||||
content: ''; |
||||
} |
||||
.bar-title .button-prev:active:before { |
||||
box-shadow: inset 0 3px 3px rgba(0, 0, 0, .2); |
||||
} |
||||
.bar-title .button-next:active:before { |
||||
box-shadow: inset 0 -3px 3px rgba(0, 0, 0, .2); |
||||
} |
||||
|
||||
/* Block buttons in any bar |
||||
-------------------------------------------------- */ |
||||
|
||||
/* Add proper padding and replace buttons normal dropshadow with a shine from bar */ |
||||
[class*="bar"] .button-block { |
||||
padding: 7px 0; |
||||
margin-bottom: 0; |
||||
box-shadow: inset 0 1px 1px rgba(255, 255, 255, .4), 0 1px rgba(255, 255, 255, .8); |
||||
} |
||||
|
||||
/* Override standard padding changes for .button-blocks */ |
||||
[class*="bar"] .button-block:active { |
||||
padding: 7px 0; |
||||
} |
||||
|
||||
/* Segmented controller in any bar |
||||
-------------------------------------------------- */ |
||||
|
||||
/* Remove standard segmented bottom margin */ |
||||
[class*="bar-"] .segmented-controller { |
||||
margin-bottom: 0; |
||||
} |
||||
|
||||
/* Add margins between segmented controllers and buttons */ |
||||
[class*="bar-"] .segmented-controller + [class*="button"], |
||||
[class*="bar-"] [class*="button"] + .segmented-controller { |
||||
margin-left: 5px; |
||||
} |
||||
|
||||
/* Segmented controller in a title bar |
||||
-------------------------------------------------- */ |
||||
|
||||
.bar-title .segmented-controller { |
||||
line-height: 18px; |
||||
text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3); |
||||
background-color: #1eb0e9; |
||||
background-image: -webkit-linear-gradient(top, #1eb0e9 0, #0984c6 100%); |
||||
background-image: linear-gradient(to bottom, #1eb0e9 0, #0984c6 100%); |
||||
border: 1px solid #0e5895; |
||||
border-radius: 3px; |
||||
box-shadow: 0 1px rgba(255, 255, 255, .25); |
||||
-webkit-box-flex: 1; |
||||
box-flex: 1; |
||||
} |
||||
|
||||
/* Set color for tab border and highlight */ |
||||
.bar-title .segmented-controller li { |
||||
border-left: 1px solid #0e5895; |
||||
box-shadow: inset 1px 0 rgba(255, 255, 255, .25); |
||||
} |
||||
|
||||
/* Remove inset shadow from first tab or one to the right of the active tab */ |
||||
.bar-title .segmented-controller .active + li, |
||||
.bar-title .segmented-controller li:first-child { |
||||
box-shadow: none; |
||||
} |
||||
|
||||
/* Remove left-hand border from first tab */ |
||||
.bar-title .segmented-controller li:first-child { |
||||
border-left-width: 0; |
||||
} |
||||
|
||||
/* Depressed state (active) */ |
||||
.bar-title .segmented-controller li.active { |
||||
background-color: #0082c4; |
||||
box-shadow: inset 0 1px 6px rgba(0, 0, 0, .3); |
||||
} |
||||
|
||||
/* Set color of links to white */ |
||||
.bar-title .segmented-controller li > a { |
||||
color: #fff; |
||||
} |
||||
|
||||
|
||||
/* Search forms in standard bar |
||||
-------------------------------------------------- */ |
||||
|
||||
/* Position/size search bar within the bar */ |
||||
.bar-standard input[type=search] { |
||||
height: 32px; |
||||
margin: 0; |
||||
} |
@ -1,153 +0,0 @@
|
||||
/* Hard reset |
||||
-------------------------------------------------- */ |
||||
|
||||
html, |
||||
body, |
||||
div, |
||||
span, |
||||
iframe, |
||||
h1, |
||||
h2, |
||||
h3, |
||||
h4, |
||||
h5, |
||||
h6, |
||||
p, |
||||
blockquote, |
||||
pre, |
||||
a, |
||||
abbr, |
||||
acronym, |
||||
address, |
||||
big, |
||||
cite, |
||||
code, |
||||
del, |
||||
dfn, |
||||
em, |
||||
img, |
||||
ins, |
||||
kbd, |
||||
q, |
||||
s, |
||||
samp, |
||||
small, |
||||
strike, |
||||
strong, |
||||
sub, |
||||
sup, |
||||
tt, |
||||
var, |
||||
b, |
||||
u, |
||||
i, |
||||
center, |
||||
dl, |
||||
dt, |
||||
dd, |
||||
ol, |
||||
ul, |
||||
li, |
||||
fieldset, |
||||
form, |
||||
label, |
||||
legend, |
||||
table, |
||||
caption, |
||||
tbody, |
||||
tfoot, |
||||
thead, |
||||
tr, |
||||
th, |
||||
td, |
||||
article, |
||||
aside, |
||||
canvas, |
||||
details, |
||||
embed, |
||||
figure, |
||||
figcaption, |
||||
footer, |
||||
header, |
||||
hgroup, |
||||
menu, |
||||
nav, |
||||
output, |
||||
section, |
||||
summary, |
||||
time, |
||||
audio, |
||||
video { |
||||
padding: 0; |
||||
margin: 0; |
||||
border: 0; |
||||
} |
||||
|
||||
/* Prevents iOS text size adjust after orientation change, without disabling (Thanks to @necolas) */ |
||||
html { |
||||
-webkit-text-size-adjust: 100%; |
||||
-ms-text-size-adjust: 100%; |
||||
} |
||||
|
||||
/* Base styles |
||||
-------------------------------------------------- */ |
||||
|
||||
body { |
||||
position: fixed; |
||||
top: 0; |
||||
right: 0; |
||||
bottom: 0; |
||||
left: 0; |
||||
font: 14px/1.25 "Helvetica Neue", sans-serif; |
||||
color: #222; |
||||
background-color: #fff; |
||||
} |
||||
|
||||
/* Universal link styling */ |
||||
a { |
||||
color: #0882f0; |
||||
text-decoration: none; |
||||
-webkit-tap-highlight-color: rgba(0, 0, 0, 0); /* Removes the dark touch outlines on links */ |
||||
} |
||||
|
||||
/* Wrapper to be used around all content not in .bar-title and .bar-tab */ |
||||
.content { |
||||
position: fixed; |
||||
top: 0; |
||||
right: 0; |
||||
bottom: 0; |
||||
left: 0; |
||||
overflow: auto; |
||||
background-color: #fff; |
||||
-webkit-transition-property: top, bottom; |
||||
transition-property: top, bottom; |
||||
-webkit-transition-duration: .2s, .2s; |
||||
transition-duration: .2s, .2s; |
||||
-webkit-transition-timing-function: linear, linear; |
||||
transition-timing-function: linear, linear; |
||||
-webkit-overflow-scrolling: touch; |
||||
} |
||||
|
||||
/* Hack to force all relatively and absolutely positioned elements still render while scrolling |
||||
Note: This is a bug for "-webkit-overflow-scrolling: touch" */ |
||||
.content > * { |
||||
-webkit-transform: translateZ(0px); |
||||
transform: translateZ(0px); |
||||
} |
||||
|
||||
/* Utility wrapper to pad in components like forms, block buttons and segmented-controllers so they're not full-bleed */ |
||||
.content-padded { |
||||
padding: 10px; |
||||
} |
||||
|
||||
/* Pad top/bottom of content so it doesn't hide behind .bar-title and .bar-tab. |
||||
Note: For these to work, content must come after both bars in the markup */ |
||||
.bar-title ~ .content { |
||||
top: 44px; |
||||
} |
||||
.bar-tab ~ .content { |
||||
bottom: 51px; |
||||
} |
||||
.bar-header-secondary ~ .content { |
||||
top: 88px; |
||||
} |
@ -1,126 +0,0 @@
|
||||
/* General button styles |
||||
-------------------------------------------------- */ |
||||
|
||||
[class*="button"] { |
||||
position: relative; |
||||
display: inline-block; |
||||
padding: 4px 12px; |
||||
margin: 0; |
||||
font-weight: bold; |
||||
line-height: 18px; |
||||
color: #333; |
||||
text-align: center; |
||||
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); |
||||
vertical-align: top; |
||||
cursor: pointer; |
||||
background-color: #f8f8f8; |
||||
background-image: -webkit-linear-gradient(top, #f8f8f8 0, #d4d4d4 100%); |
||||
background-image: linear-gradient(to bottom, #f8f8f8 0, #d4d4d4 100%); |
||||
border: 1px solid rgba(0, 0, 0, .3); |
||||
border-radius: 3px; |
||||
box-shadow: inset 0 1px 1px rgba(255, 255, 255, .4), 0 1px 2px rgba(0, 0, 0, .05); |
||||
} |
||||
|
||||
/* Active */ |
||||
[class*="button"]:active { |
||||
padding-top: 5px; |
||||
padding-bottom: 3px; |
||||
color: #333; |
||||
background-color: #ccc; |
||||
background-image: none; |
||||
box-shadow: inset 0 3px 3px rgba(0, 0, 0, .2); |
||||
} |
||||
|
||||
/* Button modifiers |
||||
-------------------------------------------------- */ |
||||
|
||||
/* Overriding styles for buttons with modifiers */ |
||||
.button-main, |
||||
.button-positive, |
||||
.button-negative { |
||||
color: #fff; |
||||
text-shadow: 0 -1px 0 rgba(0, 0, 0, .3); |
||||
} |
||||
|
||||
/* Main button */ |
||||
.button-main { |
||||
background-color: #1eafe7; |
||||
background-image: -webkit-linear-gradient(top, #1eafe7 0, #1a97c8 100%); |
||||
background-image: linear-gradient(to bottom, #1eafe7 0, #1a97c8 100%); |
||||
border: 1px solid #117aaa; |
||||
} |
||||
|
||||
/* Positive button */ |
||||
.button-positive { |
||||
background-color: #34ba15; |
||||
background-image: -webkit-linear-gradient(top, #34ba15 0, #2da012 100%); |
||||
background-image: linear-gradient(to bottom, #34ba15 0, #2da012 100%); |
||||
border: 1px solid #278f0f; |
||||
} |
||||
|
||||
/* Negative button */ |
||||
.button-negative { |
||||
background-color: #e71e1e; |
||||
background-image: -webkit-linear-gradient(top, #e71e1e 0,#c71a1a 100%); |
||||
background-image: linear-gradient(to bottom, #e71e1e 0, #c71a1a 100%); |
||||
border: 1px solid #b51a1a; |
||||
} |
||||
|
||||
/* Active state for buttons with modifiers */ |
||||
.button-main:active, |
||||
.button-positive:active, |
||||
.button-negative:active { |
||||
color: #fff; |
||||
} |
||||
.button-main:active { |
||||
background-color: #0876b1; |
||||
} |
||||
.button-positive:active { |
||||
background-color: #298f11; |
||||
} |
||||
.button-negative:active { |
||||
background-color: #b21a1a; |
||||
} |
||||
|
||||
/* Block level buttons (full width buttons) */ |
||||
.button-block { |
||||
display: block; |
||||
padding: 11px 0 13px; |
||||
margin-bottom: 10px; |
||||
font-size: 16px; |
||||
} |
||||
|
||||
/* Active state for block level buttons */ |
||||
.button-block:active { |
||||
padding: 12px 0; |
||||
} |
||||
|
||||
/* Make button elements go full width when given .button-block class */ |
||||
button.button-block { |
||||
width: 100%; |
||||
} |
||||
|
||||
/* Counts in buttons |
||||
-------------------------------------------------- */ |
||||
|
||||
/* Generic styles for all counts within buttons */ |
||||
[class*="button"] [class*="count"] { |
||||
padding-top: 2px; |
||||
padding-bottom: 2px; |
||||
margin-right: -4px; |
||||
margin-left: 4px; |
||||
text-shadow: none; |
||||
background-color: rgba(0, 0, 0, .2); |
||||
box-shadow: inset 0 1px 1px -1px #000000, 0 1px 1px -1px #fff; |
||||
} |
||||
|
||||
/* Position counts within block level buttons |
||||
Note: These are absolutely positioned so that text of button isn't "pushed" by count and always |
||||
stays at true center of button */ |
||||
.button-block [class*="count"] { |
||||
position: absolute; |
||||
right: 0; |
||||
padding-top: 4px; |
||||
padding-bottom: 4px; |
||||
margin-right: 10px; |
||||
} |