jqtouch_rails 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (52) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +32 -0
  4. data/lib/generators/install_jqtouch_generator.rb +24 -0
  5. data/lib/generators/jqtouch_helloworld_generator.rb +15 -0
  6. data/lib/generators/lib/jqtouch/helloworld.html +116 -0
  7. data/lib/generators/lib/jqtouch/javascripts/jqtouch-jquery.min.js +4 -0
  8. data/lib/generators/lib/jqtouch/javascripts/jqtouch.min.js +18 -0
  9. data/lib/generators/lib/jqtouch/stylesheets/apple.css +1971 -0
  10. data/lib/generators/lib/jqtouch/stylesheets/img/apple/loading.gif +0 -0
  11. data/lib/generators/lib/jqtouch/stylesheets/img/apple/on_off.png +0 -0
  12. data/lib/generators/lib/jqtouch/stylesheets/img/jqt/loading.gif +0 -0
  13. data/lib/generators/lib/jqtouch/stylesheets/img/jqt/on_off.png +0 -0
  14. data/lib/generators/lib/jqtouch/stylesheets/jqtouch.css +1991 -0
  15. data/lib/generators/lib/jqtouch/stylesheets/vanilla.css +1873 -0
  16. data/lib/jqtouch_rails.rb +2 -0
  17. data/lib/jqtouch_rails/version.rb +3 -0
  18. data/lib/tasks/jqtouch_rails_tasks.rake +4 -0
  19. data/test/dummy/README.rdoc +28 -0
  20. data/test/dummy/Rakefile +6 -0
  21. data/test/dummy/app/assets/javascripts/application.js +13 -0
  22. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  23. data/test/dummy/app/controllers/application_controller.rb +5 -0
  24. data/test/dummy/app/helpers/application_helper.rb +2 -0
  25. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  26. data/test/dummy/bin/bundle +3 -0
  27. data/test/dummy/bin/rails +4 -0
  28. data/test/dummy/bin/rake +4 -0
  29. data/test/dummy/config.ru +4 -0
  30. data/test/dummy/config/application.rb +23 -0
  31. data/test/dummy/config/boot.rb +5 -0
  32. data/test/dummy/config/database.yml +25 -0
  33. data/test/dummy/config/environment.rb +5 -0
  34. data/test/dummy/config/environments/development.rb +29 -0
  35. data/test/dummy/config/environments/production.rb +80 -0
  36. data/test/dummy/config/environments/test.rb +36 -0
  37. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  38. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  39. data/test/dummy/config/initializers/inflections.rb +16 -0
  40. data/test/dummy/config/initializers/mime_types.rb +5 -0
  41. data/test/dummy/config/initializers/secret_token.rb +12 -0
  42. data/test/dummy/config/initializers/session_store.rb +3 -0
  43. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  44. data/test/dummy/config/locales/en.yml +23 -0
  45. data/test/dummy/config/routes.rb +56 -0
  46. data/test/dummy/public/404.html +58 -0
  47. data/test/dummy/public/422.html +58 -0
  48. data/test/dummy/public/500.html +57 -0
  49. data/test/dummy/public/favicon.ico +0 -0
  50. data/test/jqtouch_rails_test.rb +7 -0
  51. data/test/test_helper.rb +15 -0
  52. metadata +140 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: f94518ca58d6dcf885d367a51b81cca7b0a54507
