jekyll_patternbot 0.12.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (116) hide show
  1. checksums.yaml +7 -0
  2. data/.editorconfig +12 -0
  3. data/.gitattributes +13 -0
  4. data/.gitignore +73 -0
  5. data/CHANGELOG.md +68 -0
  6. data/Gemfile +16 -0
  7. data/LICENSE.txt +21 -0
  8. data/README.md +39 -0
  9. data/Rakefile +1 -0
  10. data/_config.yml +54 -0
  11. data/_data/locales/en-ca.yml +5 -0
  12. data/_includes/patternbot_icons.html +38 -0
  13. data/_includes/patternbot_pattern_brand_color_swatches.html +48 -0
  14. data/_includes/patternbot_pattern_brand_typeface.html +32 -0
  15. data/_includes/patternbot_pattern_brand_typeface_weight.html +15 -0
  16. data/_includes/patternbot_pattern_copy_script.html +22 -0
  17. data/_includes/patternbot_patternlib_pattern.html +241 -0
  18. data/_layouts/patternbot_pattern_internal.html +94 -0
  19. data/_layouts/patternbot_pattern_lib.html +214 -0
  20. data/_layouts/patternbot_pattern_user.html +27 -0
  21. data/_patterns/brand/colors.html +23 -0
  22. data/_patterns/brand/config.yml +22 -0
  23. data/_patterns/brand/logos.html +43 -0
  24. data/_patterns/brand/typefaces.html +18 -0
  25. data/_patterns/grid/config.yml +14 -0
  26. data/_patterns/grid/grid-sizes.html +47 -0
  27. data/_patterns/icons/config.yml +13 -0
  28. data/_patterns/icons/icons.html +91 -0
  29. data/_patterns/modules/config.yml +32 -0
  30. data/_patterns/modules/embed.html +23 -0
  31. data/_patterns/modules/list-groups.html +21 -0
  32. data/_patterns/modules/media-objects.html +16 -0
  33. data/_patterns/typography/config.yml +55 -0
  34. data/_patterns/typography/emphasis-and-edits.html +80 -0
  35. data/_patterns/typography/font-sizes.html +90 -0
  36. data/_patterns/typography/headings.html +31 -0
  37. data/_patterns/typography/horizontal-spacing.html +46 -0
  38. data/_patterns/typography/links.html +11 -0
  39. data/_patterns/typography/lists.html +43 -0
  40. data/_patterns/typography/quotations.html +17 -0
  41. data/_patterns/typography/size-adjustments.html +20 -0
  42. data/_patterns/typography/typesetting.html +32 -0
  43. data/_patterns/typography/vertical-spacing.html +55 -0
  44. data/_patterns/utilities/config.yml +11 -0
  45. data/_patterns/utilities/utilities.html +18 -0
  46. data/_plugins/jekyll_patternbot/config.rb +19 -0
  47. data/_plugins/jekyll_patternbot/filters/color.rb +87 -0
  48. data/_plugins/jekyll_patternbot/filters/number.rb +11 -0
  49. data/_plugins/jekyll_patternbot/filters/pattern.rb +15 -0
  50. data/_plugins/jekyll_patternbot/filters/text.rb +33 -0
  51. data/_plugins/jekyll_patternbot/finders/finder.rb +34 -0
  52. data/_plugins/jekyll_patternbot/finders/icons.rb +25 -0
  53. data/_plugins/jekyll_patternbot/finders/logos.rb +26 -0
  54. data/_plugins/jekyll_patternbot/finders/patterns.rb +69 -0
  55. data/_plugins/jekyll_patternbot/finders/sample_pages.rb +18 -0
  56. data/_plugins/jekyll_patternbot/generators/internal_patterns.rb +56 -0
  57. data/_plugins/jekyll_patternbot/generators/pattern_lib.rb +27 -0
  58. data/_plugins/jekyll_patternbot/generators/user_patterns.rb +57 -0
  59. data/_plugins/jekyll_patternbot/helpers/color.rb +26 -0
  60. data/_plugins/jekyll_patternbot/helpers/file.rb +17 -0
  61. data/_plugins/jekyll_patternbot/helpers/jekyll.rb +60 -0
  62. data/_plugins/jekyll_patternbot/helpers/pattern.rb +36 -0
  63. data/_plugins/jekyll_patternbot/hooks/pattern_lib.rb +57 -0
  64. data/_plugins/jekyll_patternbot/loggers/patternbot.rb +24 -0
  65. data/_plugins/jekyll_patternbot/parsers/css_color.rb +54 -0
  66. data/_plugins/jekyll_patternbot/parsers/css_font.rb +109 -0
  67. data/_plugins/jekyll_patternbot/parsers/css_utility.rb +27 -0
  68. data/_plugins/jekyll_patternbot/parsers/gridifier.rb +22 -0
  69. data/_plugins/jekyll_patternbot/parsers/icons.rb +27 -0
  70. data/_plugins/jekyll_patternbot/parsers/modulifier.rb +10 -0
  71. data/_plugins/jekyll_patternbot/parsers/theme.rb +39 -0
  72. data/_plugins/jekyll_patternbot/parsers/typografier.rb +21 -0
  73. data/_plugins/jekyll_patternbot/parsers/web_dev_tool.rb +41 -0
  74. data/_plugins/jekyll_patternbot/processors/brand.rb +22 -0
  75. data/_plugins/jekyll_patternbot/processors/modules.rb +35 -0
  76. data/_plugins/jekyll_patternbot/tags/pattern.rb +19 -0
  77. data/_plugins/jekyll_patternbot/tags/pattern_css.rb +27 -0
  78. data/_plugins/jekyll_patternbot/tags/pattern_js.rb +27 -0
  79. data/_plugins/jekyll_patternbot.rb +55 -0
  80. data/_sass/.gitignore +0 -0
  81. data/assets/.gitignore +0 -0
  82. data/assets/_patternbot/common/common.css +223 -0
  83. data/assets/_patternbot/common/common.min.css +1 -0
  84. data/assets/_patternbot/common/gridifier.css +1175 -0
  85. data/assets/_patternbot/common/gridifier.min.css +1 -0
  86. data/assets/_patternbot/common/modulifier.css +539 -0
  87. data/assets/_patternbot/common/modulifier.min.css +1 -0
  88. data/assets/_patternbot/common/typografier.css +1787 -0
  89. data/assets/_patternbot/common/typografier.min.css +1 -0
  90. data/assets/_patternbot/images/placeholder-16by9.svg +1 -0
  91. data/assets/_patternbot/images/placeholder-1by1.svg +1 -0
  92. data/assets/_patternbot/patterns/brand/brand.css +79 -0
  93. data/assets/_patternbot/patterns/brand/brand.min.css +1 -0
  94. data/assets/_patternbot/patterns/grid/grid.css +27 -0
  95. data/assets/_patternbot/patterns/grid/grid.min.css +1 -0
  96. data/assets/_patternbot/patterns/icons/icons.css +41 -0
  97. data/assets/_patternbot/patterns/icons/icons.min.css +1 -0
  98. data/assets/_patternbot/patterns/modules/modules.css +4 -0
  99. data/assets/_patternbot/patterns/modules/modules.min.css +1 -0
  100. data/assets/_patternbot/patterns/typography/typography.css +11 -0
  101. data/assets/_patternbot/patterns/typography/typography.min.css +1 -0
  102. data/assets/_patternbot/patterns/utilities/utilities.css +4 -0
  103. data/assets/_patternbot/patterns/utilities/utilities.min.css +1 -0
  104. data/assets/_patternbot/ui/gridifier.css +1175 -0
  105. data/assets/_patternbot/ui/main.css +513 -0
  106. data/assets/_patternbot/ui/main.js +301 -0
  107. data/assets/_patternbot/ui/modulifier.css +725 -0
  108. data/assets/_patternbot/ui/pattern-lib.css +4 -0
  109. data/assets/_patternbot/ui/pattern-lib.min.css +1 -0
  110. data/assets/_patternbot/ui/pattern-lib.min.js +1 -0
  111. data/assets/_patternbot/ui/typografier.css +1787 -0
  112. data/jekyll_patternbot.gemspec +34 -0
  113. data/package.json +35 -0
  114. data/version.rb +3 -0
  115. data/yarn.lock +2783 -0
  116. metadata +312 -0
