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 @@
1
+ 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}}
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="1600" height="900" viewBox="0 0 1600 900"><title>placeholder</title><rect x="2" y="2" width="1596" height="896" fill="#e2e2e2"/><path d="M1596,4V896H4V4H1596m4-4H0V900H1600V0h0Z" fill="#666"/><line x2="1600" y2="900" fill="none" stroke="#666" stroke-miterlimit="10" stroke-width="4"/><line x1="1600" y2="900" fill="none" stroke="#666" stroke-miterlimit="10" stroke-width="4"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="800" height="800" viewBox="0 0 800 800"><title>placeholder</title><rect x="2" y="2" width="796" height="796" fill="#e2e2e2"/><path d="M796,4V796H4V4H796m4-4H0V800H800V0h0Z" fill="#666"/><line x2="800" y2="800" fill="none" stroke="#666" stroke-miterlimit="10" stroke-width="4"/><line x1="800" y2="800" fill="none" stroke="#666" stroke-miterlimit="10" stroke-width="4"/></svg>
@@ -0,0 +1,79 @@
1
+ .patternbot-brand-company {
2
+ color: var(--color-patternbot-interface-accent, --color-primary);
3
+ font-family: var(--font-patternbot-secondary), var(--font-patternbot-primary);
4
+ }
5
+
6
+ .patternbot-brand-desc * {
7
+ color: var(--color-patternbot-primary);
8
+ }
9
+
10
+ .patternbot-color-swatches {
11
+ position: relative;
12
+ }
13
+
14
+ .patternbot-color-swatches::before,
15
+ .patternbot-color-swatches::after {
16
+ content: "";
17
+ bottom: 0;
18
+ left: 0;
19
+ position: absolute;
20
+ right: 0;
21
+ top: 0;
22
+
23
+ border: 1px solid var(--color-patternbot-primary);
24
+ }
25
+
26
+ .patternbot-color-swatches::after {
27
+ bottom: 1px;
28
+ left: 1px;
29
+ right: 1px;
30
+ top: 1px;
31
+
32
+ border-color: var(--color-patternbot-opposite);
33
+ }
34
+
35
+ .patternbot-color-swatches-primary {
36
+ min-height: 16em;
37
+ }
38
+
39
+ .patternbot-color-swatches-secondary {
40
+ min-height: 8em;
41
+ }
42
+
43
+ .patternbot-color-swatches-accent {
44
+ min-height: 3em;
45
+ }
46
+
47
+ .patternbot-color-swatches-fill {
48
+ display: flex;
49
+ flex-direction: column;
50
+ }
51
+
52
+ .patternbot-color-swatches-fill > div {
53
+ flex-grow: 1;
54
+ }
55
+
56
+ .patternbot-color-swatch-labels > li {
57
+ margin-right: calc(28px + 1.2em);
58
+ }
59
+
60
+ .patternbot-color-swatch-labels-hex,
61
+ .patternbot-color-swatch-labels-rgba {
62
+ text-transform: lowercase;
63
+ }
64
+
65
+ .patternbot-color-swatch-labels * {
66
+ color: var(--color-patternbot-primary);
67
+ }
68
+
69
+ .patternbot-type-sample-large {
70
+ color: var(--color-patternbot-interface-accent, --color-primary);
71
+ }
72
+
73
+ @media only screen and (min-width: 38em) {
74
+
75
+ .patternbot-brand-desc :last-child {
76
+ margin-bottom: 0;
77
+ }
78
+
79
+ }
@@ -0,0 +1 @@
1
+ .patternbot-brand-company{color:var(--color-patternbot-interface-accent,--color-primary);font-family:var(--font-patternbot-secondary),var(--font-patternbot-primary)}.patternbot-brand-desc *{color:var(--color-patternbot-primary)}.patternbot-color-swatches{position:relative}.patternbot-color-swatches:after,.patternbot-color-swatches:before{content:"";bottom:0;left:0;position:absolute;right:0;top:0;border:1px solid var(--color-patternbot-primary)}.patternbot-color-swatches:after{bottom:1px;left:1px;right:1px;top:1px;border-color:var(--color-patternbot-opposite)}.patternbot-color-swatches-primary{min-height:16em}.patternbot-color-swatches-secondary{min-height:8em}.patternbot-color-swatches-accent{min-height:3em}.patternbot-color-swatches-fill{display:flex;flex-direction:column}.patternbot-color-swatches-fill>div{flex-grow:1}.patternbot-color-swatch-labels>li{margin-right:calc(28px + 1.2em)}.patternbot-color-swatch-labels-hex,.patternbot-color-swatch-labels-rgba{text-transform:lowercase}.patternbot-color-swatch-labels *{color:var(--color-patternbot-primary)}.patternbot-type-sample-large{color:var(--color-patternbot-interface-accent,--color-primary)}@media only screen and (min-width:38em){.patternbot-brand-desc :last-child{margin-bottom:0}}
@@ -0,0 +1,27 @@
1
+ .patternbot-grid-display {
2
+ margin: 0;
3
+ padding: 0;
4
+ display: flex;
5
+ flex-direction: row;
6
+ background-color: transparent;
7
+ list-style-type: none;
8
+ }
9
+
10
+ .patternbot-grid-display > li {
11
+ border: 2px solid var(--color-patternbot-interface-background);
12
+ }
13
+
14
+ .patternbot-grid-display-inner {
15
+ border: 2px solid var(--color-patternbot-interface-accent, --color-secondary, rgba(var(--color-patternbot-interface), var(--color-patternbot-interface), var(--color-patternbot-interface), .1));
16
+ }
17
+
18
+ .patternbot-grid-wrap {
19
+ max-width: 100%;
20
+ overflow-x: auto;
21
+ -webkit-overflow-scrolling: touch;
22
+ width: 100%;
23
+ }
24
+
25
+ .patternbot-grid-display + hr {
26
+ margin-top: 1.3rem;
27
+ }
@@ -0,0 +1 @@
1
+ .patternbot-grid-display{margin:0;padding:0;display:flex;flex-direction:row;background-color:transparent;list-style-type:none}.patternbot-grid-display>li{border:2px solid var(--color-patternbot-interface-background)}.patternbot-grid-display-inner{border:2px solid var(--color-patternbot-interface-accent,--color-secondary,rgba(var(--color-patternbot-interface),var(--color-patternbot-interface),var(--color-patternbot-interface),.1))}.patternbot-grid-wrap{max-width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch;width:100%}.patternbot-grid-display+hr{margin-top:1.3rem}
@@ -0,0 +1,41 @@
1
+ .patternbot-icon-display {
2
+ color: rgba(var(--color-patternbot-interface), var(--color-patternbot-interface), var(--color-patternbot-interface), .9);
3
+ display: flex;
4
+ flex-wrap: wrap;
5
+ }
6
+
7
+ .patternbot-icon-display > li {
8
+ border-radius: 3px;
9
+ vertical-align: top;
10
+ width: auto;
11
+ }
12
+
13
+ .patternbot-icon-display-left,
14
+ .patternbot-icon-display-right {
15
+ box-sizing: content-box;
16
+ display: inline-block;
17
+ }
18
+
19
+ .patternbot-icon-display-left {
20
+ width: 128px;
21
+ }
22
+
23
+ .patternbot-icon-display-right {
24
+ height: 128px;
25
+ width: 64px;
26
+ }
27
+
28
+ .patternbot-icon-display:not(.patternbot-icon-display-has-bg) > li:nth-child(odd) .patternbot-icon-display-left,
29
+ .patternbot-icon-display:not(.patternbot-icon-display-has-bg) > li:nth-child(even) .patternbot-icon-display-right .icon:nth-child(2) {
30
+ color: var(--color-primary, rgba(var(--color-patternbot-interface), var(--color-patternbot-interface), var(--color-patternbot-interface), .9));
31
+ }
32
+
33
+ .patternbot-icon-display:not(.patternbot-icon-display-has-bg) > li:nth-child(even) .patternbot-icon-display-left,
34
+ .patternbot-icon-display:not(.patternbot-icon-display-has-bg) > li:nth-child(odd) .patternbot-icon-display-right .icon:nth-child(2) {
35
+ color: var(--color-secondary, rgba(var(--color-patternbot-interface), var(--color-patternbot-interface), var(--color-patternbot-interface), .9));
36
+ }
37
+
38
+ .patternbot-icon-display .patternbot-tool-btn {
39
+ position: static;
40
+ transform: none;
41
+ }
@@ -0,0 +1 @@
1
+ .patternbot-icon-display{color:rgba(var(--color-patternbot-interface),var(--color-patternbot-interface),var(--color-patternbot-interface),.9);display:flex;flex-wrap:wrap}.patternbot-icon-display>li{border-radius:3px;vertical-align:top;width:auto}.patternbot-icon-display-left,.patternbot-icon-display-right{box-sizing:content-box;display:inline-block}.patternbot-icon-display-left{width:128px}.patternbot-icon-display-right{height:128px;width:64px}.patternbot-icon-display:not(.patternbot-icon-display-has-bg)>li:nth-child(2n) .patternbot-icon-display-right .icon:nth-child(2),.patternbot-icon-display:not(.patternbot-icon-display-has-bg)>li:nth-child(odd) .patternbot-icon-display-left{color:var(--color-primary,rgba(var(--color-patternbot-interface),var(--color-patternbot-interface),var(--color-patternbot-interface),.9))}.patternbot-icon-display:not(.patternbot-icon-display-has-bg)>li:nth-child(2n) .patternbot-icon-display-left,.patternbot-icon-display:not(.patternbot-icon-display-has-bg)>li:nth-child(odd) .patternbot-icon-display-right .icon:nth-child(2){color:var(--color-secondary,rgba(var(--color-patternbot-interface),var(--color-patternbot-interface),var(--color-patternbot-interface),.9))}.patternbot-icon-display .patternbot-tool-btn{position:static;transform:none}
@@ -0,0 +1,4 @@
1
+ .media-img img {
2
+ margin-right: 1em;
3
+ width: 32px;
4
+ }
@@ -0,0 +1 @@
1
+ .media-img img{margin-right:1em;width:32px}
@@ -0,0 +1,11 @@
1
+ .patternbot-vertical-spacing-classes {
2
+ display: none;
3
+ }
4
+
5
+ @media only screen and (min-width: 38em) {
6
+
7
+ .patternbot-vertical-spacing-classes {
8
+ display: block;
9
+ }
10
+
11
+ }
@@ -0,0 +1 @@
1
+ .patternbot-vertical-spacing-classes{display:none}@media only screen and (min-width:38em){.patternbot-vertical-spacing-classes{display:block}}
@@ -0,0 +1,4 @@
1
+ .patternbot-utilities-table th,
2
+ .patternbot-utilities-table td {
3
+ border-color: rgba(var(--color-patternbot-interface), var(--color-patternbot-interface), var(--color-patternbot-interface), .2);
4
+ }
@@ -0,0 +1 @@
1
+ .patternbot-utilities-table td,.patternbot-utilities-table th{border-color:rgba(var(--color-patternbot-interface),var(--color-patternbot-interface),var(--color-patternbot-interface),.2)}
@@ -0,0 +1,1175 @@
1
+ /*
2
+ Gridifier || Code released under the UNLICENSE
3
+ https://gridifier.web-dev.tools/#xs,6,0,0,0;s,6,25,0,0;m,6,38,1,1;l,6,60,1,1
4
+ */
5
+
6
+ .grid {
7
+ margin: 0;
8
+ padding: 0;
9
+ letter-spacing: -.31em;
10
+ text-rendering: optimizeSpeed;
11
+ display: -webkit-flex;
12
+ display: -ms-flexbox;
13
+ display: flex;
14
+ -webkit-flex-flow: row wrap;
15
+ -ms-flex-flow: row wrap;
16
+ flex-flow: row wrap;
17
+ }
18
+
19
+ .grid-bottom {
20
+ -webkit-align-items: flex-end;
21
+ -ms-align-items: flex-end;
22
+ align-items: flex-end;
23
+ }
24
+
25
+ .grid-middle {
26
+ -webkit-align-items: center;
27
+ -ms-align-items: center;
28
+ align-items: center;
29
+ }
30
+
31
+ .grid-stretch {
32
+ -webkit-align-items: stretch;
33
+ -ms-align-items: stretch;
34
+ align-items: stretch;
35
+ }
36
+
37
+ .opera-only :-o-prefocus,
38
+ .grid {
39
+ word-spacing: -.43em;
40
+ }
41
+
42
+ .unit {
43
+ letter-spacing: normal;
44
+ text-rendering: auto;
45
+ vertical-align: top;
46
+ word-spacing: normal;
47
+ display: inline-block;
48
+ visibility: visible;
49
+ }
50
+
51
+ .grid-bottom .unit {
52
+ vertical-align: bottom;
53
+ }
54
+
55
+ .grid-middle .unit {
56
+ vertical-align: middle;
57
+ }
58
+
59
+ [class*="unit-push-"],
60
+ [class*="unit-pull-"] {
61
+ position: relative;
62
+ }
63
+
64
+ .unit-content-distribute {
65
+ display: -ms-flexbox;
66
+ display: -webkit-flex;
67
+ display: flex;
68
+ -ms-flex-direction: column;
69
+ -webkit-flex-direction: column;
70
+ flex-direction: column;
71
+ -ms-flex-pack: justify;
72
+ -webkit-justify-content: space-between;
73
+ justify-content: space-between;
74
+ }
75
+
76
+ .unit-content-center,
77
+ .unit-content-center-vertical {
78
+ display: -webkit-flex;
79
+ display: -ms-flexbox;
80
+ display: flex;
81
+ -webkit-justify-content: center;
82
+ -ms-flex-pack: center;
83
+ justify-content: center;
84
+ -webkit-align-items: center;
85
+ -ms-flex-align: center;
86
+ align-items: center;
87
+ -webkit-align-content: center;
88
+ -ms-flex-line-pack: center;
89
+ align-content: center;
90
+ -webkit-flex-direction: column wrap;
91
+ -ms-flex-direction: column wrap;
92
+ flex-flow: column wrap;
93
+ }
94
+
95
+ .unit-content-center-horizontal {
96
+ display: -webkit-flex;
97
+ display: -ms-flexbox;
98
+ display: flex;
99
+ -webkit-justify-content: center;
100
+ -ms-flex-pack: center;
101
+ justify-content: center;
102
+ -webkit-align-items: center;
103
+ -ms-flex-align: center;
104
+ align-items: center;
105
+ -webkit-align-content: center;
106
+ -ms-flex-line-pack: center;
107
+ align-content: center;
108
+ -webkit-flex-direction: row wrap;
109
+ -ms-flex-direction: row wrap;
110
+ flex-flow: row wrap;
111
+ }
112
+
113
+ .content-fill,
114
+ .content-stretch {
115
+ -ms-flex-grow: 2;
116
+ -webkit-flex-grow: 2;
117
+ flex-grow: 2;
118
+ max-width: 100%; /* @bugfix: IE 10, 11 */
119
+ }
120
+
121
+ .content-shrink {
122
+ -ms-align-self: center;
123
+ -webkit-align-self: center;
124
+ align-self: center;
125
+ }
126
+
127
+ .unit-xs-hidden,
128
+ .xs-0 {
129
+ display: none;
130
+ visibility: hidden;
131
+ }
132
+
133
+ .unit-xs-centered {
134
+ margin: 0 auto;
135
+ }
136
+
137
+ .unit-xs-1,
138
+ .xs-1 {
139
+ display: block;
140
+ visibility: visible;
141
+ width: 100%;
142
+ }
143
+
144
+ .unit-xs-1-2,
145
+ .xs-1-2 {
146
+ width: 50%;
147
+ }
148
+
149
+ .unit-xs-1-3,
150
+ .xs-1-3 {
151
+ width: 33.3333%;
152
+ }
153
+
154
+ .unit-xs-2-3,
155
+ .xs-2-3 {
156
+ width: 66.6667%;
157
+ }
158
+
159
+ .unit-xs-1-4,
160
+ .xs-1-4 {
161
+ width: 25%;
162
+ }
163
+
164
+ .unit-xs-3-4,
165
+ .xs-3-4 {
166
+ width: 75%;
167
+ }
168
+
169
+ .unit-xs-1-5,
170
+ .xs-1-5 {
171
+ width: 20%;
172
+ }
173
+
174
+ .unit-xs-2-5,
175
+ .xs-2-5 {
176
+ width: 40%;
177
+ }
178
+
179
+ .unit-xs-3-5,
180
+ .xs-3-5 {
181
+ width: 60%;
182
+ }
183
+
184
+ .unit-xs-4-5,
185
+ .xs-4-5 {
186
+ width: 80%;
187
+ }
188
+
189
+ .unit-xs-1-6,
190
+ .xs-1-6 {
191
+ width: 16.6667%;
192
+ }
193
+
194
+ .unit-xs-5-6,
195
+ .xs-5-6 {
196
+ width: 83.3333%;
197
+ }
198
+
199
+ .unit-xs-1-2,
200
+ .xs-1-2,
201
+ .unit-xs-1-3,
202
+ .xs-1-3,
203
+ .unit-xs-2-3,
204
+ .xs-2-3,
205
+ .unit-xs-1-4,
206
+ .xs-1-4,
207
+ .unit-xs-3-4,
208
+ .xs-3-4,
209
+ .unit-xs-1-5,
210
+ .xs-1-5,
211
+ .unit-xs-2-5,
212
+ .xs-2-5,
213
+ .unit-xs-3-5,
214
+ .xs-3-5,
215
+ .unit-xs-4-5,
216
+ .xs-4-5,
217
+ .unit-xs-1-6,
218
+ .xs-1-6,
219
+ .unit-xs-5-6,
220
+ .xs-5-6 {
221
+ display: inline-block;
222
+ visibility: visible;
223
+ }
224
+
225
+ .unit-xs-1-2[class*="-content-"],
226
+ .xs-1-2[class*="-content-"],
227
+ .unit-xs-1-3[class*="-content-"],
228
+ .xs-1-3[class*="-content-"],
229
+ .unit-xs-2-3[class*="-content-"],
230
+ .xs-2-3[class*="-content-"],
231
+ .unit-xs-1-4[class*="-content-"],
232
+ .xs-1-4[class*="-content-"],
233
+ .unit-xs-3-4[class*="-content-"],
234
+ .xs-3-4[class*="-content-"],
235
+ .unit-xs-1-5[class*="-content-"],
236
+ .xs-1-5[class*="-content-"],
237
+ .unit-xs-2-5[class*="-content-"],
238
+ .xs-2-5[class*="-content-"],
239
+ .unit-xs-3-5[class*="-content-"],
240
+ .xs-3-5[class*="-content-"],
241
+ .unit-xs-4-5[class*="-content-"],
242
+ .xs-4-5[class*="-content-"],
243
+ .unit-xs-1-6[class*="-content-"],
244
+ .xs-1-6[class*="-content-"],
245
+ .unit-xs-5-6[class*="-content-"],
246
+ .xs-5-6[class*="-content-"] {
247
+ display: -webkit-flex;
248
+ display: -ms-flexbox;
249
+ display: flex;
250
+ }
251
+
252
+ .unit-xs-content-distribute,
253
+ .xs-content-distribute {
254
+ display: -ms-flexbox;
255
+ display: -webkit-flex;
256
+ display: flex;
257
+ -ms-flex-direction: column;
258
+ -webkit-flex-direction: column;
259
+ flex-direction: column;
260
+ -ms-flex-pack: justify;
261
+ -webkit-justify-content: space-between;
262
+ justify-content: space-between;
263
+ }
264
+
265
+ .unit-xs-content-center,
266
+ .unit-xs-content-center-vertical {
267
+ display: -webkit-flex;
268
+ display: -ms-flexbox;
269
+ display: flex;
270
+ -webkit-justify-content: center;
271
+ -ms-flex-pack: center;
272
+ justify-content: center;
273
+ -webkit-align-items: center;
274
+ -ms-flex-align: center;
275
+ align-items: center;
276
+ -webkit-align-content: center;
277
+ -ms-flex-line-pack: center;
278
+ align-content: center;
279
+ -webkit-flex-direction: column wrap;
280
+ -ms-flex-direction: column wrap;
281
+ flex-flow: column wrap;
282
+ }
283
+
284
+ .unit-xs-content-center-horizontal {
285
+ display: -webkit-flex;
286
+ display: -ms-flexbox;
287
+ display: flex;
288
+ -webkit-justify-content: center;
289
+ -ms-flex-pack: center;
290
+ justify-content: center;
291
+ -webkit-align-items: center;
292
+ -ms-flex-align: center;
293
+ align-items: center;
294
+ -webkit-align-content: center;
295
+ -ms-flex-line-pack: center;
296
+ align-content: center;
297
+ -webkit-flex-direction: row wrap;
298
+ -ms-flex-direction: row wrap;
299
+ flex-flow: row wrap;
300
+ }
301
+
302
+ .xs-content-fill,
303
+ .xs-content-stretch {
304
+ -ms-flex-grow: 2;
305
+ -webkit-flex-grow: 2;
306
+ flex-grow: 2;
307
+ max-width: 100%; /* @bugfix: IE 10, 11 */
308
+ }
309
+
310
+ .xs-content-shrink {
311
+ -ms-align-self: center;
312
+ -webkit-align-self: center;
313
+ align-self: center;
314
+ }
315
+
316
+ @media only screen and (min-width: 25em) {
317
+
318
+ .unit-s-hidden,
319
+ .s-0 {
320
+ display: none;
321
+ visibility: hidden;
322
+ }
323
+
324
+ .unit-s-centered {
325
+ margin: 0 auto;
326
+ }
327
+
328
+ .unit-s-1,
329
+ .s-1 {
330
+ display: block;
331
+ visibility: visible;
332
+ width: 100%;
333
+ }
334
+
335
+ .unit-s-1-2,
336
+ .s-1-2 {
337
+ width: 50%;
338
+ }
339
+
340
+ .unit-s-1-3,
341
+ .s-1-3 {
342
+ width: 33.3333%;
343
+ }
344
+
345
+ .unit-s-2-3,
346
+ .s-2-3 {
347
+ width: 66.6667%;
348
+ }
349
+
350
+ .unit-s-1-4,
351
+ .s-1-4 {
352
+ width: 25%;
353
+ }
354
+
355
+ .unit-s-3-4,
356
+ .s-3-4 {
357
+ width: 75%;
358
+ }
359
+
360
+ .unit-s-1-5,
361
+ .s-1-5 {
362
+ width: 20%;
363
+ }
364
+
365
+ .unit-s-2-5,
366
+ .s-2-5 {
367
+ width: 40%;
368
+ }
369
+
370
+ .unit-s-3-5,
371
+ .s-3-5 {
372
+ width: 60%;
373
+ }
374
+
375
+ .unit-s-4-5,
376
+ .s-4-5 {
377
+ width: 80%;
378
+ }
379
+
380
+ .unit-s-1-6,
381
+ .s-1-6 {
382
+ width: 16.6667%;
383
+ }
384
+
385
+ .unit-s-5-6,
386
+ .s-5-6 {
387
+ width: 83.3333%;
388
+ }
389
+
390
+ .unit-s-1-2,
391
+ .s-1-2,
392
+ .unit-s-1-3,
393
+ .s-1-3,
394
+ .unit-s-2-3,
395
+ .s-2-3,
396
+ .unit-s-1-4,
397
+ .s-1-4,
398
+ .unit-s-3-4,
399
+ .s-3-4,
400
+ .unit-s-1-5,
401
+ .s-1-5,
402
+ .unit-s-2-5,
403
+ .s-2-5,
404
+ .unit-s-3-5,
405
+ .s-3-5,
406
+ .unit-s-4-5,
407
+ .s-4-5,
408
+ .unit-s-1-6,
409
+ .s-1-6,
410
+ .unit-s-5-6,
411
+ .s-5-6 {
412
+ display: inline-block;
413
+ visibility: visible;
414
+ }
415
+
416
+ .unit-s-1-2[class*="-content-"],
417
+ .s-1-2[class*="-content-"],
418
+ .unit-s-1-3[class*="-content-"],
419
+ .s-1-3[class*="-content-"],
420
+ .unit-s-2-3[class*="-content-"],
421
+ .s-2-3[class*="-content-"],
422
+ .unit-s-1-4[class*="-content-"],
423
+ .s-1-4[class*="-content-"],
424
+ .unit-s-3-4[class*="-content-"],
425
+ .s-3-4[class*="-content-"],
426
+ .unit-s-1-5[class*="-content-"],
427
+ .s-1-5[class*="-content-"],
428
+ .unit-s-2-5[class*="-content-"],
429
+ .s-2-5[class*="-content-"],
430
+ .unit-s-3-5[class*="-content-"],
431
+ .s-3-5[class*="-content-"],
432
+ .unit-s-4-5[class*="-content-"],
433
+ .s-4-5[class*="-content-"],
434
+ .unit-s-1-6[class*="-content-"],
435
+ .s-1-6[class*="-content-"],
436
+ .unit-s-5-6[class*="-content-"],
437
+ .s-5-6[class*="-content-"] {
438
+ display: -webkit-flex;
439
+ display: -ms-flexbox;
440
+ display: flex;
441
+ }
442
+
443
+ .unit-s-content-distribute,
444
+ .s-content-distribute {
445
+ display: -ms-flexbox;
446
+ display: -webkit-flex;
447
+ display: flex;
448
+ -ms-flex-direction: column;
449
+ -webkit-flex-direction: column;
450
+ flex-direction: column;
451
+ -ms-flex-pack: justify;
452
+ -webkit-justify-content: space-between;
453
+ justify-content: space-between;
454
+ }
455
+
456
+ .unit-s-content-center,
457
+ .unit-s-content-center-vertical {
458
+ display: -webkit-flex;
459
+ display: -ms-flexbox;
460
+ display: flex;
461
+ -webkit-justify-content: center;
462
+ -ms-flex-pack: center;
463
+ justify-content: center;
464
+ -webkit-align-items: center;
465
+ -ms-flex-align: center;
466
+ align-items: center;
467
+ -webkit-align-content: center;
468
+ -ms-flex-line-pack: center;
469
+ align-content: center;
470
+ -webkit-flex-direction: column wrap;
471
+ -ms-flex-direction: column wrap;
472
+ flex-flow: column wrap;
473
+ }
474
+
475
+ .unit-s-content-center-horizontal {
476
+ display: -webkit-flex;
477
+ display: -ms-flexbox;
478
+ display: flex;
479
+ -webkit-justify-content: center;
480
+ -ms-flex-pack: center;
481
+ justify-content: center;
482
+ -webkit-align-items: center;
483
+ -ms-flex-align: center;
484
+ align-items: center;
485
+ -webkit-align-content: center;
486
+ -ms-flex-line-pack: center;
487
+ align-content: center;
488
+ -webkit-flex-direction: row wrap;
489
+ -ms-flex-direction: row wrap;
490
+ flex-flow: row wrap;
491
+ }
492
+
493
+ .s-content-fill,
494
+ .s-content-stretch {
495
+ -ms-flex-grow: 2;
496
+ -webkit-flex-grow: 2;
497
+ flex-grow: 2;
498
+ max-width: 100%; /* @bugfix: IE 10, 11 */
499
+ }
500
+
501
+ .s-content-shrink {
502
+ -ms-align-self: center;
503
+ -webkit-align-self: center;
504
+ align-self: center;
505
+ }
506
+
507
+ }
508
+
509
+ @media only screen and (min-width: 38em) {
510
+
511
+ .unit-m-hidden,
512
+ .m-0 {
513
+ display: none;
514
+ visibility: hidden;
515
+ }
516
+
517
+ .unit-m-centered {
518
+ margin: 0 auto;
519
+ }
520
+
521
+ .unit-m-1,
522
+ .m-1 {
523
+ display: block;
524
+ visibility: visible;
525
+ width: 100%;
526
+ }
527
+
528
+ .unit-offset-m-0 {
529
+ margin-left: 0;
530
+ }
531
+
532
+ .unit-push-m-0,
533
+ .unit-pull-m-0 {
534
+ left: 0;
535
+ }
536
+
537
+ .unit-m-1-2,
538
+ .m-1-2 {
539
+ width: 50%;
540
+ }
541
+
542
+ .unit-offset-m-1-2 {
543
+ margin-left: 50%;
544
+ }
545
+
546
+ .unit-push-m-1-2 {
547
+ left: 50%;
548
+ }
549
+
550
+ .unit-pull-m-1-2 {
551
+ left: -50%;
552
+ }
553
+
554
+ .unit-m-1-3,
555
+ .m-1-3 {
556
+ width: 33.3333%;
557
+ }
558
+
559
+ .unit-offset-m-1-3 {
560
+ margin-left: 33.3333%;
561
+ }
562
+
563
+ .unit-push-m-1-3 {
564
+ left: 33.3333%;
565
+ }
566
+
567
+ .unit-pull-m-1-3 {
568
+ left: -33.3333%;
569
+ }
570
+
571
+ .unit-m-2-3,
572
+ .m-2-3 {
573
+ width: 66.6667%;
574
+ }
575
+
576
+ .unit-offset-m-2-3 {
577
+ margin-left: 66.6667%;
578
+ }
579
+
580
+ .unit-push-m-2-3 {
581
+ left: 66.6667%;
582
+ }
583
+
584
+ .unit-pull-m-2-3 {
585
+ left: -66.6667%;
586
+ }
587
+
588
+ .unit-m-1-4,
589
+ .m-1-4 {
590
+ width: 25%;
591
+ }
592
+
593
+ .unit-offset-m-1-4 {
594
+ margin-left: 25%;
595
+ }
596
+
597
+ .unit-push-m-1-4 {
598
+ left: 25%;
599
+ }
600
+
601
+ .unit-pull-m-1-4 {
602
+ left: -25%;
603
+ }
604
+
605
+ .unit-m-3-4,
606
+ .m-3-4 {
607
+ width: 75%;
608
+ }
609
+
610
+ .unit-offset-m-3-4 {
611
+ margin-left: 75%;
612
+ }
613
+
614
+ .unit-push-m-3-4 {
615
+ left: 75%;
616
+ }
617
+
618
+ .unit-pull-m-3-4 {
619
+ left: -75%;
620
+ }
621
+
622
+ .unit-m-1-5,
623
+ .m-1-5 {
624
+ width: 20%;
625
+ }
626
+
627
+ .unit-offset-m-1-5 {
628
+ margin-left: 20%;
629
+ }
630
+
631
+ .unit-push-m-1-5 {
632
+ left: 20%;
633
+ }
634
+
635
+ .unit-pull-m-1-5 {
636
+ left: -20%;
637
+ }
638
+
639
+ .unit-m-2-5,
640
+ .m-2-5 {
641
+ width: 40%;
642
+ }
643
+
644
+ .unit-offset-m-2-5 {
645
+ margin-left: 40%;
646
+ }
647
+
648
+ .unit-push-m-2-5 {
649
+ left: 40%;
650
+ }
651
+
652
+ .unit-pull-m-2-5 {
653
+ left: -40%;
654
+ }
655
+
656
+ .unit-m-3-5,
657
+ .m-3-5 {
658
+ width: 60%;
659
+ }
660
+
661
+ .unit-offset-m-3-5 {
662
+ margin-left: 60%;
663
+ }
664
+
665
+ .unit-push-m-3-5 {
666
+ left: 60%;
667
+ }
668
+
669
+ .unit-pull-m-3-5 {
670
+ left: -60%;
671
+ }
672
+
673
+ .unit-m-4-5,
674
+ .m-4-5 {
675
+ width: 80%;
676
+ }
677
+
678
+ .unit-offset-m-4-5 {
679
+ margin-left: 80%;
680
+ }
681
+
682
+ .unit-push-m-4-5 {
683
+ left: 80%;
684
+ }
685
+
686
+ .unit-pull-m-4-5 {
687
+ left: -80%;
688
+ }
689
+
690
+ .unit-m-1-6,
691
+ .m-1-6 {
692
+ width: 16.6667%;
693
+ }
694
+
695
+ .unit-offset-m-1-6 {
696
+ margin-left: 16.6667%;
697
+ }
698
+
699
+ .unit-push-m-1-6 {
700
+ left: 16.6667%;
701
+ }
702
+
703
+ .unit-pull-m-1-6 {
704
+ left: -16.6667%;
705
+ }
706
+
707
+ .unit-m-5-6,
708
+ .m-5-6 {
709
+ width: 83.3333%;
710
+ }
711
+
712
+ .unit-offset-m-5-6 {
713
+ margin-left: 83.3333%;
714
+ }
715
+
716
+ .unit-push-m-5-6 {
717
+ left: 83.3333%;
718
+ }
719
+
720
+ .unit-pull-m-5-6 {
721
+ left: -83.3333%;
722
+ }
723
+
724
+ .unit-m-1-2,
725
+ .m-1-2,
726
+ .unit-m-1-3,
727
+ .m-1-3,
728
+ .unit-m-2-3,
729
+ .m-2-3,
730
+ .unit-m-1-4,
731
+ .m-1-4,
732
+ .unit-m-3-4,
733
+ .m-3-4,
734
+ .unit-m-1-5,
735
+ .m-1-5,
736
+ .unit-m-2-5,
737
+ .m-2-5,
738
+ .unit-m-3-5,
739
+ .m-3-5,
740
+ .unit-m-4-5,
741
+ .m-4-5,
742
+ .unit-m-1-6,
743
+ .m-1-6,
744
+ .unit-m-5-6,
745
+ .m-5-6 {
746
+ display: inline-block;
747
+ visibility: visible;
748
+ }
749
+
750
+ .unit-m-1-2[class*="-content-"],
751
+ .m-1-2[class*="-content-"],
752
+ .unit-m-1-3[class*="-content-"],
753
+ .m-1-3[class*="-content-"],
754
+ .unit-m-2-3[class*="-content-"],
755
+ .m-2-3[class*="-content-"],
756
+ .unit-m-1-4[class*="-content-"],
757
+ .m-1-4[class*="-content-"],
758
+ .unit-m-3-4[class*="-content-"],
759
+ .m-3-4[class*="-content-"],
760
+ .unit-m-1-5[class*="-content-"],
761
+ .m-1-5[class*="-content-"],
762
+ .unit-m-2-5[class*="-content-"],
763
+ .m-2-5[class*="-content-"],
764
+ .unit-m-3-5[class*="-content-"],
765
+ .m-3-5[class*="-content-"],
766
+ .unit-m-4-5[class*="-content-"],
767
+ .m-4-5[class*="-content-"],
768
+ .unit-m-1-6[class*="-content-"],
769
+ .m-1-6[class*="-content-"],
770
+ .unit-m-5-6[class*="-content-"],
771
+ .m-5-6[class*="-content-"] {
772
+ display: -webkit-flex;
773
+ display: -ms-flexbox;
774
+ display: flex;
775
+ }
776
+
777
+ .unit-m-content-distribute,
778
+ .m-content-distribute {
779
+ display: -ms-flexbox;
780
+ display: -webkit-flex;
781
+ display: flex;
782
+ -ms-flex-direction: column;
783
+ -webkit-flex-direction: column;
784
+ flex-direction: column;
785
+ -ms-flex-pack: justify;
786
+ -webkit-justify-content: space-between;
787
+ justify-content: space-between;
788
+ }
789
+
790
+ .unit-m-content-center,
791
+ .unit-m-content-center-vertical {
792
+ display: -webkit-flex;
793
+ display: -ms-flexbox;
794
+ display: flex;
795
+ -webkit-justify-content: center;
796
+ -ms-flex-pack: center;
797
+ justify-content: center;
798
+ -webkit-align-items: center;
799
+ -ms-flex-align: center;
800
+ align-items: center;
801
+ -webkit-align-content: center;
802
+ -ms-flex-line-pack: center;
803
+ align-content: center;
804
+ -webkit-flex-direction: column wrap;
805
+ -ms-flex-direction: column wrap;
806
+ flex-flow: column wrap;
807
+ }
808
+
809
+ .unit-m-content-center-horizontal {
810
+ display: -webkit-flex;
811
+ display: -ms-flexbox;
812
+ display: flex;
813
+ -webkit-justify-content: center;
814
+ -ms-flex-pack: center;
815
+ justify-content: center;
816
+ -webkit-align-items: center;
817
+ -ms-flex-align: center;
818
+ align-items: center;
819
+ -webkit-align-content: center;
820
+ -ms-flex-line-pack: center;
821
+ align-content: center;
822
+ -webkit-flex-direction: row wrap;
823
+ -ms-flex-direction: row wrap;
824
+ flex-flow: row wrap;
825
+ }
826
+
827
+ .m-content-fill,
828
+ .m-content-stretch {
829
+ -ms-flex-grow: 2;
830
+ -webkit-flex-grow: 2;
831
+ flex-grow: 2;
832
+ max-width: 100%; /* @bugfix: IE 10, 11 */
833
+ }
834
+
835
+ .m-content-shrink {
836
+ -ms-align-self: center;
837
+ -webkit-align-self: center;
838
+ align-self: center;
839
+ }
840
+
841
+ }
842
+
843
+ @media only screen and (min-width: 60em) {
844
+
845
+ .unit-l-hidden,
846
+ .l-0 {
847
+ display: none;
848
+ visibility: hidden;
849
+ }
850
+
851
+ .unit-l-centered {
852
+ margin: 0 auto;
853
+ }
854
+
855
+ .unit-l-1,
856
+ .l-1 {
857
+ display: block;
858
+ visibility: visible;
859
+ width: 100%;
860
+ }
861
+
862
+ .unit-offset-l-0 {
863
+ margin-left: 0;
864
+ }
865
+
866
+ .unit-push-l-0,
867
+ .unit-pull-l-0 {
868
+ left: 0;
869
+ }
870
+
871
+ .unit-l-1-2,
872
+ .l-1-2 {
873
+ width: 50%;
874
+ }
875
+
876
+ .unit-offset-l-1-2 {
877
+ margin-left: 50%;
878
+ }
879
+
880
+ .unit-push-l-1-2 {
881
+ left: 50%;
882
+ }
883
+
884
+ .unit-pull-l-1-2 {
885
+ left: -50%;
886
+ }
887
+
888
+ .unit-l-1-3,
889
+ .l-1-3 {
890
+ width: 33.3333%;
891
+ }
892
+
893
+ .unit-offset-l-1-3 {
894
+ margin-left: 33.3333%;
895
+ }
896
+
897
+ .unit-push-l-1-3 {
898
+ left: 33.3333%;
899
+ }
900
+
901
+ .unit-pull-l-1-3 {
902
+ left: -33.3333%;
903
+ }
904
+
905
+ .unit-l-2-3,
906
+ .l-2-3 {
907
+ width: 66.6667%;
908
+ }
909
+
910
+ .unit-offset-l-2-3 {
911
+ margin-left: 66.6667%;
912
+ }
913
+
914
+ .unit-push-l-2-3 {
915
+ left: 66.6667%;
916
+ }
917
+
918
+ .unit-pull-l-2-3 {
919
+ left: -66.6667%;
920
+ }
921
+
922
+ .unit-l-1-4,
923
+ .l-1-4 {
924
+ width: 25%;
925
+ }
926
+
927
+ .unit-offset-l-1-4 {
928
+ margin-left: 25%;
929
+ }
930
+
931
+ .unit-push-l-1-4 {
932
+ left: 25%;
933
+ }
934
+
935
+ .unit-pull-l-1-4 {
936
+ left: -25%;
937
+ }
938
+
939
+ .unit-l-3-4,
940
+ .l-3-4 {
941
+ width: 75%;
942
+ }
943
+
944
+ .unit-offset-l-3-4 {
945
+ margin-left: 75%;
946
+ }
947
+
948
+ .unit-push-l-3-4 {
949
+ left: 75%;
950
+ }
951
+
952
+ .unit-pull-l-3-4 {
953
+ left: -75%;
954
+ }
955
+
956
+ .unit-l-1-5,
957
+ .l-1-5 {
958
+ width: 20%;
959
+ }
960
+
961
+ .unit-offset-l-1-5 {
962
+ margin-left: 20%;
963
+ }
964
+
965
+ .unit-push-l-1-5 {
966
+ left: 20%;
967
+ }
968
+
969
+ .unit-pull-l-1-5 {
970
+ left: -20%;
971
+ }
972
+
973
+ .unit-l-2-5,
974
+ .l-2-5 {
975
+ width: 40%;
976
+ }
977
+
978
+ .unit-offset-l-2-5 {
979
+ margin-left: 40%;
980
+ }
981
+
982
+ .unit-push-l-2-5 {
983
+ left: 40%;
984
+ }
985
+
986
+ .unit-pull-l-2-5 {
987
+ left: -40%;
988
+ }
989
+
990
+ .unit-l-3-5,
991
+ .l-3-5 {
992
+ width: 60%;
993
+ }
994
+
995
+ .unit-offset-l-3-5 {
996
+ margin-left: 60%;
997
+ }
998
+
999
+ .unit-push-l-3-5 {
1000
+ left: 60%;
1001
+ }
1002
+
1003
+ .unit-pull-l-3-5 {
1004
+ left: -60%;
1005
+ }
1006
+
1007
+ .unit-l-4-5,
1008
+ .l-4-5 {
1009
+ width: 80%;
1010
+ }
1011
+
1012
+ .unit-offset-l-4-5 {
1013
+ margin-left: 80%;
1014
+ }
1015
+
1016
+ .unit-push-l-4-5 {
1017
+ left: 80%;
1018
+ }
1019
+
1020
+ .unit-pull-l-4-5 {
1021
+ left: -80%;
1022
+ }
1023
+
1024
+ .unit-l-1-6,
1025
+ .l-1-6 {
1026
+ width: 16.6667%;
1027
+ }
1028
+
1029
+ .unit-offset-l-1-6 {
1030
+ margin-left: 16.6667%;
1031
+ }
1032
+
1033
+ .unit-push-l-1-6 {
1034
+ left: 16.6667%;
1035
+ }
1036
+
1037
+ .unit-pull-l-1-6 {
1038
+ left: -16.6667%;
1039
+ }
1040
+
1041
+ .unit-l-5-6,
1042
+ .l-5-6 {
1043
+ width: 83.3333%;
1044
+ }
1045
+
1046
+ .unit-offset-l-5-6 {
1047
+ margin-left: 83.3333%;
1048
+ }
1049
+
1050
+ .unit-push-l-5-6 {
1051
+ left: 83.3333%;
1052
+ }
1053
+
1054
+ .unit-pull-l-5-6 {
1055
+ left: -83.3333%;
1056
+ }
1057
+
1058
+ .unit-l-1-2,
1059
+ .l-1-2,
1060
+ .unit-l-1-3,
1061
+ .l-1-3,
1062
+ .unit-l-2-3,
1063
+ .l-2-3,
1064
+ .unit-l-1-4,
1065
+ .l-1-4,
1066
+ .unit-l-3-4,
1067
+ .l-3-4,
1068
+ .unit-l-1-5,
1069
+ .l-1-5,
1070
+ .unit-l-2-5,
1071
+ .l-2-5,
1072
+ .unit-l-3-5,
1073
+ .l-3-5,
1074
+ .unit-l-4-5,
1075
+ .l-4-5,
1076
+ .unit-l-1-6,
1077
+ .l-1-6,
1078
+ .unit-l-5-6,
1079
+ .l-5-6 {
1080
+ display: inline-block;
1081
+ visibility: visible;
1082
+ }
1083
+
1084
+ .unit-l-1-2[class*="-content-"],
1085
+ .l-1-2[class*="-content-"],
1086
+ .unit-l-1-3[class*="-content-"],
1087
+ .l-1-3[class*="-content-"],
1088
+ .unit-l-2-3[class*="-content-"],
1089
+ .l-2-3[class*="-content-"],
1090
+ .unit-l-1-4[class*="-content-"],
1091
+ .l-1-4[class*="-content-"],
1092
+ .unit-l-3-4[class*="-content-"],
1093
+ .l-3-4[class*="-content-"],
1094
+ .unit-l-1-5[class*="-content-"],
1095
+ .l-1-5[class*="-content-"],
1096
+ .unit-l-2-5[class*="-content-"],
1097
+ .l-2-5[class*="-content-"],
1098
+ .unit-l-3-5[class*="-content-"],
1099
+ .l-3-5[class*="-content-"],
1100
+ .unit-l-4-5[class*="-content-"],
1101
+ .l-4-5[class*="-content-"],
1102
+ .unit-l-1-6[class*="-content-"],
1103
+ .l-1-6[class*="-content-"],
1104
+ .unit-l-5-6[class*="-content-"],
1105
+ .l-5-6[class*="-content-"] {
1106
+ display: -webkit-flex;
1107
+ display: -ms-flexbox;
1108
+ display: flex;
1109
+ }
1110
+
1111
+ .unit-l-content-distribute,
1112
+ .l-content-distribute {
1113
+ display: -ms-flexbox;
1114
+ display: -webkit-flex;
1115
+ display: flex;
1116
+ -ms-flex-direction: column;
1117
+ -webkit-flex-direction: column;
1118
+ flex-direction: column;
1119
+ -ms-flex-pack: justify;
1120
+ -webkit-justify-content: space-between;
1121
+ justify-content: space-between;
1122
+ }
1123
+
1124
+ .unit-l-content-center,
1125
+ .unit-l-content-center-vertical {
1126
+ display: -webkit-flex;
1127
+ display: -ms-flexbox;
1128
+ display: flex;
1129
+ -webkit-justify-content: center;
1130
+ -ms-flex-pack: center;
1131
+ justify-content: center;
1132
+ -webkit-align-items: center;
1133
+ -ms-flex-align: center;
1134
+ align-items: center;
1135
+ -webkit-align-content: center;
1136
+ -ms-flex-line-pack: center;
1137
+ align-content: center;
1138
+ -webkit-flex-direction: column wrap;
1139
+ -ms-flex-direction: column wrap;
1140
+ flex-flow: column wrap;
1141
+ }
1142
+
1143
+ .unit-l-content-center-horizontal {
1144
+ display: -webkit-flex;
1145
+ display: -ms-flexbox;
1146
+ display: flex;
1147
+ -webkit-justify-content: center;
1148
+ -ms-flex-pack: center;
1149
+ justify-content: center;
1150
+ -webkit-align-items: center;
1151
+ -ms-flex-align: center;
1152
+ align-items: center;
1153
+ -webkit-align-content: center;
1154
+ -ms-flex-line-pack: center;
1155
+ align-content: center;
1156
+ -webkit-flex-direction: row wrap;
1157
+ -ms-flex-direction: row wrap;
1158
+ flex-flow: row wrap;
1159
+ }
1160
+
1161
+ .l-content-fill,
1162
+ .l-content-stretch {
1163
+ -ms-flex-grow: 2;
1164
+ -webkit-flex-grow: 2;
1165
+ flex-grow: 2;
1166
+ max-width: 100%; /* @bugfix: IE 10, 11 */
1167
+ }
1168
+
1169
+ .l-content-shrink {
1170
+ -ms-align-self: center;
1171
+ -webkit-align-self: center;
1172
+ align-self: center;
1173
+ }
1174
+
1175
+ }