4
+ data.tar.gz: 225fbea31ee2ee24092f5abae9e6ec60f0f0b7c0
5
+ SHA512:
6
+ metadata.gz: 1fe2012c9551c078a2cbd6acd10f0363ffc18006744f09eb4f6d4b86c340594c7a24c3b6e838d8feb3d9683fe552dc1f043a418c80d6b267498480e16aecca17
7
+ data.tar.gz: 30bc84c24398243873425497619510a70605084c3f0051c8a663fae2c9696c9d56cd4ade2ddfeb176f32c7ea014160f426e3d25f94a820f16a4add224d77cb4c
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright 2013 YOURNAME
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/Rakefile ADDED
@@ -0,0 +1,32 @@
1
+ begin
2
+ require 'bundler/setup'
3
+ rescue LoadError
4
+ puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
5
+ end
6
+
7
+ require 'rdoc/task'
8
+
9
+ RDoc::Task.new(:rdoc) do |rdoc|
10
+ rdoc.rdoc_dir = 'rdoc'
11
+ rdoc.title = 'JqtouchRails'
12
+ rdoc.options << '--line-numbers'
13
+ rdoc.rdoc_files.include('README.rdoc')
14
+ rdoc.rdoc_files.include('lib/**/*.rb')
15
+ end
16
+
17
+
18
+
19
+
20
+ Bundler::GemHelper.install_tasks
21
+
22
+ require 'rake/testtask'
23
+
24
+ Rake::TestTask.new(:test) do |t|
25
+ t.libs << 'lib'
26
+ t.libs << 'test'
27
+ t.pattern = 'test/**/*_test.rb'
28
+ t.verbose = false
29
+ end
30
+
31
+
32
+ task default: :test
@@ -0,0 +1,24 @@
1
+ require 'find'
2
+
3
+ class InstallJqtouchGenerator < Rails::Generators::Base
4
+
5
+ source_root File.expand_path("../lib/jqtouch", __FILE__)
6
+
7
+ def create_initializer_file
8
+ create_file "app/assets/javascripts/jqtouch.js", "var jqtouch = $.jQTouch({});"
9
+
10
+ css_manifest_path = nil
11
+ Find.find('app/assets/stylesheets/') { |path| css_manifest_path = path if path =~ /application/ }
12
+
13
+ js_manifest_path = nil
14
+ Find.find('app/assets/javascripts/') { |path| js_manifest_path = path if path =~ /application/ }
15
+
16
+ insert_into_file js_manifest_path, "//= require_tree ../../../vendor/assets/javascripts/jqtouch\n", after: "//= require jquery_ujs\n" if js_manifest_path
17
+ insert_into_file css_manifest_path, " *= require ../../../vendor/assets/stylesheets/jqtouch/css/apple\n", after: "*= require_self\n" if css_manifest_path
18
+ copy_file "javascripts/jqtouch-jquery.min.js", "vendor/assets/javascripts/jqtouch/jqtouch-jquery.min.js"
19
+ copy_file "javascripts/jqtouch.min.js", "vendor/assets/javascripts/jqtouch/jqtouch.min.js"
20
+ copy_file "stylesheets/apple.css", "vendor/assets/stylesheets/jqtouch/css/apple.css"
21
+ copy_file "stylesheets/jqtouch.css", "vendor/assets/stylesheets/jqtouch/css/jqtouch.css"
22
+ copy_file "stylesheets/vanilla.css", "vendor/assets/stylesheets/jqtouch/css/vanilla.css"
23
+ end
24
+ end
@@ -0,0 +1,15 @@
1
+ class JqtouchHelloworldGenerator < Rails::Generators::Base
2
+
3
+ source_root File.expand_path("../lib/jqtouch", __FILE__)
4
+
5
+ def create_initializer_file
6
+ insert_into_file "config/routes.rb", " get 'helloworld', to: 'jqtouch_pages#helloworld'\n", after: "::Application.routes.draw do\n"
7
+ create_file "app/controllers/jqtouch_pages_controller.rb", "
8
+ class JqtouchPagesController < ApplicationController
9
+ def helloworld
10
+ end
11
+ end
12
+ "
13
+ copy_file "helloworld.html", "app/views/jqtouch_pages/helloworld.html.erb"
14
+ end
15
+ end
@@ -0,0 +1,116 @@
1
+ <div id="jqt">
2
+ <div id="home" class="edgetoedge">
3
+ <div class="toolbar">
4
+ <h1>Accounts</h1>
5
+ <!-- <a class="button slideup" id="infoButton" href="#about">About</a> -->
6
+ </div>
7
+ <ul class="edgetoedge">
8
+ <li><a href="#mailbox">Home</a></li>
9
+ <li><a href="#mailbox">Work</a></li>
10
+ <li><a href="#mailbox">MobileMe</a></li>
11
+ </ul>
12
+ </div>
13
+ <div id="mailbox" class="edgetoedge">
14
+ <div class="toolbar">
15
+ <a href="#" class="back button">Accounts</a>
16
+ <h1>Work</h1>
17
+ <a class="add slideup" id="newMessageLink" href="#new" name="newMessageLink">+</a>
18
+ </div>
19
+ <ul class="edgetoedge">
20
+ <li><a href="#messages">Inbox</a></li>
21
+ <li><a href="#messages">Drafts</a></li>
22
+ <li><a href="#messages">Sent</a></li>
23
+ <li><a href="#messages">Trash</a></li>
24
+ </ul>
25
+ </div>
26
+ <div id="messages">
27
+ <div class="toolbar">
28
+ <a href="#" class="back button">Accounts</a>
29
+ <h1>Messages</h1>
30
+ <a class="button" id="editLink" href="#" name="editLink">Edit</a>
31
+ </div>
32
+ <ul class="edgetoedge">
33
+ <li><a href="#message">David Kaneda <span class="subject">Re: jQTouch Alpha 2</span> <span class="preview">This is another span</span></a></li>
34
+ <li><a href="#message">John Doe <span class="subject">Your account</span> <span class="preview">This is probably spam.</span></a></li>
35
+ <li><a href="#message">Bank of America <span class="subject">Your account</span> <span class="preview">Sample something</span></a></li>
36
+ <li><a href="#message">Trash</a></li>
37
+ </ul>
38
+ </div>
39
+ <div id="new" class="edgetoedge">
40
+ <form>
41
+ <div class="toolbar">
42
+ <h1>New Message</h1>
43
+ <a class="cancel" href="#home">Cancel</a> <a class="button disabled blueButton" href="#">Send</a>
44
+ </div>
45
+ <fieldset>
46
+ <ul class="rounded">
47
+ <li><label>To: <input type="text" name="name" value=""></label></li>
48
+ <li><label>Cc/Bcc, From:</label> <input type="text" name="bcc" placeholder="you@email.com"></li>
49
+ <li><label>Subject:</label> <input type="text" name="subject" placeholder="you@email.com"></li>
50
+ <li><textarea>My email</textarea></li>
51
+ </ul>
52
+ </fieldset>
53
+ <input type="submit" />
54
+ </form>
55
+ </div>
56
+ <div id="message"></div>
57
+ <div id="features">
58
+ <div class="toolbar">
59
+ <h1>Features</h1>
60
+ <a class="back button" href="#home">jQTouch</a>
61
+ </div>
62
+ <form action="#" method="get" accept-charset="utf-8">
63
+ <p><input type="submit" value="Continue →"></p>
64
+ </form>
65
+ <div class="pad">
66
+ <ul>
67
+ <li>One-line setup, with options for selectors, viewport settings, icon path and glossiness, and status bar style</li>
68
+ <li>Pages can be built in a single HTML file, or loaded dynamically via GET or POST</li>
69
+ <li>Native, hardware-accelerated, page animations, including slide in/out, slide up/down, and 3D flip. All with history support.</li>
70
+ <li>Image preloading functions</li>
71
+ <li>Easy to theme</li>
72
+ </ul>
73
+ </div>
74
+ </div>
75
+ <div id="flipdemo">
76
+ <div class="pad">
77
+ <div style="font-size: 1.5em; text-align: center; margin: 160px 0 160px; font-family: Marker felt;">
78
+ Pretty smooth, eh?
79
+ </div><a href="#" class="back whiteButton">Go back</a>
80
+ </div>
81
+ </div>
82
+ <form id="formdemo" title="Movie Search" action="search.php" method="post" name="formdemo">
83
+ <div class="toolbar">
84
+ <h1>
85
+ Demos
86
+ </h1><a class="back button" href="#">Home</a>
87
+ </div>
88
+ <div class="pad">
89
+ <fieldset>
90
+ <div class="row">
91
+ <label>Movie</label> <input type="text" name="movie" value="">
92
+ </div>
93
+ <div class="row">
94
+ <label>Zip</label> <input type="text" name="zip" value="">
95
+ </div>
96
+ </fieldset><input type="submit">
97
+ </div>
98
+ </form>
99
+ <form id="searchForm" class="dialog" action="search.php" name="searchForm">
100
+ <fieldset>
101
+ <h1>Music Search</h1>
102
+ <a class="button leftButton" type="cancel">Cancel</a> <a class="button blueButton" type="submit">Search</a> <label>Artist:</label> <input id="artist" type="text" name="artist"> <label>Song:</label> <input type="text" name="song">
103
+ <p>This form retrieves the next page with Ajax via a POST request.</p>
104
+ </fieldset>
105
+ </form>
106
+ <div id="license">
107
+ <div class="pad">
108
+ <p><strong>The MIT License</strong></p>
109
+ <p>Copyright © 2009 David Kaneda</p>
110
+ <p>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:</p>
111
+ <p>The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.</p>
112
+ <p>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.</p>
113
+ <a href="#" class="grayButton back">Return</a>
114
+ </div>
115
+ </div>
116
+ </div>
@@ -0,0 +1,4 @@
1
+ (function(b){function l(a){function i(){clearTimeout(f);c.unselect();j(c)}function g(b){j(c);clearTimeout(f);clearTimeout(m);Math.abs(h)<e.moveThreshold&&Math.abs(k)<e.moveThreshold&&n<e.pressDelay?d&&e.useFastTouch&&c.trigger("tap",b):c.unselect()}function o(){var b=d?event.changedTouches[0]:event;h=b.pageX-p;k=b.pageY-q;n=(new Date).getTime()-l;var b=Math.abs(h),a=Math.abs(k),g;b>a&&30<b&&1E3>n&&(g=0>h?"left":"right",j(c),c.trigger("swipe",{direction:g,deltaX:h,deltaY:k}));c.unselect();clearTimeout(f);
2
+ (b>e.moveThreshold||a>e.moveThreshold)&&clearTimeout(m)}function j(a){a&&(a.unbind(r,o).unbind(s,g),d?a.unbind(t,i):b(document).unbind("mouseout",i))}if(!u)return void 0!==window.console&&console.log("TouchStart handler aborted because tap is not ready"),a.preventDefault(),!1;var c=b(a.target);if(c.length){var l=(new Date).getTime(),f=null,m=null,p,q,h=0,k=0,n=0,a=d?event.changedTouches[0]:event;p=a.pageX;q=a.pageY;(function(a){a.bind(r,o).bind(s,g);d?a.bind(t,i):b(document).bind("mouseout",i)})(c);
3
+ f=setTimeout(function(){c.makeActive()},e.hoverDelay);m=setTimeout(function(){j(c);c.unselect();clearTimeout(f);c.trigger("press")},e.pressDelay)}else void 0!==window.console&&console.log("Could not find target of touchstart event.")}var d=!!window.Touch,v=d?"touchstart":"mousedown",r=d?"touchmove":"mousemove",s=d?"touchend":"mouseup",t=d?"touchcancel":"mouseout",u=!0,e={useFastTouch:!0,debug:!0,moveThreshold:10,hoverDelay:50,pressDelay:750};b.jQTouch=function(a){for(var d in a)e[d]=a[d];b(document).bind("ready",
4
+ function(){b("#jqt").bind(v,l)});b.fn.press=function(a){return b.isFunction(a)?b(this).live("press",a):b(this).trigger("press")};b.fn.swipe=function(a){return b.isFunction(a)?b(this).live("swipe",a):b(this).trigger("swipe")};b.fn.tap=function(a){return b.isFunction(a)?b(this).live("tap",a):b(this).trigger("tap")};a.framework=b;return jQTouchCore(a)};b.jQTouch.addExtension=function(a){jQTouchCore.prototype.extensions.push(a)}})(jQuery);
@@ -0,0 +1,18 @@
1
+ (function(){jQTouchCore=function(j){function n(a){"string"===typeof a.selector&&"string"===typeof a.name&&l.push(a)}function v(a,b){k.unshift({page:a,animation:b,hash:"#"+a.attr("id"),id:a.attr("id")})}function C(a){var b=c(a.target);b.is(h.join(", "))||(b=c(a.target).closest(h.join(", ")));b&&b.attr("href")&&!b.isExternalLink()&&a.preventDefault();c.support.touch||c(a.target).trigger("tap",a)}function w(a,b,d,g){function s(){var h=D;c.support.animationEvents&&d&&e.useAnimations?(a.unbind("webkitAnimationEnd",
2
+ s),a.removeClass("current "+f+" out"),b.removeClass(f),i.removeClass("animating animating3d"),!0===e.trackScrollPositions&&(b.css("top",-b.data("lastScroll")),setTimeout(function(){b.css("top",0);window.scroll(0,b.data("lastScroll"));c(".scroll",b).each(function(){this.scrollTop=-c(this).data("lastScroll")})},0))):(a.removeClass(f+" out current"),h+=260);setTimeout(function(){b.removeClass("in")},h);m=b;g?k.shift():v(m,d);a.unselect();x(m.attr("id"));b.trigger("pageAnimationEnd",{direction:"in",animation:d});
3
+ a.trigger("pageAnimationEnd",{direction:"out",animation:d})}g=g?g:!1;if(void 0===b||0===b.length||b.hasClass("current"))return c.fn.unselect(),!1;c(":focus").trigger("blur");a.trigger("pageAnimationStart",{direction:"out",back:g});b.trigger("pageAnimationStart",{direction:"in",back:g});if(c.support.animationEvents&&d&&e.useAnimations){if(!c.support.transform3d&&d.is3d)d.name=e.defaultAnimation;var f=d.name,h=d.is3d?"animating3d":"";g&&(f=f.replace(/left|right|up|down|in|out/,E));a.bind("webkitAnimationEnd",
4
+ s);i.addClass("animating "+h);h=window.pageYOffset;!0===e.trackScrollPositions&&b.css("top",window.pageYOffset-(b.data("lastScroll")||0));b.addClass(f+" in current");a.addClass(f+" out");!0===e.trackScrollPositions&&(a.data("lastScroll",h),c(".scroll",a).each(function(){c(this).data("lastScroll",this.scrollTop)}))}else b.addClass("current in"),s();return!0}function E(a){return{up:"down",down:"up",left:"right",right:"left","in":"out",out:"in"}[a]||a}function q(){1===k.length&&window.history.go(-1);
5
+ var a=k[0];return w(a.page,k[1].page,a.animation,!0)?o:!1}function p(a,b){var d=k[0].page;if("string"===typeof b)for(var g=0,e=l.length;g<e;g++)if(l[g].name===b){b=l[g];break}if("string"===typeof a){g=c(a);if(1>g.length){t(a,{animation:b});return}a=g}return w(d,a,b)?o:!1}function F(){if(location.hash===k[0].hash)return!0;if(""===location.hash||k[1]&&location.hash===k[1].hash)return q(),!0;p(c(location.hash),e.defaultAnimation)}function y(a){for(var b,d=0,c=l.length;d<c;d++)if(a.is(l[d].selector)){b=
6
+ l[d];break}if(!b)b=e.defaultAnimation;return b}function z(a,b){var d=null,e=document.createElement("div");e.innerHTML=a;c(e).children().each(function(){var a=c(this);a.attr("id")||a.attr("id","page-"+ ++G);c("#"+a.attr("id")).remove();i.append(a);i.trigger("pageInserted",{page:a});if(a.hasClass("current")||!d)d=a});return null!==d?(p(d,b),d):!1}function H(){i.css("minHeight",1E3);scrollTo(0,0);i.css("minHeight",window.innerHeight);r=90==Math.abs(window.orientation)?"landscape":"portrait";i.removeClass("portrait landscape").addClass(r).trigger("turn",
7
+ {orientation:r})}function x(a){location.hash="#"+a.replace(/^#/,"")}function t(a,b){var d=c.extend({},{data:null,method:"GET",animation:null,callback:null,$referrer:null},b);"#"!=a?c.ajax({url:a,data:d.data,type:d.method,success:function(a){if(a=z(a,d.animation))"GET"==d.method&&!0===e.cacheGetRequests&&d.$referrer&&d.$referrer.attr("href","#"+a.attr("id")),d.callback&&d.callback(!0)},error:function(){d.$referrer&&d.$referrer.unselect();d.callback&&d.callback(!1)}}):d.$referrer&&d.$referrer.unselect()}
8
+ function A(a,b){c(":focus").trigger("blur");a.preventDefault();var d="string"===typeof a?c(a).eq(0):a.target?c(a.target):c(a);return d.length&&d.is(e.formSelector)&&d.attr("action")?(t(d.attr("action"),{data:d.serialize(),method:d.attr("method")||"POST",animation:y(d),callback:b}),!1):!0}function I(a){a=a.closest("form");return 0!==a.length?(a.trigger("submit"),!1):!0}function J(){var a,b,d,c;a=document.getElementsByTagName("head")[0];b=document.body;d=document.createElement("style");d.textContent=
9
+ "@media (transform-3d),(-o-transform-3d),(-moz-transform-3d),(-webkit-transform-3d){#jqt-3dtest{height:3px}}";c=document.createElement("div");c.id="jqt-3dtest";a.appendChild(d);b.appendChild(c);a=3===c.offsetHeight;d.parentNode.removeChild(d);c.parentNode.removeChild(c);return a}function K(a){var b=c(a.target),a=h.join(", ");b.is(a)||(b=b.closest(a));b.length&&b.attr("href")&&b.addClass("active");b.on(c.support.touch?"touchmove":"mousemove",function(){b.removeClass("active")});b.on("touchend",function(){b.unbind("touchmove mousemove")})}
10
+ function L(a){var b=c(a.target);b.is(h.join(", "))||(b=b.closest(h.join(", ")));if(!b.length||!b.attr("href"))return!1;var a=b.attr("target"),d=b.prop("hash"),g=b.attr("href"),f=null;if(b.isExternalLink())return b.unselect(),!0;if(b.is(e.backSelector))q(d);else if(b.is(e.submitSelector))I(b);else{if("_webapp"===a)return window.location=g,!1;if("#"===g)return b.unselect(),!0;f=y(b);d&&"#"!==d?(b.addClass("active"),p(c(d).data("referrer",b),f,b.hasClass("reverse"))):(b.addClass("loading active"),t(b.attr("href"),
11
+ {animation:f,callback:function(){b.removeClass("loading");setTimeout(c.fn.unselect,250,b)},$referrer:b}));return!1}}var c=j.framework,i,M=c("head"),k=[],G=0,e={},m="",r="portrait",h=[],o={},D=100,B=jQTouchCore.prototype.extensions,l=[],f="",u={addGlossToIcon:!0,backSelector:".back, .cancel, .goback",cacheGetRequests:!0,debug:!0,defaultAnimation:"slideleft",fixedViewport:!0,formSelector:"form",fullScreen:!0,fullScreenClass:"fullscreen",icon:null,icon4:null,preloadImages:!1,startupScreen:null,statusBar:"default",
12
+ submitSelector:".submit",touchSelector:"a, .touch",trackScrollPositions:!0,useAnimations:!0,useFastTouch:!0,useTouchScroll:!0,animations:[{name:"cubeleft",selector:".cubeleft, .cube",is3d:!0},{name:"cuberight",selector:".cuberight",is3d:!0},{name:"dissolve",selector:".dissolve"},{name:"fade",selector:".fade"},{name:"flipleft",selector:".flipleft, .flip",is3d:!0},{name:"flipright",selector:".flipright",is3d:!0},{name:"pop",selector:".pop",is3d:!0},{name:"swapleft",selector:".swap",is3d:!0},{name:"slidedown",
13
+ selector:".slidedown"},{name:"slideright",selector:".slideright"},{name:"slideup",selector:".slideup"},{name:"slideleft",selector:".slideleft, .slide, #jqt > * > ul li a"}]};(function(a){e=c.extend({},u,a);if(e.preloadImages)for(a=e.preloadImages.length-1;0<=a;a--)(new Image).src=e.preloadImages[a];a=e.addGlossToIcon?"":"-precomposed";e.icon&&(f+='<link rel="apple-touch-icon'+a+'" href="'+e.icon+'" />');e.icon4&&(f+='<link rel="apple-touch-icon'+a+'" sizes="114x114" href="'+e.icon4+'" />');e.startupScreen&&
14
+ (f+='<link rel="apple-touch-startup-image" href="'+e.startupScreen+'" />');e.fixedViewport&&(f+='<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/>');e.fullScreen&&(f+='<meta name="apple-mobile-web-app-capable" content="yes" />',e.statusBar&&(f+='<meta name="apple-mobile-web-app-status-bar-style" content="'+e.statusBar+'" />'));f&&M.prepend(f)})(j);c(document).ready(function(){if(!c.support)c.support={};c.support.animationEvents="undefined"!=
15
+ typeof window.WebKitAnimationEvent;c.support.touch="undefined"!=typeof window.TouchEvent&&-1<window.navigator.userAgent.indexOf("Mobile")&&e.useFastTouch;c.support.transform3d=J();c.support.ios5=/OS (5(_\d+)*) like Mac OS X/i.test(window.navigator.userAgent);c.fn.isExternalLink=function(){var a=c(this);return"_blank"==a.attr("target")||"external"==a.attr("rel")||a.is('a[href^="http://maps.google.com"], a[href^="mailto:"], a[href^="tel:"], a[href^="javascript:"], a[href*="youtube.com/v"], a[href*="youtube.com/watch"]')};
16
+ c.fn.makeActive=function(){return c(this).addClass("active")};c.fn.unselect=function(a){a?a.removeClass("active"):c(".active").removeClass("active")};for(var a=0,b=B.length;a<b;a++){var d=B[a];c.isFunction(d)&&c.extend(o,d(o))}a=0;for(b=u.animations.length;a<b;a++){d=u.animations[a];if(void 0!==e[d.name+"Selector"])d.selector=e[d.name+"Selector"];n(d)}h.push(e.touchSelector);h.push(e.backSelector);h.push(e.submitSelector);c(h.join(", ")).css("-webkit-touch-callout","none");i=c("#jqt");a=[];0===i.length&&
17
+ (i=c(document.body).attr("id","jqt"));c.support.transform3d&&a.push("supports3d");c.support.ios5&&e.useTouchScroll&&a.push("touchscroll");e.fullScreenClass&&!0===window.navigator.standalone&&a.push(e.fullScreenClass,e.statusBar);i.addClass(a.join(" ")).bind("click",C).bind("orientationchange",H).bind("submit",A).bind("tap",L).bind(c.support.touch?"touchstart":"mousedown",K).trigger("orientationchange");c(window).bind("hashchange",F);a=location.hash;m=0===c("#jqt > .current").length?c("#jqt > *:first-child").addClass("current"):
18
+ c("#jqt > .current");x(m.attr("id"));v(m);1===c(a).length&&p(a)});return o={addAnimation:n,animations:l,getOrientation:function(){return r},goBack:q,insertPages:z,goTo:p,history:k,settings:e,submitForm:A}};jQTouchCore.prototype.extensions=[];window.Zepto&&function(j){j.jQTouch=function(n){n.framework=j;return jQTouchCore(n)};j.fn.prop=j.fn.attr;j.jQTouch.addExtension=function(j){jQTouchCore.prototype.extensions.push(j)}}(Zepto)})();
@@ -0,0 +1,1971 @@
1
+ /**
2
+ * Background noise recipe
3
+ *
4
+ * This recipe use a sass function to generate a .png file
5
+ *
6
+ * Inspired by a jQuery plugin "Noisy" by Daniel Rapp @DanielRapp
7
+ * @link https://github.com/DanielRapp/Noisy
8
+ *
9
+ * Converted using Sass by Aaron Russell @aaronrussell & Philipp Bosch @philippbosch
10
+ * @link https://gist.github.com/1021332
11
+ *
12
+ * Ported to a sass gem by Antti Salonen @antsa
13
+ * @link https://github.com/antsa/sassy_noise
14
+ *
15
+ * Mixin: background-noise
16
+ * Function: background_noise
17
+ *
18
+ * @author Daniel Rapp @DanielRapp
19
+ * @author Aaron Russell @aaronrussell
20
+ * @author Philipp Bosch @philippbosch
21
+ * @author Antti Salonen @antsa
22
+ * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
23
+ */
24
+ /**
25
+ *
26
+ * @class Gradients
27
+ * @author David Kaneda http://www.davidkaneda.com/
28
+ *
29
+ */
30
+ /**
31
+ * Adds a background gradient into a specified selector.
32
+ *
33
+ * @include background-gradient(#444, 'glossy');
34
+ *
35
+ * You can also use color-stops if you want full control of the gradient:
36
+ *
37
+ * @include background-gradient(#444, color-stops(#333, #222, #111));
38
+ *
39
+ * @param {color} $bg-color
40
+ * The base color of the gradient.
41
+ *
42
+ * @param {string/list} $type
43
+ * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear:
44
+ *
45
+ * @include background-gradient(red, 'glossy');
46
+ *
47
+ * It can also accept a list of color-stop values:;
48
+ *
49
+ * @include background-gradient(black, color-stops(#333, #111, #000));
50
+ *
51
+ * @param {string} $direction
52
+ * The direction of the gradient.
53
+ */
54
+ /**
55
+ * Blueprint grid background pattern
56
+ *
57
+ * @link http://lea.verou.me/css3patterns/#blueprint-grid
58
+ *
59
+ * @author Lea Verou http://lea.verou.me/ for the original pattern
60
+ * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
61
+ */
62
+ /**
63
+ * Background overlay inspired by Google Chrome modal overlay
64
+ *
65
+ * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
66
+ */
67
+ /**
68
+ * Striped background pattern
69
+ *
70
+ * @link http://lea.verou.me/css3patterns/
71
+ *
72
+ * @author Lea Verou http://lea.verou.me/ for the original pattern
73
+ * @author David Kaneda http://www.davidkaneda.com @davidkaneda for the sass mixin
74
+ */
75
+ /**
76
+ *
77
+ * Before compass 0.11.5, you need to add
78
+ * Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "o", "ms")
79
+ * To your configuration (config.rb)
80
+ * @see https://github.com/chriseppstein/compass/issues/401
81
+ *
82
+ * @link http://lea.verou.me/css3patterns/#tartan
83
+ *
84
+ * @author Marta Armada http://swwweet.com/ for the original pattern
85
+ * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx for the sass mixin
86
+ */
87
+ /**
88
+ * Carbon Fiber background pattern
89
+ *
90
+ * @author Lea Verou http://lea.verou.me/ for the original pattern
91
+ * @author David Kaneda http://www.davidkaneda.com/ for the Sass mixin
92
+ *
93
+ * @link http://lea.verou.me/css3patterns/
94
+ *
95
+ */
96
+ /**
97
+ * Normalize.css
98
+ * Opposite approche from CSS reset
99
+ *
100
+ * Based on normalize.css commit 9576d48fc234c5224b1fc4dccba2f5965243843d
101
+ *
102
+ * @link http://github.com/necolas/normalize.css
103
+ */
104
+ /* normalize.css 2011-07-12T10:51 UTC · http://github.com/necolas/normalize.css */
105
+ /* =============================================================================
106
+ HTML5 element display
107
+ ========================================================================== */
108
+ /* =============================================================================
109
+ Base
110
+ ========================================================================== */
111
+ /* =============================================================================
112
+ Links
113
+ ========================================================================== */
114
+ /* =============================================================================
115
+ Typography
116
+ ========================================================================== */
117
+ /* =============================================================================
118
+ Lists
119
+ ========================================================================== */
120
+ /* =============================================================================
121
+ Embedded content
122
+ ========================================================================== */
123
+ /* =============================================================================
124
+ Figures
125
+ ========================================================================== */
126
+ /* =============================================================================
127
+ Forms
128
+ ========================================================================== */
129
+ /* =============================================================================
130
+ Tables
131
+ ========================================================================== */
132
+ /**
133
+ *
134
+ * @author David Kaneda - http://www.davidkaneda.com
135
+ *
136
+ */
137
+ /**
138
+ * @class Color
139
+ */
140
+ /**
141
+ * Returns the brightness (out of 100) of a specified color.
142
+ * @todo explain why this is useful
143
+ * @param {color} $color The color you want the brightness value of
144
+ * @return {measurement}
145
+ */
146
+ /**
147
+ * Returns the luminosity for a specified color
148
+ * @todo explain why this is useful
149
+ * @param {color} The color to check
150
+ * @return {measurement}
151
+ */
152
+ /**
153
+ * Glass effect
154
+ * Use this on image for better effect render
155
+ *
156
+ * Inspired from Simurai's IMDB redisign
157
+ *
158
+ * @link http://lab.simurai.com/redesign/imdb
159
+ * @thanks Simurai @simurai
160
+ */
161
+ /**
162
+ * Note IE7/6 doesn't understand pseudo element as ::before and ::after
163
+ * IE8 need to have :before and not ::before
164
+ * So use only : and not :: if you want to support IE8
165
+ * IE9 Webkit Firefox Opera understand ::
166
+ */
167
+ /**
168
+ * Scotch tape effect with pure CSS
169
+ *
170
+ * @thanks Nick La @nickla for original concept
171
+ * @link http://webdesignerwall.com/tutorials/css3-image-styles
172
+ *
173
+ * @author David Kaneda http://www.davidkaneda.com
174
+ *
175
+ */
176
+ /**
177
+ * Note IE7/6 doesn't understand pseudo element as ::before and ::after
178
+ * IE8 need to have :before and not ::before
179
+ * So use only : and not :: if you want to support IE8
180
+ * IE9 Webkit Firefox Opera understand ::
181
+ */
182
+ /**
183
+ * Corner folded with pure CSS
184
+ *
185
+ * Known support: Firefox 3.5+, Chrome 4+, Safari 4+, Opera 10+, IE 9+.
186
+ * IE8 is not supported because it not render properly box-shadow and
187
+ * pseudo element should be selected with ::element and not :element
188
+ *
189
+ * @thanks Nicolas Gallagher @necolas
190
+ * @link http://nicolasgallagher.com/pure-css-folded-corner-effect/demo/
191
+ * @todo Nix in .4
192
+ */
193
+ /**
194
+ * Note IE7/6 doesn't understand pseudo element as ::before and ::after
195
+ * IE8 need to have :before and not ::before
196
+ * So use only : and not :: if you want to support IE8
197
+ * IE9 Webkit Firefox Opera understand ::
198
+ */
199
+ /**
200
+ * Corner folded with pure CSS
201
+ *
202
+ * Known support: Firefox 3.5+, Chrome 4+, Safari 4+, Opera 10+, IE 9+.
203
+ * IE8 is not supported because it not render properly box-shadow and
204
+ * pseudo element should be selected with ::element and not :element
205
+ *
206
+ * @thanks Nicolas Gallagher @necolas
207
+ * @link http://nicolasgallagher.com/pure-css-folded-corner-effect/demo/
208
+ */
209
+ /**
210
+ * Note IE7/6 doesn't understand pseudo element as ::before and ::after
211
+ * IE8 need to have :before and not ::before
212
+ * So use only : and not :: if you want to support IE8
213
+ * IE9 Webkit Firefox Opera understand ::
214
+ */
215
+ /**
216
+ * Form element inline mixin
217
+ * This mixin allow you to have a label inline with your input
218
+ * It's simply based on inline-block behavior
219
+ *
220
+ * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
221
+ */
222
+ /**
223
+ * Vertical alignement for page
224
+ * Inspired by http://css-tricks.com/snippets/css/center-div-with-dynamic-height/
225
+ *
226
+ * Usage:
227
+ *
228
+ * SCSS
229
+ * @include vertical-align-requirement;
230
+ * .v-align-container { @include vertical-align-container }
231
+ * .v-align-content-container { @include vertical-align-content-container }
232
+ * .v-align-content { @include vertical-align-content }
233
+ *
234
+ * HTML
235
+ * <body>
236
+ * <div class="v-align-container">
237
+ * <div class="v-align-content-container">
238
+ * <div class="v-align-content">
239
+ * Your content !
240
+ * </div>
241
+ * </div>
242
+ * </div>
243
+ * </body>
244
+ *
245
+ * @thanks Chris Coyier @chriscoyier
246
+ * @autor Maxime Thirouin maxime.thirouin@gmail.com @MoOx
247
+ */
248
+ /**
249
+ * Media Queries Mixins
250
+ *
251
+ * @todo Do we have to take care of print ?
252
+ *
253
+ * @require sass-3.2 (you need eventually to do "sudo gem install sass --pre")
254
+ * @author Maxime Thirouin <maxime.thirouin@gmail.com>
255
+ */
256
+ /*
257
+ $media-query-width-big: 1280px;
258
+ $media-query-width-medium: 960px;
259
+ $media-query-width-small: 480px;
260
+ */
261
+ /**
262
+ * Drop shadow mixins from Nicolas Gallagher demo
263
+ *
264
+ * @thanks Nicolas Gallagher @necolas, @simurai, @cameronmoll, @matthamm
265
+ *
266
+ * @link http://nicolasgallagher.com/css-drop-shadows-without-images/demo/
267
+ */
268
+ /**
269
+ * Drop shadow curled
270
+ *
271
+ * @thanks Nicolas Gallagher @necolas
272
+ * @link http://nicolasgallagher.com/css-drop-shadows-without-images/demo/
273
+ */
274
+ /**
275
+ * Drop shadow curved
276
+ *
277
+ * @thanks Nicolas Gallagher @necolas
278
+ * @link http://nicolasgallagher.com/css-drop-shadows-without-images/demo/
279
+ */
280
+ /**
281
+ * Drop shadow flying
282
+ *
283
+ * @thanks Geoffrey Crofte @geoffrey_crofte
284
+ * @link http://www.creativejuiz.fr/trytotry/css3-box-shadow-after-before/
285
+ */
286
+ /**
287
+ * Drop shadow w/ lifted corners
288
+ *
289
+ * @thanks Nicolas Gallagher @necolas
290
+ * @link http://nicolasgallagher.com/css-drop-shadows-without-images/demo/
291
+ */
292
+ /**
293
+ * Drop shadow w/ perspective
294
+ *
295
+ * @thanks Nicolas Gallagher @necolas
296
+ * @link http://nicolasgallagher.com/css-drop-shadows-without-images/demo/
297
+ */
298
+ /**
299
+ * Drop shadow raised
300
+ *
301
+ * @thanks Nicolas Gallagher @necolas
302
+ * @link http://nicolasgallagher.com/css-drop-shadows-without-images/demo/
303
+ */
304
+ /**
305
+ * Drop shadow rules required for transform on drop shadow
306
+ *
307
+ * /!\ This is required if you want to apply some transform on the element using drop shadow
308
+ *
309
+ * @thanks Nicolas Gallagher @necolas
310
+ * @link http://nicolasgallagher.com/css-drop-shadows-without-images/demo/
311
+ */
312
+ /**
313
+ * Shadow along the top edge of the browser viewport
314
+ *
315
+ * @link http://playground.genelocklin.com/depth/
316
+ */
317
+ /**
318
+ * Shapes !
319
+ * Polygons, ellipses and symbols
320
+ *
321
+ * @thanks Chris Coyier @chriscoyier
322
+ * @link http://css-tricks.com/examples/ShapesOfCSS/
323
+ * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
324
+ */
325
+ /**
326
+ * Shape/Ellipse
327
+ *
328
+ * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
329
+ */
330
+ /**
331
+ * Shape/Polygon
332
+ *
333
+ * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
334
+ */
335
+ /**
336
+ * Shape/Polygon/Hexagon
337
+ *
338
+ * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
339
+ */
340
+ /**
341
+ * Shape/Polygon/Octagon
342
+ *
343
+ * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
344
+ */
345
+ /**
346
+ * Shape/Polygon/Parallelogram
347
+ *
348
+ * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
349
+ */
350
+ /**
351
+ * Shape/Polygon/Pentagon
352
+ *
353
+ * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
354
+ */
355
+ /**
356
+ * Shape/Polygon/Rectangle
357
+ *
358
+ * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
359
+ */
360
+ /**
361
+ * Shape/Polygon/Rhombus
362
+ *
363
+ * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
364
+ */
365
+ /**
366
+ * Shape/Polygon/Square
367
+ *
368
+ * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
369
+ */
370
+ /**
371
+ * Shape/Polygon/Star
372
+ *
373
+ * @todo check if setting a z-index by default is a good thing
374
+ * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
375
+ */
376
+ /**
377
+ * Shape/Polygon/Trapezoid
378
+ *
379
+ * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
380
+ */
381
+ /**
382
+ * Shape/Polygon/Triangle
383
+ *
384
+ * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
385
+ */
386
+ /**
387
+ * Shape/Symbol
388
+ *
389
+ * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
390
+ */
391
+ /**
392
+ * Shape/Symbol/Diamond
393
+ *
394
+ * @todo add height support
395
+ *
396
+ * @author Alexander Futekov
397
+ * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
398
+ */
399
+ /**
400
+ * Shape/Symbol/Egg
401
+ *
402
+ * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
403
+ */
404
+ /**
405
+ * Shape/Symbol/Heart
406
+ *
407
+ * @author Nicolas Gallagher @necolas
408
+ * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
409
+ */
410
+ /**
411
+ * Shape/Symbol/Infinity
412
+ *
413
+ * @author Nicolas Gallagher @necolas
414
+ * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
415
+ */
416
+ /**
417
+ * Shape/Symbol/Pacman
418
+ *
419
+ * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
420
+ */
421
+ /**
422
+ * Shape/Symbol/Yin-yang
423
+ *
424
+ * @author Alexander Futekov
425
+ * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
426
+ */
427
+ /**
428
+ * Micro clearfix hack
429
+ *
430
+ * The clearfix hack is a popular way to clear floats without resorting to using presentational markup. This article presents an update to the clearfix method that further reduces the amount of CSS required.
431
+ * Known support: Firefox 2+, Safari 2+, Chrome, Opera 9.27+, IE 6+, IE Mac.
432
+ *
433
+ * @thanks Nicolas Gallagher @necolas
434
+ * @link http://nicolasgallagher.com/micro-clearfix-hack/
435
+ */
436
+ /**
437
+ * Note IE7/6 doesn't understand pseudo element as ::before and ::after
438
+ * IE8 need to have :before and not ::before
439
+ * So use only : and not :: if you want to support IE8
440
+ * IE9 Webkit Firefox Opera understand ::
441
+ */
442
+ /**
443
+ * UI convex effect from one color
444
+ *
445
+ * @todo merge with ui-button ?
446
+ *
447
+ * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
448
+ */
449
+ /**
450
+ * UI Glossy helper
451
+ *
452
+ * @deprecated
453
+ * @todo Remove in 0.4
454
+ * @see background/gradients
455
+ *
456
+ * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
457
+ */
458
+ /**
459
+ * UI simple gradient from one color
460
+ *
461
+ * @todo merge with ui-button ?
462
+ *
463
+ * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
464
+ */
465
+ /**
466
+ * Shape/Polygon/Triangle
467
+ *
468
+ * @author Maxime Thirouin maxime.thirouin@gmail.com @MoOx
469
+ */
470
+ /**
471
+ * Keyboard key touch
472
+ * A simple stylesheet for rendering beautiful keyboard-style elements.
473
+
474
+ * @author Michael Hüneburg http://michaelhue.com/keyscss
475
+ * @link https://github.com/michaelhue/keyscss (commit 76bb603e921d0145362e0f60eabb79d4f69cbda0)
476
+ *
477
+ * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
478
+ */
479
+ /**
480
+ * Menu dropdown helper
481
+ *
482
+ * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
483
+ */
484
+ /**
485
+ * Ui background overlay inspired by Google Chrome modal overlay
486
+ *
487
+ * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
488
+ */
489
+ /**
490
+ * Background overlay inspired by Google Chrome modal overlay
491
+ *
492
+ * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
493
+ */
494
+ /**
495
+ * <hr /> separator style
496
+ *
497
+ * @author Chris Coyier @chriscoyier
498
+ * @link http://jsfiddle.net/chriscoyier/GaEzp/35/
499
+ *
500
+ * @author Maxime Thirouin @MoOx maxime.thirouin@gmail.com
501
+ */
502
+ /**
503
+ * Micro clearfix hack
504
+ *
505
+ * The clearfix hack is a popular way to clear floats without resorting to using presentational markup. This article presents an update to the clearfix method that further reduces the amount of CSS required.
506
+ * Known support: Firefox 2+, Safari 2+, Chrome, Opera 9.27+, IE 6+, IE Mac.
507
+ *
508
+ * @thanks Nicolas Gallagher @necolas
509
+ * @link http://nicolasgallagher.com/micro-clearfix-hack/
510
+ */
511
+ /**
512
+ * Note IE7/6 doesn't understand pseudo element as ::before and ::after
513
+ * IE8 need to have :before and not ::before
514
+ * So use only : and not :: if you want to support IE8
515
+ * IE9 Webkit Firefox Opera understand ::
516
+ */
517
+ /**
518
+ *
519
+ * @class Gradients
520
+ * @author David Kaneda http://www.davidkaneda.com/
521
+ *
522
+ */
523
+ /**
524
+ * Adds a background gradient into a specified selector.
525
+ *
526
+ * @include background-gradient(#444, 'glossy');
527
+ *
528
+ * You can also use color-stops if you want full control of the gradient:
529
+ *
530
+ * @include background-gradient(#444, color-stops(#333, #222, #111));
531
+ *
532
+ * @param {color} $bg-color
533
+ * The base color of the gradient.
534
+ *
535
+ * @param {string/list} $type
536
+ * The style of the gradient, one of five pre-defined options: matte, bevel, glossy, recessed, or linear:
537
+ *
538
+ * @include background-gradient(red, 'glossy');
539
+ *
540
+ * It can also accept a list of color-stop values:;
541
+ *
542
+ * @include background-gradient(black, color-stops(#333, #111, #000));
543
+ *
544
+ * @param {string} $direction
545
+ * The direction of the gradient.
546
+ */
547
+ /**
548
+ * @class Webfont Icon
549
+ * Great to use with the [Pictos font](http://pictos.drewwilson.com/)
550
+ *
551
+ */
552
+ /**
553
+ * @cfg {color} $webfont-icon-base-color
554
+ * The default color of icons when using the {@link #webfont-icon} mixin.
555
+ *
556
+ * Defaults to `white`.
557
+ */
558
+ /**
559
+ * @cfg {color} $webfont-icon-default-stroke
560
+ * The default color to use on the border of icons, when using the {@link #webfont-icon} mixin.
561
+ *
562
+ * Defaults to `null`.
563
+ */
564
+ /**
565
+ * @cfg {string} $webfont-icon-default-gradient
566
+ * The default gradient to use when using the {@link #webfont-icon} mixin.
567
+ *
568
+ * Defaults to `matte`.
569
+ */
570
+ /* line 41, ../compass-recipes/stylesheets/recipes/_webfont-icon.scss */
571
+ .webfont-icon-base {
572
+ color: transparent;
573
+ -webkit-background-clip: text;
574
+ background-clip: text;
575
+ position: absolute;
576
+ top: 0;
577
+ left: 0;
578
+ text-indent: 0;
579
+ text-shadow: none;
580
+ -webkit-user-select: none;
581
+ user-select: none;
582
+ }
583
+
584
+ /**
585
+ * Includes a character into the specified selector, styled as an icon.
586
+ *
587
+ * @include webfont-icon('a');
588
+ *
589
+ * @param {color} $color
590
+ * The color of the icon. Defaults to {@link #$webfont-icon-default-background $webfont-icon-default-background}.
591
+ *
592
+ * @param {measurement} $size
593
+ * The size of the icon
594
+ *
595
+ * @param {color} $stroke
596
+ * The color of the border. Defautls to {@link #$webfont-icon-default-border $webfont-icon-default-border}.
597
+ *
598
+ * @param {boolean} $include-staes
599
+ * True to include states for hover and active. Defaults to `true`.
600
+ */
601
+ /* line 1, ../scss/include/_base.scss */
602
+ * {
603
+ margin: 0;
604
+ padding: 0;
605
+ }
606
+
607
+ /* line 6, ../scss/include/_base.scss */
608
+ body {
609
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
610
+ -webkit-touch-callout: none;
611
+ }
612
+
613
+ /* line 11, ../scss/include/_base.scss */
614
+ #jqt {
615
+ -webkit-text-size-adjust: none;
616
+ -webkit-user-select: none;
617
+ user-select: none;
618
+ font-family: "Helvetica Neue", Helvetica;
619
+ position: absolute;
620
+ right: 0;
621
+ top: 0;
622
+ left: 0;
623
+ bottom: 0;
624
+ }
625
+ /* line 21, ../scss/include/_base.scss */
626
+ #jqt a {
627
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
628
+ -webkit-user-drag: none;
629
+ }
630
+ /* line 26, ../scss/include/_base.scss */
631
+ #jqt .selectable, #jqt input, #jqt textarea {
632
+ -webkit-user-select: auto;
633
+ }
634
+ /* line 30, ../scss/include/_base.scss */
635
+ #jqt.notransform {
636
+ -webkit-transform: none !important;
637
+ }
638
+ /* line 35, ../scss/include/_base.scss */
639
+ #jqt > * {
640
+ display: block;
641
+ left: 0;
642
+ top: 0;
643
+ min-height: 100%;
644
+ width: 100%;
645
+ overflow-x: hidden;
646
+ position: absolute;
647
+ z-index: 0;
648
+ display: -webkit-box;
649
+ display: box;
650
+ -webkit-box-orient: vertical;
651
+ box-orient: vertical;
652
+ -webkit-box-flex: 1;
653
+ box-flex: 1;
654
+ }
655
+ /* line 49, ../scss/include/_base.scss */
656
+ #jqt > .current {
657
+ z-index: 10;
658
+ }
659
+ /* line 53, ../scss/include/_base.scss */
660
+ #jqt > :not(.current) {
661
+ display: none;
662
+ }
663
+ /* line 57, ../scss/include/_base.scss */
664
+ #jqt.touchscroll:not(.animating3d) {
665
+ overflow-y: auto;
666
+ -webkit-overflow-scrolling: touch;
667
+ }
668
+ /* line 61, ../scss/include/_base.scss */
669
+ #jqt.touchscroll:not(.animating3d) > * {
670
+ height: 100%;
671
+ }
672
+ /* line 64, ../scss/include/_base.scss */
673
+ #jqt.touchscroll:not(.animating3d) .scroll {
674
+ position: relative;
675
+ -webkit-box-flex: 1;
676
+ box-flex: 1;
677
+ overflow-y: auto;
678
+ -webkit-overflow-scrolling: touch;
679
+ }
680
+ /* line 72, ../scss/include/_base.scss */
681
+ #jqt .scroll {
682
+ -webkit-margin-collapse: separate;
683
+ }
684
+ /* line 76, ../scss/include/_base.scss */
685
+ #jqt .in, #jqt .out {
686
+ -webkit-animation-duration: 250ms;
687
+ -webkit-animation-fill-mode: both;
688
+ -webkit-animation-timing-function: ease-in-out;
689
+ }
690
+ /* line 82, ../scss/include/_base.scss */
691
+ #jqt .in {
692
+ z-index: 10;
693
+ }
694
+ /* line 85, ../scss/include/_base.scss */
695
+ #jqt .in:after {
696
+ content: "";
697
+ position: absolute;
698
+ display: block;
699
+ top: 0;
700
+ left: 0;
701
+ bottom: 0;
702
+ right: 0;
703
+ }
704
+ /* line 94, ../scss/include/_base.scss */
705
+ #jqt .out {
706
+ z-index: 0 !important;
707
+ }
708
+ /* line 98, ../scss/include/_base.scss */
709
+ #jqt.supports3d {
710
+ -webkit-perspective: 1000;
711
+ }
712
+ /* line 101, ../scss/include/_base.scss */
713
+ #jqt.supports3d > * {
714
+ -webkit-transform: translate3d(0, 0, 0) rotate(0) scale(1);
715
+ }
716
+
717
+ /* Fade */
718
+ /* line 3, ../scss/include/_animations.scss */
719
+ #jqt .fade.in {
720
+ -webkit-animation-name: fadeIn;
721
+ }
722
+
723
+ /* line 7, ../scss/include/_animations.scss */
724
+ #jqt .fade.out {
725
+ z-index: 10;
726
+ -webkit-animation-name: fadeOut;
727
+ }
728
+
729
+ @-webkit-keyframes fadeIn {
730
+ /* line 13, ../scss/include/_animations.scss */
731
+ 0% {
732
+ opacity: 0;
733
+ }
734
+
735
+ /* line 16, ../scss/include/_animations.scss */
736
+ 100% {
737
+ opacity: 1;
738
+ }
739
+ }
740
+
741
+ @-webkit-keyframes fadeOut {
742
+ /* line 22, ../scss/include/_animations.scss */
743
+ 0% {
744
+ opacity: 1;
745
+ }
746
+
747
+ /* line 25, ../scss/include/_animations.scss */
748
+ 100% {
749
+ opacity: 1;
750
+ }
751
+ }
752
+
753
+ /* Disolve */
754
+ /* line 34, ../scss/include/_animations.scss */
755
+ #jqt .dissolve.in {
756
+ -webkit-animation-name: dissolveIn;
757
+ }
758
+
759
+ /* line 38, ../scss/include/_animations.scss */
760
+ #jqt .dissolve.out {
761
+ -webkit-animation-name: dissolveOut;
762
+ }
763
+
764
+ @-webkit-keyframes dissolveIn {
765
+ /* line 43, ../scss/include/_animations.scss */
766
+ 0% {
767
+ opacity: 0;
768
+ }
769
+
770
+ /* line 46, ../scss/include/_animations.scss */
771
+ 100% {
772
+ opacity: 1;
773
+ }
774
+ }
775
+
776
+ @-webkit-keyframes dissolveOut {
777
+ /* line 52, ../scss/include/_animations.scss */
778
+ 0% {
779
+ opacity: 1;
780
+ }
781
+
782
+ /* line 55, ../scss/include/_animations.scss */
783
+ 100% {
784
+ opacity: 0;
785
+ }
786
+ }
787
+
788
+ /* #Popin' */
789
+ /* line 64, ../scss/include/_animations.scss */
790
+ #jqt .pop.in {
791
+ -webkit-animation-name: popIn;
792
+ }
793
+
794
+ /* line 68, ../scss/include/_animations.scss */
795
+ #jqt .pop.out {
796
+ -webkit-animation-name: popOut;
797
+ }
798
+
799
+ @-webkit-keyframes popIn {
800
+ /* line 73, ../scss/include/_animations.scss */
801
+ 0% {
802
+ -webkit-transform: scale(0.2);
803
+ opacity: 0;
804
+ }
805
+
806
+ /* line 77, ../scss/include/_animations.scss */
807
+ 100% {
808
+ -webkit-transform: scale(1);
809
+ opacity: 1;
810
+ }
811
+ }
812
+
813
+ @-webkit-keyframes popOut {
814
+ /* line 84, ../scss/include/_animations.scss */
815
+ 0% {
816
+ -webkit-transform: scale(1);
817
+ opacity: 1;
818
+ }
819
+
820
+ /* line 88, ../scss/include/_animations.scss */
821
+ 100% {
822
+ -webkit-transform: scale(0.2);
823
+ opacity: 0;
824
+ }
825
+ }
826
+
827
+ /* Slide Left */
828
+ /* line 98, ../scss/include/_animations.scss */
829
+ #jqt .slideleft.in {
830
+ -webkit-animation-name: slideLeftIn;
831
+ }
832
+
833
+ /* line 102, ../scss/include/_animations.scss */
834
+ #jqt .slideleft.out {
835
+ -webkit-animation-name: slideLeftOut;
836
+ }
837
+
838
+ @-webkit-keyframes slideLeftIn {
839
+ /* line 107, ../scss/include/_animations.scss */
840
+ 0% {
841
+ -webkit-transform: translateX(100%);
842
+ }
843
+
844
+ /* line 110, ../scss/include/_animations.scss */
845
+ 100% {
846
+ -webkit-transform: translateX(0);
847
+ }
848
+ }
849
+
850
+ @-webkit-keyframes slideLeftOut {
851
+ /* line 116, ../scss/include/_animations.scss */
852
+ 0% {
853
+ -webkit-transform: translateX(0px);
854
+ }
855
+
856
+ /* line 119, ../scss/include/_animations.scss */
857
+ 100% {
858
+ -webkit-transform: translateX(-100%);
859
+ }
860
+ }
861
+
862
+ /* Slide Right */
863
+ /* line 128, ../scss/include/_animations.scss */
864
+ #jqt .slideright.in {
865
+ -webkit-animation-name: slideRightIn;
866
+ }
867
+
868
+ /* line 132, ../scss/include/_animations.scss */
869
+ #jqt .slideright.out {
870
+ -webkit-animation-name: slideRightOut;
871
+ }
872
+
873
+ @-webkit-keyframes slideRightIn {
874
+ /* line 137, ../scss/include/_animations.scss */
875
+ 0% {
876
+ -webkit-transform: translateX(-100%);
877
+ }
878
+
879
+ /* line 140, ../scss/include/_animations.scss */
880
+ 100% {
881
+ -webkit-transform: translateX(0);
882
+ }
883
+ }
884
+
885
+ @-webkit-keyframes slideRightOut {
886
+ /* line 146, ../scss/include/_animations.scss */
887
+ 0% {
888
+ -webkit-transform: translateX(0);
889
+ }
890
+
891
+ /* line 149, ../scss/include/_animations.scss */
892
+ 100% {
893
+ -webkit-transform: translateX(100%);
894
+ }
895
+ }
896
+
897
+ /* Slide Up */
898
+ /* line 158, ../scss/include/_animations.scss */
899
+ #jqt .slideup.in {
900
+ z-index: 10;
901
+ -webkit-animation-name: slideUpIn;
902
+ }
903
+
904
+ /* line 162, ../scss/include/_animations.scss */
905
+ #jqt .slideup.out {
906
+ z-index: 0;
907
+ -webkit-animation-name: slideUpOut;
908
+ }
909
+
910
+ @-webkit-keyframes slideUpIn {
911
+ /* line 168, ../scss/include/_animations.scss */
912
+ 0% {
913
+ -webkit-transform: translateY(100%);
914
+ }
915
+
916
+ /* line 171, ../scss/include/_animations.scss */
917
+ 100% {
918
+ -webkit-transform: translateY(0);
919
+ }
920
+ }
921
+
922
+ @-webkit-keyframes slideUpOut {
923
+ /* line 177, ../scss/include/_animations.scss */
924
+ 0% {
925
+ -webkit-transform: translateY(0);
926
+ }
927
+
928
+ /* line 180, ../scss/include/_animations.scss */
929
+ 100% {
930
+ -webkit-transform: translateY(0);
931
+ }
932
+ }
933
+
934
+ /* Slide Down */
935
+ /* line 189, ../scss/include/_animations.scss */
936
+ #jqt .slidedown.in {
937
+ z-index: 0;
938
+ -webkit-animation-name: slideDownIn;
939
+ }
940
+
941
+ /* line 193, ../scss/include/_animations.scss */
942
+ #jqt .slidedown.out {
943
+ z-index: 10;
944
+ -webkit-animation-name: slideDownOut;
945
+ }
946
+
947
+ @-webkit-keyframes slideDownIn {
948
+ /* line 199, ../scss/include/_animations.scss */
949
+ 0% {
950
+ -webkit-transform: translateY(0);
951
+ }
952
+
953
+ /* line 202, ../scss/include/_animations.scss */
954
+ 100% {
955
+ -webkit-transform: translateY(0);
956
+ }
957
+ }
958
+
959
+ @-webkit-keyframes slideDownOut {
960
+ /* line 208, ../scss/include/_animations.scss */
961
+ 0% {
962
+ -webkit-transform: translateY(0);
963
+ }
964
+
965
+ /* line 211, ../scss/include/_animations.scss */
966
+ 100% {
967
+ -webkit-transform: translateY(100%);
968
+ }
969
+ }
970
+
971
+ /* Flip Left */
972
+ /* line 220, ../scss/include/_animations.scss */
973
+ #jqt .flipleft {
974
+ -webkit-backface-visibility: hidden;
975
+ }
976
+
977
+ /* line 224, ../scss/include/_animations.scss */
978
+ #jqt .flipleft.in {
979
+ -webkit-animation-name: flipLeftIn;
980
+ }
981
+
982
+ /* line 228, ../scss/include/_animations.scss */
983
+ #jqt .flipleft.out {
984
+ -webkit-animation-name: flipLeftOut;
985
+ }
986
+
987
+ @-webkit-keyframes flipLeftIn {
988
+ /* line 233, ../scss/include/_animations.scss */
989
+ 0% {
990
+ -webkit-transform: rotateY(180deg) scale(0.8);
991
+ }
992
+
993
+ /* line 236, ../scss/include/_animations.scss */
994
+ 100% {
995
+ -webkit-transform: rotateY(0deg) scale(1);
996
+ }
997
+ }
998
+
999
+ @-webkit-keyframes flipLeftOut {
1000
+ /* line 242, ../scss/include/_animations.scss */
1001
+ 0% {
1002
+ -webkit-transform: rotateY(0deg) scale(1);
1003
+ }
1004
+
1005
+ /* line 245, ../scss/include/_animations.scss */
1006
+ 100% {
1007
+ -webkit-transform: rotateY(-180deg) scale(0.8);
1008
+ }
1009
+ }
1010
+
1011
+ /* Flip Right */
1012
+ /* line 254, ../scss/include/_animations.scss */
1013
+ #jqt .flipright {
1014
+ -webkit-backface-visibility: hidden;
1015
+ }
1016
+
1017
+ /* line 258, ../scss/include/_animations.scss */
1018
+ #jqt .flipright.in {
1019
+ -webkit-animation-name: flipRightIn;
1020
+ }
1021
+
1022
+ /* line 262, ../scss/include/_animations.scss */
1023
+ #jqt .flipright.out {
1024
+ -webkit-animation-name: flipRightOut;
1025
+ }
1026
+
1027
+ @-webkit-keyframes flipRightIn {
1028
+ /* line 267, ../scss/include/_animations.scss */
1029
+ 0% {
1030
+ -webkit-transform: rotateY(-180deg) scale(0.8);
1031
+ }
1032
+
1033
+ /* line 270, ../scss/include/_animations.scss */
1034
+ 100% {
1035
+ -webkit-transform: rotateY(0deg) scale(1);
1036
+ }
1037
+ }
1038
+
1039
+ @-webkit-keyframes flipRightOut {
1040
+ /* line 276, ../scss/include/_animations.scss */
1041
+ 0% {
1042
+ -webkit-transform: rotateY(0deg) scale(1);
1043
+ }
1044
+
1045
+ /* line 279, ../scss/include/_animations.scss */
1046
+ 100% {
1047
+ -webkit-transform: rotateY(180deg) scale(0.8);
1048
+ }
1049
+ }
1050
+
1051
+ /* Swap Right */
1052
+ /* line 288, ../scss/include/_animations.scss */
1053
+ #jqt .swapright {
1054
+ -webkit-animation-duration: .7s;
1055
+ -webkit-transform: perspective(800);
1056
+ -webkit-animation-timing-function: ease-out;
1057
+ }
1058
+
1059
+ /* line 293, ../scss/include/_animations.scss */
1060
+ #jqt .swapright.in {
1061
+ -webkit-animation-name: swapRightIn;
1062
+ }
1063
+
1064
+ /* line 296, ../scss/include/_animations.scss */
1065
+ #jqt .swapright.out {
1066
+ -webkit-animation-name: swapRightOut;
1067
+ }
1068
+
1069
+ @-webkit-keyframes swapRightIn {
1070
+ /* line 301, ../scss/include/_animations.scss */
1071
+ 0% {
1072
+ -webkit-transform: translate3d(0px, 0px, -800px) rotateY(70deg);
1073
+ opacity: 0;
1074
+ }
1075
+
1076
+ /* line 305, ../scss/include/_animations.scss */
1077
+ 35% {
1078
+ -webkit-transform: translate3d(-180px, 0px, -400px) rotateY(20deg);
1079
+ opacity: 1;
1080
+ }
1081
+
1082
+ /* line 309, ../scss/include/_animations.scss */
1083
+ 100% {
1084
+ -webkit-transform: translate3d(0px, 0px, 0px) rotateY(0deg);
1085
+ opacity: 1;
1086
+ }
1087
+ }
1088
+
1089
+ @-webkit-keyframes swapRightOut {
1090
+ /* line 316, ../scss/include/_animations.scss */
1091
+ 0% {
1092
+ -webkit-transform: translate3d(0px, 0px, 0px) rotateY(0deg);
1093
+ opacity: 1;
1094
+ }
1095
+
1096
+ /* line 320, ../scss/include/_animations.scss */
1097
+ 35% {
1098
+ -webkit-transform: translate3d(180px, 0px, -400px) rotateY(-20deg);
1099
+ opacity: .5;
1100
+ }
1101
+
1102
+ /* line 324, ../scss/include/_animations.scss */
1103
+ 100% {
1104
+ -webkit-transform: translate3d(0px, 0px, -800px) rotateY(-70deg);
1105
+ opacity: 0;
1106
+ }
1107
+ }
1108
+
1109
+ /* Swap Left */
1110
+ /* line 332, ../scss/include/_animations.scss */
1111
+ #jqt .swapleft {
1112
+ -webkit-animation-duration: .7s;
1113
+ -webkit-transform: perspective(800);
1114
+ -webkit-animation-timing-function: ease-out;
1115
+ }
1116
+
1117
+ /* line 337, ../scss/include/_animations.scss */
1118
+ #jqt .swapleft.in {
1119
+ -webkit-animation-name: swapLeftIn;
1120
+ }
1121
+
1122
+ /* line 340, ../scss/include/_animations.scss */
1123
+ #jqt .swapleft.out {
1124
+ -webkit-animation-name: swapLeftOut;
1125
+ }
1126
+
1127
+ @-webkit-keyframes swapLeftIn {
1128
+ /* line 345, ../scss/include/_animations.scss */
1129
+ 0% {
1130
+ -webkit-transform: translate3d(0px, 0px, -800px) rotateY(-70deg);
1131
+ opacity: 0;
1132
+ }
1133
+
1134
+ /* line 349, ../scss/include/_animations.scss */
1135
+ 35% {
1136
+ -webkit-transform: translate3d(180px, 0px, -400px) rotateY(-20deg);
1137
+ opacity: 1;
1138
+ }
1139
+
1140
+ /* line 353, ../scss/include/_animations.scss */
1141
+ 100% {
1142
+ opacity: 1;
1143
+ -webkit-transform: translate3d(0px, 0px, 0px) rotateY(0deg);
1144
+ }
1145
+ }
1146
+
1147
+ @-webkit-keyframes swapLeftOut {
1148
+ /* line 360, ../scss/include/_animations.scss */
1149
+ 0% {
1150
+ -webkit-transform: translate3d(0px, 0px, 0px) rotateY(0deg);
1151
+ opacity: 1;
1152
+ }
1153
+
1154
+ /* line 364, ../scss/include/_animations.scss */
1155
+ 35% {
1156
+ -webkit-transform: translate3d(-180px, 0px, -400px) rotateY(20deg);
1157
+ opacity: .5;
1158
+ }
1159
+
1160
+ /* line 368, ../scss/include/_animations.scss */
1161
+ 100% {
1162
+ -webkit-transform: translate3d(0px, 0px, -800px) rotateY(70deg);
1163
+ opacity: 0;
1164
+ }
1165
+ }
1166
+
1167
+ /* Cube Left */
1168
+ /* line 382, ../scss/include/_animations.scss */
1169
+ #jqt .cubeleft.in, #jqt .cubeleft.out, #jqt .cuberight.in, #jqt .cuberight.out {
1170
+ -webkit-animation-duration: .6s;
1171
+ -webkit-transform: perspective(800);
1172
+ }
1173
+
1174
+ /* line 389, ../scss/include/_animations.scss */
1175
+ #jqt .cubeleft.in {
1176
+ -webkit-transform-origin: 0% 50%;
1177
+ -webkit-animation-name: cubeLeftIn;
1178
+ }
1179
+
1180
+ /* line 394, ../scss/include/_animations.scss */
1181
+ #jqt .cubeleft.out {
1182
+ -webkit-transform-origin: 100% 50%;
1183
+ -webkit-animation-name: cubeLeftOut;
1184
+ }
1185
+
1186
+ @-webkit-keyframes cubeLeftIn {
1187
+ /* line 400, ../scss/include/_animations.scss */
1188
+ 0% {
1189
+ -webkit-transform: rotateY(90deg) translateZ(320px);
1190
+ opacity: .5;
1191
+ }
1192
+
1193
+ /* line 404, ../scss/include/_animations.scss */
1194
+ 100% {
1195
+ -webkit-transform: rotateY(0deg) translateZ(0) translateX(0);
1196
+ opacity: 1;
1197
+ }
1198
+ }
1199
+
1200
+ @-webkit-keyframes cubeLeftOut {
1201
+ /* line 411, ../scss/include/_animations.scss */
1202
+ 0% {
1203
+ -webkit-transform: rotateY(0deg) translateZ(0) translateX(0);
1204
+ opacity: 1;
1205
+ }
1206
+
1207
+ /* line 415, ../scss/include/_animations.scss */
1208
+ 100% {
1209
+ -webkit-transform: rotateY(-90deg) translateZ(320px);
1210
+ opacity: .5;
1211
+ }
1212
+ }
1213
+
1214
+ /* Cube Right */
1215
+ /* line 423, ../scss/include/_animations.scss */
1216
+ #jqt .cuberight.in {
1217
+ -webkit-transform-origin: 100% 50%;
1218
+ -webkit-animation-name: cubeRightIn;
1219
+ }
1220
+
1221
+ /* line 428, ../scss/include/_animations.scss */
1222
+ #jqt .cuberight.out {
1223
+ -webkit-transform-origin: 0% 50%;
1224
+ -webkit-animation-name: cubeRightOut;
1225
+ }
1226
+
1227
+ @-webkit-keyframes cubeRightIn {
1228
+ /* line 434, ../scss/include/_animations.scss */
1229
+ 0% {
1230
+ -webkit-transform: rotateY(-90deg) translateZ(320px);
1231
+ opacity: .5;
1232
+ }
1233
+
1234
+ /* line 438, ../scss/include/_animations.scss */
1235
+ 100% {
1236
+ -webkit-transform: rotateY(0deg) translateZ(0) translateX(0);
1237
+ opacity: 1;
1238
+ }
1239
+ }
1240
+
1241
+ @-webkit-keyframes cubeRightOut {
1242
+ /* line 445, ../scss/include/_animations.scss */
1243
+ 0% {
1244
+ -webkit-transform: rotateY(0deg) translateZ(0) translateX(0);
1245
+ opacity: 1;
1246
+ }
1247
+
1248
+ /* line 449, ../scss/include/_animations.scss */
1249
+ 100% {
1250
+ -webkit-transform: rotateY(90deg) translateZ(320px);
1251
+ opacity: .5;
1252
+ }
1253
+ }
1254
+
1255
+ /* line 5, ../scss/include/_skeleton.scss */
1256
+ body {
1257
+ background: black;
1258
+ }
1259
+
1260
+ /* line 9, ../scss/include/_skeleton.scss */
1261
+ .base-chevron, #jqt ul li.arrow:after, #jqt ul li.forward:after {
1262
+ content: '›';
1263
+ width: 22px;
1264
+ height: 100%;
1265
+ vertical-align: middle;
1266
+ font-size: 30px;
1267
+ line-height: 38px;
1268
+ font-family: Futura, "Futura Condensed", Helvetica, Arial, sans-serif;
1269
+ font-weight: bold;
1270
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
1271
+ opacity: 0.6;
1272
+ position: absolute;
1273
+ right: 0;
1274
+ top: 0;
1275
+ pointer-events: none;
1276
+ z-index: 10;
1277
+ }
1278
+
1279
+ /* line 26, ../scss/include/_skeleton.scss */
1280
+ .base-flatlists, #jqt ul.metal, #jqt ul.edgetoedge, #jqt ul.plastic {
1281
+ margin: 0;
1282
+ padding: 0;
1283
+ border-width: 0 0 0 1px;
1284
+ -webkit-border-radius: 0;
1285
+ border-radius: 0;
1286
+ }
1287
+
1288
+ /* line 35, ../scss/include/_skeleton.scss */
1289
+ #jqt h1, #jqt h2 {
1290
+ font: bold 18px "Helvetica Neue", Helvetica;
1291
+ margin: 10px 20px 6px;
1292
+ color: #5c6d7b;
1293
+ text-shadow: #e8ebee 0 1px 0;
1294
+ }
1295
+ /* line 41, ../scss/include/_skeleton.scss */
1296
+ #jqt .toolbar {
1297
+ -webkit-box-sizing: border-box;
1298
+ box-sizing: border-box;
1299
+ -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0 1px 6px;
1300
+ box-shadow: rgba(0, 0, 0, 0.4) 0 1px 6px;
1301
+ border-bottom: 1px solid #2a3441;
1302
+ z-index: 10;
1303
+ position: relative;
1304
+ padding: 10px;
1305
+ height: 44px;
1306
+ }
1307
+ /* line 52, ../scss/include/_skeleton.scss */
1308
+ #jqt .toolbar > h1 {
1309
+ position: absolute;
1310
+ overflow: hidden;
1311
+ left: 50%;
1312
+ bottom: 9px;
1313
+ margin: 1px 0 0 -75px;
1314
+ width: 150px;
1315
+ font-size: 20px;
1316
+ font-weight: bold;
1317
+ line-height: 1.3em;
1318
+ text-align: center;
1319
+ text-overflow: ellipsis;
1320
+ white-space: nowrap;
1321
+ color: white;
1322
+ text-shadow: #5c718e 0 -1px 0;
1323
+ }
1324
+ /* line 71, ../scss/include/_skeleton.scss */
1325
+ #jqt.black-translucent .toolbar {
1326
+ padding-top: 30px;
1327
+ height: 64px;
1328
+ }
1329
+ /* line 75, ../scss/include/_skeleton.scss */
1330
+ #jqt.landscape .toolbar > h1 {
1331
+ margin-left: -125px;
1332
+ width: 250px;
1333
+ }
1334
+ /* line 80, ../scss/include/_skeleton.scss */
1335
+ #jqt .button, #jqt .back, #jqt .cancel, #jqt .add {
1336
+ position: absolute;
1337
+ overflow: hidden;
1338
+ width: auto;
1339
+ height: 30px;
1340
+ font-family: inherit;
1341
+ font-size: 12px;
1342
+ font-weight: bold;
1343
+ line-height: 30px;
1344
+ text-overflow: ellipsis;
1345
+ text-decoration: none;
1346
+ white-space: nowrap;
1347
+ background: none;
1348
+ bottom: 6px;
1349
+ right: 10px;
1350
+ margin: 0;
1351
+ padding: 0 10px;
1352
+ color: white;
1353
+ text-shadow: #3e5779 0 -1px 0;
1354
+ -webkit-box-shadow: rgba(255, 255, 255, 0.2) 0 1px 0, rgba(0, 0, 0, 0.2) 0 1px 2px inset;
1355
+ box-shadow: rgba(255, 255, 255, 0.2) 0 1px 0, rgba(0, 0, 0, 0.2) 0 1px 2px inset;
1356
+ border: 1px solid #2d3f57;
1357
+ -webkit-border-radius: 5px;
1358
+ border-radius: 5px;
1359
+ background-image: none;
1360
+ background-color: #50709a;
1361
+ background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #7c97bb), color-stop(50%, #5a7caa), color-stop(51%, #50709a), color-stop(100%, #476489));
1362
+ background-image: -webkit-linear-gradient(top, #7c97bb, #5a7caa 50%, #50709a 51%, #476489);
1363
+ background-image: linear-gradient(top, #7c97bb, #5a7caa 50%, #50709a 51%, #476489);
1364
+ }
1365
+ /* line 107, ../scss/include/_skeleton.scss */
1366
+ #jqt .button.active, #jqt .back.active, #jqt .cancel.active, #jqt .add.active {
1367
+ border-color: #243346;
1368
+ background-image: none;
1369
+ background-color: #476489;
1370
+ background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #6b89b2), color-stop(50%, #50709a), color-stop(51%, #476489), color-stop(100%, #3e5779));
1371
+ background-image: -webkit-linear-gradient(top, #6b89b2, #50709a 50%, #476489 51%, #3e5779);
1372
+ background-image: linear-gradient(top, #6b89b2, #50709a 50%, #476489 51%, #3e5779);
1373
+ color: white;
1374
+ text-shadow: #364b68 0 -1px 0;
1375
+ }
1376
+ /* line 114, ../scss/include/_skeleton.scss */
1377
+ #jqt .back {
1378
+ max-width: 60px;
1379
+ margin-left: 15px;
1380
+ overflow: visible;
1381
+ padding-left: 5px;
1382
+ }
1383
+ /* line 121, ../scss/include/_skeleton.scss */
1384
+ #jqt .back:after, #jqt .back:before {
1385
+ content: '';
1386
+ position: absolute;
1387
+ width: 20px;
1388
+ height: 20px;
1389
+ top: 1px;
1390
+ left: 1px;
1391
+ -webkit-transform: rotate(45deg) translate3d(0.2px, 0, 0);
1392
+ transform: rotate(45deg) translate3d(0.2px, 0, 0);
1393
+ -webkit-transform-origin: 0 0;
1394
+ transform-origin: 0 0;
1395
+ background-image: none;
1396
+ background-color: #50709a;
1397
+ background-image: -webkit-gradient(linear, 0% 0%, 100% 100%, color-stop(0%, #7c97bb), color-stop(50%, #5a7caa), color-stop(51%, #50709a), color-stop(100%, #476489));
1398
+ background-image: -webkit-linear-gradient(top left, #7c97bb, #5a7caa 50%, #50709a 51%, #476489);
1399
+ background-image: linear-gradient(top left, #7c97bb, #5a7caa 50%, #50709a 51%, #476489);
1400
+ background-size: 100% 98%;
1401
+ -webkit-border-radius: 0 0 0 2px;
1402
+ border-radius: 0 0 0 2px;
1403
+ -webkit-mask-image: -webkit-linear-gradient(45deg, black, black 15px, rgba(0, 0, 0, 0) 15px);
1404
+ -webkit-mask-image: -webkit-gradient(linear, left bottom, right top, from(black), color-stop(50%, black), color-stop(50%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0)));
1405
+ -webkit-mask-clip: border-box;
1406
+ -webkit-background-clip: content-box;
1407
+ }
1408
+ /* line 149, ../scss/include/_skeleton.scss */
1409
+ #jqt .back:after {
1410
+ -webkit-box-shadow: rgba(0, 0, 0, 0.2) 1px 0 0 inset, rgba(0, 0, 0, 0.2) 0 -1px 0 inset;
1411
+ box-shadow: rgba(0, 0, 0, 0.2) 1px 0 0 inset, rgba(0, 0, 0, 0.2) 0 -1px 0 inset;
1412
+ }
1413
+ /* line 152, ../scss/include/_skeleton.scss */
1414
+ #jqt .back:before {
1415
+ margin-left: -1px;
1416
+ background: #243346 none;
1417
+ }
1418
+ /* line 157, ../scss/include/_skeleton.scss */
1419
+ #jqt .back.active:after {
1420
+ background-image: none;
1421
+ background-color: #476489;
1422
+ background-image: -webkit-gradient(linear, 0% 0%, 100% 100%, color-stop(0%, #6b89b2), color-stop(50%, #50709a), color-stop(51%, #476489), color-stop(100%, #3e5779));
1423
+ background-image: -webkit-linear-gradient(left top, #6b89b2, #50709a 50%, #476489 51%, #3e5779);
1424
+ background-image: linear-gradient(left top, #6b89b2, #50709a 50%, #476489 51%, #3e5779);
1425
+ }
1426
+ /* line 160, ../scss/include/_skeleton.scss */
1427
+ #jqt .back.active:before {
1428
+ background-color: #243346;
1429
+ }
1430
+ /* line 166, ../scss/include/_skeleton.scss */
1431
+ #jqt .blueButton {
1432
+ background-image: #2f7ce3, glossy;
1433
+ color: white;
1434
+ text-shadow: #1a63c5 0 -1px 0;
1435
+ }
1436
+ /* line 170, ../scss/include/_skeleton.scss */
1437
+ #jqt .whiteButton, #jqt .grayButton, #jqt .redButton, #jqt .blueButton, #jqt .greenButton {
1438
+ display: block;
1439
+ font-size: 20px;
1440
+ font-weight: bold;
1441
+ margin: 10px 20px;
1442
+ padding: 10px;
1443
+ text-align: center;
1444
+ text-decoration: inherit;
1445
+ -webkit-border-radius: 8px;
1446
+ border-radius: 8px;
1447
+ -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0 1px 3px, rgba(0, 0, 0, 0.4) 0 0 0 5px, rgba(255, 255, 255, 0.3) 0 1px 0 5px;
1448
+ box-shadow: rgba(0, 0, 0, 0.4) 0 1px 3px, rgba(0, 0, 0, 0.4) 0 0 0 5px, rgba(255, 255, 255, 0.3) 0 1px 0 5px;
1449
+ }
1450
+ /* line 185, ../scss/include/_skeleton.scss */
1451
+ #jqt .whiteButton.active, #jqt .whiteButton:active, #jqt .grayButton.active, #jqt .grayButton:active, #jqt .redButton.active, #jqt .redButton:active, #jqt .blueButton.active, #jqt .blueButton:active, #jqt .greenButton.active, #jqt .greenButton:active {
1452
+ background-image: none;
1453
+ background-color: #2952a3;
1454
+ background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #4775d1), color-stop(50%, #2e5cb8), color-stop(51%, #2952a3), color-stop(100%, #24478f));
1455
+ background-image: -webkit-linear-gradient(top, #4775d1, #2e5cb8 50%, #2952a3 51%, #24478f);
1456
+ background-image: linear-gradient(top, #4775d1, #2e5cb8 50%, #2952a3 51%, #24478f);
1457
+ color: white;
1458
+ text-shadow: #1f3d7a 0 -1px 0;
1459
+ }
1460
+ /* line 191, ../scss/include/_skeleton.scss */
1461
+ #jqt .whiteButton {
1462
+ background-image: none;
1463
+ background-color: #eeeeee;
1464
+ background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(50%, #fbfbfb), color-stop(51%, #eeeeee), color-stop(100%, #e1e1e1));
1465
+ background-image: -webkit-linear-gradient(top, #ffffff, #fbfbfb 50%, #eeeeee 51%, #e1e1e1);
1466
+ background-image: linear-gradient(top, #ffffff, #fbfbfb 50%, #eeeeee 51%, #e1e1e1);
1467
+ color: #151515;
1468
+ text-shadow: white 0 1px 0;
1469
+ }
1470
+ /* line 195, ../scss/include/_skeleton.scss */
1471
+ #jqt .grayButton {
1472
+ background-image: none;
1473
+ background-color: #444444;
1474
+ background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #6a6a6a), color-stop(50%, #515151), color-stop(51%, #444444), color-stop(100%, #373737));
1475
+ background-image: -webkit-linear-gradient(top, #6a6a6a, #515151 50%, #444444 51%, #373737);
1476
+ background-image: linear-gradient(top, #6a6a6a, #515151 50%, #444444 51%, #373737);
1477
+ color: white;
1478
+ text-shadow: #2b2b2b 0 -1px 0;
1479
+ }
1480
+ /* line 200, ../scss/include/_skeleton.scss */
1481
+ #jqt .redButton {
1482
+ background-image: none;
1483
+ background-color: #d83b38;
1484
+ background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #e57a78), color-stop(50%, #dc504d), color-stop(51%, #d83b38), color-stop(100%, #ce2c28));
1485
+ background-image: -webkit-linear-gradient(top, #e57a78, #dc504d 50%, #d83b38 51%, #ce2c28);
1486
+ background-image: linear-gradient(top, #e57a78, #dc504d 50%, #d83b38 51%, #ce2c28);
1487
+ color: white;
1488
+ text-shadow: #b92724 0 -1px 0;
1489
+ }
1490
+ /* line 204, ../scss/include/_skeleton.scss */
1491
+ #jqt .redButton.active, #jqt .redButton:active {
1492
+ background-image: none;
1493
+ background-color: #c12926;
1494
+ background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #de5856), color-stop(50%, #d52e2b), color-stop(51%, #c12926), color-stop(100%, #ac2422));
1495
+ background-image: -webkit-linear-gradient(top, #de5856, #d52e2b 50%, #c12926 51%, #ac2422);
1496
+ background-image: linear-gradient(top, #de5856, #d52e2b 50%, #c12926 51%, #ac2422);
1497
+ color: white;
1498
+ text-shadow: #97201e 0 -1px 0;
1499
+ }
1500
+ /* line 211, ../scss/include/_skeleton.scss */
1501
+ #jqt .greenButton {
1502
+ background-image: none;
1503
+ background-color: #3366cc;
1504
+ background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #7094db), color-stop(50%, #4775d1), color-stop(51%, #3366cc), color-stop(100%, #2e5cb8));
1505
+ background-image: -webkit-linear-gradient(top, #7094db, #4775d1 50%, #3366cc 51%, #2e5cb8);
1506
+ background-image: linear-gradient(top, #7094db, #4775d1 50%, #3366cc 51%, #2e5cb8);
1507
+ color: white;
1508
+ text-shadow: #2952a3 0 -1px 0;
1509
+ }
1510
+ /* line 216, ../scss/include/_skeleton.scss */
1511
+ #jqt .leftButton, #jqt .cancel, #jqt .back {
1512
+ left: 6px;
1513
+ right: auto;
1514
+ }
1515
+ /* line 221, ../scss/include/_skeleton.scss */
1516
+ #jqt .add {
1517
+ font-size: 24px;
1518
+ line-height: 24px;
1519
+ font-weight: bold;
1520
+ }
1521
+ /* line 229, ../scss/include/_skeleton.scss */
1522
+ #jqt ul {
1523
+ padding: 0;
1524
+ margin: 5px 10px 10px 10px;
1525
+ -webkit-margin-collapse: separate;
1526
+ }
1527
+ /* line 231, ../scss/include/_skeleton.scss */
1528
+ #jqt ul, #jqt ul.individual li {
1529
+ background-color: white;
1530
+ color: gray;
1531
+ text-shadow: white 0 1px 0;
1532
+ border: 1px solid #d9d9d9;
1533
+ font: bold 18px "Helvetica Neue", Helvetica;
1534
+ }
1535
+ /* line 240, ../scss/include/_skeleton.scss */
1536
+ #jqt ul:first-child {
1537
+ margin-top: 15px;
1538
+ }
1539
+ /* line 246, ../scss/include/_skeleton.scss */
1540
+ #jqt ul li {
1541
+ border-top: 1px solid #f2f2f2;
1542
+ list-style-type: none;
1543
+ overflow: hidden;
1544
+ padding: 10px;
1545
+ -webkit-transform: translate3d(0, 0, 0);
1546
+ /* expensive way to avoid flickr */
1547
+ }
1548
+ /* line 253, ../scss/include/_skeleton.scss */
1549
+ #jqt ul li a {
1550
+ text-decoration: none;
1551
+ text-overflow: ellipsis;
1552
+ white-space: nowrap;
1553
+ overflow: hidden;
1554
+ display: block;
1555
+ padding: 10px;
1556
+ margin: -10px;
1557
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
1558
+ -webkit-transform: translateZ(0);
1559
+ color: #262626;
1560
+ text-shadow: white 0 1px 0;
1561
+ }
1562
+ /* line 265, ../scss/include/_skeleton.scss */
1563
+ #jqt ul li a.active {
1564
+ background-image: none;
1565
+ background-color: #3366cc;
1566
+ -webkit-box-shadow: #4372d0 0 1px 0px inset;
1567
+ box-shadow: #4372d0 0 1px 0px inset;
1568
+ color: white;
1569
+ text-shadow: #2952a3 0 -1px 0;
1570
+ }
1571
+ /* line 270, ../scss/include/_skeleton.scss */
1572
+ #jqt ul li a.active small {
1573
+ color: #adc2eb;
1574
+ text-shadow: #0a1429 0 -1px 0;
1575
+ }
1576
+ /* line 271, ../scss/include/_skeleton.scss */
1577
+ #jqt ul li a.active small.counter {
1578
+ background-color: #24478f;
1579
+ }
1580
+ /* line 280, ../scss/include/_skeleton.scss */
1581
+ #jqt ul li small {
1582
+ color: #3366cc;
1583
+ font: 16px "Helvetica Neue", Helvetica;
1584
+ text-align: right;
1585
+ text-overflow: ellipsis;
1586
+ white-space: nowrap;
1587
+ overflow: hidden;
1588
+ display: block;
1589
+ width: 23%;
1590
+ position: relative;
1591
+ z-index: 20;
1592
+ float: right;
1593
+ line-height: 16px;
1594
+ padding: 2px 8px 4px 8px;
1595
+ }
1596
+ /* line 295, ../scss/include/_skeleton.scss */
1597
+ #jqt ul li small.counter {
1598
+ background: #d9d9d9;
1599
+ color: #595959;
1600
+ text-shadow: #e6e6e6 0 1px 0;
1601
+ z-index: 10;
1602
+ font-size: 16px;
1603
+ font-weight: bold;
1604
+ -webkit-border-radius: 3px;
1605
+ border-radius: 3px;
1606
+ display: block;
1607
+ width: auto;
1608
+ }
1609
+ /* line 311, ../scss/include/_skeleton.scss */
1610
+ #jqt ul li ::-webkit-input-placeholder {
1611
+ color: #8293a1;
1612
+ text-shadow: #e8ebee 0 1px 0;
1613
+ }
1614
+ /* line 322, ../scss/include/_skeleton.scss */
1615
+ #jqt ul li input[type="text"],
1616
+ #jqt ul li input[type="password"],
1617
+ #jqt ul li input[type="tel"],
1618
+ #jqt ul li input[type="number"],
1619
+ #jqt ul li input[type="search"],
1620
+ #jqt ul li input[type="email"],
1621
+ #jqt ul li input[type="url"],
1622
+ #jqt ul li textarea, #jqt ul li select {
1623
+ color: black;
1624
+ text-shadow: #e8ebee 0 1px 0;
1625
+ background: transparent url("data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==");
1626
+ border: 0;
1627
+ font: normal 17px "Helvetica Neue", Helvetica;
1628
+ padding: 0;
1629
+ display: inline-block;
1630
+ margin-left: 0px;
1631
+ width: 100%;
1632
+ -webkit-appearance: textarea;
1633
+ }
1634
+ /* line 333, ../scss/include/_skeleton.scss */
1635
+ #jqt ul li textarea {
1636
+ height: 120px;
1637
+ padding: 0;
1638
+ text-indent: -2px;
1639
+ }
1640
+ /* line 338, ../scss/include/_skeleton.scss */
1641
+ #jqt ul li input[type="checkbox"], #jqt ul li input[type="radio"] {
1642
+ margin: 0;
1643
+ padding: 10px;
1644
+ }
1645
+ /* line 342, ../scss/include/_skeleton.scss */
1646
+ #jqt ul li input[type="checkbox"]:after, #jqt ul li input[type="radio"]:after {
1647
+ content: attr(title);
1648
+ position: absolute;
1649
+ display: block;
1650
+ width: 0;
1651
+ left: 21px;
1652
+ top: 12px;
1653
+ font-family: "Helvetica Neue", Helvetica;
1654
+ font-size: 17px;
1655
+ line-height: 21px;
1656
+ width: 246px;
1657
+ margin: 0 0 0 17px;
1658
+ color: black;
1659
+ text-shadow: #e8ebee 0 1px 0;
1660
+ }
1661
+ /* line 355, ../scss/include/_skeleton.scss */
1662
+ #jqt ul li input[type='submit'] {
1663
+ -webkit-border-radius: 4px;
1664
+ border-radius: 4px;
1665
+ background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#eeeeee), to(#9c9ea0));
1666
+ border: 1px outset #aaa;
1667
+ display: block;
1668
+ font-size: inherit;
1669
+ font-weight: inherit;
1670
+ padding: 10px;
1671
+ }
1672
+ /* line 368, ../scss/include/_skeleton.scss */
1673
+ #jqt ul li.arrow small, #jqt ul li.forward small {
1674
+ margin-right: 24px;
1675
+ }
1676
+ /* line 380, ../scss/include/_skeleton.scss */
1677
+ #jqt ul li.forward:before {
1678
+ content: "";
1679
+ position: absolute;
1680
+ display: block;
1681
+ width: 24px;
1682
+ height: 24px;
1683
+ top: 50%;
1684
+ right: 6px;
1685
+ margin-top: -12px;
1686
+ width: 24px;
1687
+ height: 24px;
1688
+ -webkit-border-radius: 12px;
1689
+ border-radius: 12px;
1690
+ background-image: none;
1691
+ background-color: #3366cc;
1692
+ background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #7094db), color-stop(50%, #4775d1), color-stop(51%, #3366cc), color-stop(100%, #2e5cb8));
1693
+ background-image: -webkit-linear-gradient(top, #7094db, #4775d1 50%, #3366cc 51%, #2e5cb8);
1694
+ background-image: linear-gradient(top, #7094db, #4775d1 50%, #3366cc 51%, #2e5cb8);
1695
+ border: 2px solid #fff;
1696
+ -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
1697
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
1698
+ -webkit-box-sizing: border-box;
1699
+ padding: 0;
1700
+ z-index: 10;
1701
+ line-height: 0;
1702
+ pointer-events: none;
1703
+ }
1704
+ /* line 395, ../scss/include/_skeleton.scss */
1705
+ #jqt ul li.forward:after {
1706
+ color: white;
1707
+ text-shadow: #2952a3 0 -1px 0;
1708
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
1709
+ opacity: 1;
1710
+ font-size: 24px;
1711
+ }
1712
+ /* line 404, ../scss/include/_skeleton.scss */
1713
+ #jqt ul.rounded, #jqt ul.individual li {
1714
+ -webkit-box-shadow: rgba(255, 255, 255, 0.15) 0 1px 0;
1715
+ box-shadow: rgba(255, 255, 255, 0.15) 0 1px 0;
1716
+ border: 1px solid #52657f;
1717
+ }
1718
+ /* line 409, ../scss/include/_skeleton.scss */
1719
+ #jqt ul.rounded {
1720
+ -webkit-border-radius: 8px;
1721
+ border-radius: 8px;
1722
+ }
1723
+ /* line 412, ../scss/include/_skeleton.scss */
1724
+ #jqt ul.rounded li:first-child, #jqt ul.rounded li:first-child a {
1725
+ border-top: 0;
1726
+ -webkit-border-top-left-radius: 8px;
1727
+ border-top-left-radius: 8px;
1728
+ -webkit-border-top-right-radius: 8px;
1729
+ border-top-right-radius: 8px;
1730
+ }
1731
+ /* line 416, ../scss/include/_skeleton.scss */
1732
+ #jqt ul.rounded li:last-child, #jqt ul.rounded li:last-child a {
1733
+ -webkit-border-bottom-left-radius: 8px;
1734
+ border-bottom-left-radius: 8px;
1735
+ -webkit-border-bottom-right-radius: 8px;
1736
+ border-bottom-right-radius: 8px;
1737
+ }
1738
+ /* line 422, ../scss/include/_skeleton.scss */
1739
+ #jqt ul.form li {
1740
+ padding: 7px 10px;
1741
+ }
1742
+ /* line 425, ../scss/include/_skeleton.scss */
1743
+ #jqt ul.form li.error {
1744
+ border: 2px solid red;
1745
+ }
1746
+ /* line 428, ../scss/include/_skeleton.scss */
1747
+ #jqt ul.form li.error + #jqt ul.form li.error {
1748
+ border-top: 0;
1749
+ }
1750
+ /* line 438, ../scss/include/_skeleton.scss */
1751
+ #jqt ul.metal li {
1752
+ background-image: none;
1753
+ border-top: 1px solid #fff;
1754
+ border-bottom: 1px solid #666;
1755
+ font-size: 26px;
1756
+ }
1757
+ /* line 445, ../scss/include/_skeleton.scss */
1758
+ #jqt ul.metal li a {
1759
+ line-height: 26px;
1760
+ margin: 0;
1761
+ padding: 13px 0;
1762
+ }
1763
+ /* line 451, ../scss/include/_skeleton.scss */
1764
+ #jqt ul.metal li em {
1765
+ display: block;
1766
+ font-size: 14px;
1767
+ font-style: normal;
1768
+ width: 50%;
1769
+ line-height: 14px;
1770
+ }
1771
+ /* line 459, ../scss/include/_skeleton.scss */
1772
+ #jqt ul.metal li small {
1773
+ float: right;
1774
+ position: relative;
1775
+ margin-top: 10px;
1776
+ font-weight: bold;
1777
+ }
1778
+ /* line 473, ../scss/include/_skeleton.scss */
1779
+ #jqt ul.edgetoedge li {
1780
+ font-size: 20px;
1781
+ }
1782
+ /* line 476, ../scss/include/_skeleton.scss */
1783
+ #jqt ul.edgetoedge li:first-child {
1784
+ border-top: 0;
1785
+ }
1786
+ /* line 480, ../scss/include/_skeleton.scss */
1787
+ #jqt ul.edgetoedge li.sep {
1788
+ font-size: 16px;
1789
+ padding: 2px 10px;
1790
+ }
1791
+ /* line 485, ../scss/include/_skeleton.scss */
1792
+ #jqt ul.edgetoedge li em {
1793
+ font-weight: normal;
1794
+ font-style: normal;
1795
+ }
1796
+ /* line 494, ../scss/include/_skeleton.scss */
1797
+ #jqt ul.plastic {
1798
+ font-size: 18px;
1799
+ }
1800
+ /* line 498, ../scss/include/_skeleton.scss */
1801
+ #jqt ul.plastic li {
1802
+ border-width: 1px 0;
1803
+ border-style: solid;
1804
+ background-image: none;
1805
+ background-color: #d4d4d4;
1806
+ border-top-color: #d9d9d9;
1807
+ border-bottom-color: #cccccc;
1808
+ }
1809
+ /* line 506, ../scss/include/_skeleton.scss */
1810
+ #jqt ul.plastic li:nth-child(odd) {
1811
+ background-image: none;
1812
+ background-color: #d9d9d9;
1813
+ }
1814
+ /* line 510, ../scss/include/_skeleton.scss */
1815
+ #jqt ul.plastic li a.active.loading {
1816
+ background-image: url(img/loading.gif);
1817
+ background-position: 95% center;
1818
+ background-repeat: no-repeat;
1819
+ }
1820
+ /* line 515, ../scss/include/_skeleton.scss */
1821
+ #jqt ul.plastic li small {
1822
+ color: #737373;
1823
+ font-size: 13px;
1824
+ font-weight: bold;
1825
+ text-transform: uppercase;
1826
+ }
1827
+ /* line 525, ../scss/include/_skeleton.scss */
1828
+ #jqt ul.individual {
1829
+ border: 0;
1830
+ background: none;
1831
+ clear: both;
1832
+ overflow: hidden;
1833
+ }
1834
+ /* line 531, ../scss/include/_skeleton.scss */
1835
+ #jqt ul.individual li {
1836
+ font-size: 14px;
1837
+ text-align: center;
1838
+ -webkit-border-radius: 8px;
1839
+ border-radius: 8px;
1840
+ -webkit-box-sizing: border-box;
1841
+ box-sizing: border-box;
1842
+ width: 48%;
1843
+ float: left;
1844
+ display: block;
1845
+ padding: 11px 10px 14px 10px;
1846
+ }
1847
+ /* line 541, ../scss/include/_skeleton.scss */
1848
+ #jqt ul.individual li + li {
1849
+ float: right;
1850
+ }
1851
+ /* line 546, ../scss/include/_skeleton.scss */
1852
+ #jqt ul.individual a {
1853
+ line-height: 16px;
1854
+ margin: -11px -10px -14px -10px;
1855
+ padding: 11px 10px 14px 10px;
1856
+ -webkit-border-radius: 8px;
1857
+ border-radius: 8px;
1858
+ }
1859
+ /* line 555, ../scss/include/_skeleton.scss */
1860
+ #jqt .toggle {
1861
+ width: 94px;
1862
+ position: relative;
1863
+ height: 27px;
1864
+ display: block;
1865
+ overflow: hidden;
1866
+ float: right;
1867
+ }
1868
+ /* line 563, ../scss/include/_skeleton.scss */
1869
+ #jqt .toggle input[type="checkbox"] {
1870
+ margin: 0;
1871
+ -webkit-border-radius: 5px;
1872
+ border-radius: 5px;
1873
+ height: 27px;
1874
+ overflow: hidden;
1875
+ width: 149px;
1876
+ border: 0;
1877
+ -webkit-transition: left 0.15s ease-in-out;
1878
+ transition: left 0.15s ease-in-out;
1879
+ position: absolute;
1880
+ top: 0;
1881
+ left: -55px;
1882
+ -webkit-appearance: textarea;
1883
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
1884
+ }
1885
+ /* line 577, ../scss/include/_skeleton.scss */
1886
+ #jqt .toggle input[type="checkbox"]:checked {
1887
+ left: 0px;
1888
+ }
1889
+ /* line 583, ../scss/include/_skeleton.scss */
1890
+ #jqt .info {
1891
+ font-size: 12px;
1892
+ line-height: 16px;
1893
+ text-align: center;
1894
+ color: #444;
1895
+ padding: 15px;
1896
+ font-weight: bold;
1897
+ }
1898
+
1899
+ /* line 13, ../scss/apple.scss */
1900
+ #jqt > * {
1901
+ background-color: #cbd2d8;
1902
+ background-image: -webkit-gradient(linear, 0% 50%, 7 50%, color-stop(0%, rgba(197, 205, 212, 0)), color-stop(14.286%, rgba(197, 205, 212, 0)), color-stop(14.286%, #c5cdd4), color-stop(100%, #c5cdd4));
1903
+ background-image: -webkit-linear-gradient(left, rgba(197, 205, 212, 0), rgba(197, 205, 212, 0) 1px, #c5cdd4 1px, #c5cdd4 7px);
1904
+ background-image: linear-gradient(left, rgba(197, 205, 212, 0), rgba(197, 205, 212, 0) 1px, #c5cdd4 1px, #c5cdd4 7px);
1905
+ background-size: 7px;
1906
+ }
1907
+ /* line 23, ../scss/apple.scss */
1908
+ #jqt .toolbar {
1909
+ background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(255, 255, 255, 0.15)), color-stop(100%, rgba(255, 255, 255, 0))), -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #92a3b9), color-stop(50%, #7f93ad), color-stop(51%, #768ba7), color-stop(100%, #6d83a1));
1910
+ background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)), -webkit-linear-gradient(top, #92a3b9, #7f93ad 50%, #768ba7 51%, #6d83a1);
1911
+ background-image: linear-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)), linear-gradient(top, #92a3b9, #7f93ad 50%, #768ba7 51%, #6d83a1);
1912
+ -webkit-box-shadow: rgba(255, 255, 255, 0.3) 0 1px 0 inset;
1913
+ box-shadow: rgba(255, 255, 255, 0.3) 0 1px 0 inset;
1914
+ }
1915
+ /* line 34, ../scss/apple.scss */
1916
+ #jqt ul li input[type="checkbox"], #jqt ul li input[type="radio"] {
1917
+ color: #324f85;
1918
+ }
1919
+ /* line 39, ../scss/apple.scss */
1920
+ #jqt ul .toggle input[type="checkbox"] {
1921
+ background: transparent url(../img/apple/on_off.png) 0 0 no-repeat;
1922
+ }
1923
+ /* line 43, ../scss/apple.scss */
1924
+ #jqt ul input[type='submit'] {
1925
+ background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#eeeeee), to(#9c9ea0));
1926
+ border: 1px outset #aaa;
1927
+ }
1928
+ /* line 49, ../scss/apple.scss */
1929
+ #jqt ul.edgetoedge li.sep {
1930
+ background-image: none;
1931
+ background-color: #cbd2d8;
1932
+ background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #aeb9c2), color-stop(10%, #bcc5cd), color-stop(65%, #cbd2d8), color-stop(100%, #ccd3d9));
1933
+ background-image: -webkit-linear-gradient(top, #aeb9c2, #bcc5cd 10%, #cbd2d8 65%, #ccd3d9);
1934
+ background-image: linear-gradient(top, #aeb9c2, #bcc5cd 10%, #cbd2d8 65%, #ccd3d9);
1935
+ color: black;
1936
+ text-shadow: #e8ebee 0 1px 0;
1937
+ border-bottom: 1px solid #b5c1c9;
1938
+ border-top: 1px solid #b5c1c9;
1939
+ }
1940
+ /* line 57, ../scss/apple.scss */
1941
+ #jqt ul.edgetoedge li, #jqt .metal li {
1942
+ -webkit-border-radius: 0;
1943
+ border-radius: 0;
1944
+ }
1945
+ /* line 61, ../scss/apple.scss */
1946
+ #jqt ul.edgetoedge li em {
1947
+ font-weight: normal;
1948
+ font-style: normal;
1949
+ }
1950
+ /* line 66, ../scss/apple.scss */
1951
+ #jqt ul.metal li {
1952
+ border-top: 1px solid #eeeeee;
1953
+ border-bottom: 1px solid #9c9ea5;
1954
+ font-size: 26px;
1955
+ text-shadow: #fff 0 1px 0;
1956
+ }
1957
+ /* line 72, ../scss/apple.scss */
1958
+ #jqt ul.metal li a:hover {
1959
+ color: #000;
1960
+ }
1961
+ /* line 75, ../scss/apple.scss */
1962
+ #jqt ul.metal li em {
1963
+ color: #444;
1964
+ }
1965
+ /* line 80, ../scss/apple.scss */
1966
+ #jqt .info {
1967
+ background: #dce1eb;
1968
+ text-shadow: rgba(255, 255, 255, 0.8) 0 1px 0;
1969
+ color: #4c566c;
1970
+ border-top: 1px solid rgba(76, 86, 108, 0.3);
1971
+ }