toadstool 0.0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (107) hide show
  1. data/Gemfile +11 -0
  2. data/Rakefile +4 -0
  3. data/config.rb +42 -0
  4. data/config.ru +6 -0
  5. data/doc-src/SASS-Guidelines.md +222 -0
  6. data/doc-src/What-Is-Toadstool.md +44 -0
  7. data/doc-src/changelog.md +29 -0
  8. data/doc-src/config.md +18 -0
  9. data/doc-src/mit_license.md +7 -0
  10. data/doc-src/mixin_directory.md +17 -0
  11. data/doc-src/sass.md +4 -0
  12. data/lib/RackServer.rb +93 -0
  13. data/lib/bin/toadstool +99 -0
  14. data/public/fonts/fontawesome-webfont.eot +0 -0
  15. data/public/fonts/fontawesome-webfont.svg +255 -0
  16. data/public/fonts/fontawesome-webfont.ttf +0 -0
  17. data/public/fonts/fontawesome-webfont.woff +0 -0
  18. data/public/fonts/zocial-regular-webfont.eot +0 -0
  19. data/public/fonts/zocial-regular-webfont.svg +138 -0
  20. data/public/fonts/zocial-regular-webfont.ttf +0 -0
  21. data/public/fonts/zocial-regular-webfont.woff +0 -0
  22. data/public/images/toadstool-logo.png +0 -0
  23. data/public/javascripts/application.js +74 -0
  24. data/public/javascripts/css_browser_selector.js +8 -0
  25. data/public/javascripts/lang-apollo.js +2 -0
  26. data/public/javascripts/lang-clj.js +18 -0
  27. data/public/javascripts/lang-css.js +2 -0
  28. data/public/javascripts/lang-go.js +1 -0
  29. data/public/javascripts/lang-hs.js +2 -0
  30. data/public/javascripts/lang-lisp.js +3 -0
  31. data/public/javascripts/lang-lua.js +2 -0
  32. data/public/javascripts/lang-ml.js +2 -0
  33. data/public/javascripts/lang-n.js +4 -0
  34. data/public/javascripts/lang-proto.js +1 -0
  35. data/public/javascripts/lang-scala.js +2 -0
  36. data/public/javascripts/lang-sql.js +2 -0
  37. data/public/javascripts/lang-tex.js +1 -0
  38. data/public/javascripts/lang-vb.js +2 -0
  39. data/public/javascripts/lang-vhdl.js +3 -0
  40. data/public/javascripts/lang-wiki.js +2 -0
  41. data/public/javascripts/lang-xq.js +3 -0
  42. data/public/javascripts/lang-yaml.js +2 -0
  43. data/public/javascripts/modernizr.mods.js +22 -0
  44. data/public/javascripts/prettify.js +28 -0
  45. data/public/javascripts/selectivizr-min.js +5 -0
  46. data/public/stylesheets/style.css +615 -0
  47. data/public/stylesheets/toadstool.css +1643 -0
  48. data/readme.md +37 -0
  49. data/sass/_buttons.scss +20 -0
  50. data/sass/_config.scss +216 -0
  51. data/sass/_design.scss +6 -0
  52. data/sass/_forms.scss +18 -0
  53. data/sass/_modules.scss +12 -0
  54. data/sass/_reset.scss +5 -0
  55. data/sass/_typography.scss +93 -0
  56. data/sass/_ui_patterns.scss +0 -0
  57. data/sass/_web_fonts.scss +32 -0
  58. data/sass/buttons/_cupid_config.scss +20 -0
  59. data/sass/buttons/_minimal_config.scss +15 -0
  60. data/sass/color/_color_math.scss +63 -0
  61. data/sass/color/_extends.scss +291 -0
  62. data/sass/color/_grayscale_math.scss +10 -0
  63. data/sass/modules/example_module/_extends.scss +0 -0
  64. data/sass/modules/example_module/_mixins.scss +0 -0
  65. data/sass/modules/example_module/readme.md +96 -0
  66. data/sass/style.scss +45 -0
  67. data/sass/toadstool.scss +14 -0
  68. data/sass/ui_patterns/_color_grid.scss +286 -0
  69. data/sass/ui_patterns/_example.scss +0 -0
  70. data/toadstool.rb +84 -0
  71. data/views/abstract_colors.erb +1 -0
  72. data/views/alerts.erb +1 -0
  73. data/views/buttons.erb +1 -0
  74. data/views/color_palettes.erb +221 -0
  75. data/views/forms.erb +24 -0
  76. data/views/forms/disabled_button.erb +18 -0
  77. data/views/forms/password_input.erb +22 -0
  78. data/views/forms/primary_button.erb +18 -0
  79. data/views/forms/username_input.erb +23 -0
  80. data/views/grid.erb +127 -0
  81. data/views/grid24.erb +59 -0
  82. data/views/grids/grid_arguments.erb +22 -0
  83. data/views/grids/use_definition.erb +12 -0
  84. data/views/layout.erb +58 -0
  85. data/views/modules/example_module/module.erb +0 -0
  86. data/views/modules/example_module/module.js +0 -0
  87. data/views/modules/example_module/readme.md +29 -0
  88. data/views/modules/example_module/view.erb +0 -0
  89. data/views/modules/readme.md +10 -0
  90. data/views/semantic_colors.erb +1 -0
  91. data/views/shared/_html_example.erb +31 -0
  92. data/views/shared/_main_footer.erb +12 -0
  93. data/views/shared/_main_header.erb +4 -0
  94. data/views/shared/_main_nav.erb +16 -0
  95. data/views/shared/_sass_example.erb +10 -0
  96. data/views/shared/_toadstool_subheader.erb +6 -0
  97. data/views/typography.erb +17 -0
  98. data/views/typography/body_copy.erb +19 -0
  99. data/views/typography/body_links.erb +18 -0
  100. data/views/typography/general_typography.erb +19 -0
  101. data/views/typography/headings.erb +65 -0
  102. data/views/typography/vertical_rhythm.erb +13 -0
  103. data/views/typography/web_fonts.erb +11 -0
  104. data/views/ui_patterns/example.erb +1 -0
  105. data/views/ui_patterns/forms/text_input.erb +10 -0
  106. data/views/ui_patterns/readme.md +14 -0
  107. metadata +216 -0