@@ -0,0 +1,4 @@
1
+ @import 'modulifier.css';
2
+ @import 'gridifier.css';
3
+ @import 'typografier.css';
4
+ @import 'main.css';
@@ -0,0 +1 @@
1
+ @-moz-viewport{width:device-width;scale:1}@-ms-viewport{width:device-width;scale:1}@-o-viewport{width:device-width;scale:1}@-webkit-viewport{width:device-width;scale:1}@viewport{width:device-width;scale:1}html{box-sizing:border-box;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;text-size-adjust:100%}*,:after,:before{box-sizing:inherit}body{margin:0}article,aside,details,figcaption,figure,footer,header,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}template{display:none}details{cursor:pointer}audio:not([controls]){display:none;height:0}[tabindex],a,area,button,input,label,select,textarea{-ms-touch-action:manipulation;touch-action:manipulation}img{border:0}.img-flex,.img-flex img{display:block;width:100%}svg{fill:currentColor}svg:not(:root){overflow:hidden}svg.img-flex{width:100%;height:100%}.image-replacement,.ir{overflow:hidden;direction:ltr;text-align:left;text-indent:100%;white-space:nowrap}.list-group,.list-group--inline,.list-group-inline{padding-left:0;list-style-type:none}.list-group>dd{margin-left:0}.list-group--inline:after,.list-group--inline:before,.list-group-inline:after,.list-group-inline:before{content:"";display:table}.list-group--inline:after,.list-group-inline:after{clear:both}.list-group--inline>li,.list-group-inline>li{display:inline-block}.list-group--inline>dt,.list-group-inline>dt{clear:left;float:left;width:11em}.list-group--inline>dd,.list-group-inline>dd{float:left;min-width:12em}.icon{display:inline-block;position:relative;background:transparent none no-repeat 50%;background-size:contain;vertical-align:middle}.i-16,.i--16{height:16px;width:16px}.i-18,.i--18{height:18px;width:18px}.i-20,.i--20{height:20px;width:20px}.i-24,.i--24{height:24px;width:24px}.i-32,.i--32{height:32px;width:32px}.i-48,.i--48{height:48px;width:48px}.i-64,.i--64{height:64px;width:64px}.i-96,.i--96{height:96px;width:96px}.i-128,.i--128{height:128px;width:128px}.i-192,.i--192{height:192px;width:192px}.i-256,.i--256{height:256px;width:256px}.icon img,.icon svg{left:0;height:100%;position:absolute;top:0;width:100%;fill:currentColor}.icon-label{vertical-align:middle}.icon-link,.icon-link:focus,.icon-link:hover{text-decoration:none}.hidden,[hidden]{display:none!important;visibility:hidden!important}.visually-hidden{height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;border:0;clip:rect(0 0 0 0);clip-path:inset(50%)}.visually-hidden.focusable:active,.visually-hidden.focusable:focus{height:auto;margin:0;overflow:visible;position:static;width:auto;clip:auto;clip-path:none}.invisible{visibility:hidden}.chop,.crop,.truncate{overflow:hidden}.truncate{max-width:100%;width:100%;text-overflow:ellipsis;white-space:nowrap}.scrollable{max-width:100%;overflow-x:auto;overflow-y:hidden;-webkit-overflow-scrolling:touch}.clearfix:after{content:" ";display:block;clear:both}.left{float:left}.right{float:right}.center-flow,.center-text{text-align:center}.center-block{margin-left:auto;margin-right:auto}.no-auto-margins,.not-centered{margin-left:0!important;margin-right:0!important}.center-content,.center-content-vertical,.center-contents,.center-contents-vertical{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;-ms-flex-line-pack:center;align-content:center;-ms-flex-direction:column wrap;flex-flow:column wrap}.center-content-start,.center-content-vertical-start,.center-contents-start,.center-contents-vertical-start{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-direction:column wrap;flex-flow:column wrap}.center-content-horizontal,.center-contents-horizontal{display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;-ms-flex-line-pack:center;align-content:center;-ms-flex-direction:row wrap;flex-flow:row wrap}.inline{display:inline}.block{display:block}.ib,.inline-block{display:inline-block}.valign-top{vertical-align:top}.valign-bottom{vertical-align:bottom}.valign-middle{vertical-align:middle}.fixed{position:fixed}.relative{position:relative}.absolute,[class*=pin-]{position:absolute}.static{position:static}.zindex-1{z-index:1}.zindex-2{z-index:2}.zindex-3{z-index:3}.zindex-1000{z-index:5}.pin-left-top,.pin-lt,.pin-tl,.pin-top-left{top:0;left:0}.pin-right-top,.pin-rt,.pin-top-right,.pin-tr{top:0;right:0}.pin-bl,.pin-bottom-left,.pin-lb,.pin-left-bottom{bottom:0;left:0}.pin-bottom-right,.pin-br,.pin-rb,.pin-right-bottom{bottom:0;right:0}.pin-center-top,.pin-ct,.pin-tc,.pin-top-center{left:50%;top:0;transform:translateX(-50%)}.pin-bc,.pin-bottom-center,.pin-cb,.pin-center-bottom{bottom:0;left:50%;transform:translateX(-50%)}.pin-center-left,.pin-cl,.pin-lc,.pin-left-center{left:0;top:50%;transform:translateY(-50%)}.pin-center-right,.pin-cr,.pin-rc,.pin-right-center{right:0;top:50%;transform:translateY(-50%)}.pin-c,.pin-center{left:50%;top:50%;transform:translate(-50%,-50%)}.w-1-4,.width-quarter{width:25%}.w-1-2,.width-half{width:50%}.w-1,.width-full{width:100%}.h-1-4,.height-quarter{height:25%}.h-1-2,.height-half{height:50%}.h-1,.height-full{height:100%}.h-w-1-4,.height-win-quarter{height:25vh;max-height:46em}.h-w-1-2,.height-win-half{height:50vh;max-height:46em}.h-w-1,.height-win-full{height:100vh;max-height:46em}ul{list-style-type:none}ul>li:before{content:"·";float:left;margin-left:-1.6em;width:1.3em;text-align:right}ol{counter-reset:a;list-style-type:none}ol>li:before{float:left;margin-left:-1.6em;width:1.3em;counter-increment:a;content:counter(a);text-align:right}.list-group--inline>li:before,.list-group-inline>li:before,.list-group>li:before{content:none}.link-box{display:block;text-decoration:none}.btn,button{cursor:pointer;display:inline-block;margin:0;overflow:visible;padding:.375em .75em .42em;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#333;border-radius:4px;border:3px solid #333;color:#fff;font:inherit;text-decoration:none;text-transform:none}button::-moz-focus-inner{border:0;padding:0}.btn:focus,.btn:hover,button:focus,button:hover{background-color:#000;border-color:#000;color:#fff}button[disabled]{cursor:default}.btn--light,.btn-light{background-color:#e2e2e2;border-color:#e2e2e2;color:#000}.btn--light:focus,.btn--light:hover,.btn-light:focus,.btn-light:hover{background-color:#666;border-color:#666;color:#fff}.btn--ghost,.btn-ghost{background-color:transparent;border-color:#333;color:#000}.btn--ghost:focus,.btn--ghost:hover,.btn-ghost:focus,.btn-ghost:hover{background-color:#e2e2e2;border-color:#000;color:#000}.btn-link{display:inline;padding:0;border-radius:0;border:0}.btn-link,.btn-link:focus,.btn-link:hover{background-color:transparent;color:inherit}a:active,a:hover{outline:none}[tabindex="0"]:focus,a:focus,button:focus,details:focus,input:focus,select:focus,summary:focus,textarea:focus{outline:3px solid #000;outline-offset:0}[tabindex="0"]:focus,a:focus{outline-offset:3px}.skip-links{margin:0;padding:0;list-style-type:none}.skip-links>li:before{content:none}.skip-links a,.skip-links button{padding:.5em .75em;position:absolute;top:-10em;z-index:6;background-color:#000;border:0;color:#fff;font-size:1.125rem;font-weight:700;text-decoration:none}.skip-links a:focus,.skip-links button:focus{outline-offset:3px;top:0}[aria-busy=true]{cursor:progress}[aria-controls]{cursor:pointer}[aria-disabled]{cursor:default}.grid{margin:0;padding:0;letter-spacing:-.31em;text-rendering:optimizeSpeed;display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap}.grid-bottom{-ms-align-items:flex-end;align-items:flex-end}.grid-middle{-ms-align-items:center;align-items:center}.grid-stretch{-ms-align-items:stretch;align-items:stretch}.grid,.opera-only :-o-prefocus{word-spacing:-.43em}.unit{letter-spacing:normal;text-rendering:auto;vertical-align:top;word-spacing:normal;display:inline-block;visibility:visible}.grid-bottom .unit{vertical-align:bottom}.grid-middle .unit{vertical-align:middle}[class*=unit-pull-],[class*=unit-push-]{position:relative}.unit-content-distribute{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:justify;justify-content:space-between}.unit-content-center,.unit-content-center-vertical{-ms-flex-pack:center;-ms-flex-align:center;-ms-flex-line-pack:center;-ms-flex-direction:column wrap;flex-flow:column wrap}.unit-content-center,.unit-content-center-horizontal,.unit-content-center-vertical{display:-ms-flexbox;display:flex;justify-content:center;align-items:center;align-content:center}.unit-content-center-horizontal{-ms-flex-pack:center;-ms-flex-align:center;-ms-flex-line-pack:center;-ms-flex-direction:row wrap;flex-flow:row wrap}.content-fill,.content-stretch{-ms-flex-grow:2;flex-grow:2;max-width:100%}.content-shrink{-ms-align-self:center;align-self:center}.unit-xs-hidden,.xs-0{display:none;visibility:hidden}.unit-xs-centered{margin:0 auto}.unit-xs-1,.xs-1{display:block;visibility:visible;width:100%}.unit-xs-1-2,.xs-1-2{width:50%}.unit-xs-1-3,.xs-1-3{width:33.3333%}.unit-xs-2-3,.xs-2-3{width:66.6667%}.unit-xs-1-4,.xs-1-4{width:25%}.unit-xs-3-4,.xs-3-4{width:75%}.unit-xs-1-5,.xs-1-5{width:20%}.unit-xs-2-5,.xs-2-5{width:40%}.unit-xs-3-5,.xs-3-5{width:60%}.unit-xs-4-5,.xs-4-5{width:80%}.unit-xs-1-6,.xs-1-6{width:16.6667%}.unit-xs-5-6,.xs-5-6{width:83.3333%}.unit-xs-1-2,.unit-xs-1-3,.unit-xs-1-4,.unit-xs-1-5,.unit-xs-1-6,.unit-xs-2-3,.unit-xs-2-5,.unit-xs-3-4,.unit-xs-3-5,.unit-xs-4-5,.unit-xs-5-6,.xs-1-2,.xs-1-3,.xs-1-4,.xs-1-5,.xs-1-6,.xs-2-3,.xs-2-5,.xs-3-4,.xs-3-5,.xs-4-5,.xs-5-6{display:inline-block;visibility:visible}.unit-xs-1-2[class*=-content-],.unit-xs-1-3[class*=-content-],.unit-xs-1-4[class*=-content-],.unit-xs-1-5[class*=-content-],.unit-xs-1-6[class*=-content-],.unit-xs-2-3[class*=-content-],.unit-xs-2-5[class*=-content-],.unit-xs-3-4[class*=-content-],.unit-xs-3-5[class*=-content-],.unit-xs-4-5[class*=-content-],.unit-xs-5-6[class*=-content-],.xs-1-2[class*=-content-],.xs-1-3[class*=-content-],.xs-1-4[class*=-content-],.xs-1-5[class*=-content-],.xs-1-6[class*=-content-],.xs-2-3[class*=-content-],.xs-2-5[class*=-content-],.xs-3-4[class*=-content-],.xs-3-5[class*=-content-],.xs-4-5[class*=-content-],.xs-5-6[class*=-content-]{display:-ms-flexbox;display:flex}.unit-xs-content-distribute,.xs-content-distribute{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:justify;justify-content:space-between}.unit-xs-content-center,.unit-xs-content-center-vertical{-ms-flex-pack:center;-ms-flex-align:center;-ms-flex-line-pack:center;-ms-flex-direction:column wrap;flex-flow:column wrap}.unit-xs-content-center,.unit-xs-content-center-horizontal,.unit-xs-content-center-vertical{display:-ms-flexbox;display:flex;justify-content:center;align-items:center;align-content:center}.unit-xs-content-center-horizontal{-ms-flex-pack:center;-ms-flex-align:center;-ms-flex-line-pack:center;-ms-flex-direction:row wrap;flex-flow:row wrap}.xs-content-fill,.xs-content-stretch{-ms-flex-grow:2;flex-grow:2;max-width:100%}.xs-content-shrink{-ms-align-self:center;align-self:center}@media only screen and (min-width:25em){.s-0,.unit-s-hidden{display:none;visibility:hidden}.unit-s-centered{margin:0 auto}.s-1,.unit-s-1{display:block;visibility:visible;width:100%}.s-1-2,.unit-s-1-2{width:50%}.s-1-3,.unit-s-1-3{width:33.3333%}.s-2-3,.unit-s-2-3{width:66.6667%}.s-1-4,.unit-s-1-4{width:25%}.s-3-4,.unit-s-3-4{width:75%}.s-1-5,.unit-s-1-5{width:20%}.s-2-5,.unit-s-2-5{width:40%}.s-3-5,.unit-s-3-5{width:60%}.s-4-5,.unit-s-4-5{width:80%}.s-1-6,.unit-s-1-6{width:16.6667%}.s-5-6,.unit-s-5-6{width:83.3333%}.s-1-2,.s-1-3,.s-1-4,.s-1-5,.s-1-6,.s-2-3,.s-2-5,.s-3-4,.s-3-5,.s-4-5,.s-5-6,.unit-s-1-2,.unit-s-1-3,.unit-s-1-4,.unit-s-1-5,.unit-s-1-6,.unit-s-2-3,.unit-s-2-5,.unit-s-3-4,.unit-s-3-5,.unit-s-4-5,.unit-s-5-6{display:inline-block;visibility:visible}.s-1-2[class*=-content-],.s-1-3[class*=-content-],.s-1-4[class*=-content-],.s-1-5[class*=-content-],.s-1-6[class*=-content-],.s-2-3[class*=-content-],.s-2-5[class*=-content-],.s-3-4[class*=-content-],.s-3-5[class*=-content-],.s-4-5[class*=-content-],.s-5-6[class*=-content-],.unit-s-1-2[class*=-content-],.unit-s-1-3[class*=-content-],.unit-s-1-4[class*=-content-],.unit-s-1-5[class*=-content-],.unit-s-1-6[class*=-content-],.unit-s-2-3[class*=-content-],.unit-s-2-5[class*=-content-],.unit-s-3-4[class*=-content-],.unit-s-3-5[class*=-content-],.unit-s-4-5[class*=-content-],.unit-s-5-6[class*=-content-]{display:-ms-flexbox;display:flex}.s-content-distribute,.unit-s-content-distribute{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:justify;justify-content:space-between}.unit-s-content-center,.unit-s-content-center-vertical{-ms-flex-pack:center;-ms-flex-align:center;-ms-flex-line-pack:center;-ms-flex-direction:column wrap;flex-flow:column wrap}.unit-s-content-center,.unit-s-content-center-horizontal,.unit-s-content-center-vertical{display:-ms-flexbox;display:flex;justify-content:center;align-items:center;align-content:center}.unit-s-content-center-horizontal{-ms-flex-pack:center;-ms-flex-align:center;-ms-flex-line-pack:center;-ms-flex-direction:row wrap;flex-flow:row wrap}.s-content-fill,.s-content-stretch{-ms-flex-grow:2;flex-grow:2;max-width:100%}.s-content-shrink{-ms-align-self:center;align-self:center}}@media only screen and (min-width:38em){.m-0,.unit-m-hidden{display:none;visibility:hidden}.unit-m-centered{margin:0 auto}.m-1,.unit-m-1{display:block;visibility:visible;width:100%}.unit-offset-m-0{margin-left:0}.unit-pull-m-0,.unit-push-m-0{left:0}.m-1-2,.unit-m-1-2{width:50%}.unit-offset-m-1-2{margin-left:50%}.unit-push-m-1-2{left:50%}.unit-pull-m-1-2{left:-50%}.m-1-3,.unit-m-1-3{width:33.3333%}.unit-offset-m-1-3{margin-left:33.3333%}.unit-push-m-1-3{left:33.3333%}.unit-pull-m-1-3{left:-33.3333%}.m-2-3,.unit-m-2-3{width:66.6667%}.unit-offset-m-2-3{margin-left:66.6667%}.unit-push-m-2-3{left:66.6667%}.unit-pull-m-2-3{left:-66.6667%}.m-1-4,.unit-m-1-4{width:25%}.unit-offset-m-1-4{margin-left:25%}.unit-push-m-1-4{left:25%}.unit-pull-m-1-4{left:-25%}.m-3-4,.unit-m-3-4{width:75%}.unit-offset-m-3-4{margin-left:75%}.unit-push-m-3-4{left:75%}.unit-pull-m-3-4{left:-75%}.m-1-5,.unit-m-1-5{width:20%}.unit-offset-m-1-5{margin-left:20%}.unit-push-m-1-5{left:20%}.unit-pull-m-1-5{left:-20%}.m-2-5,.unit-m-2-5{width:40%}.unit-offset-m-2-5{margin-left:40%}.unit-push-m-2-5{left:40%}.unit-pull-m-2-5{left:-40%}.m-3-5,.unit-m-3-5{width:60%}.unit-offset-m-3-5{margin-left:60%}.unit-push-m-3-5{left:60%}.unit-pull-m-3-5{left:-60%}.m-4-5,.unit-m-4-5{width:80%}.unit-offset-m-4-5{margin-left:80%}.unit-push-m-4-5{left:80%}.unit-pull-m-4-5{left:-80%}.m-1-6,.unit-m-1-6{width:16.6667%}.unit-offset-m-1-6{margin-left:16.6667%}.unit-push-m-1-6{left:16.6667%}.unit-pull-m-1-6{left:-16.6667%}.m-5-6,.unit-m-5-6{width:83.3333%}.unit-offset-m-5-6{margin-left:83.3333%}.unit-push-m-5-6{left:83.3333%}.unit-pull-m-5-6{left:-83.3333%}.m-1-2,.m-1-3,.m-1-4,.m-1-5,.m-1-6,.m-2-3,.m-2-5,.m-3-4,.m-3-5,.m-4-5,.m-5-6,.unit-m-1-2,.unit-m-1-3,.unit-m-1-4,.unit-m-1-5,.unit-m-1-6,.unit-m-2-3,.unit-m-2-5,.unit-m-3-4,.unit-m-3-5,.unit-m-4-5,.unit-m-5-6{display:inline-block;visibility:visible}.m-1-2[class*=-content-],.m-1-3[class*=-content-],.m-1-4[class*=-content-],.m-1-5[class*=-content-],.m-1-6[class*=-content-],.m-2-3[class*=-content-],.m-2-5[class*=-content-],.m-3-4[class*=-content-],.m-3-5[class*=-content-],.m-4-5[class*=-content-],.m-5-6[class*=-content-],.unit-m-1-2[class*=-content-],.unit-m-1-3[class*=-content-],.unit-m-1-4[class*=-content-],.unit-m-1-5[class*=-content-],.unit-m-1-6[class*=-content-],.unit-m-2-3[class*=-content-],.unit-m-2-5[class*=-content-],.unit-m-3-4[class*=-content-],.unit-m-3-5[class*=-content-],.unit-m-4-5[class*=-content-],.unit-m-5-6[class*=-content-]{display:-ms-flexbox;display:flex}.m-content-distribute,.unit-m-content-distribute{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:justify;justify-content:space-between}.unit-m-content-center,.unit-m-content-center-vertical{-ms-flex-pack:center;-ms-flex-align:center;-ms-flex-line-pack:center;-ms-flex-direction:column wrap;flex-flow:column wrap}.unit-m-content-center,.unit-m-content-center-horizontal,.unit-m-content-center-vertical{display:-ms-flexbox;display:flex;justify-content:center;align-items:center;align-content:center}.unit-m-content-center-horizontal{-ms-flex-pack:center;-ms-flex-align:center;-ms-flex-line-pack:center;-ms-flex-direction:row wrap;flex-flow:row wrap}.m-content-fill,.m-content-stretch{-ms-flex-grow:2;flex-grow:2;max-width:100%}.m-content-shrink{-ms-align-self:center;align-self:center}}@media only screen and (min-width:60em){.l-0,.unit-l-hidden{display:none;visibility:hidden}.unit-l-centered{margin:0 auto}.l-1,.unit-l-1{display:block;visibility:visible;width:100%}.unit-offset-l-0{margin-left:0}.unit-pull-l-0,.unit-push-l-0{left:0}.l-1-2,.unit-l-1-2{width:50%}.unit-offset-l-1-2{margin-left:50%}.unit-push-l-1-2{left:50%}.unit-pull-l-1-2{left:-50%}.l-1-3,.unit-l-1-3{width:33.3333%}.unit-offset-l-1-3{margin-left:33.3333%}.unit-push-l-1-3{left:33.3333%}.unit-pull-l-1-3{left:-33.3333%}.l-2-3,.unit-l-2-3{width:66.6667%}.unit-offset-l-2-3{margin-left:66.6667%}.unit-push-l-2-3{left:66.6667%}.unit-pull-l-2-3{left:-66.6667%}.l-1-4,.unit-l-1-4{width:25%}.unit-offset-l-1-4{margin-left:25%}.unit-push-l-1-4{left:25%}.unit-pull-l-1-4{left:-25%}.l-3-4,.unit-l-3-4{width:75%}.unit-offset-l-3-4{margin-left:75%}.unit-push-l-3-4{left:75%}.unit-pull-l-3-4{left:-75%}.l-1-5,.unit-l-1-5{width:20%}.unit-offset-l-1-5{margin-left:20%}.unit-push-l-1-5{left:20%}.unit-pull-l-1-5{left:-20%}.l-2-5,.unit-l-2-5{width:40%}.unit-offset-l-2-5{margin-left:40%}.unit-push-l-2-5{left:40%}.unit-pull-l-2-5{left:-40%}.l-3-5,.unit-l-3-5{width:60%}.unit-offset-l-3-5{margin-left:60%}.unit-push-l-3-5{left:60%}.unit-pull-l-3-5{left:-60%}.l-4-5,.unit-l-4-5{width:80%}.unit-offset-l-4-5{margin-left:80%}.unit-push-l-4-5{left:80%}.unit-pull-l-4-5{left:-80%}.l-1-6,.unit-l-1-6{width:16.6667%}.unit-offset-l-1-6{margin-left:16.6667%}.unit-push-l-1-6{left:16.6667%}.unit-pull-l-1-6{left:-16.6667%}.l-5-6,.unit-l-5-6{width:83.3333%}.unit-offset-l-5-6{margin-left:83.3333%}.unit-push-l-5-6{left:83.3333%}.unit-pull-l-5-6{left:-83.3333%}.l-1-2,.l-1-3,.l-1-4,.l-1-5,.l-1-6,.l-2-3,.l-2-5,.l-3-4,.l-3-5,.l-4-5,.l-5-6,.unit-l-1-2,.unit-l-1-3,.unit-l-1-4,.unit-l-1-5,.unit-l-1-6,.unit-l-2-3,.unit-l-2-5,.unit-l-3-4,.unit-l-3-5,.unit-l-4-5,.unit-l-5-6{display:inline-block;visibility:visible}.l-1-2[class*=-content-],.l-1-3[class*=-content-],.l-1-4[class*=-content-],.l-1-5[class*=-content-],.l-1-6[class*=-content-],.l-2-3[class*=-content-],.l-2-5[class*=-content-],.l-3-4[class*=-content-],.l-3-5[class*=-content-],.l-4-5[class*=-content-],.l-5-6[class*=-content-],.unit-l-1-2[class*=-content-],.unit-l-1-3[class*=-content-],.unit-l-1-4[class*=-content-],.unit-l-1-5[class*=-content-],.unit-l-1-6[class*=-content-],.unit-l-2-3[class*=-content-],.unit-l-2-5[class*=-content-],.unit-l-3-4[class*=-content-],.unit-l-3-5[class*=-content-],.unit-l-4-5[class*=-content-],.unit-l-5-6[class*=-content-]{display:-ms-flexbox;display:flex}.l-content-distribute,.unit-l-content-distribute{display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:justify;justify-content:space-between}.unit-l-content-center,.unit-l-content-center-vertical{-ms-flex-pack:center;-ms-flex-align:center;-ms-flex-line-pack:center;-ms-flex-direction:column wrap;flex-flow:column wrap}.unit-l-content-center,.unit-l-content-center-horizontal,.unit-l-content-center-vertical{display:-ms-flexbox;display:flex;justify-content:center;align-items:center;align-content:center}.unit-l-content-center-horizontal{-ms-flex-pack:center;-ms-flex-align:center;-ms-flex-line-pack:center;-ms-flex-direction:row wrap;flex-flow:row wrap}.l-content-fill,.l-content-stretch{-ms-flex-grow:2;flex-grow:2;max-width:100%}.l-content-shrink{-ms-align-self:center;align-self:center}}html{font-size:100%;line-height:1.3}a{background-color:transparent;-webkit-text-decoration-skip:objects}sub,sup{font-size:.75em;line-height:1px;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}code,kbd,pre,samp{font-size:1em}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:700}caption,dfn{font-style:italic}hr{border:0;border-top:2px solid #000;height:0}table{border-collapse:collapse;border-spacing:0;width:100%;table-layout:fixed}caption,td,th{text-align:left}td,th{border-bottom:1px solid #000;vertical-align:top}thead th{vertical-align:bottom;border-bottom-width:2px}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.normal{font-style:normal}.normal,.not-bold{font-weight:400}.not-italic{font-style:normal}.bold{font-weight:700}.italic{font-style:italic}.text-upper{text-transform:uppercase}.text-lower{text-transform:lowercase}.wrapper{margin-left:auto;margin-right:auto}.wrapper,.wrapper-no-center{max-width:52em;width:100%}.max-length{margin-left:auto;margin-right:auto}.max-length,.max-length-no-center{max-width:36em;width:100%}blockquote,caption,dd,details,dl,fieldset,figure,h1,h2,h3,h4,h5,h6,hr,menu,ol,p,pre,table,ul{margin:0 0 1.3rem}.tenamega{font-size:2.0408rem;line-height:2.925rem}.tenakilo{font-size:1.9127rem}.tena,.tenakilo{line-height:2.6rem}.tena{font-size:1.7926rem}.nina{font-size:1.68rem}.nina,.yotta{line-height:2.275rem}.yotta{font-size:1.5745rem}.zetta{font-size:1.4757rem}.exa,.zetta,h1{line-height:1.95rem}.exa,h1{font-size:1.383rem}.peta,h2{font-size:1.2962rem;line-height:1.95rem}.tera,h3{font-size:1.2148rem}.giga,.tera,h3,h4{line-height:1.625rem}.giga,h4{font-size:1.1385rem}.mega,h5{font-size:1.067rem;line-height:1.625rem}.kilo,h6,input,textarea{font-size:1rem;line-height:1.3rem}.milli,small{font-size:.9372rem;line-height:1.3rem}.micro{font-size:.8784rem}.micro,.nano{line-height:1.3rem}.nano{font-size:.8232rem}.pico{font-size:.7715rem;line-height:1.3rem}ul{padding-left:1em}ol{padding-left:1.6em}input,option,select{height:1.625rem}[type=color]{width:1.625rem}[type=checkbox],[type=radio]{display:inline-block;height:auto}.push{margin-bottom:1.3rem}.push-0,.push-none{margin-bottom:0}.push-2,.push-double{margin-bottom:2.6rem}.push-3-4,.push-three-quarters{margin-bottom:.975rem}.push-1-2,.push-half{margin-bottom:.65rem}.push-1-4,.push-quarter{margin-bottom:.325rem}.push-1-8,.push-eighth{margin-bottom:.1625rem}.push-r-1-8,.push-right-eighth{margin-right:.1625rem}.push-r-1-4,.push-right-quarter{margin-right:.325rem}.push-r-1-2,.push-right-half{margin-right:.65rem}.push-r-3-4,.push-right-three-quarters{margin-right:.975rem}.push-r,.push-right{margin-right:1.3rem}.pad-t,.pad-top{padding-top:1.3rem}.pad-b,.pad-bottom{padding-bottom:1.3rem}.pad-t-2,.pad-top-double{padding-top:2.6rem}.pad-b-2,.pad-bottom-double{padding-bottom:2.6rem}.pad-t-3-4,.pad-top-three-quarters{padding-top:.975rem}.pad-b-3-4,.pad-bottom-three-quarters{padding-bottom:.975rem}.pad-t-1-2,.pad-top-half{padding-top:.65rem}.pad-b-1-2,.pad-bottom-half{padding-bottom:.65rem}.pad-t-1-4,.pad-top-quarter{padding-top:.325rem}.pad-b-1-4,.pad-bottom-quarter{padding-bottom:.325rem}.pad-t-1-8,.pad-top-eighth{padding-top:.1625rem}.pad-b-1-8,.pad-bottom-eighth{padding-bottom:.1625rem}.island{padding:1.3rem}.island-2,.island-double{padding:2.6rem}.island-3-4,.island-three-quarters{padding:.975rem}.island-1-2,.island-half{padding:.65rem}.island-1-4,.island-quarter,table th,td{padding:.325rem}.island-1-8,.island-eighth,input:not([type=checkbox]),input:not([type=radio]),textarea{padding:.1625rem}.gutter{padding-left:1.3rem;padding-right:1.3rem}.gutter-2,.gutter-double{padding-left:2.6rem;padding-right:2.6rem}.gutter-3-4,.gutter-three-quarters{padding-left:.975rem;padding-right:.975rem}.gutter-1-2,.gutter-half{padding-left:.65rem;padding-right:.65rem}.gutter-1-4,.gutter-quarter,caption{padding-left:.325rem;padding-right:.325rem}.gutter-1-8,.gutter-eighth{padding-left:.1625rem;padding-right:.1625rem}.i-1{height:1.3rem;width:1.3rem}.i-3-4{height:.975rem;width:.975rem}.i-1-2{height:.65rem;width:.65rem}.i-1-4{height:.325rem;width:.325rem}.i-1-8{height:.1625rem;width:.1625rem}.i-1-1-2,.i-3-2{height:1.95rem;width:1.95rem}.i-1-1-4,.i-5-4{height:1.625rem;width:1.625rem}.i-1-3-4,.i-7-4{height:2.275rem;width:2.275rem}.i-2{height:2.6rem;width:2.6rem}select{padding:0 .1625rem}fieldset{padding:.325rem 0;border:0;border-top:2px solid #000}legend{padding-right:.325rem}@media only screen and (min-width:38em){html{font-size:110%;line-height:1.4}blockquote,caption,dd,details,dl,fieldset,figure,h1,h2,h3,h4,h5,h6,hr,menu,ol,p,pre,table,ul{margin:0 0 1.4rem}.tenamega{font-size:3.6532rem;line-height:4.9rem}.tenakilo{font-size:3.2473rem;line-height:4.55rem}.tena{font-size:2.8865rem;line-height:3.85rem}.nina{font-size:2.5658rem;line-height:3.5rem}.yotta{font-size:2.2807rem;line-height:3.15rem}.zetta{font-size:2.0273rem;line-height:2.8rem}.exa,h1{font-size:1.802rem;line-height:2.45rem}.peta,h2{font-size:1.6018rem}.peta,.tera,h2,h3{line-height:2.1rem}.tera,h3{font-size:1.4238rem}.giga,h4{font-size:1.2656rem}.giga,.mega,h4,h5{line-height:1.75rem}.mega,h5{font-size:1.125rem}.kilo,h6,input,textarea{font-size:1rem;line-height:1.4rem}.milli,small{font-size:.8889rem;line-height:1.4rem}.micro{font-size:.7901rem;line-height:1.4rem}.nano{font-size:.7023rem}.nano,.pico{line-height:1.05rem}.pico{font-size:.6243rem}ol,ul{padding-left:0}ol ul,ul ul{padding-left:1em}ol ol,ul ol{padding-left:1.6em}.hang-punc{float:left;margin-left:-1.4em;text-align:right;width:1.3em}table{margin-left:-.35rem;margin-right:-.35rem;width:calc(100% + .35rem + .35rem)}input,option,select{height:1.75rem}[type=color]{width:1.75rem}[type=checkbox],[type=radio]{display:inline-block;height:auto}.push{margin-bottom:1.4rem}.push-0,.push-none{margin-bottom:0}.push-2,.push-double{margin-bottom:2.8rem}.push-3-4,.push-three-quarters{margin-bottom:1.05rem}.push-1-2,.push-half{margin-bottom:.7rem}.push-1-4,.push-quarter{margin-bottom:.35rem}.push-1-8,.push-eighth{margin-bottom:.175rem}.push-r-1-8,.push-right-eighth{margin-right:.175rem}.push-r-1-4,.push-right-quarter{margin-right:.35rem}.push-r-1-2,.push-right-half{margin-right:.7rem}.push-r-3-4,.push-right-three-quarters{margin-right:1.05rem}.push-r,.push-right{margin-right:1.4rem}.pad-t,.pad-top{padding-top:1.4rem}.pad-b,.pad-bottom{padding-bottom:1.4rem}.pad-t-2,.pad-top-double{padding-top:2.8rem}.pad-b-2,.pad-bottom-double{padding-bottom:2.8rem}.pad-t-3-4,.pad-top-three-quarters{padding-top:1.05rem}.pad-b-3-4,.pad-bottom-three-quarters{padding-bottom:1.05rem}.pad-t-1-2,.pad-top-half{padding-top:.7rem}.pad-b-1-2,.pad-bottom-half{padding-bottom:.7rem}.pad-t-1-4,.pad-top-quarter{padding-top:.35rem}.pad-b-1-4,.pad-bottom-quarter{padding-bottom:.35rem}.pad-t-1-8,.pad-top-eighth{padding-top:.175rem}.pad-b-1-8,.pad-bottom-eighth{padding-bottom:.175rem}.island{padding:1.4rem}.island-2,.island-double{padding:2.8rem}.island-3-4,.island-three-quarters{padding:1.05rem}.island-1-2,.island-half{padding:.7rem}.island-1-4,.island-quarter,table th,td{padding:.35rem}.island-1-8,.island-eighth,input:not([type=checkbox]),input:not([type=radio]),textarea{padding:.175rem}.gutter{padding-left:1.4rem;padding-right:1.4rem}.gutter-2,.gutter-double{padding-left:2.8rem;padding-right:2.8rem}.gutter-3-4,.gutter-three-quarters{padding-left:1.05rem;padding-right:1.05rem}.gutter-1-2,.gutter-half{padding-left:.7rem;padding-right:.7rem}.gutter-1-4,.gutter-quarter,caption{padding-left:.35rem;padding-right:.35rem}.gutter-1-8,.gutter-eighth{padding-left:.175rem;padding-right:.175rem}.i-1{height:1.4rem;width:1.4rem}.i-3-4{height:1.05rem;width:1.05rem}.i-1-2{height:.7rem;width:.7rem}.i-1-4{height:.35rem;width:.35rem}.i-1-8{height:.175rem;width:.175rem}.i-1-1-2,.i-3-2{height:2.1rem;width:2.1rem}.i-1-1-4,.i-5-4{height:1.75rem;width:1.75rem}.i-1-3-4,.i-7-4{height:2.45rem;width:2.45rem}.i-2{height:2.8rem;width:2.8rem}select{padding:0 .175rem}fieldset{padding:.35rem 0;border:0;border-top:2px solid #000}legend{padding-right:.35rem}}@media only screen and (min-width:60em){html{font-size:120%;line-height:1.5}blockquote,caption,dd,details,dl,fieldset,figure,h1,h2,h3,h4,h5,h6,hr,menu,ol,p,pre,table,ul{margin:0 0 1.5rem}.tenamega{font-size:3.6532rem;line-height:4.875rem}.tenakilo{font-size:3.2473rem;line-height:4.5rem}.tena{font-size:2.8865rem;line-height:4.125rem}.nina{font-size:2.5658rem;line-height:3.375rem}.yotta{font-size:2.2807rem}.yotta,.zetta{line-height:3rem}.zetta{font-size:2.0273rem}.exa,h1{font-size:1.802rem;line-height:2.625rem}.peta,h2{font-size:1.6018rem;line-height:2.25rem}.tera,h3{font-size:1.4238rem}.giga,.tera,h3,h4{line-height:1.875rem}.giga,h4{font-size:1.2656rem}.mega,h5{font-size:1.125rem;line-height:1.5rem}.kilo,h6,input,textarea{font-size:1rem;line-height:1.5rem}.milli,small{font-size:.8889rem;line-height:1.5rem}.micro{font-size:.7901rem;line-height:1.5rem}.nano{font-size:.7023rem}.nano,.pico{line-height:1.125rem}.pico{font-size:.6243rem}ol,ul{padding-left:0}ol ul,ul ul{padding-left:1em}ol ol,ul ol{padding-left:1.6em}.hang-punc{float:left;margin-left:-1.4em;text-align:right;width:1.3em}table{margin-left:-.375rem;margin-right:-.375rem;width:calc(100% + .375rem + .375rem)}input,option,select{height:1.875rem}[type=color]{width:1.875rem}[type=checkbox],[type=radio]{display:inline-block;height:auto}.push{margin-bottom:1.5rem}.push-0,.push-none{margin-bottom:0}.push-2,.push-double{margin-bottom:3rem}.push-3-4,.push-three-quarters{margin-bottom:1.125rem}.push-1-2,.push-half{margin-bottom:.75rem}.push-1-4,.push-quarter{margin-bottom:.375rem}.push-1-8,.push-eighth{margin-bottom:.1875rem}.push-r-1-8,.push-right-eighth{margin-right:.1875rem}.push-r-1-4,.push-right-quarter{margin-right:.375rem}.push-r-1-2,.push-right-half{margin-right:.75rem}.push-r-3-4,.push-right-three-quarters{margin-right:1.125rem}.push-r,.push-right{margin-right:1.5rem}.pad-t,.pad-top{padding-top:1.5rem}.pad-b,.pad-bottom{padding-bottom:1.5rem}.pad-t-2,.pad-top-double{padding-top:3rem}.pad-b-2,.pad-bottom-double{padding-bottom:3rem}.pad-t-3-4,.pad-top-three-quarters{padding-top:1.125rem}.pad-b-3-4,.pad-bottom-three-quarters{padding-bottom:1.125rem}.pad-t-1-2,.pad-top-half{padding-top:.75rem}.pad-b-1-2,.pad-bottom-half{padding-bottom:.75rem}.pad-t-1-4,.pad-top-quarter{padding-top:.375rem}.pad-b-1-4,.pad-bottom-quarter{padding-bottom:.375rem}.pad-t-1-8,.pad-top-eighth{padding-top:.1875rem}.pad-b-1-8,.pad-bottom-eighth{padding-bottom:.1875rem}.island{padding:1.5rem}.island-2,.island-double{padding:3rem}.island-3-4,.island-three-quarters{padding:1.125rem}.island-1-2,.island-half{padding:.75rem}.island-1-4,.island-quarter,table th,td{padding:.375rem}.island-1-8,.island-eighth,input:not([type=checkbox]),input:not([type=radio]),textarea{padding:.1875rem}.gutter{padding-left:1.5rem;padding-right:1.5rem}.gutter-2,.gutter-double{padding-left:3rem;padding-right:3rem}.gutter-3-4,.gutter-three-quarters{padding-left:1.125rem;padding-right:1.125rem}.gutter-1-2,.gutter-half{padding-left:.75rem;padding-right:.75rem}.gutter-1-4,.gutter-quarter,caption{padding-left:.375rem;padding-right:.375rem}.gutter-1-8,.gutter-eighth{padding-left:.1875rem;padding-right:.1875rem}.i-1{height:1.5rem;width:1.5rem}.i-3-4{height:1.125rem;width:1.125rem}.i-1-2{height:.75rem;width:.75rem}.i-1-4{height:.375rem;width:.375rem}.i-1-8{height:.1875rem;width:.1875rem}.i-1-1-2,.i-3-2{height:2.25rem;width:2.25rem}.i-1-1-4,.i-5-4{height:1.875rem;width:1.875rem}.i-1-3-4,.i-7-4{height:2.625rem;width:2.625rem}.i-2{height:3rem;width:3rem}select{padding:0 .1875rem}fieldset{padding:.375rem 0;border:0;border-top:2px solid #000}legend{padding-right:.375rem}}@media only screen and (min-width:90em){html{font-size:130%;line-height:1.5}blockquote,caption,dd,details,dl,fieldset,figure,h1,h2,h3,h4,h5,h6,hr,menu,ol,p,pre,table,ul{margin:0 0 1.5rem}.tenamega{font-size:3.6532rem;line-height:4.875rem}.tenakilo{font-size:3.2473rem;line-height:4.5rem}.tena{font-size:2.8865rem;line-height:4.125rem}.nina{font-size:2.5658rem;line-height:3.375rem}.yotta{font-size:2.2807rem}.yotta,.zetta{line-height:3rem}.zetta{font-size:2.0273rem}.exa,h1{font-size:1.802rem;line-height:2.625rem}.peta,h2{font-size:1.6018rem;line-height:2.25rem}.tera,h3{font-size:1.4238rem}.giga,.tera,h3,h4{line-height:1.875rem}.giga,h4{font-size:1.2656rem}.mega,h5{font-size:1.125rem;line-height:1.5rem}.kilo,h6,input,textarea{font-size:1rem;line-height:1.5rem}.milli,small{font-size:.8889rem;line-height:1.5rem}.micro{font-size:.7901rem;line-height:1.5rem}.nano{font-size:.7023rem}.nano,.pico{line-height:1.125rem}.pico{font-size:.6243rem}ol,ul{padding-left:0}ol ul,ul ul{padding-left:1em}ol ol,ul ol{padding-left:1.6em}.hang-punc{float:left;margin-left:-1.4em;text-align:right;width:1.3em}table{margin-left:-.375rem;margin-right:-.375rem;width:calc(100% + .375rem + .375rem)}input,option,select{height:1.875rem}[type=color]{width:1.875rem}[type=checkbox],[type=radio]{display:inline-block;height:auto}.push{margin-bottom:1.5rem}.push-0,.push-none{margin-bottom:0}.push-2,.push-double{margin-bottom:3rem}.push-3-4,.push-three-quarters{margin-bottom:1.125rem}.push-1-2,.push-half{margin-bottom:.75rem}.push-1-4,.push-quarter{margin-bottom:.375rem}.push-1-8,.push-eighth{margin-bottom:.1875rem}.push-r-1-8,.push-right-eighth{margin-right:.1875rem}.push-r-1-4,.push-right-quarter{margin-right:.375rem}.push-r-1-2,.push-right-half{margin-right:.75rem}.push-r-3-4,.push-right-three-quarters{margin-right:1.125rem}.push-r,.push-right{margin-right:1.5rem}.pad-t,.pad-top{padding-top:1.5rem}.pad-b,.pad-bottom{padding-bottom:1.5rem}.pad-t-2,.pad-top-double{padding-top:3rem}.pad-b-2,.pad-bottom-double{padding-bottom:3rem}.pad-t-3-4,.pad-top-three-quarters{padding-top:1.125rem}.pad-b-3-4,.pad-bottom-three-quarters{padding-bottom:1.125rem}.pad-t-1-2,.pad-top-half{padding-top:.75rem}.pad-b-1-2,.pad-bottom-half{padding-bottom:.75rem}.pad-t-1-4,.pad-top-quarter{padding-top:.375rem}.pad-b-1-4,.pad-bottom-quarter{padding-bottom:.375rem}.pad-t-1-8,.pad-top-eighth{padding-top:.1875rem}.pad-b-1-8,.pad-bottom-eighth{padding-bottom:.1875rem}.island{padding:1.5rem}.island-2,.island-double{padding:3rem}.island-3-4,.island-three-quarters{padding:1.125rem}.island-1-2,.island-half{padding:.75rem}.island-1-4,.island-quarter,table th,td{padding:.375rem}.island-1-8,.island-eighth,input:not([type=checkbox]),input:not([type=radio]),textarea{padding:.1875rem}.gutter{padding-left:1.5rem;padding-right:1.5rem}.gutter-2,.gutter-double{padding-left:3rem;padding-right:3rem}.gutter-3-4,.gutter-three-quarters{padding-left:1.125rem;padding-right:1.125rem}.gutter-1-2,.gutter-half{padding-left:.75rem;padding-right:.75rem}.gutter-1-4,.gutter-quarter,caption{padding-left:.375rem;padding-right:.375rem}.gutter-1-8,.gutter-eighth{padding-left:.1875rem;padding-right:.1875rem}.i-1{height:1.5rem;width:1.5rem}.i-3-4{height:1.125rem;width:1.125rem}.i-1-2{height:.75rem;width:.75rem}.i-1-4{height:.375rem;width:.375rem}.i-1-8{height:.1875rem;width:.1875rem}.i-1-1-2,.i-3-2{height:2.25rem;width:2.25rem}.i-1-1-4,.i-5-4{height:1.875rem;width:1.875rem}.i-1-3-4,.i-7-4{height:2.625rem;width:2.625rem}.i-2{height:3rem;width:3rem}select{padding:0 .1875rem}fieldset{padding:.375rem 0;border:0;border-top:2px solid #000}legend{padding-right:.375rem}}:root{--nav-width-m:12rem}html{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;color:rgba(var(--color-patternbot-interface),var(--color-patternbot-interface),var(--color-patternbot-interface),.9)}body,html{overflow-x:hidden}body{min-height:100vh}a{border-bottom:.1em solid currentcolor;color:currentcolor;font-weight:700;text-decoration:none}.max-length{margin-left:0;margin-right:0}.wrapper{min-height:100vh;max-width:100vw;width:100vw}.masthead-s{display:flex;flex-direction:row;align-items:center;position:fixed;left:0;top:0;width:100vw;z-index:5;background-color:var(--color-patternbot-interface-background);border-bottom:1px solid rgba(var(--color-patternbot-interface),var(--color-patternbot-interface),var(--color-patternbot-interface),.2);color:rgb(var(--color-patternbot-interface),var(--color-patternbot-interface),var(--color-patternbot-interface))}.nav-btn{margin:0 .6em;height:32px;padding:0;position:relative;width:32px;border:0;border-radius:0;opacity:.6}.nav-btn,.nav-btn:hover{background-color:transparent;color:rgb(var(--color-patternbot-interface),var(--color-patternbot-interface),var(--color-patternbot-interface))}.nav-btn svg{height:26px;position:absolute;left:3px;top:3px;width:26px}.nav-icon-close{opacity:0}.nav-btn[aria-expanded=true] .nav-icon-close{opacity:1}.nav-btn[aria-expanded=true] .nav-icon-open{opacity:0}.masthead-title{color:var(--color-patternbot-interface-accent);font-family:var(--font-patternbot-secondary)}.masthead-m{height:100vh;padding-top:4.1em;position:fixed;right:100vw;top:0;z-index:4;width:calc(100vw - 3em);background-color:var(--color-patternbot-interface-background);border-right:1px solid rgba(var(--color-patternbot-interface),var(--color-patternbot-interface),var(--color-patternbot-interface),.2);overflow-x:hidden;overflow-y:auto;-webkit-overflow-scrolling:touch;transition:right .2s ease;color:rgb(var(--color-patternbot-interface),var(--color-patternbot-interface),var(--color-patternbot-interface))}.masthead-m h1,.masthead-m h1+hr{display:none}.masthead-m[aria-hidden=false]{right:3em}.masthead-m hr{border-color:rgba(var(--color-patternbot-interface),var(--color-patternbot-interface),var(--color-patternbot-interface),.2);border-width:1px}.nav a{background-image:none;border:0;color:rgb(var(--color-patternbot-interface),var(--color-patternbot-interface),var(--color-patternbot-interface));text-decoration:none}.nav a span{border-bottom:.1em solid rgba(var(--color-patternbot-interface),var(--color-patternbot-interface),var(--color-patternbot-interface),.4)}.nav a:active span,.nav a:focus span,.nav a:hover span{border-bottom-color:rgba(var(--color-patternbot-interface),var(--color-patternbot-interface),var(--color-patternbot-interface))}.nav a *,.nav button *{pointer-events:none}.nav .icon{opacity:0;stroke:currentcolor}.nav a[aria-selected=true] .icon,.page-pop .icon{opacity:.6}.nav a[aria-selected=true]:focus .icon,.nav a[aria-selected=true]:hover .icon,.page-pop:focus .icon,.page-pop:hover .icon{opacity:1}.nav-show-all{display:block;position:relative;width:100%;background-color:transparent;border:0;border-radius:0;cursor:pointer;color:rgba(var(--color-patternbot-interface),var(--color-patternbot-interface),var(--color-patternbot-interface),.9);text-align:left}.nav-show-all-wrap:before{content:" ";height:1em;position:absolute;top:50%;right:0;width:1em;background-size:cover;border:2px solid currentcolor;border-radius:50%;opacity:.7;transform:translateY(-50%)}.nav-show-all[aria-pressed=true] .nav-show-all-wrap:after{content:" ";height:.55em;position:absolute;top:50%;right:.35em;width:.3em;border-right:3px solid currentcolor;border-bottom:3px solid currentcolor;opacity:.8;transform:translateY(-55%) rotate(45deg)}.nav-show-all:active,.nav-show-all:focus,.nav-show-all:hover,.nav-show-all[aria-pressed=true]:active,.nav-show-all[aria-pressed=true]:focus,.nav-show-all[aria-pressed=true]:hover{background-color:transparent;color:rgba(var(--color-patternbot-interface),var(--color-patternbot-interface),var(--color-patternbot-interface),.9)}.nav-show-all:active .nav-show-all-wrap:before,.nav-show-all:focus .nav-show-all-wrap:before,.nav-show-all:hover .nav-show-all-wrap:before{opacity:1}.main{width:100vw}.main iframe{display:block;height:10px;margin-left:auto;margin-right:auto;overflow:hidden;width:100%;border:0;opacity:0}.pattern{padding-top:3.1em}.pattern-name{font-family:var(--font-patternbot-secondary),var(--font-patternbot-primary);color:var(--color-patternbot-interface-accent)}.pattern-toolbar{border-bottom:1px solid rgba(var(--color-patternbot-interface),var(--color-patternbot-interface),var(--color-patternbot-interface),.2);border-top:1px solid rgba(var(--color-patternbot-interface),var(--color-patternbot-interface),var(--color-patternbot-interface),.2)}.pattern-toolbar-inner{border-color:rgba(var(--color-patternbot-interface),var(--color-patternbot-interface),var(--color-patternbot-interface),.1)}.main>.pattern:first-child>.pattern-toolbar,.main>.pattern[aria-hidden=true]+.pattern[aria-hidden=false]>.pattern-toolbar,.pattern-toolbar+.pattern-details>.pattern-toolbar-inner{border-top:0}.pattern-nav li:after{content:"·";display:inline-block;margin-left:.3em;opacity:.4;color:currentcolor}.pattern-nav li:last-child:after{content:none;display:none}.pattern-nav a{opacity:.8;color:currentcolor}.pattern-desc{border-bottom:1px solid rgba(var(--color-patternbot-interface),var(--color-patternbot-interface),var(--color-patternbot-interface),.1)}.pattern-desc+.pattern-details>.pattern-toolbar-inner{border-top:0}.pattern-details>.pattern-toolbar-inner+.pattern-desc{border-color:rgba(var(--color-patternbot-interface),var(--color-patternbot-interface),var(--color-patternbot-interface),.07)}.pattern-desc :last-child{margin-bottom:0}.pattern-code,.pattern-code code,.pattern-code kbd,.pattern-code pre{font-family:Source Code Pro,monospace}.pattern-code{overflow-x:hidden;background-color:rgba(var(--color-patternbot-interface),var(--color-patternbot-interface),var(--color-patternbot-interface),.05);border:1px solid rgba(var(--color-patternbot-interface),var(--color-patternbot-interface),var(--color-patternbot-interface),.05);border-radius:4px}.pattern-code-wrap:focus{outline:none}.pattern-code-wrap:focus .pattern-code{box-shadow:0 0 0 3px currentcolor}.pattern-code code,.pattern-code pre{margin:0}.pattern-code code{overflow-x:auto;-webkit-overflow-scrolling:touch}.pattern-code-sep{border:1px solid rgba(var(--color-patternbot-interface),var(--color-patternbot-interface),var(--color-patternbot-interface),.3)}.pattern-code-fields{margin-left:0;margin-right:0;width:100%}.pattern-code-fields td,.pattern-code-fields th{padding:.4em 0 0;border-color:rgba(var(--color-patternbot-interface),var(--color-patternbot-interface),var(--color-patternbot-interface),.3)}.pattern-code-field{display:inline-block;padding:0 .4em .15em;background-color:rgba(var(--color-patternbot-interface),var(--color-patternbot-interface),var(--color-patternbot-interface),.05);border:1px solid transparent;border-color:rgba(var(--color-patternbot-interface),var(--color-patternbot-interface),var(--color-patternbot-interface),.05);border-radius:4px}.pattern-tool-btn{display:flex;min-height:1.4em;min-width:1.2em;padding:.2em .4em;background-color:transparent;border:2px solid transparent;border-radius:4px;cursor:pointer;opacity:.6;stroke:currentcolor;color:currentcolor}.pattern-tool-btn:focus,.pattern-tool-btn:hover{background-color:transparent;border-color:transparent;outline:none;opacity:1;color:currentcolor}.pattern-tool-btn:active,.pattern-tool-btn:focus,.pattern-tool-btn[aria-pressed=true]{border-color:currentcolor}.resizeable-pattern{margin-left:auto;margin-right:auto;max-width:100%!important;min-height:60px}.resizeable-pattern-length{width:50%}.resize-handle{display:none;justify-content:center;align-items:center;height:80px;left:-26px;position:absolute;top:calc(50% - 40px);width:20px;border-right:1px solid rgba(var(--color-patternbot-interface),var(--color-patternbot-interface),var(--color-patternbot-interface),.1);cursor:ew-resize;color:rgba(var(--color-patternbot-interface),var(--color-patternbot-interface),var(--color-patternbot-interface),.3);stroke:currentcolor}.pattern-details:hover .resize-handle{display:flex}.resize-handle-right{left:auto;right:-26px;border-left:1px solid rgba(var(--color-patternbot-interface),var(--color-patternbot-interface),var(--color-patternbot-interface),.1);border-right:0}.patternbot-iframe-loading-gears{color:currentcolor}.patternbot-iframe-loading-gears-top{opacity:.5;animation:a 2s linear infinite;transform-origin:80.8px 80.8px}.patternbot-iframe-loading-gears-bottom{opacity:.7;animation:a 2s linear reverse infinite;transform-origin:176.3px 176.3px}.patternbot-iframe-loading-gears-single{opacity:.4;animation:a 2s linear infinite;transform-origin:128px 128px}@keyframes a{0%{transform:rotate(0)}to{transform:rotate(1turn)}}@media only screen and (min-width:38em){.wrapper{padding-left:var(--nav-width-m)}.masthead-s{display:none}.masthead-m{left:0;min-width:var(--nav-width-m);padding-top:0;right:auto;width:var(--nav-width-m)}.masthead-m h1,.masthead-m h1+hr{display:block}.main{width:calc(100vw - var(--nav-width-m))}.pattern{padding-top:0}}
@@ -0,0 +1 @@
1
+ var patternbot={};patternbot.injectAssetsIntoIframe=function(t){var e,n;e=t,n=document.createElement("style"),0<e.dataset.injectCss.trim().length&&(n.innerHTML=e.dataset.injectCss.trim(),e.contentWindow.document.body.classList.add("custom-bg-colors-used")),e.contentWindow.document.head.appendChild(n)},function(){"use strict";var t=document.querySelectorAll("iframe");[].forEach.call(t,function(r){var a=r.parentNode,i=r.parentNode.querySelector(".resizeable-pattern-length");i&&interact(i).resizable({edges:{left:".resize-handle-left",right:".resize-handle-right",bottom:!1,top:!1},onmove:function(t){var e=t.rect.width,n=a.parentNode.clientWidth-parseInt(getComputedStyle(a.parentNode).paddingLeft.replace(/px/),10)-parseInt(getComputedStyle(a.parentNode).paddingRight.replace(/px/),10);e<120&&(e=120),n<2*e&&(e=n/2),r.style.pointerEvents="none",a.style.width=2*e+"px",i.style.width=1*e+"px",r.iFrameResizer.resize()},onend:function(){r.style.pointerEvents="auto",r.iFrameResizer.resize()}})})}(),function(){"use strict";var t,e=document.querySelectorAll('[role="tablist"] a'),n=document.getElementById("patternbot-nav-show-all"),r=function(){return"true"==n.getAttribute("aria-pressed")},a=function(){var t=document.querySelectorAll('[role="tabpanel"]:not([hidden]) iframe');t&&[].forEach.call(t,function(t){t.src||(t.addEventListener("load",function(t){patternbot.injectAssetsIntoIframe(t.target),iFrameResize({heightCalculationMethod:"max",minHeight:t.target.dataset.minHeight?parseInt(t.target.dataset.minHeight,10):0,resizedCallback:function(t){t.iframe.previousElementSibling.setAttribute("hidden",!0),t.iframe.parentNode.style.minHeight=0,t.iframe.style.opacity=1}},t.target)}),t.src=t.dataset.src)})},i=function(t){var e=document.querySelectorAll('[role="tab"][aria-selected="true"]'),n=document.querySelectorAll('[role="tabpanel"]:not([hidden])'),r=document.getElementById(t.getAttribute("aria-controls"));n&&[].forEach.call(n,function(t){t.setAttribute("hidden",!0),t.setAttribute("aria-hidden",!0)}),e&&[].forEach.call(e,function(t){t.setAttribute("aria-selected",!1)}),r.removeAttribute("hidden"),r.setAttribute("aria-hidden",!1),t.setAttribute("aria-selected",!0),window.location.hash=t.getAttribute("href"),requestAnimationFrame(function(){window.scrollTo(0,0)}),a()},o=function(){var t=document.querySelector('[role="tablist"] > li:first-child [role="tab"]');t&&i(t)},s=function(){var t=document.querySelectorAll('[role="tabpanel"]'),e=document.querySelectorAll('[role="tab"]');t&&([].forEach.call(t,function(t){t.removeAttribute("hidden"),t.setAttribute("aria-hidden",!1)}),[].forEach.call(e,function(t){t.setAttribute("aria-selected",!1)}),a())};e&&n&&([].forEach.call(e,function(e){e.addEventListener("click",function(t){if(r())return!0;i(e)})}),n.addEventListener("click",function(t){r()?(this.setAttribute("aria-pressed",!1),localStorage.setItem("show-all-patterns",!1),document.body.classList.remove("patternbot-showing-all-patterns"),o()):(this.setAttribute("aria-pressed",!0),localStorage.setItem("show-all-patterns",!0),document.body.classList.add("patternbot-showing-all-patterns"),s())}),"true"==localStorage.getItem("show-all-patterns")?(n.setAttribute("aria-pressed",!0),document.body.classList.add("patternbot-showing-all-patterns"),s()):window.location.hash&&(t=document.querySelector('[role="tab"][href="'+window.location.hash.split(/\-\-/)[0]+'"]'))?i(t):o())}(),function(){"use strict";var t=document.querySelectorAll(".pattern-code-btn"),e=function(t){var e,n;t.preventDefault(),e=this.getAttribute("aria-controls"),n=document.getElementById(e),"true"==this.getAttribute("aria-pressed")?(this.setAttribute("aria-pressed",!1),n.setAttribute("hidden",!0),n.setAttribute("aria-hidden",!0)):(this.setAttribute("aria-pressed",!0),n.removeAttribute("hidden"),n.setAttribute("aria-hidden",!1),n.focus())};t&&[].forEach.call(t,function(t){t.addEventListener("click",e)})}(),function(){"use strict";var t=document.querySelector(".nav-btn"),e=document.getElementById("patternbot-nav"),n=function(){e.setAttribute("aria-hidden",!1),t.setAttribute("aria-expanded",!0),t.setAttribute("aria-label","Close nav")},r=function(){e.setAttribute("aria-hidden",!0),t.setAttribute("aria-expanded",!1),t.setAttribute("aria-label","Open nav")},a=function(){"true"===e.getAttribute("aria-hidden")?n():r()},i=function(){window.matchMedia("(min-width: 38em)").matches?n():r()};t.addEventListener("click",a),e.addEventListener("click",function(t){t.target.matches("a, button")&&a()});try{window.matchMedia("(min-width: 38em)").addEventListener("change",i)}catch(t){window.addEventListener("resize",function(){clearTimeout(void 0),setTimeout(i,100)})}i()}();
@@ -0,0 +1,1787 @@
1
+ /*
2
+ Typografier || Code released under the UNLICENSE
3
+ https://typografier.web-dev.tools/#0,100,1.3,1.067,0;38,110,1.4,1.125,1;60,120,1.5,1.125,1;90,130,1.5,1.125,1
4
+ */
5
+
6
+ html {
7
+ font-size: 100%;
8
+ line-height: 1.3;
9
+ }
10
+
11
+ a {
12
+ background-color: transparent;
13
+ -webkit-text-decoration-skip: objects;
14
+ }
15
+
16
+ sub,
17
+ sup {
18
+ font-size: .75em;
19
+ line-height: 1px;
20
+ position: relative;
21
+ vertical-align: baseline;
22
+ }
23
+
24
+ sup {
25
+ top: -.5em;
26
+ }
27
+
28
+ sub {
29
+ bottom: -.25em;
30
+ }
31
+
32
+ pre,
33
+ code,
34
+ kbd,
35
+ samp {
36
+ font-size: 1em;
37
+ }
38
+
39
+ abbr[title] {
40
+ border-bottom: none;
41
+ text-decoration: underline;
42
+ text-decoration: underline dotted;
43
+ }
44
+
45
+ b,
46
+ strong {
47
+ font-weight: bold;
48
+ }
49
+
50
+ dfn,
51
+ caption {
52
+ font-style: italic;
53
+ }
54
+
55
+ hr {
56
+ border: 0;
57
+ border-top: 2px solid #000;
58
+ height: 0;
59
+ }
60
+
61
+ table {
62
+ border-collapse: collapse;
63
+ border-spacing: 0;
64
+ width: 100%;
65
+ table-layout: fixed;
66
+ }
67
+
68
+ caption {
69
+ text-align: left;
70
+ }
71
+
72
+ th,
73
+ td {
74
+ border-bottom: 1px solid #000;
75
+ text-align: left;
76
+ vertical-align: top;
77
+ }
78
+
79
+ thead th {
80
+ vertical-align: bottom;
81
+
82
+ border-bottom-width: 2px;
83
+ }
84
+
85
+ .text-left {
86
+ text-align: left;
87
+ }
88
+
89
+ .text-right {
90
+ text-align: right;
91
+ }
92
+
93
+ .text-center {
94
+ text-align: center;
95
+ }
96
+
97
+ .normal {
98
+ font-weight: normal;
99
+ font-style: normal;
100
+ }
101
+
102
+ .not-bold {
103
+ font-weight: normal;
104
+ }
105
+
106
+ .not-italic {
107
+ font-style: normal;
108
+ }
109
+
110
+ .bold {
111
+ font-weight: bold;
112
+ }
113
+
114
+ .italic {
115
+ font-style: italic;
116
+ }
117
+
118
+ .text-upper {
119
+ text-transform: uppercase;
120
+ }
121
+
122
+ .text-lower {
123
+ text-transform: lowercase;
124
+ }
125
+
126
+ .wrapper {
127
+ margin-left: auto;
128
+ margin-right: auto;
129
+ max-width: 52em;
130
+ width: 100%;
131
+ }
132
+
133
+ .wrapper-no-center {
134
+ max-width: 52em;
135
+ width: 100%;
136
+ }
137
+
138
+ .max-length {
139
+ margin-left: auto;
140
+ margin-right: auto;
141
+ max-width: 36em;
142
+ width: 100%;
143
+ }
144
+
145
+ .max-length-no-center {
146
+ max-width: 36em;
147
+ width: 100%;
148
+ }
149
+
150
+ h1,
151
+ h2,
152
+ h3,
153
+ h4,
154
+ h5,
155
+ h6,
156
+ p,
157
+ ul,
158
+ ol,
159
+ dl,
160
+ dd,
161
+ figure,
162
+ blockquote,
163
+ details,
164
+ hr,
165
+ fieldset,
166
+ pre,
167
+ table,
168
+ caption,
169
+ menu {
170
+ margin: 0 0 1.3rem;
171
+ }
172
+
173
+ .tenamega {
174
+ font-size: 2.0408rem;
175
+ line-height: 2.925rem;
176
+ }
177
+
178
+ .tenakilo {
179
+ font-size: 1.9127rem;
180
+ line-height: 2.6rem;
181
+ }
182
+
183
+ .tena {
184
+ font-size: 1.7926rem;
185
+ line-height: 2.6rem;
186
+ }
187
+
188
+ .nina {
189
+ font-size: 1.68rem;
190
+ line-height: 2.275rem;
191
+ }
192
+
193
+ .yotta {
194
+ font-size: 1.5745rem;
195
+ line-height: 2.275rem;
196
+ }
197
+
198
+ .zetta {
199
+ font-size: 1.4757rem;
200
+ line-height: 1.95rem;
201
+ }
202
+
203
+ h1,
204
+ .exa {
205
+ font-size: 1.383rem;
206
+ line-height: 1.95rem;
207
+ }
208
+
209
+ h2,
210
+ .peta {
211
+ font-size: 1.2962rem;
212
+ line-height: 1.95rem;
213
+ }
214
+
215
+ h3,
216
+ .tera {
217
+ font-size: 1.2148rem;
218
+ line-height: 1.625rem;
219
+ }
220
+
221
+ h4,
222
+ .giga {
223
+ font-size: 1.1385rem;
224
+ line-height: 1.625rem;
225
+ }
226
+
227
+ h5,
228
+ .mega {
229
+ font-size: 1.067rem;
230
+ line-height: 1.625rem;
231
+ }
232
+
233
+ h6,
234
+ .kilo,
235
+ input,
236
+ textarea {
237
+ font-size: 1rem;
238
+ line-height: 1.3rem;
239
+ }
240
+
241
+ small,
242
+ .milli {
243
+ font-size: .9372rem;
244
+ line-height: 1.3rem;
245
+ }
246
+
247
+ .micro {
248
+ font-size: .8784rem;
249
+ line-height: 1.3rem;
250
+ }
251
+
252
+ .nano {
253
+ font-size: .8232rem;
254
+ line-height: 1.3rem;
255
+ }
256
+
257
+ .pico {
258
+ font-size: .7715rem;
259
+ line-height: 1.3rem;
260
+ }
261
+
262
+ ul {
263
+ padding-left: 1em;
264
+ }
265
+
266
+ ol {
267
+ padding-left: 1.6em;
268
+ }
269
+
270
+ input,
271
+ option,
272
+ select {
273
+ height: calc(1.3rem + .1625rem + .1625rem);
274
+ }
275
+
276
+ [type="color"] {
277
+ width: calc(1.3rem + .1625rem + .1625rem);
278
+ }
279
+
280
+ [type="checkbox"],
281
+ [type="radio"] {
282
+ display: inline-block;
283
+ height: auto;
284
+ }
285
+
286
+ .push {
287
+ margin-bottom: 1.3rem;
288
+ }
289
+
290
+ .push-none,
291
+ .push-0 {
292
+ margin-bottom: 0;
293
+ }
294
+
295
+ .push-double,
296
+ .push-2 {
297
+ margin-bottom: 2.6rem;
298
+ }
299
+
300
+ .push-three-quarters,
301
+ .push-3-4 {
302
+ margin-bottom: .975rem;
303
+ }
304
+
305
+ .push-half,
306
+ .push-1-2 {
307
+ margin-bottom: .65rem;
308
+ }
309
+
310
+ .push-quarter,
311
+ .push-1-4 {
312
+ margin-bottom: .325rem;
313
+ }
314
+
315
+ .push-eighth,
316
+ .push-1-8 {
317
+ margin-bottom: .1625rem;
318
+ }
319
+
320
+ .push-right-eighth,
321
+ .push-r-1-8 {
322
+ margin-right: .1625rem;
323
+ }
324
+
325
+ .push-right-quarter,
326
+ .push-r-1-4 {
327
+ margin-right: .325rem;
328
+ }
329
+
330
+ .push-right-half,
331
+ .push-r-1-2 {
332
+ margin-right: .65rem;
333
+ }
334
+
335
+ .push-right-three-quarters,
336
+ .push-r-3-4 {
337
+ margin-right: .975rem;
338
+ }
339
+
340
+ .push-right,
341
+ .push-r {
342
+ margin-right: 1.3rem;
343
+ }
344
+
345
+ .pad-top,
346
+ .pad-t {
347
+ padding-top: 1.3rem;
348
+ }
349
+
350
+ .pad-bottom,
351
+ .pad-b {
352
+ padding-bottom: 1.3rem;
353
+ }
354
+
355
+ .pad-top-double,
356
+ .pad-t-2 {
357
+ padding-top: 2.6rem;
358
+ }
359
+
360
+ .pad-bottom-double,
361
+ .pad-b-2 {
362
+ padding-bottom: 2.6rem;
363
+ }
364
+
365
+ .pad-top-three-quarters,
366
+ .pad-t-3-4 {
367
+ padding-top: .975rem;
368
+ }
369
+
370
+ .pad-bottom-three-quarters,
371
+ .pad-b-3-4 {
372
+ padding-bottom: .975rem;
373
+ }
374
+
375
+ .pad-top-half,
376
+ .pad-t-1-2 {
377
+ padding-top: .65rem;
378
+ }
379
+
380
+ .pad-bottom-half,
381
+ .pad-b-1-2 {
382
+ padding-bottom: .65rem;
383
+ }
384
+
385
+ .pad-top-quarter,
386
+ .pad-t-1-4 {
387
+ padding-top: .325rem;
388
+ }
389
+
390
+ .pad-bottom-quarter,
391
+ .pad-b-1-4 {
392
+ padding-bottom: .325rem;
393
+ }
394
+
395
+ .pad-top-eighth,
396
+ .pad-t-1-8 {
397
+ padding-top: .1625rem;
398
+ }
399
+
400
+ .pad-bottom-eighth,
401
+ .pad-b-1-8 {
402
+ padding-bottom: .1625rem;
403
+ }
404
+
405
+ .island {
406
+ padding: 1.3rem;
407
+ }
408
+
409
+ .island-double,
410
+ .island-2 {
411
+ padding: 2.6rem;
412
+ }
413
+
414
+ .island-three-quarters,
415
+ .island-3-4 {
416
+ padding: .975rem;
417
+ }
418
+
419
+ .island-half,
420
+ .island-1-2 {
421
+ padding: .65rem;
422
+ }
423
+
424
+ .island-quarter,
425
+ .island-1-4,
426
+ td,
427
+ table th {
428
+ padding: .325rem;
429
+ }
430
+
431
+ .island-eighth,
432
+ .island-1-8,
433
+ input:not([type="checkbox"]),
434
+ input:not([type="radio"]),
435
+ textarea {
436
+ padding: .1625rem;
437
+ }
438
+
439
+ .gutter {
440
+ padding-left: 1.3rem;
441
+ padding-right: 1.3rem;
442
+ }
443
+
444
+ .gutter-double,
445
+ .gutter-2 {
446
+ padding-left: 2.6rem;
447
+ padding-right: 2.6rem;
448
+ }
449
+
450
+ .gutter-three-quarters,
451
+ .gutter-3-4 {
452
+ padding-left: .975rem;
453
+ padding-right: .975rem;
454
+ }
455
+
456
+ .gutter-half,
457
+ .gutter-1-2 {
458
+ padding-left: .65rem;
459
+ padding-right: .65rem;
460
+ }
461
+
462
+ .gutter-quarter,
463
+ .gutter-1-4,
464
+ caption {
465
+ padding-left: .325rem;
466
+ padding-right: .325rem;
467
+ }
468
+
469
+ .gutter-eighth,
470
+ .gutter-1-8 {
471
+ padding-left: .1625rem;
472
+ padding-right: .1625rem;
473
+ }
474
+
475
+ .i-1 {
476
+ height: 1.3rem;
477
+ width: 1.3rem;
478
+ }
479
+
480
+ .i-3-4 {
481
+ height: .975rem;
482
+ width: .975rem;
483
+ }
484
+
485
+ .i-1-2 {
486
+ height: .65rem;
487
+ width: .65rem;
488
+ }
489
+
490
+ .i-1-4 {
491
+ height: .325rem;
492
+ width: .325rem;
493
+ }
494
+
495
+ .i-1-8 {
496
+ height: .1625rem;
497
+ width: .1625rem;
498
+ }
499
+
500
+ .i-1-1-2,
501
+ .i-3-2 {
502
+ height: 1.95rem;
503
+ width: 1.95rem;
504
+ }
505
+
506
+ .i-1-1-4,
507
+ .i-5-4 {
508
+ height: 1.625rem;
509
+ width: 1.625rem;
510
+ }
511
+
512
+ .i-1-3-4,
513
+ .i-7-4 {
514
+ height: 2.275rem;
515
+ width: 2.275rem;
516
+ }
517
+
518
+ .i-2 {
519
+ height: 2.6rem;
520
+ width: 2.6rem;
521
+ }
522
+
523
+ select {
524
+ padding: 0 .1625rem;
525
+ }
526
+
527
+ fieldset {
528
+ padding: .325rem 0;
529
+
530
+ border: 0;
531
+ border-top: 2px solid #000;
532
+ }
533
+
534
+ legend {
535
+ padding-right: .325rem;
536
+ }
537
+
538
+ @media only screen and (min-width: 38em) {
539
+
540
+ html {
541
+ font-size: 110%;
542
+ line-height: 1.4;
543
+ }
544
+
545
+ h1,
546
+ h2,
547
+ h3,
548
+ h4,
549
+ h5,
550
+ h6,
551
+ p,
552
+ ul,
553
+ ol,
554
+ dl,
555
+ dd,
556
+ figure,
557
+ blockquote,
558
+ details,
559
+ hr,
560
+ fieldset,
561
+ pre,
562
+ table,
563
+ caption,
564
+ menu {
565
+ margin: 0 0 1.4rem;
566
+ }
567
+
568
+ .tenamega {
569
+ font-size: 3.6532rem;
570
+ line-height: 4.9rem;
571
+ }
572
+
573
+ .tenakilo {
574
+ font-size: 3.2473rem;
575
+ line-height: 4.55rem;
576
+ }
577
+
578
+ .tena {
579
+ font-size: 2.8865rem;
580
+ line-height: 3.85rem;
581
+ }
582
+
583
+ .nina {
584
+ font-size: 2.5658rem;
585
+ line-height: 3.5rem;
586
+ }
587
+
588
+ .yotta {
589
+ font-size: 2.2807rem;
590
+ line-height: 3.15rem;
591
+ }
592
+
593
+ .zetta {
594
+ font-size: 2.0273rem;
595
+ line-height: 2.8rem;
596
+ }
597
+
598
+ h1,
599
+ .exa {
600
+ font-size: 1.802rem;
601
+ line-height: 2.45rem;
602
+ }
603
+
604
+ h2,
605
+ .peta {
606
+ font-size: 1.6018rem;
607
+ line-height: 2.1rem;
608
+ }
609
+
610
+ h3,
611
+ .tera {
612
+ font-size: 1.4238rem;
613
+ line-height: 2.1rem;
614
+ }
615
+
616
+ h4,
617
+ .giga {
618
+ font-size: 1.2656rem;
619
+ line-height: 1.75rem;
620
+ }
621
+
622
+ h5,
623
+ .mega {
624
+ font-size: 1.125rem;
625
+ line-height: 1.75rem;
626
+ }
627
+
628
+ h6,
629
+ .kilo,
630
+ input,
631
+ textarea {
632
+ font-size: 1rem;
633
+ line-height: 1.4rem;
634
+ }
635
+
636
+ small,
637
+ .milli {
638
+ font-size: .8889rem;
639
+ line-height: 1.4rem;
640
+ }
641
+
642
+ .micro {
643
+ font-size: .7901rem;
644
+ line-height: 1.4rem;
645
+ }
646
+
647
+ .nano {
648
+ font-size: .7023rem;
649
+ line-height: 1.05rem;
650
+ }
651
+
652
+ .pico {
653
+ font-size: .6243rem;
654
+ line-height: 1.05rem;
655
+ }
656
+
657
+ ul,
658
+ ol {
659
+ padding-left: 0;
660
+ }
661
+
662
+ ul ul,
663
+ ol ul {
664
+ padding-left: 1em;
665
+ }
666
+
667
+ ol ol,
668
+ ul ol {
669
+ padding-left: 1.6em;
670
+ }
671
+
672
+ .hang-punc {
673
+ float: left;
674
+ margin-left: -1.4em;
675
+ text-align: right;
676
+ width: 1.3em;
677
+ }
678
+
679
+ table {
680
+ margin-left: -.35rem;
681
+ margin-right: -.35rem;
682
+ width: calc(100% + .35rem + .35rem);
683
+ }
684
+
685
+ input,
686
+ option,
687
+ select {
688
+ height: calc(1.4rem + .175rem + .175rem);
689
+ }
690
+
691
+ [type="color"] {
692
+ width: calc(1.4rem + .175rem + .175rem);
693
+ }
694
+
695
+ [type="checkbox"],
696
+ [type="radio"] {
697
+ display: inline-block;
698
+ height: auto;
699
+ }
700
+
701
+ .push {
702
+ margin-bottom: 1.4rem;
703
+ }
704
+
705
+ .push-none,
706
+ .push-0 {
707
+ margin-bottom: 0;
708
+ }
709
+
710
+ .push-double,
711
+ .push-2 {
712
+ margin-bottom: 2.8rem;
713
+ }
714
+
715
+ .push-three-quarters,
716
+ .push-3-4 {
717
+ margin-bottom: 1.05rem;
718
+ }
719
+
720
+ .push-half,
721
+ .push-1-2 {
722
+ margin-bottom: .7rem;
723
+ }
724
+
725
+ .push-quarter,
726
+ .push-1-4 {
727
+ margin-bottom: .35rem;
728
+ }
729
+
730
+ .push-eighth,
731
+ .push-1-8 {
732
+ margin-bottom: .175rem;
733
+ }
734
+
735
+ .push-right-eighth,
736
+ .push-r-1-8 {
737
+ margin-right: .175rem;
738
+ }
739
+
740
+ .push-right-quarter,
741
+ .push-r-1-4 {
742
+ margin-right: .35rem;
743
+ }
744
+
745
+ .push-right-half,
746
+ .push-r-1-2 {
747
+ margin-right: .7rem;
748
+ }
749
+
750
+ .push-right-three-quarters,
751
+ .push-r-3-4 {
752
+ margin-right: 1.05rem;
753
+ }
754
+
755
+ .push-right,
756
+ .push-r {
757
+ margin-right: 1.4rem;
758
+ }
759
+
760
+ .pad-top,
761
+ .pad-t {
762
+ padding-top: 1.4rem;
763
+ }
764
+
765
+ .pad-bottom,
766
+ .pad-b {
767
+ padding-bottom: 1.4rem;
768
+ }
769
+
770
+ .pad-top-double,
771
+ .pad-t-2 {
772
+ padding-top: 2.8rem;
773
+ }
774
+
775
+ .pad-bottom-double,
776
+ .pad-b-2 {
777
+ padding-bottom: 2.8rem;
778
+ }
779
+
780
+ .pad-top-three-quarters,
781
+ .pad-t-3-4 {
782
+ padding-top: 1.05rem;
783
+ }
784
+
785
+ .pad-bottom-three-quarters,
786
+ .pad-b-3-4 {
787
+ padding-bottom: 1.05rem;
788
+ }
789
+
790
+ .pad-top-half,
791
+ .pad-t-1-2 {
792
+ padding-top: .7rem;
793
+ }
794
+
795
+ .pad-bottom-half,
796
+ .pad-b-1-2 {
797
+ padding-bottom: .7rem;
798
+ }
799
+
800
+ .pad-top-quarter,
801
+ .pad-t-1-4 {
802
+ padding-top: .35rem;
803
+ }
804
+
805
+ .pad-bottom-quarter,
806
+ .pad-b-1-4 {
807
+ padding-bottom: .35rem;
808
+ }
809
+
810
+ .pad-top-eighth,
811
+ .pad-t-1-8 {
812
+ padding-top: .175rem;
813
+ }
814
+
815
+ .pad-bottom-eighth,
816
+ .pad-b-1-8 {
817
+ padding-bottom: .175rem;
818
+ }
819
+
820
+ .island {
821
+ padding: 1.4rem;
822
+ }
823
+
824
+ .island-double,
825
+ .island-2 {
826
+ padding: 2.8rem;
827
+ }
828
+
829
+ .island-three-quarters,
830
+ .island-3-4 {
831
+ padding: 1.05rem;
832
+ }
833
+
834
+ .island-half,
835
+ .island-1-2 {
836
+ padding: .7rem;
837
+ }
838
+
839
+ .island-quarter,
840
+ .island-1-4,
841
+ td,
842
+ table th {
843
+ padding: .35rem;
844
+ }
845
+
846
+ .island-eighth,
847
+ .island-1-8,
848
+ input:not([type="checkbox"]),
849
+ input:not([type="radio"]),
850
+ textarea {
851
+ padding: .175rem;
852
+ }
853
+
854
+ .gutter {
855
+ padding-left: 1.4rem;
856
+ padding-right: 1.4rem;
857
+ }
858
+
859
+ .gutter-double,
860
+ .gutter-2 {
861
+ padding-left: 2.8rem;
862
+ padding-right: 2.8rem;
863
+ }
864
+
865
+ .gutter-three-quarters,
866
+ .gutter-3-4 {
867
+ padding-left: 1.05rem;
868
+ padding-right: 1.05rem;
869
+ }
870
+
871
+ .gutter-half,
872
+ .gutter-1-2 {
873
+ padding-left: .7rem;
874
+ padding-right: .7rem;
875
+ }
876
+
877
+ .gutter-quarter,
878
+ .gutter-1-4,
879
+ caption {
880
+ padding-left: .35rem;
881
+ padding-right: .35rem;
882
+ }
883
+
884
+ .gutter-eighth,
885
+ .gutter-1-8 {
886
+ padding-left: .175rem;
887
+ padding-right: .175rem;
888
+ }
889
+
890
+ .i-1 {
891
+ height: 1.4rem;
892
+ width: 1.4rem;
893
+ }
894
+
895
+ .i-3-4 {
896
+ height: 1.05rem;
897
+ width: 1.05rem;
898
+ }
899
+
900
+ .i-1-2 {
901
+ height: .7rem;
902
+ width: .7rem;
903
+ }
904
+
905
+ .i-1-4 {
906
+ height: .35rem;
907
+ width: .35rem;
908
+ }
909
+
910
+ .i-1-8 {
911
+ height: .175rem;
912
+ width: .175rem;
913
+ }
914
+
915
+ .i-1-1-2,
916
+ .i-3-2 {
917
+ height: 2.1rem;
918
+ width: 2.1rem;
919
+ }
920
+
921
+ .i-1-1-4,
922
+ .i-5-4 {
923
+ height: 1.75rem;
924
+ width: 1.75rem;
925
+ }
926
+
927
+ .i-1-3-4,
928
+ .i-7-4 {
929
+ height: 2.45rem;
930
+ width: 2.45rem;
931
+ }
932
+
933
+ .i-2 {
934
+ height: 2.8rem;
935
+ width: 2.8rem;
936
+ }
937
+
938
+ select {
939
+ padding: 0 .175rem;
940
+ }
941
+
942
+ fieldset {
943
+ padding: .35rem 0;
944
+
945
+ border: 0;
946
+ border-top: 2px solid #000;
947
+ }
948
+
949
+ legend {
950
+ padding-right: .35rem;
951
+ }
952
+
953
+ }
954
+
955
+ @media only screen and (min-width: 60em) {
956
+
957
+ html {
958
+ font-size: 120%;
959
+ line-height: 1.5;
960
+ }
961
+
962
+ h1,
963
+ h2,
964
+ h3,
965
+ h4,
966
+ h5,
967
+ h6,
968
+ p,
969
+ ul,
970
+ ol,
971
+ dl,
972
+ dd,
973
+ figure,
974
+ blockquote,
975
+ details,
976
+ hr,
977
+ fieldset,
978
+ pre,
979
+ table,
980
+ caption,
981
+ menu {
982
+ margin: 0 0 1.5rem;
983
+ }
984
+
985
+ .tenamega {
986
+ font-size: 3.6532rem;
987
+ line-height: 4.875rem;
988
+ }
989
+
990
+ .tenakilo {
991
+ font-size: 3.2473rem;
992
+ line-height: 4.5rem;
993
+ }
994
+
995
+ .tena {
996
+ font-size: 2.8865rem;
997
+ line-height: 4.125rem;
998
+ }
999
+
1000
+ .nina {
1001
+ font-size: 2.5658rem;
1002
+ line-height: 3.375rem;
1003
+ }
1004
+
1005
+ .yotta {
1006
+ font-size: 2.2807rem;
1007
+ line-height: 3rem;
1008
+ }
1009
+
1010
+ .zetta {
1011
+ font-size: 2.0273rem;
1012
+ line-height: 3rem;
1013
+ }
1014
+
1015
+ h1,
1016
+ .exa {
1017
+ font-size: 1.802rem;
1018
+ line-height: 2.625rem;
1019
+ }
1020
+
1021
+ h2,
1022
+ .peta {
1023
+ font-size: 1.6018rem;
1024
+ line-height: 2.25rem;
1025
+ }
1026
+
1027
+ h3,
1028
+ .tera {
1029
+ font-size: 1.4238rem;
1030
+ line-height: 1.875rem;
1031
+ }
1032
+
1033
+ h4,
1034
+ .giga {
1035
+ font-size: 1.2656rem;
1036
+ line-height: 1.875rem;
1037
+ }
1038
+
1039
+ h5,
1040
+ .mega {
1041
+ font-size: 1.125rem;
1042
+ line-height: 1.5rem;
1043
+ }
1044
+
1045
+ h6,
1046
+ .kilo,
1047
+ input,
1048
+ textarea {
1049
+ font-size: 1rem;
1050
+ line-height: 1.5rem;
1051
+ }
1052
+
1053
+ small,
1054
+ .milli {
1055
+ font-size: .8889rem;
1056
+ line-height: 1.5rem;
1057
+ }
1058
+
1059
+ .micro {
1060
+ font-size: .7901rem;
1061
+ line-height: 1.5rem;
1062
+ }
1063
+
1064
+ .nano {
1065
+ font-size: .7023rem;
1066
+ line-height: 1.125rem;
1067
+ }
1068
+
1069
+ .pico {
1070
+ font-size: .6243rem;
1071
+ line-height: 1.125rem;
1072
+ }
1073
+
1074
+ ul,
1075
+ ol {
1076
+ padding-left: 0;
1077
+ }
1078
+
1079
+ ul ul,
1080
+ ol ul {
1081
+ padding-left: 1em;
1082
+ }
1083
+
1084
+ ol ol,
1085
+ ul ol {
1086
+ padding-left: 1.6em;
1087
+ }
1088
+
1089
+ .hang-punc {
1090
+ float: left;
1091
+ margin-left: -1.4em;
1092
+ text-align: right;
1093
+ width: 1.3em;
1094
+ }
1095
+
1096
+ table {
1097
+ margin-left: -.375rem;
1098
+ margin-right: -.375rem;
1099
+ width: calc(100% + .375rem + .375rem);
1100
+ }
1101
+
1102
+ input,
1103
+ option,
1104
+ select {
1105
+ height: calc(1.5rem + .1875rem + .1875rem);
1106
+ }
1107
+
1108
+ [type="color"] {
1109
+ width: calc(1.5rem + .1875rem + .1875rem);
1110
+ }
1111
+
1112
+ [type="checkbox"],
1113
+ [type="radio"] {
1114
+ display: inline-block;
1115
+ height: auto;
1116
+ }
1117
+
1118
+ .push {
1119
+ margin-bottom: 1.5rem;
1120
+ }
1121
+
1122
+ .push-none,
1123
+ .push-0 {
1124
+ margin-bottom: 0;
1125
+ }
1126
+
1127
+ .push-double,
1128
+ .push-2 {
1129
+ margin-bottom: 3rem;
1130
+ }
1131
+
1132
+ .push-three-quarters,
1133
+ .push-3-4 {
1134
+ margin-bottom: 1.125rem;
1135
+ }
1136
+
1137
+ .push-half,
1138
+ .push-1-2 {
1139
+ margin-bottom: .75rem;
1140
+ }
1141
+
1142
+ .push-quarter,
1143
+ .push-1-4 {
1144
+ margin-bottom: .375rem;
1145
+ }
1146
+
1147
+ .push-eighth,
1148
+ .push-1-8 {
1149
+ margin-bottom: .1875rem;
1150
+ }
1151
+
1152
+ .push-right-eighth,
1153
+ .push-r-1-8 {
1154
+ margin-right: .1875rem;
1155
+ }
1156
+
1157
+ .push-right-quarter,
1158
+ .push-r-1-4 {
1159
+ margin-right: .375rem;
1160
+ }
1161
+
1162
+ .push-right-half,
1163
+ .push-r-1-2 {
1164
+ margin-right: .75rem;
1165
+ }
1166
+
1167
+ .push-right-three-quarters,
1168
+ .push-r-3-4 {
1169
+ margin-right: 1.125rem;
1170
+ }
1171
+
1172
+ .push-right,
1173
+ .push-r {
1174
+ margin-right: 1.5rem;
1175
+ }
1176
+
1177
+ .pad-top,
1178
+ .pad-t {
1179
+ padding-top: 1.5rem;
1180
+ }
1181
+
1182
+ .pad-bottom,
1183
+ .pad-b {
1184
+ padding-bottom: 1.5rem;
1185
+ }
1186
+
1187
+ .pad-top-double,
1188
+ .pad-t-2 {
1189
+ padding-top: 3rem;
1190
+ }
1191
+
1192
+ .pad-bottom-double,
1193
+ .pad-b-2 {
1194
+ padding-bottom: 3rem;
1195
+ }
1196
+
1197
+ .pad-top-three-quarters,
1198
+ .pad-t-3-4 {
1199
+ padding-top: 1.125rem;
1200
+ }
1201
+
1202
+ .pad-bottom-three-quarters,
1203
+ .pad-b-3-4 {
1204
+ padding-bottom: 1.125rem;
1205
+ }
1206
+
1207
+ .pad-top-half,
1208
+ .pad-t-1-2 {
1209
+ padding-top: .75rem;
1210
+ }
1211
+
1212
+ .pad-bottom-half,
1213
+ .pad-b-1-2 {
1214
+ padding-bottom: .75rem;
1215
+ }
1216
+
1217
+ .pad-top-quarter,
1218
+ .pad-t-1-4 {
1219
+ padding-top: .375rem;
1220
+ }
1221
+
1222
+ .pad-bottom-quarter,
1223
+ .pad-b-1-4 {
1224
+ padding-bottom: .375rem;
1225
+ }
1226
+
1227
+ .pad-top-eighth,
1228
+ .pad-t-1-8 {
1229
+ padding-top: .1875rem;
1230
+ }
1231
+
1232
+ .pad-bottom-eighth,
1233
+ .pad-b-1-8 {
1234
+ padding-bottom: .1875rem;
1235
+ }
1236
+
1237
+ .island {
1238
+ padding: 1.5rem;
1239
+ }
1240
+
1241
+ .island-double,
1242
+ .island-2 {
1243
+ padding: 3rem;
1244
+ }
1245
+
1246
+ .island-three-quarters,
1247
+ .island-3-4 {
1248
+ padding: 1.125rem;
1249
+ }
1250
+
1251
+ .island-half,
1252
+ .island-1-2 {
1253
+ padding: .75rem;
1254
+ }
1255
+
1256
+ .island-quarter,
1257
+ .island-1-4,
1258
+ td,
1259
+ table th {
1260
+ padding: .375rem;
1261
+ }
1262
+
1263
+ .island-eighth,
1264
+ .island-1-8,
1265
+ input:not([type="checkbox"]),
1266
+ input:not([type="radio"]),
1267
+ textarea {
1268
+ padding: .1875rem;
1269
+ }
1270
+
1271
+ .gutter {
1272
+ padding-left: 1.5rem;
1273
+ padding-right: 1.5rem;
1274
+ }
1275
+
1276
+ .gutter-double,
1277
+ .gutter-2 {
1278
+ padding-left: 3rem;
1279
+ padding-right: 3rem;
1280
+ }
1281
+
1282
+ .gutter-three-quarters,
1283
+ .gutter-3-4 {
1284
+ padding-left: 1.125rem;
1285
+ padding-right: 1.125rem;
1286
+ }
1287
+
1288
+ .gutter-half,
1289
+ .gutter-1-2 {
1290
+ padding-left: .75rem;
1291
+ padding-right: .75rem;
1292
+ }
1293
+
1294
+ .gutter-quarter,
1295
+ .gutter-1-4,
1296
+ caption {
1297
+ padding-left: .375rem;
1298
+ padding-right: .375rem;
1299
+ }
1300
+
1301
+ .gutter-eighth,
1302
+ .gutter-1-8 {
1303
+ padding-left: .1875rem;
1304
+ padding-right: .1875rem;
1305
+ }
1306
+
1307
+ .i-1 {
1308
+ height: 1.5rem;
1309
+ width: 1.5rem;
1310
+ }
1311
+
1312
+ .i-3-4 {
1313
+ height: 1.125rem;
1314
+ width: 1.125rem;
1315
+ }
1316
+
1317
+ .i-1-2 {
1318
+ height: .75rem;
1319
+ width: .75rem;
1320
+ }
1321
+
1322
+ .i-1-4 {
1323
+ height: .375rem;
1324
+ width: .375rem;
1325
+ }
1326
+
1327
+ .i-1-8 {
1328
+ height: .1875rem;
1329
+ width: .1875rem;
1330
+ }
1331
+
1332
+ .i-1-1-2,
1333
+ .i-3-2 {
1334
+ height: 2.25rem;
1335
+ width: 2.25rem;
1336
+ }
1337
+
1338
+ .i-1-1-4,
1339
+ .i-5-4 {
1340
+ height: 1.875rem;
1341
+ width: 1.875rem;
1342
+ }
1343
+
1344
+ .i-1-3-4,
1345
+ .i-7-4 {
1346
+ height: 2.625rem;
1347
+ width: 2.625rem;
1348
+ }
1349
+
1350
+ .i-2 {
1351
+ height: 3rem;
1352
+ width: 3rem;
1353
+ }
1354
+
1355
+ select {
1356
+ padding: 0 .1875rem;
1357
+ }
1358
+
1359
+ fieldset {
1360
+ padding: .375rem 0;
1361
+
1362
+ border: 0;
1363
+ border-top: 2px solid #000;
1364
+ }
1365
+
1366
+ legend {
1367
+ padding-right: .375rem;
1368
+ }
1369
+
1370
+ }
1371
+
1372
+ @media only screen and (min-width: 90em) {
1373
+
1374
+ html {
1375
+ font-size: 130%;
1376
+ line-height: 1.5;
1377
+ }
1378
+
1379
+ h1,
1380
+ h2,
1381
+ h3,
1382
+ h4,
1383
+ h5,
1384
+ h6,
1385
+ p,
1386
+ ul,
1387
+ ol,
1388
+ dl,
1389
+ dd,
1390
+ figure,
1391
+ blockquote,
1392
+ details,
1393
+ hr,
1394
+ fieldset,
1395
+ pre,
1396
+ table,
1397
+ caption,
1398
+ menu {
1399
+ margin: 0 0 1.5rem;
1400
+ }
1401
+
1402
+ .tenamega {
1403
+ font-size: 3.6532rem;
1404
+ line-height: 4.875rem;
1405
+ }
1406
+
1407
+ .tenakilo {
1408
+ font-size: 3.2473rem;
1409
+ line-height: 4.5rem;
1410
+ }
1411
+
1412
+ .tena {
1413
+ font-size: 2.8865rem;
1414
+ line-height: 4.125rem;
1415
+ }
1416
+
1417
+ .nina {
1418
+ font-size: 2.5658rem;
1419
+ line-height: 3.375rem;
1420
+ }
1421
+
1422
+ .yotta {
1423
+ font-size: 2.2807rem;
1424
+ line-height: 3rem;
1425
+ }
1426
+
1427
+ .zetta {
1428
+ font-size: 2.0273rem;
1429
+ line-height: 3rem;
1430
+ }
1431
+
1432
+ h1,
1433
+ .exa {
1434
+ font-size: 1.802rem;
1435
+ line-height: 2.625rem;
1436
+ }
1437
+
1438
+ h2,
1439
+ .peta {
1440
+ font-size: 1.6018rem;
1441
+ line-height: 2.25rem;
1442
+ }
1443
+
1444
+ h3,
1445
+ .tera {
1446
+ font-size: 1.4238rem;
1447
+ line-height: 1.875rem;
1448
+ }
1449
+
1450
+ h4,
1451
+ .giga {
1452
+ font-size: 1.2656rem;
1453
+ line-height: 1.875rem;
1454
+ }
1455
+
1456
+ h5,
1457
+ .mega {
1458
+ font-size: 1.125rem;
1459
+ line-height: 1.5rem;
1460
+ }
1461
+
1462
+ h6,
1463
+ .kilo,
1464
+ input,
1465
+ textarea {
1466
+ font-size: 1rem;
1467
+ line-height: 1.5rem;
1468
+ }
1469
+
1470
+ small,
1471
+ .milli {
1472
+ font-size: .8889rem;
1473
+ line-height: 1.5rem;
1474
+ }
1475
+
1476
+ .micro {
1477
+ font-size: .7901rem;
1478
+ line-height: 1.5rem;
1479
+ }
1480
+
1481
+ .nano {
1482
+ font-size: .7023rem;
1483
+ line-height: 1.125rem;
1484
+ }
1485
+
1486
+ .pico {
1487
+ font-size: .6243rem;
1488
+ line-height: 1.125rem;
1489
+ }
1490
+
1491
+ ul,
1492
+ ol {
1493
+ padding-left: 0;
1494
+ }
1495
+
1496
+ ul ul,
1497
+ ol ul {
1498
+ padding-left: 1em;
1499
+ }
1500
+
1501
+ ol ol,
1502
+ ul ol {
1503
+ padding-left: 1.6em;
1504
+ }
1505
+
1506
+ .hang-punc {
1507
+ float: left;
1508
+ margin-left: -1.4em;
1509
+ text-align: right;
1510
+ width: 1.3em;
1511
+ }
1512
+
1513
+ table {
1514
+ margin-left: -.375rem;
1515
+ margin-right: -.375rem;
1516
+ width: calc(100% + .375rem + .375rem);
1517
+ }
1518
+
1519
+ input,
1520
+ option,
1521
+ select {
1522
+ height: calc(1.5rem + .1875rem + .1875rem);
1523
+ }
1524
+
1525
+ [type="color"] {
1526
+ width: calc(1.5rem + .1875rem + .1875rem);
1527
+ }
1528
+
1529
+ [type="checkbox"],
1530
+ [type="radio"] {
1531
+ display: inline-block;
1532
+ height: auto;
1533
+ }
1534
+
1535
+ .push {
1536
+ margin-bottom: 1.5rem;
1537
+ }
1538
+
1539
+ .push-none,
1540
+ .push-0 {
1541
+ margin-bottom: 0;
1542
+ }
1543
+
1544
+ .push-double,
1545
+ .push-2 {
1546
+ margin-bottom: 3rem;
1547
+ }
1548
+
1549
+ .push-three-quarters,
1550
+ .push-3-4 {
1551
+ margin-bottom: 1.125rem;
1552
+ }
1553
+
1554
+ .push-half,
1555
+ .push-1-2 {
1556
+ margin-bottom: .75rem;
1557
+ }
1558
+
1559
+ .push-quarter,
1560
+ .push-1-4 {
1561
+ margin-bottom: .375rem;
1562
+ }
1563
+
1564
+ .push-eighth,
1565
+ .push-1-8 {
1566
+ margin-bottom: .1875rem;
1567
+ }
1568
+
1569
+ .push-right-eighth,
1570
+ .push-r-1-8 {
1571
+ margin-right: .1875rem;
1572
+ }
1573
+
1574
+ .push-right-quarter,
1575
+ .push-r-1-4 {
1576
+ margin-right: .375rem;
1577
+ }
1578
+
1579
+ .push-right-half,
1580
+ .push-r-1-2 {
1581
+ margin-right: .75rem;
1582
+ }
1583
+
1584
+ .push-right-three-quarters,
1585
+ .push-r-3-4 {
1586
+ margin-right: 1.125rem;
1587
+ }
1588
+
1589
+ .push-right,
1590
+ .push-r {
1591
+ margin-right: 1.5rem;
1592
+ }
1593
+
1594
+ .pad-top,
1595
+ .pad-t {
1596
+ padding-top: 1.5rem;
1597
+ }
1598
+
1599
+ .pad-bottom,
1600
+ .pad-b {
1601
+ padding-bottom: 1.5rem;
1602
+ }
1603
+
1604
+ .pad-top-double,
1605
+ .pad-t-2 {
1606
+ padding-top: 3rem;
1607
+ }
1608
+
1609
+ .pad-bottom-double,
1610
+ .pad-b-2 {
1611
+ padding-bottom: 3rem;
1612
+ }
1613
+
1614
+ .pad-top-three-quarters,
1615
+ .pad-t-3-4 {
1616
+ padding-top: 1.125rem;
1617
+ }
1618
+
1619
+ .pad-bottom-three-quarters,
1620
+ .pad-b-3-4 {
1621
+ padding-bottom: 1.125rem;
1622
+ }
1623
+
1624
+ .pad-top-half,
1625
+ .pad-t-1-2 {
1626
+ padding-top: .75rem;
1627
+ }
1628
+
1629
+ .pad-bottom-half,
1630
+ .pad-b-1-2 {
1631
+ padding-bottom: .75rem;
1632
+ }
1633
+
1634
+ .pad-top-quarter,
1635
+ .pad-t-1-4 {
1636
+ padding-top: .375rem;
1637
+ }
1638
+
1639
+ .pad-bottom-quarter,
1640
+ .pad-b-1-4 {
1641
+ padding-bottom: .375rem;
1642
+ }
1643
+
1644
+ .pad-top-eighth,
1645
+ .pad-t-1-8 {
1646
+ padding-top: .1875rem;
1647
+ }
1648
+
1649
+ .pad-bottom-eighth,
1650
+ .pad-b-1-8 {
1651
+ padding-bottom: .1875rem;
1652
+ }
1653
+
1654
+ .island {
1655
+ padding: 1.5rem;
1656
+ }
1657
+
1658
+ .island-double,
1659
+ .island-2 {
1660
+ padding: 3rem;
1661
+ }
1662
+
1663
+ .island-three-quarters,
1664
+ .island-3-4 {
1665
+ padding: 1.125rem;
1666
+ }
1667
+
1668
+ .island-half,
1669
+ .island-1-2 {
1670
+ padding: .75rem;
1671
+ }
1672
+
1673
+ .island-quarter,
1674
+ .island-1-4,
1675
+ td,
1676
+ table th {
1677
+ padding: .375rem;
1678
+ }
1679
+
1680
+ .island-eighth,
1681
+ .island-1-8,
1682
+ input:not([type="checkbox"]),
1683
+ input:not([type="radio"]),
1684
+ textarea {
1685
+ padding: .1875rem;
1686
+ }
1687
+
1688
+ .gutter {
1689
+ padding-left: 1.5rem;
1690
+ padding-right: 1.5rem;
1691
+ }
1692
+
1693
+ .gutter-double,
1694
+ .gutter-2 {
1695
+ padding-left: 3rem;
1696
+ padding-right: 3rem;
1697
+ }
1698
+
1699
+ .gutter-three-quarters,
1700
+ .gutter-3-4 {
1701
+ padding-left: 1.125rem;
1702
+ padding-right: 1.125rem;
1703
+ }
1704
+
1705
+ .gutter-half,
1706
+ .gutter-1-2 {
1707
+ padding-left: .75rem;
1708
+ padding-right: .75rem;
1709
+ }
1710
+
1711
+ .gutter-quarter,
1712
+ .gutter-1-4,
1713
+ caption {
1714
+ padding-left: .375rem;
1715
+ padding-right: .375rem;
1716
+ }
1717
+
1718
+ .gutter-eighth,
1719
+ .gutter-1-8 {
1720
+ padding-left: .1875rem;
1721
+ padding-right: .1875rem;
1722
+ }
1723
+
1724
+ .i-1 {
1725
+ height: 1.5rem;
1726
+ width: 1.5rem;
1727
+ }
1728
+
1729
+ .i-3-4 {
1730
+ height: 1.125rem;
1731
+ width: 1.125rem;
1732
+ }
1733
+
1734
+ .i-1-2 {
1735
+ height: .75rem;
1736
+ width: .75rem;
1737
+ }
1738
+
1739
+ .i-1-4 {
1740
+ height: .375rem;
1741
+ width: .375rem;
1742
+ }
1743
+
1744
+ .i-1-8 {
1745
+ height: .1875rem;
1746
+ width: .1875rem;
1747
+ }
1748
+
1749
+ .i-1-1-2,
1750
+ .i-3-2 {
1751
+ height: 2.25rem;
1752
+ width: 2.25rem;
1753
+ }
1754
+
1755
+ .i-1-1-4,
1756
+ .i-5-4 {
1757
+ height: 1.875rem;
1758
+ width: 1.875rem;
1759
+ }
1760
+
1761
+ .i-1-3-4,
1762
+ .i-7-4 {
1763
+ height: 2.625rem;
1764
+ width: 2.625rem;
1765
+ }
1766
+
1767
+ .i-2 {
1768
+ height: 3rem;
1769
+ width: 3rem;
1770
+ }
1771
+
1772
+ select {
1773
+ padding: 0 .1875rem;
1774
+ }
1775
+
1776
+ fieldset {
1777
+ padding: .375rem 0;
1778
+
1779
+ border: 0;
1780
+ border-top: 2px solid #000;
1781
+ }
1782
+
1783
+ legend {
1784
+ padding-right: .375rem;
1785
+ }
1786
+
1787
+ }