Binary file
@@ -0,0 +1,74 @@
1
+ var showEms = function(){
2
+ var em_value = $(window).width() / parseInt($('html').css('font-size'));
3
+ var px_value = $(window).width();
4
+ var em_value_rounded = Math.round(em_value);
5
+ $('.screen-width').text(' ' + em_value_rounded + 'em');
6
+ $('.screen-width-px').text(' ' + px_value + 'px');
7
+ return true;
8
+ };
9
+ // General UX interactions
10
+ // need to make better
11
+ $(document).ready(function() {
12
+
13
+ $(".nav_toggle").click(function () {
14
+ $(".toadstool_nav").slideToggle("slow");
15
+ });
16
+
17
+
18
+ $(".click_more a").click(function (event) {
19
+ event.preventDefault();
20
+ $(this).parents("p").siblings(".read_more").slideToggle("slow");
21
+ //$(this).parents("p").children("a").text("Read less ...");
22
+ });
23
+
24
+ $(".codeToggle a").click(function (event) {
25
+ event.preventDefault();
26
+ $(this).parents("p").siblings(".prettyprint").slideToggle("slow");
27
+ });
28
+
29
+
30
+ showEms();
31
+
32
+ });
33
+
34
+
35
+
36
+
37
+
38
+ // will show em size of window on resize of view
39
+ $(window).resize(function() {
40
+ showEms();
41
+ });
42
+
43
+ // forces mobile address bar to scroll up
44
+ if (/mobile/i.test(navigator.userAgent) && !window.location.hash) { window.onload = function () {
45
+ window.scrollTo(0, 1);
46
+ }; }
47
+
48
+
49
+
50
+
51
+
52
+ //// function to get hex value to appear on color guide
53
+ function rgb2hex(rgb) {
54
+ rgb = rgb.match(/^rgba?\((\d+),\s*(\d+),\s*(\d+)(?:,\s*([\d\.]+))?\)$/);
55
+ function hex(x) {
56
+ return ("0" + parseInt(x).toString(16)).slice(-2);
57
+ }
58
+ if (rgb[1]!=0||rgb[2]!=0||rgb[3]!=0){
59
+ return ("#" + hex(rgb[1]) + hex(rgb[2]) + hex(rgb[3])).toUpperCase();
60
+ }
61
+ // if (rgb[1]!=255||rgb[2]!=255||rgb[3]!=255){
62
+ // $("div").addClass("myClass yourClass");
63
+ // }
64
+ else {
65
+ return 'Gradient - Please use your web inspector';
66
+ }
67
+ }
68
+
69
+ $(document).ready(function() {
70
+ $('article.colorcode').children('div').each(function(index, BlockColor){
71
+ var color = $(BlockColor).css("background-color");
72
+ $(BlockColor).children().append('<br>' + '<b>' + rgb2hex(color) + '</b>');
73
+ });
74
+ });
@@ -0,0 +1,8 @@
1
+ /*
2
+ CSS Browser Selector v0.4.0 (Nov 02, 2010)
3
+ Rafael Lima (http://rafael.adm.br)
4
+ http://rafael.adm.br/css_browser_selector
5
+ License: http://creativecommons.org/licenses/by/2.5/
6
+ Contributors: http://rafael.adm.br/css_browser_selector#contributors
7
+ */
8
+ function css_browser_selector(u){var ua=u.toLowerCase(),is=function(t){return ua.indexOf(t)>-1},g='gecko',w='webkit',s='safari',o='opera',m='mobile',h=document.documentElement,b=[(!(/opera|webtv/i.test(ua))&&/msie\s(\d)/.test(ua))?('ie ie'+RegExp.$1):is('firefox/2')?g+' ff2':is('firefox/3.5')?g+' ff3 ff3_5':is('firefox/3.6')?g+' ff3 ff3_6':is('firefox/3')?g+' ff3':is('gecko/')?g:is('opera')?o+(/version\/(\d+)/.test(ua)?' '+o+RegExp.$1:(/opera(\s|\/)(\d+)/.test(ua)?' '+o+RegExp.$2:'')):is('konqueror')?'konqueror':is('blackberry')?m+' blackberry':is('android')?m+' android':is('chrome')?w+' chrome':is('iron')?w+' iron':is('applewebkit/')?w+' '+s+(/version\/(\d+)/.test(ua)?' '+s+RegExp.$1:''):is('mozilla/')?g:'',is('j2me')?m+' j2me':is('iphone')?m+' iphone':is('ipod')?m+' ipod':is('ipad')?m+' ipad':is('mac')?'mac':is('darwin')?'mac':is('webtv')?'webtv':is('win')?'win'+(is('windows nt 6.0')?' vista':''):is('freebsd')?'freebsd':(is('x11')||is('linux'))?'linux':'','js']; c = b.join(' '); h.className += ' '+c; return c;}; css_browser_selector(navigator.userAgent);
@@ -0,0 +1,2 @@
1
+ PR.registerLangHandler(PR.createSimpleLexer([["com",/^#[^\n\r]*/,null,"#"],["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r �\xa0"],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,null,'"']],[["kwd",/^(?:ADS|AD|AUG|BZF|BZMF|CAE|CAF|CA|CCS|COM|CS|DAS|DCA|DCOM|DCS|DDOUBL|DIM|DOUBLE|DTCB|DTCF|DV|DXCH|EDRUPT|EXTEND|INCR|INDEX|NDX|INHINT|LXCH|MASK|MSK|MP|MSU|NOOP|OVSK|QXCH|RAND|READ|RELINT|RESUME|RETURN|ROR|RXOR|SQUARE|SU|TCR|TCAA|OVSK|TCF|TC|TS|WAND|WOR|WRITE|XCH|XLQ|XXALQ|ZL|ZQ|ADD|ADZ|SUB|SUZ|MPY|MPR|MPZ|DVP|COM|ABS|CLA|CLZ|LDQ|STO|STQ|ALS|LLS|LRS|TRA|TSQ|TMI|TOV|AXT|TIX|DLY|INP|OUT)\s/,
2
+ null],["typ",/^(?:-?GENADR|=MINUS|2BCADR|VN|BOF|MM|-?2CADR|-?[1-6]DNADR|ADRES|BBCON|[ES]?BANK=?|BLOCK|BNKSUM|E?CADR|COUNT\*?|2?DEC\*?|-?DNCHAN|-?DNPTR|EQUALS|ERASE|MEMORY|2?OCT|REMADR|SETLOC|SUBRO|ORG|BSS|BES|SYN|EQU|DEFINE|END)\s/,null],["lit",/^'(?:-*(?:\w|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?)?/],["pln",/^-*(?:[!-z]|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?/],["pun",/^[^\w\t\n\r "'-);\\\xa0]+/]]),["apollo","agc","aea"]);
@@ -0,0 +1,18 @@
1
+ /*
2
+ Copyright (C) 2011 Google Inc.
3
+
4
+ Licensed under the Apache License, Version 2.0 (the "License");
5
+ you may not use this file except in compliance with the License.
6
+ You may obtain a copy of the License at
7
+
8
+ http://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software
11
+ distributed under the License is distributed on an "AS IS" BASIS,
12
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ See the License for the specific language governing permissions and
14
+ limitations under the License.
15
+ */
16
+ var a=null;
17
+ PR.registerLangHandler(PR.createSimpleLexer([["opn",/^[([{]+/,a,"([{"],["clo",/^[)\]}]+/,a,")]}"],["com",/^;[^\n\r]*/,a,";"],["pln",/^[\t\n\r \xa0]+/,a,"\t\n\r \xa0"],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,a,'"']],[["kwd",/^(?:def|if|do|let|quote|var|fn|loop|recur|throw|try|monitor-enter|monitor-exit|defmacro|defn|defn-|macroexpand|macroexpand-1|for|doseq|dosync|dotimes|and|or|when|not|assert|doto|proxy|defstruct|first|rest|cons|defprotocol|deftype|defrecord|reify|defmulti|defmethod|meta|with-meta|ns|in-ns|create-ns|import|intern|refer|alias|namespace|resolve|ref|deref|refset|new|set!|memfn|to-array|into-array|aset|gen-class|reduce|map|filter|find|nil?|empty?|hash-map|hash-set|vec|vector|seq|flatten|reverse|assoc|dissoc|list|list?|disj|get|union|difference|intersection|extend|extend-type|extend-protocol|prn)\b/,a],
18
+ ["typ",/^:[\dA-Za-z-]+/]]),["clj"]);
@@ -0,0 +1,2 @@
1
+ PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\f\r ]+/,null," \t\r\n "]],[["str",/^"(?:[^\n\f\r"\\]|\\(?:\r\n?|\n|\f)|\\[\S\s])*"/,null],["str",/^'(?:[^\n\f\r'\\]|\\(?:\r\n?|\n|\f)|\\[\S\s])*'/,null],["lang-css-str",/^url\(([^"')]*)\)/i],["kwd",/^(?:url|rgb|!important|@import|@page|@media|@charset|inherit)(?=[^\w-]|$)/i,null],["lang-css-kw",/^(-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*)\s*:/i],["com",/^\/\*[^*]*\*+(?:[^*/][^*]*\*+)*\//],["com",
2
+ /^(?:<\!--|--\>)/],["lit",/^(?:\d+|\d*\.\d+)(?:%|[a-z]+)?/i],["lit",/^#[\da-f]{3,6}/i],["pln",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i],["pun",/^[^\s\w"']+/]]),["css"]);PR.registerLangHandler(PR.createSimpleLexer([],[["kwd",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i]]),["css-kw"]);PR.registerLangHandler(PR.createSimpleLexer([],[["str",/^[^"')]+/]]),["css-str"]);
@@ -0,0 +1 @@
1
+ PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r �\xa0"],["pln",/^(?:"(?:[^"\\]|\\[\S\s])*(?:"|$)|'(?:[^'\\]|\\[\S\s])+(?:'|$)|`[^`]*(?:`|$))/,null,"\"'"]],[["com",/^(?:\/\/[^\n\r]*|\/\*[\S\s]*?\*\/)/],["pln",/^(?:[^"'/`]|\/(?![*/]))+/]]),["go"]);
@@ -0,0 +1,2 @@
1
+ PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t-\r ]+/,null,"\t\n \r "],["str",/^"(?:[^\n\f\r"\\]|\\[\S\s])*(?:"|$)/,null,'"'],["str",/^'(?:[^\n\f\r'\\]|\\[^&])'?/,null,"'"],["lit",/^(?:0o[0-7]+|0x[\da-f]+|\d+(?:\.\d+)?(?:e[+-]?\d+)?)/i,null,"0123456789"]],[["com",/^(?:--+[^\n\f\r]*|{-(?:[^-]|-+[^}-])*-})/],["kwd",/^(?:case|class|data|default|deriving|do|else|if|import|in|infix|infixl|infixr|instance|let|module|newtype|of|then|type|where|_)(?=[^\d'A-Za-z]|$)/,
2
+ null],["pln",/^(?:[A-Z][\w']*\.)*[A-Za-z][\w']*/],["pun",/^[^\d\t-\r "'A-Za-z]+/]]),["hs"]);
@@ -0,0 +1,3 @@
1
+ var a=null;
2
+ PR.registerLangHandler(PR.createSimpleLexer([["opn",/^\(+/,a,"("],["clo",/^\)+/,a,")"],["com",/^;[^\n\r]*/,a,";"],["pln",/^[\t\n\r \xa0]+/,a,"\t\n\r \xa0"],["str",/^"(?:[^"\\]|\\[\S\s])*(?:"|$)/,a,'"']],[["kwd",/^(?:block|c[ad]+r|catch|con[ds]|def(?:ine|un)|do|eq|eql|equal|equalp|eval-when|flet|format|go|if|labels|lambda|let|load-time-value|locally|macrolet|multiple-value-call|nil|progn|progv|quote|require|return-from|setq|symbol-macrolet|t|tagbody|the|throw|unwind)\b/,a],
3
+ ["lit",/^[+-]?(?:[#0]x[\da-f]+|\d+\/\d+|(?:\.\d+|\d+(?:\.\d*)?)(?:[de][+-]?\d+)?)/i],["lit",/^'(?:-*(?:\w|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?)?/],["pln",/^-*(?:[_a-z]|\\[!-~])(?:[\w-]*|\\[!-~])[!=?]?/i],["pun",/^[^\w\t\n\r "'-);\\\xa0]+/]]),["cl","el","lisp","scm"]);
@@ -0,0 +1,2 @@
1
+ PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r �\xa0"],["str",/^(?:"(?:[^"\\]|\\[\S\s])*(?:"|$)|'(?:[^'\\]|\\[\S\s])*(?:'|$))/,null,"\"'"]],[["com",/^--(?:\[(=*)\[[\S\s]*?(?:]\1]|$)|[^\n\r]*)/],["str",/^\[(=*)\[[\S\s]*?(?:]\1]|$)/],["kwd",/^(?:and|break|do|else|elseif|end|false|for|function|if|in|local|nil|not|or|repeat|return|then|true|until|while)\b/,null],["lit",/^[+-]?(?:0x[\da-f]+|(?:\.\d+|\d+(?:\.\d*)?)(?:e[+-]?\d+)?)/i],
2
+ ["pln",/^[_a-z]\w*/i],["pun",/^[^\w\t\n\r \xa0][^\w\t\n\r "'+=\xa0-]*/]]),["lua"]);
@@ -0,0 +1,2 @@
1
+ PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r �\xa0"],["com",/^#(?:if[\t\n\r \xa0]+(?:[$_a-z][\w']*|``[^\t\n\r`]*(?:``|$))|else|endif|light)/i,null,"#"],["str",/^(?:"(?:[^"\\]|\\[\S\s])*(?:"|$)|'(?:[^'\\]|\\[\S\s])(?:'|$))/,null,"\"'"]],[["com",/^(?:\/\/[^\n\r]*|\(\*[\S\s]*?\*\))/],["kwd",/^(?:abstract|and|as|assert|begin|class|default|delegate|do|done|downcast|downto|elif|else|end|exception|extern|false|finally|for|fun|function|if|in|inherit|inline|interface|internal|lazy|let|match|member|module|mutable|namespace|new|null|of|open|or|override|private|public|rec|return|static|struct|then|to|true|try|type|upcast|use|val|void|when|while|with|yield|asr|land|lor|lsl|lsr|lxor|mod|sig|atomic|break|checked|component|const|constraint|constructor|continue|eager|event|external|fixed|functor|global|include|method|mixin|object|parallel|process|protected|pure|sealed|trait|virtual|volatile)\b/],
2
+ ["lit",/^[+-]?(?:0x[\da-f]+|(?:\.\d+|\d+(?:\.\d*)?)(?:e[+-]?\d+)?)/i],["pln",/^(?:[_a-z][\w']*[!#?]?|``[^\t\n\r`]*(?:``|$))/i],["pun",/^[^\w\t\n\r "'\xa0]+/]]),["fs","ml"]);
@@ -0,0 +1,4 @@
1
+ var a=null;
2
+ PR.registerLangHandler(PR.createSimpleLexer([["str",/^(?:'(?:[^\n\r'\\]|\\.)*'|"(?:[^\n\r"\\]|\\.)*(?:"|$))/,a,'"'],["com",/^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\n\r]*)/,a,"#"],["pln",/^\s+/,a," \r\n\t\xa0"]],[["str",/^@"(?:[^"]|"")*(?:"|$)/,a],["str",/^<#[^#>]*(?:#>|$)/,a],["str",/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h|[a-z]\w*)>/,a],["com",/^\/\/[^\n\r]*/,a],["com",/^\/\*[\S\s]*?(?:\*\/|$)/,
3
+ a],["kwd",/^(?:abstract|and|as|base|catch|class|def|delegate|enum|event|extern|false|finally|fun|implements|interface|internal|is|macro|match|matches|module|mutable|namespace|new|null|out|override|params|partial|private|protected|public|ref|sealed|static|struct|syntax|this|throw|true|try|type|typeof|using|variant|virtual|volatile|when|where|with|assert|assert2|async|break|checked|continue|do|else|ensures|for|foreach|if|late|lock|new|nolate|otherwise|regexp|repeat|requires|return|surroundwith|unchecked|unless|using|while|yield)\b/,
4
+ a],["typ",/^(?:array|bool|byte|char|decimal|double|float|int|list|long|object|sbyte|short|string|ulong|uint|ufloat|ulong|ushort|void)\b/,a],["lit",/^@[$_a-z][\w$@]*/i,a],["typ",/^@[A-Z]+[a-z][\w$@]*/,a],["pln",/^'?[$_a-z][\w$@]*/i,a],["lit",/^(?:0x[\da-f]+|(?:\d(?:_\d+)*\d*(?:\.\d*)?|\.\d\+)(?:e[+-]?\d+)?)[a-z]*/i,a,"0123456789"],["pun",/^.[^\s\w"-$'./@`]*/,a]]),["n","nemerle"]);
@@ -0,0 +1 @@
1
+ PR.registerLangHandler(PR.sourceDecorator({keywords:"bytes,default,double,enum,extend,extensions,false,group,import,max,message,option,optional,package,repeated,required,returns,rpc,service,syntax,to,true",types:/^(bool|(double|s?fixed|[su]?int)(32|64)|float|string)\b/,cStyleComments:!0}),["proto"]);
@@ -0,0 +1,2 @@
1
+ PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r �\xa0"],["str",/^"(?:""(?:""?(?!")|[^"\\]|\\.)*"{0,3}|(?:[^\n\r"\\]|\\.)*"?)/,null,'"'],["lit",/^`(?:[^\n\r\\`]|\\.)*`?/,null,"`"],["pun",/^[!#%&(--:-@[-^{-~]+/,null,"!#%&()*+,-:;<=>?@[\\]^{|}~"]],[["str",/^'(?:[^\n\r'\\]|\\(?:'|[^\n\r']+))'/],["lit",/^'[$A-Z_a-z][\w$]*(?![\w$'])/],["kwd",/^(?:abstract|case|catch|class|def|do|else|extends|final|finally|for|forSome|if|implicit|import|lazy|match|new|object|override|package|private|protected|requires|return|sealed|super|throw|trait|try|type|val|var|while|with|yield)\b/],
2
+ ["lit",/^(?:true|false|null|this)\b/],["lit",/^(?:0(?:[0-7]+|x[\da-f]+)l?|(?:0|[1-9]\d*)(?:(?:\.\d+)?(?:e[+-]?\d+)?f?|l?)|\\.\d+(?:e[+-]?\d+)?f?)/i],["typ",/^[$_]*[A-Z][\d$A-Z_]*[a-z][\w$]*/],["pln",/^[$A-Z_a-z][\w$]*/],["com",/^\/(?:\/.*|\*(?:\/|\**[^*/])*(?:\*+\/?)?)/],["pun",/^(?:\.+|\/)/]]),["scala"]);
@@ -0,0 +1,2 @@
1
+ PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r �\xa0"],["str",/^(?:"(?:[^"\\]|\\.)*"|'(?:[^'\\]|\\.)*')/,null,"\"'"]],[["com",/^(?:--[^\n\r]*|\/\*[\S\s]*?(?:\*\/|$))/],["kwd",/^(?:add|all|alter|and|any|as|asc|authorization|backup|begin|between|break|browse|bulk|by|cascade|case|check|checkpoint|close|clustered|coalesce|collate|column|commit|compute|constraint|contains|containstable|continue|convert|create|cross|current|current_date|current_time|current_timestamp|current_user|cursor|database|dbcc|deallocate|declare|default|delete|deny|desc|disk|distinct|distributed|double|drop|dummy|dump|else|end|errlvl|escape|except|exec|execute|exists|exit|fetch|file|fillfactor|for|foreign|freetext|freetexttable|from|full|function|goto|grant|group|having|holdlock|identity|identitycol|identity_insert|if|in|index|inner|insert|intersect|into|is|join|key|kill|left|like|lineno|load|match|merge|national|nocheck|nonclustered|not|null|nullif|of|off|offsets|on|open|opendatasource|openquery|openrowset|openxml|option|or|order|outer|over|percent|plan|precision|primary|print|proc|procedure|public|raiserror|read|readtext|reconfigure|references|replication|restore|restrict|return|revoke|right|rollback|rowcount|rowguidcol|rule|save|schema|select|session_user|set|setuser|shutdown|some|statistics|system_user|table|textsize|then|to|top|tran|transaction|trigger|truncate|tsequal|union|unique|update|updatetext|use|user|using|values|varying|view|waitfor|when|where|while|with|writetext)(?=[^\w-]|$)/i,
2
+ null],["lit",/^[+-]?(?:0x[\da-f]+|(?:\.\d+|\d+(?:\.\d*)?)(?:e[+-]?\d+)?)/i],["pln",/^[_a-z][\w-]*/i],["pun",/^[^\w\t\n\r "'\xa0][^\w\t\n\r "'+\xa0-]*/]]),["sql"]);
@@ -0,0 +1 @@
1
+ PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r �\xa0"],["com",/^%[^\n\r]*/,null,"%"]],[["kwd",/^\\[@-Za-z]+/],["kwd",/^\\./],["typ",/^[$&]/],["lit",/[+-]?(?:\.\d+|\d+(?:\.\d*)?)(cm|em|ex|in|pc|pt|bp|mm)/i],["pun",/^[()=[\]{}]+/]]),["latex","tex"]);
@@ -0,0 +1,2 @@
1
+ PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0\u2028\u2029]+/,null,"\t\n\r �\xa0

"],["str",/^(?:["\u201c\u201d](?:[^"\u201c\u201d]|["\u201c\u201d]{2})(?:["\u201c\u201d]c|$)|["\u201c\u201d](?:[^"\u201c\u201d]|["\u201c\u201d]{2})*(?:["\u201c\u201d]|$))/i,null,'"“”'],["com",/^['\u2018\u2019].*/,null,"'‘’"]],[["kwd",/^(?:addhandler|addressof|alias|and|andalso|ansi|as|assembly|auto|boolean|byref|byte|byval|call|case|catch|cbool|cbyte|cchar|cdate|cdbl|cdec|char|cint|class|clng|cobj|const|cshort|csng|cstr|ctype|date|decimal|declare|default|delegate|dim|directcast|do|double|each|else|elseif|end|endif|enum|erase|error|event|exit|finally|for|friend|function|get|gettype|gosub|goto|handles|if|implements|imports|in|inherits|integer|interface|is|let|lib|like|long|loop|me|mod|module|mustinherit|mustoverride|mybase|myclass|namespace|new|next|not|notinheritable|notoverridable|object|on|option|optional|or|orelse|overloads|overridable|overrides|paramarray|preserve|private|property|protected|public|raiseevent|readonly|redim|removehandler|resume|return|select|set|shadows|shared|short|single|static|step|stop|string|structure|sub|synclock|then|throw|to|try|typeof|unicode|until|variant|wend|when|while|with|withevents|writeonly|xor|endif|gosub|let|variant|wend)\b/i,
2
+ null],["com",/^rem.*/i],["lit",/^(?:true\b|false\b|nothing\b|\d+(?:e[+-]?\d+[dfr]?|[dfilrs])?|(?:&h[\da-f]+|&o[0-7]+)[ils]?|\d*\.\d+(?:e[+-]?\d+)?[dfr]?|#\s+(?:\d+[/-]\d+[/-]\d+(?:\s+\d+:\d+(?::\d+)?(\s*(?:am|pm))?)?|\d+:\d+(?::\d+)?(\s*(?:am|pm))?)\s+#)/i],["pln",/^(?:(?:[a-z]|_\w)\w*|\[(?:[a-z]|_\w)\w*])/i],["pun",/^[^\w\t\n\r "'[\]\xa0\u2018\u2019\u201c\u201d\u2028\u2029]+/],["pun",/^(?:\[|])/]]),["vb","vbs"]);
@@ -0,0 +1,3 @@
1
+ PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\r \xa0]+/,null,"\t\n\r �\xa0"]],[["str",/^(?:[box]?"(?:[^"]|"")*"|'.')/i],["com",/^--[^\n\r]*/],["kwd",/^(?:abs|access|after|alias|all|and|architecture|array|assert|attribute|begin|block|body|buffer|bus|case|component|configuration|constant|disconnect|downto|else|elsif|end|entity|exit|file|for|function|generate|generic|group|guarded|if|impure|in|inertial|inout|is|label|library|linkage|literal|loop|map|mod|nand|new|next|nor|not|null|of|on|open|or|others|out|package|port|postponed|procedure|process|pure|range|record|register|reject|rem|report|return|rol|ror|select|severity|shared|signal|sla|sll|sra|srl|subtype|then|to|transport|type|unaffected|units|until|use|variable|wait|when|while|with|xnor|xor)(?=[^\w-]|$)/i,
2
+ null],["typ",/^(?:bit|bit_vector|character|boolean|integer|real|time|string|severity_level|positive|natural|signed|unsigned|line|text|std_u?logic(?:_vector)?)(?=[^\w-]|$)/i,null],["typ",/^'(?:active|ascending|base|delayed|driving|driving_value|event|high|image|instance_name|last_active|last_event|last_value|left|leftof|length|low|path_name|pos|pred|quiet|range|reverse_range|right|rightof|simple_name|stable|succ|transaction|val|value)(?=[^\w-]|$)/i,null],["lit",/^\d+(?:_\d+)*(?:#[\w.\\]+#(?:[+-]?\d+(?:_\d+)*)?|(?:\.\d+(?:_\d+)*)?(?:e[+-]?\d+(?:_\d+)*)?)/i],
3
+ ["pln",/^(?:[a-z]\w*|\\[^\\]*\\)/i],["pun",/^[^\w\t\n\r "'\xa0][^\w\t\n\r "'\xa0-]*/]]),["vhdl","vhd"]);
@@ -0,0 +1,2 @@
1
+ PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\d\t a-gi-z\xa0]+/,null,"\t �\xa0abcdefgijklmnopqrstuvwxyz0123456789"],["pun",/^[*=[\]^~]+/,null,"=*~^[]"]],[["lang-wiki.meta",/(?:^^|\r\n?|\n)(#[a-z]+)\b/],["lit",/^[A-Z][a-z][\da-z]+[A-Z][a-z][^\W_]+\b/],["lang-",/^{{{([\S\s]+?)}}}/],["lang-",/^`([^\n\r`]+)`/],["str",/^https?:\/\/[^\s#/?]*(?:\/[^\s#?]*)?(?:\?[^\s#]*)?(?:#\S*)?/i],["pln",/^(?:\r\n|[\S\s])[^\n\r#*=A-[^`h{~]*/]]),["wiki"]);
2
+ PR.registerLangHandler(PR.createSimpleLexer([["kwd",/^#[a-z]+/i,null,"#"]],[]),["wiki.meta"]);
@@ -0,0 +1,3 @@
1
+ PR.registerLangHandler(PR.createSimpleLexer([["var pln",/^\$[\w-]+/,null,"$"]],[["pln",/^[\s=][<>][\s=]/],["lit",/^@[\w-]+/],["tag",/^<\/?[a-z](?:[\w-.:]*\w)?|\/?>$/i],["com",/^\(:[\S\s]*?:\)/],["pln",/^[(),/;[\]{}]$/],["str",/^(?:"(?:[^"\\{]|\\[\S\s])*(?:"|$)|'(?:[^'\\{]|\\[\S\s])*(?:'|$))/,null,"\"'"],["kwd",/^(?:xquery|where|version|variable|union|typeswitch|treat|to|then|text|stable|sortby|some|self|schema|satisfies|returns|return|ref|processing-instruction|preceding-sibling|preceding|precedes|parent|only|of|node|namespace|module|let|item|intersect|instance|in|import|if|function|for|follows|following-sibling|following|external|except|every|else|element|descending|descendant-or-self|descendant|define|default|declare|comment|child|cast|case|before|attribute|assert|ascending|as|ancestor-or-self|ancestor|after|eq|order|by|or|and|schema-element|document-node|node|at)\b/],
2
+ ["typ",/^(?:xs:yearMonthDuration|xs:unsignedLong|xs:time|xs:string|xs:short|xs:QName|xs:Name|xs:long|xs:integer|xs:int|xs:gYearMonth|xs:gYear|xs:gMonthDay|xs:gDay|xs:float|xs:duration|xs:double|xs:decimal|xs:dayTimeDuration|xs:dateTime|xs:date|xs:byte|xs:boolean|xs:anyURI|xf:yearMonthDuration)\b/,null],["fun pln",/^(?:xp:dereference|xinc:node-expand|xinc:link-references|xinc:link-expand|xhtml:restructure|xhtml:clean|xhtml:add-lists|xdmp:zip-manifest|xdmp:zip-get|xdmp:zip-create|xdmp:xquery-version|xdmp:word-convert|xdmp:with-namespaces|xdmp:version|xdmp:value|xdmp:user-roles|xdmp:user-last-login|xdmp:user|xdmp:url-encode|xdmp:url-decode|xdmp:uri-is-file|xdmp:uri-format|xdmp:uri-content-type|xdmp:unquote|xdmp:unpath|xdmp:triggers-database|xdmp:trace|xdmp:to-json|xdmp:tidy|xdmp:subbinary|xdmp:strftime|xdmp:spawn-in|xdmp:spawn|xdmp:sleep|xdmp:shutdown|xdmp:set-session-field|xdmp:set-response-encoding|xdmp:set-response-content-type|xdmp:set-response-code|xdmp:set-request-time-limit|xdmp:set|xdmp:servers|xdmp:server-status|xdmp:server-name|xdmp:server|xdmp:security-database|xdmp:security-assert|xdmp:schema-database|xdmp:save|xdmp:role-roles|xdmp:role|xdmp:rethrow|xdmp:restart|xdmp:request-timestamp|xdmp:request-status|xdmp:request-cancel|xdmp:request|xdmp:redirect-response|xdmp:random|xdmp:quote|xdmp:query-trace|xdmp:query-meters|xdmp:product-edition|xdmp:privilege-roles|xdmp:privilege|xdmp:pretty-print|xdmp:powerpoint-convert|xdmp:platform|xdmp:permission|xdmp:pdf-convert|xdmp:path|xdmp:octal-to-integer|xdmp:node-uri|xdmp:node-replace|xdmp:node-kind|xdmp:node-insert-child|xdmp:node-insert-before|xdmp:node-insert-after|xdmp:node-delete|xdmp:node-database|xdmp:mul64|xdmp:modules-root|xdmp:modules-database|xdmp:merging|xdmp:merge-cancel|xdmp:merge|xdmp:md5|xdmp:logout|xdmp:login|xdmp:log-level|xdmp:log|xdmp:lock-release|xdmp:lock-acquire|xdmp:load|xdmp:invoke-in|xdmp:invoke|xdmp:integer-to-octal|xdmp:integer-to-hex|xdmp:http-put|xdmp:http-post|xdmp:http-options|xdmp:http-head|xdmp:http-get|xdmp:http-delete|xdmp:hosts|xdmp:host-status|xdmp:host-name|xdmp:host|xdmp:hex-to-integer|xdmp:hash64|xdmp:hash32|xdmp:has-privilege|xdmp:groups|xdmp:group-serves|xdmp:group-servers|xdmp:group-name|xdmp:group-hosts|xdmp:group|xdmp:get-session-field-names|xdmp:get-session-field|xdmp:get-response-encoding|xdmp:get-response-code|xdmp:get-request-username|xdmp:get-request-user|xdmp:get-request-url|xdmp:get-request-protocol|xdmp:get-request-path|xdmp:get-request-method|xdmp:get-request-header-names|xdmp:get-request-header|xdmp:get-request-field-names|xdmp:get-request-field-filename|xdmp:get-request-field-content-type|xdmp:get-request-field|xdmp:get-request-client-certificate|xdmp:get-request-client-address|xdmp:get-request-body|xdmp:get-current-user|xdmp:get-current-roles|xdmp:get|xdmp:function-name|xdmp:function-module|xdmp:function|xdmp:from-json|xdmp:forests|xdmp:forest-status|xdmp:forest-restore|xdmp:forest-restart|xdmp:forest-name|xdmp:forest-delete|xdmp:forest-databases|xdmp:forest-counts|xdmp:forest-clear|xdmp:forest-backup|xdmp:forest|xdmp:filesystem-file|xdmp:filesystem-directory|xdmp:exists|xdmp:excel-convert|xdmp:eval-in|xdmp:eval|xdmp:estimate|xdmp:email|xdmp:element-content-type|xdmp:elapsed-time|xdmp:document-set-quality|xdmp:document-set-property|xdmp:document-set-properties|xdmp:document-set-permissions|xdmp:document-set-collections|xdmp:document-remove-properties|xdmp:document-remove-permissions|xdmp:document-remove-collections|xdmp:document-properties|xdmp:document-locks|xdmp:document-load|xdmp:document-insert|xdmp:document-get-quality|xdmp:document-get-properties|xdmp:document-get-permissions|xdmp:document-get-collections|xdmp:document-get|xdmp:document-forest|xdmp:document-delete|xdmp:document-add-properties|xdmp:document-add-permissions|xdmp:document-add-collections|xdmp:directory-properties|xdmp:directory-locks|xdmp:directory-delete|xdmp:directory-create|xdmp:directory|xdmp:diacritic-less|xdmp:describe|xdmp:default-permissions|xdmp:default-collections|xdmp:databases|xdmp:database-restore-validate|xdmp:database-restore-status|xdmp:database-restore-cancel|xdmp:database-restore|xdmp:database-name|xdmp:database-forests|xdmp:database-backup-validate|xdmp:database-backup-status|xdmp:database-backup-purge|xdmp:database-backup-cancel|xdmp:database-backup|xdmp:database|xdmp:collection-properties|xdmp:collection-locks|xdmp:collection-delete|xdmp:collation-canonical-uri|xdmp:castable-as|xdmp:can-grant-roles|xdmp:base64-encode|xdmp:base64-decode|xdmp:architecture|xdmp:apply|xdmp:amp-roles|xdmp:amp|xdmp:add64|xdmp:add-response-header|xdmp:access|trgr:trigger-set-recursive|trgr:trigger-set-permissions|trgr:trigger-set-name|trgr:trigger-set-module|trgr:trigger-set-event|trgr:trigger-set-description|trgr:trigger-remove-permissions|trgr:trigger-module|trgr:trigger-get-permissions|trgr:trigger-enable|trgr:trigger-disable|trgr:trigger-database-online-event|trgr:trigger-data-event|trgr:trigger-add-permissions|trgr:remove-trigger|trgr:property-content|trgr:pre-commit|trgr:post-commit|trgr:get-trigger-by-id|trgr:get-trigger|trgr:document-scope|trgr:document-content|trgr:directory-scope|trgr:create-trigger|trgr:collection-scope|trgr:any-property-content|thsr:set-entry|thsr:remove-term|thsr:remove-synonym|thsr:remove-entry|thsr:query-lookup|thsr:lookup|thsr:load|thsr:insert|thsr:expand|thsr:add-synonym|spell:suggest-detailed|spell:suggest|spell:remove-word|spell:make-dictionary|spell:load|spell:levenshtein-distance|spell:is-correct|spell:insert|spell:double-metaphone|spell:add-word|sec:users-collection|sec:user-set-roles|sec:user-set-password|sec:user-set-name|sec:user-set-description|sec:user-set-default-permissions|sec:user-set-default-collections|sec:user-remove-roles|sec:user-privileges|sec:user-get-roles|sec:user-get-description|sec:user-get-default-permissions|sec:user-get-default-collections|sec:user-doc-permissions|sec:user-doc-collections|sec:user-add-roles|sec:unprotect-collection|sec:uid-for-name|sec:set-realm|sec:security-version|sec:security-namespace|sec:security-installed|sec:security-collection|sec:roles-collection|sec:role-set-roles|sec:role-set-name|sec:role-set-description|sec:role-set-default-permissions|sec:role-set-default-collections|sec:role-remove-roles|sec:role-privileges|sec:role-get-roles|sec:role-get-description|sec:role-get-default-permissions|sec:role-get-default-collections|sec:role-doc-permissions|sec:role-doc-collections|sec:role-add-roles|sec:remove-user|sec:remove-role-from-users|sec:remove-role-from-role|sec:remove-role-from-privileges|sec:remove-role-from-amps|sec:remove-role|sec:remove-privilege|sec:remove-amp|sec:protect-collection|sec:privileges-collection|sec:privilege-set-roles|sec:privilege-set-name|sec:privilege-remove-roles|sec:privilege-get-roles|sec:privilege-add-roles|sec:priv-doc-permissions|sec:priv-doc-collections|sec:get-user-names|sec:get-unique-elem-id|sec:get-role-names|sec:get-role-ids|sec:get-privilege|sec:get-distinct-permissions|sec:get-collection|sec:get-amp|sec:create-user-with-role|sec:create-user|sec:create-role|sec:create-privilege|sec:create-amp|sec:collections-collection|sec:collection-set-permissions|sec:collection-remove-permissions|sec:collection-get-permissions|sec:collection-add-permissions|sec:check-admin|sec:amps-collection|sec:amp-set-roles|sec:amp-remove-roles|sec:amp-get-roles|sec:amp-doc-permissions|sec:amp-doc-collections|sec:amp-add-roles|search:unparse|search:suggest|search:snippet|search:search|search:resolve-nodes|search:resolve|search:remove-constraint|search:parse|search:get-default-options|search:estimate|search:check-options|prof:value|prof:reset|prof:report|prof:invoke|prof:eval|prof:enable|prof:disable|prof:allowed|ppt:clean|pki:template-set-request|pki:template-set-name|pki:template-set-key-type|pki:template-set-key-options|pki:template-set-description|pki:template-in-use|pki:template-get-version|pki:template-get-request|pki:template-get-name|pki:template-get-key-type|pki:template-get-key-options|pki:template-get-id|pki:template-get-description|pki:need-certificate|pki:is-temporary|pki:insert-trusted-certificates|pki:insert-template|pki:insert-signed-certificates|pki:insert-certificate-revocation-list|pki:get-trusted-certificate-ids|pki:get-template-ids|pki:get-template-certificate-authority|pki:get-template-by-name|pki:get-template|pki:get-pending-certificate-requests-xml|pki:get-pending-certificate-requests-pem|pki:get-pending-certificate-request|pki:get-certificates-for-template-xml|pki:get-certificates-for-template|pki:get-certificates|pki:get-certificate-xml|pki:get-certificate-pem|pki:get-certificate|pki:generate-temporary-certificate-if-necessary|pki:generate-temporary-certificate|pki:generate-template-certificate-authority|pki:generate-certificate-request|pki:delete-template|pki:delete-certificate|pki:create-template|pdf:make-toc|pdf:insert-toc-headers|pdf:get-toc|pdf:clean|p:status-transition|p:state-transition|p:remove|p:pipelines|p:insert|p:get-by-id|p:get|p:execute|p:create|p:condition|p:collection|p:action|ooxml:runs-merge|ooxml:package-uris|ooxml:package-parts-insert|ooxml:package-parts|msword:clean|mcgm:polygon|mcgm:point|mcgm:geospatial-query-from-elements|mcgm:geospatial-query|mcgm:circle|math:tanh|math:tan|math:sqrt|math:sinh|math:sin|math:pow|math:modf|math:log10|math:log|math:ldexp|math:frexp|math:fmod|math:floor|math:fabs|math:exp|math:cosh|math:cos|math:ceil|math:atan2|math:atan|math:asin|math:acos|map:put|map:map|map:keys|map:get|map:delete|map:count|map:clear|lnk:to|lnk:remove|lnk:insert|lnk:get|lnk:from|lnk:create|kml:polygon|kml:point|kml:interior-polygon|kml:geospatial-query-from-elements|kml:geospatial-query|kml:circle|kml:box|gml:polygon|gml:point|gml:interior-polygon|gml:geospatial-query-from-elements|gml:geospatial-query|gml:circle|gml:box|georss:point|georss:geospatial-query|georss:circle|geo:polygon|geo:point|geo:interior-polygon|geo:geospatial-query-from-elements|geo:geospatial-query|geo:circle|geo:box|fn:zero-or-one|fn:years-from-duration|fn:year-from-dateTime|fn:year-from-date|fn:upper-case|fn:unordered|fn:true|fn:translate|fn:trace|fn:tokenize|fn:timezone-from-time|fn:timezone-from-dateTime|fn:timezone-from-date|fn:sum|fn:subtract-dateTimes-yielding-yearMonthDuration|fn:subtract-dateTimes-yielding-dayTimeDuration|fn:substring-before|fn:substring-after|fn:substring|fn:subsequence|fn:string-to-codepoints|fn:string-pad|fn:string-length|fn:string-join|fn:string|fn:static-base-uri|fn:starts-with|fn:seconds-from-time|fn:seconds-from-duration|fn:seconds-from-dateTime|fn:round-half-to-even|fn:round|fn:root|fn:reverse|fn:resolve-uri|fn:resolve-QName|fn:replace|fn:remove|fn:QName|fn:prefix-from-QName|fn:position|fn:one-or-more|fn:number|fn:not|fn:normalize-unicode|fn:normalize-space|fn:node-name|fn:node-kind|fn:nilled|fn:namespace-uri-from-QName|fn:namespace-uri-for-prefix|fn:namespace-uri|fn:name|fn:months-from-duration|fn:month-from-dateTime|fn:month-from-date|fn:minutes-from-time|fn:minutes-from-duration|fn:minutes-from-dateTime|fn:min|fn:max|fn:matches|fn:lower-case|fn:local-name-from-QName|fn:local-name|fn:last|fn:lang|fn:iri-to-uri|fn:insert-before|fn:index-of|fn:in-scope-prefixes|fn:implicit-timezone|fn:idref|fn:id|fn:hours-from-time|fn:hours-from-duration|fn:hours-from-dateTime|fn:floor|fn:false|fn:expanded-QName|fn:exists|fn:exactly-one|fn:escape-uri|fn:escape-html-uri|fn:error|fn:ends-with|fn:encode-for-uri|fn:empty|fn:document-uri|fn:doc-available|fn:doc|fn:distinct-values|fn:distinct-nodes|fn:default-collation|fn:deep-equal|fn:days-from-duration|fn:day-from-dateTime|fn:day-from-date|fn:data|fn:current-time|fn:current-dateTime|fn:current-date|fn:count|fn:contains|fn:concat|fn:compare|fn:collection|fn:codepoints-to-string|fn:codepoint-equal|fn:ceiling|fn:boolean|fn:base-uri|fn:avg|fn:adjust-time-to-timezone|fn:adjust-dateTime-to-timezone|fn:adjust-date-to-timezone|fn:abs|feed:unsubscribe|feed:subscription|feed:subscribe|feed:request|feed:item|feed:description|excel:clean|entity:enrich|dom:set-pipelines|dom:set-permissions|dom:set-name|dom:set-evaluation-context|dom:set-domain-scope|dom:set-description|dom:remove-pipeline|dom:remove-permissions|dom:remove|dom:get|dom:evaluation-context|dom:domains|dom:domain-scope|dom:create|dom:configuration-set-restart-user|dom:configuration-set-permissions|dom:configuration-set-evaluation-context|dom:configuration-set-default-domain|dom:configuration-get|dom:configuration-create|dom:collection|dom:add-pipeline|dom:add-permissions|dls:retention-rules|dls:retention-rule-remove|dls:retention-rule-insert|dls:retention-rule|dls:purge|dls:node-expand|dls:link-references|dls:link-expand|dls:documents-query|dls:document-versions-query|dls:document-version-uri|dls:document-version-query|dls:document-version-delete|dls:document-version-as-of|dls:document-version|dls:document-update|dls:document-unmanage|dls:document-set-quality|dls:document-set-property|dls:document-set-properties|dls:document-set-permissions|dls:document-set-collections|dls:document-retention-rules|dls:document-remove-properties|dls:document-remove-permissions|dls:document-remove-collections|dls:document-purge|dls:document-manage|dls:document-is-managed|dls:document-insert-and-manage|dls:document-include-query|dls:document-history|dls:document-get-permissions|dls:document-extract-part|dls:document-delete|dls:document-checkout-status|dls:document-checkout|dls:document-checkin|dls:document-add-properties|dls:document-add-permissions|dls:document-add-collections|dls:break-checkout|dls:author-query|dls:as-of-query|dbk:convert|dbg:wait|dbg:value|dbg:stopped|dbg:stop|dbg:step|dbg:status|dbg:stack|dbg:out|dbg:next|dbg:line|dbg:invoke|dbg:function|dbg:finish|dbg:expr|dbg:eval|dbg:disconnect|dbg:detach|dbg:continue|dbg:connect|dbg:clear|dbg:breakpoints|dbg:break|dbg:attached|dbg:attach|cvt:save-converted-documents|cvt:part-uri|cvt:destination-uri|cvt:basepath|cvt:basename|cts:words|cts:word-query-weight|cts:word-query-text|cts:word-query-options|cts:word-query|cts:word-match|cts:walk|cts:uris|cts:uri-match|cts:train|cts:tokenize|cts:thresholds|cts:stem|cts:similar-query-weight|cts:similar-query-nodes|cts:similar-query|cts:shortest-distance|cts:search|cts:score|cts:reverse-query-weight|cts:reverse-query-nodes|cts:reverse-query|cts:remainder|cts:registered-query-weight|cts:registered-query-options|cts:registered-query-ids|cts:registered-query|cts:register|cts:query|cts:quality|cts:properties-query-query|cts:properties-query|cts:polygon-vertices|cts:polygon|cts:point-longitude|cts:point-latitude|cts:point|cts:or-query-queries|cts:or-query|cts:not-query-weight|cts:not-query-query|cts:not-query|cts:near-query-weight|cts:near-query-queries|cts:near-query-options|cts:near-query-distance|cts:near-query|cts:highlight|cts:geospatial-co-occurrences|cts:frequency|cts:fitness|cts:field-words|cts:field-word-query-weight|cts:field-word-query-text|cts:field-word-query-options|cts:field-word-query-field-name|cts:field-word-query|cts:field-word-match|cts:entity-highlight|cts:element-words|cts:element-word-query-weight|cts:element-word-query-text|cts:element-word-query-options|cts:element-word-query-element-name|cts:element-word-query|cts:element-word-match|cts:element-values|cts:element-value-ranges|cts:element-value-query-weight|cts:element-value-query-text|cts:element-value-query-options|cts:element-value-query-element-name|cts:element-value-query|cts:element-value-match|cts:element-value-geospatial-co-occurrences|cts:element-value-co-occurrences|cts:element-range-query-weight|cts:element-range-query-value|cts:element-range-query-options|cts:element-range-query-operator|cts:element-range-query-element-name|cts:element-range-query|cts:element-query-query|cts:element-query-element-name|cts:element-query|cts:element-pair-geospatial-values|cts:element-pair-geospatial-value-match|cts:element-pair-geospatial-query-weight|cts:element-pair-geospatial-query-region|cts:element-pair-geospatial-query-options|cts:element-pair-geospatial-query-longitude-name|cts:element-pair-geospatial-query-latitude-name|cts:element-pair-geospatial-query-element-name|cts:element-pair-geospatial-query|cts:element-pair-geospatial-boxes|cts:element-geospatial-values|cts:element-geospatial-value-match|cts:element-geospatial-query-weight|cts:element-geospatial-query-region|cts:element-geospatial-query-options|cts:element-geospatial-query-element-name|cts:element-geospatial-query|cts:element-geospatial-boxes|cts:element-child-geospatial-values|cts:element-child-geospatial-value-match|cts:element-child-geospatial-query-weight|cts:element-child-geospatial-query-region|cts:element-child-geospatial-query-options|cts:element-child-geospatial-query-element-name|cts:element-child-geospatial-query-child-name|cts:element-child-geospatial-query|cts:element-child-geospatial-boxes|cts:element-attribute-words|cts:element-attribute-word-query-weight|cts:element-attribute-word-query-text|cts:element-attribute-word-query-options|cts:element-attribute-word-query-element-name|cts:element-attribute-word-query-attribute-name|cts:element-attribute-word-query|cts:element-attribute-word-match|cts:element-attribute-values|cts:element-attribute-value-ranges|cts:element-attribute-value-query-weight|cts:element-attribute-value-query-text|cts:element-attribute-value-query-options|cts:element-attribute-value-query-element-name|cts:element-attribute-value-query-attribute-name|cts:element-attribute-value-query|cts:element-attribute-value-match|cts:element-attribute-value-geospatial-co-occurrences|cts:element-attribute-value-co-occurrences|cts:element-attribute-range-query-weight|cts:element-attribute-range-query-value|cts:element-attribute-range-query-options|cts:element-attribute-range-query-operator|cts:element-attribute-range-query-element-name|cts:element-attribute-range-query-attribute-name|cts:element-attribute-range-query|cts:element-attribute-pair-geospatial-values|cts:element-attribute-pair-geospatial-value-match|cts:element-attribute-pair-geospatial-query-weight|cts:element-attribute-pair-geospatial-query-region|cts:element-attribute-pair-geospatial-query-options|cts:element-attribute-pair-geospatial-query-longitude-name|cts:element-attribute-pair-geospatial-query-latitude-name|cts:element-attribute-pair-geospatial-query-element-name|cts:element-attribute-pair-geospatial-query|cts:element-attribute-pair-geospatial-boxes|cts:document-query-uris|cts:document-query|cts:distance|cts:directory-query-uris|cts:directory-query-depth|cts:directory-query|cts:destination|cts:deregister|cts:contains|cts:confidence|cts:collections|cts:collection-query-uris|cts:collection-query|cts:collection-match|cts:classify|cts:circle-radius|cts:circle-center|cts:circle|cts:box-west|cts:box-south|cts:box-north|cts:box-east|cts:box|cts:bearing|cts:arc-intersection|cts:and-query-queries|cts:and-query-options|cts:and-query|cts:and-not-query-positive-query|cts:and-not-query-negative-query|cts:and-not-query|css:get|css:convert|cpf:success|cpf:failure|cpf:document-set-state|cpf:document-set-processing-status|cpf:document-set-last-updated|cpf:document-set-error|cpf:document-get-state|cpf:document-get-processing-status|cpf:document-get-last-updated|cpf:document-get-error|cpf:check-transition|alert:spawn-matching-actions|alert:rule-user-id-query|alert:rule-set-user-id|alert:rule-set-query|alert:rule-set-options|alert:rule-set-name|alert:rule-set-description|alert:rule-set-action|alert:rule-remove|alert:rule-name-query|alert:rule-insert|alert:rule-id-query|alert:rule-get-user-id|alert:rule-get-query|alert:rule-get-options|alert:rule-get-name|alert:rule-get-id|alert:rule-get-description|alert:rule-get-action|alert:rule-action-query|alert:remove-triggers|alert:make-rule|alert:make-log-action|alert:make-config|alert:make-action|alert:invoke-matching-actions|alert:get-my-rules|alert:get-all-rules|alert:get-actions|alert:find-matching-rules|alert:create-triggers|alert:config-set-uri|alert:config-set-trigger-ids|alert:config-set-options|alert:config-set-name|alert:config-set-description|alert:config-set-cpf-domain-names|alert:config-set-cpf-domain-ids|alert:config-insert|alert:config-get-uri|alert:config-get-trigger-ids|alert:config-get-options|alert:config-get-name|alert:config-get-id|alert:config-get-description|alert:config-get-cpf-domain-names|alert:config-get-cpf-domain-ids|alert:config-get|alert:config-delete|alert:action-set-options|alert:action-set-name|alert:action-set-module-root|alert:action-set-module-db|alert:action-set-module|alert:action-set-description|alert:action-remove|alert:action-insert|alert:action-get-options|alert:action-get-name|alert:action-get-module-root|alert:action-get-module-db|alert:action-get-module|alert:action-get-description|zero-or-one|years-from-duration|year-from-dateTime|year-from-date|upper-case|unordered|true|translate|trace|tokenize|timezone-from-time|timezone-from-dateTime|timezone-from-date|sum|subtract-dateTimes-yielding-yearMonthDuration|subtract-dateTimes-yielding-dayTimeDuration|substring-before|substring-after|substring|subsequence|string-to-codepoints|string-pad|string-length|string-join|string|static-base-uri|starts-with|seconds-from-time|seconds-from-duration|seconds-from-dateTime|round-half-to-even|round|root|reverse|resolve-uri|resolve-QName|replace|remove|QName|prefix-from-QName|position|one-or-more|number|not|normalize-unicode|normalize-space|node-name|node-kind|nilled|namespace-uri-from-QName|namespace-uri-for-prefix|namespace-uri|name|months-from-duration|month-from-dateTime|month-from-date|minutes-from-time|minutes-from-duration|minutes-from-dateTime|min|max|matches|lower-case|local-name-from-QName|local-name|last|lang|iri-to-uri|insert-before|index-of|in-scope-prefixes|implicit-timezone|idref|id|hours-from-time|hours-from-duration|hours-from-dateTime|floor|false|expanded-QName|exists|exactly-one|escape-uri|escape-html-uri|error|ends-with|encode-for-uri|empty|document-uri|doc-available|doc|distinct-values|distinct-nodes|default-collation|deep-equal|days-from-duration|day-from-dateTime|day-from-date|data|current-time|current-dateTime|current-date|count|contains|concat|compare|collection|codepoints-to-string|codepoint-equal|ceiling|boolean|base-uri|avg|adjust-time-to-timezone|adjust-dateTime-to-timezone|adjust-date-to-timezone|abs)\b/],
3
+ ["pln",/^[\w:-]+/],["pln",/^[\t\n\r \xa0]+/]]),["xq","xquery"]);
@@ -0,0 +1,2 @@
1
+ var a=null;
2
+ PR.registerLangHandler(PR.createSimpleLexer([["pun",/^[:>?|]+/,a,":|>?"],["dec",/^%(?:YAML|TAG)[^\n\r#]+/,a,"%"],["typ",/^&\S+/,a,"&"],["typ",/^!\S*/,a,"!"],["str",/^"(?:[^"\\]|\\.)*(?:"|$)/,a,'"'],["str",/^'(?:[^']|'')*(?:'|$)/,a,"'"],["com",/^#[^\n\r]*/,a,"#"],["pln",/^\s+/,a," \t\r\n"]],[["dec",/^(?:---|\.\.\.)(?:[\n\r]|$)/],["pun",/^-/],["kwd",/^\w+:[\n\r ]/],["pln",/^\w+/]]),["yaml","yml"]);
@@ -0,0 +1,22 @@
1
+ // Non core detects
2
+ // http://goo.gl/Fbpza
3
+
4
+ // developer.mozilla.org/en/CSS/box-sizing
5
+ // github.com/Modernizr/Modernizr/issues/248
6
+
7
+ Modernizr.addTest("boxsizing",function(){
8
+ return Modernizr.testAllProps("boxSizing") && (document.documentMode === undefined || document.documentMode > 7);
9
+ });
10
+
11
+
12
+
13
+ // last-child pseudo selector
14
+ // https://github.com/Modernizr/Modernizr/pull/304
15
+
16
+ Modernizr.addTest('lastchild', function(){
17
+
18
+ return Modernizr.testStyles("#modernizr div {width:100px} #modernizr :last-child{width:200px;display:block}", function (elem) {
19
+ return elem.lastChild.offsetWidth > elem.firstChild.offsetWidth;
20
+ }, 2);
21
+
22
+ });
@@ -0,0 +1,28 @@
1
+ var q=null;window.PR_SHOULD_USE_CONTINUATION=!0;
2
+ (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=
3
+ [],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<
4
+ 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)&&
5
+ (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=
6
+ {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,
7
+ 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===
8
+ "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),
9
+ 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])*(?:`|$))/,
10
+ 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]*/,
11
+ 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,
12
+ "");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),
13
+ 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}
14
+ 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",
15
+ 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=
16
+ 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=
17
+ 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"],
18
+ "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"],
19
+ 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"],
20
+ 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"+
21
+ 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]]),
22
+ ["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",
23
+ /^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}),
24
+ ["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",
25
+ 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=
26
+ !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,
27
+ 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",
28
+ PR_NOCODE:"nocode",PR_PLAIN:"pln",PR_PUNCTUATION:"pun",PR_SOURCE:"src",PR_STRING:"str",PR_TAG:"tag",PR_TYPE:"typ"}})();
@@ -0,0 +1,5 @@
1
+ /*!
2
+ * selectivizr v1.0.2 - (c) Keith Clark, freely distributable under the terms of the MIT license.
3
+ * selectivizr.com
4
+ */
5
+ (function(j){function A(a){return a.replace(B,h).replace(C,function(a,d,b){for(var a=b.split(","),b=0,e=a.length;b<e;b++){var s=D(a[b].replace(E,h).replace(F,h))+o,l=[];a[b]=s.replace(G,function(a,b,c,d,e){if(b){if(l.length>0){var a=l,f,e=s.substring(0,e).replace(H,i);if(e==i||e.charAt(e.length-1)==o)e+="*";try{f=t(e)}catch(k){}if(f){e=0;for(c=f.length;e<c;e++){for(var d=f[e],h=d.className,j=0,m=a.length;j<m;j++){var g=a[j];if(!RegExp("(^|\\s)"+g.className+"(\\s|$)").test(d.className)&&g.b&&(g.b===!0||g.b(d)===!0))h=u(h,g.className,!0)}d.className=h}}l=[]}return b}else{if(b=c?I(c):!v||v.test(d)?{className:w(d),b:!0}:null)return l.push(b),"."+b.className;return a}})}return d+a.join(",")})}function I(a){var c=!0,d=w(a.slice(1)),b=a.substring(0,5)==":not(",e,f;b&&(a=a.slice(5,-1));var l=a.indexOf("(");l>-1&&(a=a.substring(0,l));if(a.charAt(0)==":")switch(a.slice(1)){case "root":c=function(a){return b?a!=p:a==p};break;case "target":if(m==8){c=function(a){function c(){var d=location.hash,e=d.slice(1);return b?d==i||a.id!=e:d!=i&&a.id==e}k(j,"hashchange",function(){g(a,d,c())});return c()};break}return!1;case "checked":c=function(a){J.test(a.type)&&k(a,"propertychange",function(){event.propertyName=="checked"&&g(a,d,a.checked!==b)});return a.checked!==b};break;case "disabled":b=!b;case "enabled":c=function(c){if(K.test(c.tagName))return k(c,"propertychange",function(){event.propertyName=="$disabled"&&g(c,d,c.a===b)}),q.push(c),c.a=c.disabled,c.disabled===b;return a==":enabled"?b:!b};break;case "focus":e="focus",f="blur";case "hover":e||(e="mouseenter",f="mouseleave");c=function(a){k(a,b?f:e,function(){g(a,d,!0)});k(a,b?e:f,function(){g(a,d,!1)});return b};break;default:if(!L.test(a))return!1}return{className:d,b:c}}function w(a){return M+"-"+(m==6&&N?O++:a.replace(P,function(a){return a.charCodeAt(0)}))}function D(a){return a.replace(x,h).replace(Q,o)}function g(a,c,d){var b=a.className,c=u(b,c,d);if(c!=b)a.className=c,a.parentNode.className+=i}function u(a,c,d){var b=RegExp("(^|\\s)"+c+"(\\s|$)"),e=b.test(a);return d?e?a:a+o+c:e?a.replace(b,h).replace(x,h):a}function k(a,c,d){a.attachEvent("on"+c,d)}function r(a,c){if(/^https?:\/\//i.test(a))return c.substring(0,c.indexOf("/",8))==a.substring(0,a.indexOf("/",8))?a:null;if(a.charAt(0)=="/")return c.substring(0,c.indexOf("/",8))+a;var d=c.split(/[?#]/)[0];a.charAt(0)!="?"&&d.charAt(d.length-1)!="/"&&(d=d.substring(0,d.lastIndexOf("/")+1));return d+a}function y(a){if(a)return n.open("GET",a,!1),n.send(),(n.status==200?n.responseText:i).replace(R,i).replace(S,function(c,d,b,e,f){return y(r(b||f,a))}).replace(T,function(c,d,b){d=d||i;return" url("+d+r(b,a)+d+") "});return i}function U(){var a,c;a=f.getElementsByTagName("BASE");for(var d=a.length>0?a[0].href:f.location.href,b=0;b<f.styleSheets.length;b++)if(c=f.styleSheets[b],c.href!=i&&(a=r(c.href,d)))c.cssText=A(y(a));q.length>0&&setInterval(function(){for(var a=0,c=q.length;a<c;a++){var b=q[a];if(b.disabled!==b.a)b.disabled?(b.disabled=!1,b.a=!0,b.disabled=!0):b.a=b.disabled}},250)}if(!/*@cc_on!@*/true){var f=document,p=f.documentElement,n=function(){if(j.XMLHttpRequest)return new XMLHttpRequest;try{return new ActiveXObject("Microsoft.XMLHTTP")}catch(a){return null}}(),m=/MSIE (\d+)/.exec(navigator.userAgent)[1];if(!(f.compatMode!="CSS1Compat"||m<6||m>8||!n)){var z={NW:"*.Dom.select",MooTools:"$$",DOMAssistant:"*.$",Prototype:"$$",YAHOO:"*.util.Selector.query",Sizzle:"*",jQuery:"*",dojo:"*.query"},t,q=[],O=0,N=!0,M="slvzr",R=/(\/\*[^*]*\*+([^\/][^*]*\*+)*\/)\s*/g,S=/@import\s*(?:(?:(?:url\(\s*(['"]?)(.*)\1)\s*\))|(?:(['"])(.*)\3))[^;]*;/g,T=/\burl\(\s*(["']?)(?!data:)([^"')]+)\1\s*\)/g,L=/^:(empty|(first|last|only|nth(-last)?)-(child|of-type))$/,B=/:(:first-(?:line|letter))/g,C=/(^|})\s*([^\{]*?[\[:][^{]+)/g,G=/([ +~>])|(:[a-z-]+(?:\(.*?\)+)?)|(\[.*?\])/g,H=/(:not\()?:(hover|enabled|disabled|focus|checked|target|active|visited|first-line|first-letter)\)?/g,P=/[^\w-]/g,K=/^(INPUT|SELECT|TEXTAREA|BUTTON)$/,J=/^(checkbox|radio)$/,v=m>6?/[\$\^*]=(['"])\1/:null,E=/([(\[+~])\s+/g,F=/\s+([)\]+~])/g,Q=/\s+/g,x=/^\s*((?:[\S\s]*\S)?)\s*$/,i="",o=" ",h="$1";(function(a,c){function d(){try{p.doScroll("left")}catch(a){setTimeout(d,50);return}b("poll")}function b(d){if(!(d.type=="readystatechange"&&f.readyState!="complete")&&((d.type=="load"?a:f).detachEvent("on"+d.type,b,!1),!e&&(e=!0)))c.call(a,d.type||d)}var e=!1,g=!0;if(f.readyState=="complete")c.call(a,i);else{if(f.createEventObject&&p.doScroll){try{g=!a.frameElement}catch(h){}g&&d()}k(f,"readystatechange",b);k(a,"load",b)}})(j,function(){for(var a in z){var c,d,b=j;if(j[a]){for(c=z[a].replace("*",a).split(".");(d=c.shift())&&(b=b[d]););if(typeof b=="function"){t=b;U();break}}}})}}})(this);
@@ -0,0 +1,615 @@
1
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/resets\/_toadstool\.scss}line{font-family:\0000327}}
2
+ html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, hgroup, menu, nav, section, menu, time, mark, audio, video {
3
+ margin: 0;
4
+ padding: 0;
5
+ border: 0;
6
+ vertical-align: baseline;
7
+ background: transparent;
8
+ }
9
+
10
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/resets\/_toadstool\.scss}line{font-family:\0000336}}
11
+ body {
12
+ font-size: 100%;
13
+ -webkit-font-smoothing: antialiased;
14
+ }
15
+
16
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/resets\/_toadstool\.scss}line{font-family:\0000342}}
17
+ article, aside, figure, footer, header, hgroup, nav, section {
18
+ display: block;
19
+ }
20
+
21
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/resets\/_toadstool\.scss}line{font-family:\0000350}}
22
+ img, object, embed {
23
+ max-width: 100%;
24
+ }
25
+
26
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/resets\/_toadstool\.scss}line{font-family:\0000354}}
27
+ img {
28
+ border-style: none;
29
+ border-color: transparent;
30
+ border-width: 0;
31
+ }
32
+
33
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/resets\/_toadstool\.scss}line{font-family:\0000363}}
34
+ ol, ul {
35
+ list-style: none;
36
+ }
37
+
38
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/resets\/_toadstool\.scss}line{font-family:\0000367}}
39
+ blockquote, q {
40
+ quotes: none;
41
+ }
42
+
43
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/resets\/_toadstool\.scss}line{font-family:\0000372}}
44
+ blockquote:before, blockquote:after {
45
+ content: '';
46
+ content: none;
47
+ }
48
+
49
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/resets\/_toadstool\.scss}line{font-family:\0000379}}
50
+ q:before, q:after {
51
+ content: '';
52
+ content: none;
53
+ }
54
+
55
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/resets\/_toadstool\.scss}line{font-family:\0000385}}
56
+ a {
57
+ margin: 0;
58
+ padding: 0;
59
+ font-size: 100%;
60
+ vertical-align: baseline;
61
+ background: transparent;
62
+ }
63
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/resets\/_toadstool\.scss}line{font-family:\0000391}}
64
+ a:focus {
65
+ text-decoration: underline;
66
+ outline: none;
67
+ }
68
+
69
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/resets\/_toadstool\.scss}line{font-family:\0000397}}
70
+ del {
71
+ text-decoration: line-through;
72
+ }
73
+
74
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/resets\/_toadstool\.scss}line{font-family:\00003102}}
75
+ pre {
76
+ white-space: pre-wrap;
77
+ word-wrap: break-word;
78
+ }
79
+
80
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/resets\/_toadstool\.scss}line{font-family:\00003114}}
81
+ input[type="radio"] {
82
+ vertical-align: text-bottom;
83
+ }
84
+
85
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/resets\/_toadstool\.scss}line{font-family:\00003119}}
86
+ input, textarea, select, button {
87
+ font-family: inherit;
88
+ font-weight: inherit;
89
+ background-color: #fff;
90
+ border: 0;
91
+ padding: 0;
92
+ margin: 0;
93
+ }
94
+
95
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/resets\/_toadstool\.scss}line{font-family:\00003128}}
96
+ table {
97
+ font-size: inherit;
98
+ font: 100%;
99
+ }
100
+
101
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/resets\/_toadstool\.scss}line{font-family:\00003133}}
102
+ sub {
103
+ font-size: 75%;
104
+ line-height: 0;
105
+ position: relative;
106
+ }
107
+
108
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/resets\/_toadstool\.scss}line{font-family:\00003139}}
109
+ sup {
110
+ font-size: 75%;
111
+ line-height: 0;
112
+ position: relative;
113
+ top: -0.5em;
114
+ }
115
+
116
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/resets\/_toadstool\.scss}line{font-family:\00003146}}
117
+ sub {
118
+ bottom: -0.25em;
119
+ }
120
+
121
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/resets\/_toadstool\.scss}line{font-family:\00003152}}
122
+ pre, code, kbd, samp {
123
+ font-family: monospace, sans-serif;
124
+ }
125
+
126
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/resets\/_toadstool\.scss}line{font-family:\00003158}}
127
+ .clickable, label {
128
+ cursor: pointer;
129
+ }
130
+
131
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/resets\/_toadstool\.scss}line{font-family:\00003163}}
132
+ input[type=button], input[type=submit] {
133
+ cursor: pointer;
134
+ }
135
+
136
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/resets\/_toadstool\.scss}line{font-family:\00003168}}
137
+ button {
138
+ cursor: pointer;
139
+ margin: 0;
140
+ width: auto;
141
+ overflow: visible;
142
+ }
143
+
144
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/resets\/_toadstool\.scss}line{font-family:\00003175}}
145
+ a.button {
146
+ display: inline-block;
147
+ }
148
+
149
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/resets\/_toadstool\.scss}line{font-family:\00003181}}
150
+ .ie7 img {
151
+ -ms-interpolation-mode: bicubic;
152
+ }
153
+
154
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/resets\/_toadstool\.scss}line{font-family:\00003188}}
155
+ a:link {
156
+ -webkit-tap-highlight-color: #3d4048;
157
+ }
158
+
159
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/resets\/_toadstool\.scss}line{font-family:\00003192}}
160
+ ins {
161
+ background-color: #fffedf;
162
+ color: black;
163
+ text-decoration: none;
164
+ }
165
+
166
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/resets\/_toadstool\.scss}line{font-family:\00003198}}
167
+ mark {
168
+ background-color: yellow;
169
+ color: #474747;
170
+ font-style: italic;
171
+ font-weight: bold;
172
+ }
173
+
174
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/resets\/_toadstool\.scss}line{font-family:\00003205}}
175
+ ::selection {
176
+ background: yellow;
177
+ color: #474747;
178
+ }
179
+
180
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/resets\/_toadstool\.scss}line{font-family:\00003210}}
181
+ ::-moz-selection {
182
+ background: yellow;
183
+ color: #474747;
184
+ }
185
+
186
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/typography\/_extends\.scss}line{font-family:\000038}}
187
+ h1 {
188
+ font-size: 3.83333em;
189
+ line-height: 1.17391em;
190
+ margin-bottom: 0.3913em;
191
+ color: #333333;
192
+ font-weight: normal;
193
+ font-family: "Helvetica Neue", Arial, sans-serif;
194
+ }
195
+
196
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/typography\/_extends\.scss}line{font-family:\0000312}}
197
+ h2 {
198
+ font-size: 2.66667em;
199
+ line-height: 1.125em;
200
+ margin-bottom: 0.5625em;
201
+ color: #333333;
202
+ font-weight: normal;
203
+ font-family: "Helvetica Neue", Arial, sans-serif;
204
+ }
205
+
206
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/typography\/_extends\.scss}line{font-family:\0000316}}
207
+ h3 {
208
+ font-size: 2.33333em;
209
+ line-height: 1.28571em;
210
+ margin-bottom: 0.64286em;
211
+ color: #333333;
212
+ font-weight: normal;
213
+ font-family: "Helvetica Neue", Arial, sans-serif;
214
+ }
215
+
216
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/typography\/_extends\.scss}line{font-family:\0000320}}
217
+ h4 {
218
+ font-size: 1.5em;
219
+ line-height: 1em;
220
+ margin-bottom: 1em;
221
+ color: #333333;
222
+ font-weight: normal;
223
+ font-family: "Helvetica Neue", Arial, sans-serif;
224
+ }
225
+
226
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/typography\/_extends\.scss}line{font-family:\0000324}}
227
+ h5 {
228
+ font-size: 1.5em;
229
+ line-height: 1em;
230
+ margin-bottom: 1em;
231
+ color: #333333;
232
+ font-weight: normal;
233
+ font-family: "Helvetica Neue", Arial, sans-serif;
234
+ }
235
+
236
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/typography\/_extends\.scss}line{font-family:\0000328}}
237
+ h6 {
238
+ font-size: 1.5em;
239
+ line-height: 1em;
240
+ margin-bottom: 1em;
241
+ color: #333333;
242
+ font-weight: normal;
243
+ font-family: "Helvetica Neue", Arial, sans-serif;
244
+ }
245
+
246
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/forms\/_extends\.scss}line{font-family:\000033}}
247
+ input[type=text], input[type=password], input[type="date"], select {
248
+ border: 1px solid #5c5c5c;
249
+ background: white;
250
+ font-size: 1.16667em;
251
+ height: 3em;
252
+ -moz-box-sizing: border-box;
253
+ -webkit-box-sizing: border-box;
254
+ -o-box-sizing: border-box;
255
+ -ms-box-sizing: border-box;
256
+ box-sizing: border-box;
257
+ margin-left: 0;
258
+ margin-right: 0;
259
+ padding-left: 0.625%;
260
+ padding-right: 0.625%;
261
+ width: 100%;
262
+ color: #474747;
263
+ }
264
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/grid\/lib\/_the_grid\.scss}line{font-family:\00003101}}
265
+ .no-boxsizing input[type=text], .no-boxsizing input[type=password], .no-boxsizing input[type="date"], .no-boxsizing select {
266
+ width: 948px;
267
+ }
268
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/stipe\/_mixins\.scss}line{font-family:\0000386}}
269
+ input[type=text]::-webkit-input-placeholder, input[type=password]::-webkit-input-placeholder, input[type="date"]::-webkit-input-placeholder, select::-webkit-input-placeholder {
270
+ color: #c2c2c2;
271
+ }
272
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/stipe\/_mixins\.scss}line{font-family:\0000389}}
273
+ input[type=text]:-moz-placeholder, input[type=password]:-moz-placeholder, input[type="date"]:-moz-placeholder, select:-moz-placeholder {
274
+ color: #c2c2c2;
275
+ }
276
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/stipe\/_mixins\.scss}line{font-family:\0000392}}
277
+ input[type=text]:-ms-input-placeholder, input[type=password]:-ms-input-placeholder, input[type="date"]:-ms-input-placeholder, select:-ms-input-placeholder {
278
+ color: #c2c2c2;
279
+ }
280
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/forms\/_mixins\.scss}line{font-family:\0000318}}
281
+ input[type=text]:hover, input[type=password]:hover, input[type="date"]:hover, select:hover {
282
+ border-color: #5c5c5c;
283
+ }
284
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/forms\/_mixins\.scss}line{font-family:\0000321}}
285
+ input[type=text]:focus, input[type=password]:focus, input[type="date"]:focus, select:focus {
286
+ background-color: white;
287
+ border-color: #5c5c5c;
288
+ outline: none;
289
+ }
290
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/forms\/_mixins\.scss}line{font-family:\0000312}}
291
+ input[type=text] + .horizontal_selectors, input[type=password] + .horizontal_selectors, input[type="date"] + .horizontal_selectors, select + .horizontal_selectors {
292
+ margin-top: -0.5em;
293
+ }
294
+
295
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/forms\/_extends\.scss}line{font-family:\000039}}
296
+ input[disabled], textarea[disabled], select[disabled], .disabled {
297
+ background-color: white;
298
+ border-color: #c7c7c7;
299
+ color: #c7c7c7;
300
+ }
301
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/forms\/_extends\.scss}line{font-family:\0000313}}
302
+ input[disabled]:hover, textarea[disabled]:hover, select[disabled]:hover, .disabled:hover {
303
+ border-color: #c7c7c7;
304
+ }
305
+
306
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/forms\/_extends\.scss}line{font-family:\0000320}}
307
+ label {
308
+ display: block;
309
+ font-weight: bold;
310
+ line-height: 1.66667em;
311
+ }
312
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/forms\/_extends\.scss}line{font-family:\0000324}}
313
+ label span {
314
+ padding-left: .25em;
315
+ font-weight: normal;
316
+ }
317
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/forms\/_extends\.scss}line{font-family:\0000328}}
318
+ fieldset label {
319
+ -moz-box-sizing: border-box;
320
+ -webkit-box-sizing: border-box;
321
+ -o-box-sizing: border-box;
322
+ -ms-box-sizing: border-box;
323
+ box-sizing: border-box;
324
+ width: 97.91667%;
325
+ }
326
+
327
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/buttons\/lib\/_cupid-green\.scss}line{font-family:\0000318}}
328
+ button, a.button {
329
+ background: #7fbf4d;
330
+ background: -webkit-linear-gradient(top, #7fbf4d 0%, #63a62f 100%);
331
+ background: -moz-linear-gradient(top, #7fbf4d 0%, #63a62f 100%);
332
+ background: -o-linear-gradient(top, #7fbf4d 0%, #63a62f 100%);
333
+ background: -ms-linear-gradient(top, #7fbf4d 0%, #63a62f 100%);
334
+ border-width: 1px;
335
+ border-style: solid;
336
+ border-color: #63a62f #63a62f #5b992b #63a62f;
337
+ -webkit-border-radius: 0.25em;
338
+ border-radius: 0.25em;
339
+ -moz-box-shadow: inset 0 1px 0 0 #96ca6d;
340
+ -webkit-box-shadow: inset 0 1px 0 0 #96ca6d;
341
+ -o-box-shadow: inset 0 1px 0 0 #96ca6d;
342
+ -ms-box-shadow: inset 0 1px 0 0 #96ca6d;
343
+ box-shadow: inset 0 1px 0 0 #96ca6d;
344
+ color: white;
345
+ font: bold 1.3em "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
346
+ line-height: 1em;
347
+ padding: 0.58333em 0 0.66667em 0;
348
+ text-align: center;
349
+ text-shadow: 0 -1px 0 #4c9021;
350
+ width: 12.5em;
351
+ }
352
+ @media screen and (max-width: 40em) {
353
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/buttons\/lib\/_cupid-green\.scss}line{font-family:\0000318}}
354
+ button, a.button {
355
+ width: 100%;
356
+ line-height: 1.3em;
357
+ }
358
+ }
359
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/buttons\/lib\/_cupid-green\.scss}line{font-family:\0000336}}
360
+ button:hover, a.button:hover {
361
+ background: #75b641;
362
+ background: -webkit-linear-gradient(top, #75b641 0%, #5e9e2e 100%);
363
+ background: -moz-linear-gradient(top, #75b641 0%, #5e9e2e 100%);
364
+ background: -o-linear-gradient(top, #75b641 0%, #5e9e2e 100%);
365
+ background: -ms-linear-gradient(top, #75b641 0%, #5e9e2e 100%);
366
+ -moz-box-shadow: inset 0 1px 0 0 #8dbf67;
367
+ -webkit-box-shadow: inset 0 1px 0 0 #8dbf67;
368
+ -o-box-shadow: inset 0 1px 0 0 #8dbf67;
369
+ -ms-box-shadow: inset 0 1px 0 0 #8dbf67;
370
+ box-shadow: inset 0 1px 0 0 #8dbf67;
371
+ cursor: pointer;
372
+ }
373
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/buttons\/lib\/_cupid-green\.scss}line{font-family:\0000341}}
374
+ button:active, a.button:active {
375
+ border-width: 1px;
376
+ border-style: solid;
377
+ border-color: #579229;
378
+ -moz-box-shadow: inset 0 0 8px 4px #548c29;
379
+ -webkit-box-shadow: inset 0 0 8px 4px #548c29;
380
+ -o-box-shadow: inset 0 0 8px 4px #548c29;
381
+ -ms-box-shadow: inset 0 0 8px 4px #548c29;
382
+ box-shadow: inset 0 0 8px 4px #548c29;
383
+ }
384
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/buttons\/lib\/_cupid-green\.scss}line{font-family:\0000347}}
385
+ button[disabled], a[disabled].button {
386
+ background: rgba(127, 191, 77, 0.5);
387
+ border-color: rgba(127, 191, 77, 0.5);
388
+ color: rgba(255, 255, 255, 0.5);
389
+ }
390
+
391
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/buttons\/lib\/_minimal\.scss}line{font-family:\0000314}}
392
+ button:nth-child(n+2), a.button:nth-child(n+2) {
393
+ background: #e3e3e3;
394
+ border: 1px solid #bbbbbb;
395
+ -webkit-border-radius: 0.25em;
396
+ border-radius: 0.25em;
397
+ -moz-box-shadow: inset 0 0 1px 1px #f6f6f6;
398
+ -webkit-box-shadow: inset 0 0 1px 1px #f6f6f6;
399
+ -o-box-shadow: inset 0 0 1px 1px #f6f6f6;
400
+ -ms-box-shadow: inset 0 0 1px 1px #f6f6f6;
401
+ box-shadow: inset 0 0 1px 1px #f6f6f6;
402
+ color: #333333;
403
+ font: bold 1em "helvetica neue", helvetica, arial, sans-serif;
404
+ line-height: 1em;
405
+ padding: 0.66667em 0 0.75em;
406
+ text-align: center;
407
+ text-shadow: 0 1px 0 white;
408
+ width: 12.5em;
409
+ }
410
+ @media screen and (max-width: 40em) {
411
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/buttons\/lib\/_minimal\.scss}line{font-family:\0000314}}
412
+ button:nth-child(n+2), a.button:nth-child(n+2) {
413
+ width: 100%;
414
+ line-height: 1.3em;
415
+ }
416
+ }
417
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/buttons\/lib\/_minimal\.scss}line{font-family:\0000330}}
418
+ button:hover:nth-child(n+2), a.button:hover:nth-child(n+2) {
419
+ background: #d6d6d6;
420
+ -moz-box-shadow: inset 0 0 1px 1px #e9e9e9;
421
+ -webkit-box-shadow: inset 0 0 1px 1px #e9e9e9;
422
+ -o-box-shadow: inset 0 0 1px 1px #e9e9e9;
423
+ -ms-box-shadow: inset 0 0 1px 1px #e9e9e9;
424
+ box-shadow: inset 0 0 1px 1px #e9e9e9;
425
+ color: #212121;
426
+ cursor: pointer;
427
+ }
428
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/buttons\/lib\/_minimal\.scss}line{font-family:\0000336}}
429
+ button:active:nth-child(n+2), a.button:active:nth-child(n+2) {
430
+ background: #cfcfcf;
431
+ -moz-box-shadow: inset 0 0 1px 1px #e9e9e9;
432
+ -webkit-box-shadow: inset 0 0 1px 1px #e9e9e9;
433
+ -o-box-shadow: inset 0 0 1px 1px #e9e9e9;
434
+ -ms-box-shadow: inset 0 0 1px 1px #e9e9e9;
435
+ box-shadow: inset 0 0 1px 1px #e9e9e9;
436
+ }
437
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/buttons\/lib\/_minimal\.scss}line{font-family:\0000340}}
438
+ button[disabled]:nth-child(n+2), a[disabled].button:nth-child(n+2) {
439
+ background: rgba(227, 227, 227, 0.5);
440
+ border-color: rgba(227, 227, 227, 0.5);
441
+ color: rgba(51, 51, 51, 0.5);
442
+ }
443
+
444
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/buttons\/_extends\.scss}line{font-family:\000037}}
445
+ button, a.button {
446
+ margin-right: 0.83333em;
447
+ }
448
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/buttons\/_extends\.scss}line{font-family:\0000310}}
449
+ button:last-child, a.button:last-child {
450
+ margin: 0;
451
+ }
452
+
453
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/typography\/_default\.scss}line{font-family:\000031}}
454
+ html {
455
+ font: 0.75em "Helvetica Neue", Arial, sans-serif;
456
+ line-height: 1.5em;
457
+ color: #474747;
458
+ }
459
+ @media screen and (max-width: 40em) {
460
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/typography\/_default\.scss}line{font-family:\000031}}
461
+ html {
462
+ -webkit-text-size-adjust: none;
463
+ /* Prevent font scaling in landscape */
464
+ }
465
+ }
466
+
467
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/typography\/_default\.scss}line{font-family:\0000342}}
468
+ p {
469
+ margin-bottom: 1.5em;
470
+ text-indent: 0;
471
+ }
472
+
473
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/typography\/_default\.scss}line{font-family:\0000348}}
474
+ b:after {
475
+ content: " ";
476
+ }
477
+
478
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/typography\/_default\.scss}line{font-family:\0000357}}
479
+ a:link {
480
+ color: #a45454;
481
+ text-decoration: none;
482
+ }
483
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/typography\/_default\.scss}line{font-family:\0000361}}
484
+ a:hover, a:active {
485
+ text-decoration: underline;
486
+ }
487
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/typography\/_default\.scss}line{font-family:\0000364}}
488
+ a:visited {
489
+ color: #a45454;
490
+ }
491
+
492
+ @media screen and (max-width: 40em) {
493
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/toadstool\/sass\/_forms\.scss}line{font-family:\000035}}
494
+ input[type=text], input[type=password], input[type="date"] {
495
+ -webkit-appearance: none;
496
+ -moz-appearance: none;
497
+ }
498
+ }
499
+
500
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/buttons\/lib\/_minimal\.scss}line{font-family:\0000314}}
501
+ button:nth-child(n+2), a.button:nth-child(n+2) {
502
+ background: #e3e3e3;
503
+ border: 1px solid #bbbbbb;
504
+ -webkit-border-radius: 0.25em;
505
+ border-radius: 0.25em;
506
+ -moz-box-shadow: inset 0 0 1px 1px #f6f6f6;
507
+ -webkit-box-shadow: inset 0 0 1px 1px #f6f6f6;
508
+ -o-box-shadow: inset 0 0 1px 1px #f6f6f6;
509
+ -ms-box-shadow: inset 0 0 1px 1px #f6f6f6;
510
+ box-shadow: inset 0 0 1px 1px #f6f6f6;
511
+ color: #333333;
512
+ font: bold 1em "helvetica neue", helvetica, arial, sans-serif;
513
+ line-height: 1em;
514
+ padding: 0.66667em 0 0.75em;
515
+ text-align: center;
516
+ text-shadow: 0 1px 0 white;
517
+ width: 12.5em;
518
+ }
519
+ @media screen and (max-width: 40em) {
520
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/buttons\/lib\/_minimal\.scss}line{font-family:\0000314}}
521
+ button:nth-child(n+2), a.button:nth-child(n+2) {
522
+ width: 100%;
523
+ line-height: 1.3em;
524
+ }
525
+ }
526
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/buttons\/lib\/_minimal\.scss}line{font-family:\0000330}}
527
+ button:hover:nth-child(n+2), a.button:hover:nth-child(n+2) {
528
+ background: #d6d6d6;
529
+ -moz-box-shadow: inset 0 0 1px 1px #e9e9e9;
530
+ -webkit-box-shadow: inset 0 0 1px 1px #e9e9e9;
531
+ -o-box-shadow: inset 0 0 1px 1px #e9e9e9;
532
+ -ms-box-shadow: inset 0 0 1px 1px #e9e9e9;
533
+ box-shadow: inset 0 0 1px 1px #e9e9e9;
534
+ color: #212121;
535
+ cursor: pointer;
536
+ }
537
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/buttons\/lib\/_minimal\.scss}line{font-family:\0000336}}
538
+ button:active:nth-child(n+2), a.button:active:nth-child(n+2) {
539
+ background: #cfcfcf;
540
+ -moz-box-shadow: inset 0 0 1px 1px #e9e9e9;
541
+ -webkit-box-shadow: inset 0 0 1px 1px #e9e9e9;
542
+ -o-box-shadow: inset 0 0 1px 1px #e9e9e9;
543
+ -ms-box-shadow: inset 0 0 1px 1px #e9e9e9;
544
+ box-shadow: inset 0 0 1px 1px #e9e9e9;
545
+ }
546
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/buttons\/lib\/_minimal\.scss}line{font-family:\0000340}}
547
+ button[disabled]:nth-child(n+2), a[disabled].button:nth-child(n+2) {
548
+ background: rgba(227, 227, 227, 0.5);
549
+ border-color: rgba(227, 227, 227, 0.5);
550
+ color: rgba(51, 51, 51, 0.5);
551
+ }
552
+
553
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/buttons\/lib\/_cupid-green\.scss}line{font-family:\0000318}}
554
+ button, a.button {
555
+ background: #7fbf4d;
556
+ background: -webkit-linear-gradient(top, #7fbf4d 0%, #63a62f 100%);
557
+ background: -moz-linear-gradient(top, #7fbf4d 0%, #63a62f 100%);
558
+ background: -o-linear-gradient(top, #7fbf4d 0%, #63a62f 100%);
559
+ background: -ms-linear-gradient(top, #7fbf4d 0%, #63a62f 100%);
560
+ border-width: 1px;
561
+ border-style: solid;
562
+ border-color: #63a62f #63a62f #5b992b #63a62f;
563
+ -webkit-border-radius: 0.25em;
564
+ border-radius: 0.25em;
565
+ -moz-box-shadow: inset 0 1px 0 0 #96ca6d;
566
+ -webkit-box-shadow: inset 0 1px 0 0 #96ca6d;
567
+ -o-box-shadow: inset 0 1px 0 0 #96ca6d;
568
+ -ms-box-shadow: inset 0 1px 0 0 #96ca6d;
569
+ box-shadow: inset 0 1px 0 0 #96ca6d;
570
+ color: white;
571
+ font: bold 1.3em "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
572
+ line-height: 1em;
573
+ padding: 0.58333em 0 0.66667em 0;
574
+ text-align: center;
575
+ text-shadow: 0 -1px 0 #4c9021;
576
+ width: 12.5em;
577
+ }
578
+ @media screen and (max-width: 40em) {
579
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/buttons\/lib\/_cupid-green\.scss}line{font-family:\0000318}}
580
+ button, a.button {
581
+ width: 100%;
582
+ line-height: 1.3em;
583
+ }
584
+ }
585
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/buttons\/lib\/_cupid-green\.scss}line{font-family:\0000336}}
586
+ button:hover, a.button:hover {
587
+ background: #75b641;
588
+ background: -webkit-linear-gradient(top, #75b641 0%, #5e9e2e 100%);
589
+ background: -moz-linear-gradient(top, #75b641 0%, #5e9e2e 100%);
590
+ background: -o-linear-gradient(top, #75b641 0%, #5e9e2e 100%);
591
+ background: -ms-linear-gradient(top, #75b641 0%, #5e9e2e 100%);
592
+ -moz-box-shadow: inset 0 1px 0 0 #8dbf67;
593
+ -webkit-box-shadow: inset 0 1px 0 0 #8dbf67;
594
+ -o-box-shadow: inset 0 1px 0 0 #8dbf67;
595
+ -ms-box-shadow: inset 0 1px 0 0 #8dbf67;
596
+ box-shadow: inset 0 1px 0 0 #8dbf67;
597
+ cursor: pointer;
598
+ }
599
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/buttons\/lib\/_cupid-green\.scss}line{font-family:\0000341}}
600
+ button:active, a.button:active {
601
+ border-width: 1px;
602
+ border-style: solid;
603
+ border-color: #579229;
604
+ -moz-box-shadow: inset 0 0 8px 4px #548c29;
605
+ -webkit-box-shadow: inset 0 0 8px 4px #548c29;
606
+ -o-box-shadow: inset 0 0 8px 4px #548c29;
607
+ -ms-box-shadow: inset 0 0 8px 4px #548c29;
608
+ box-shadow: inset 0 0 8px 4px #548c29;
609
+ }
610
+ @media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/jed\/Dropbox\/Code\/stipe\/stylesheets\/stipe\/buttons\/lib\/_cupid-green\.scss}line{font-family:\0000347}}
611
+ button[disabled], a[disabled].button {
612
+ background: rgba(127, 191, 77, 0.5);
613
+ border-color: rgba(127, 191, 77, 0.5);
614
+ color: rgba(255, 255, 255, 0.5);
615
+ }