[
  {
    "path": ".gitignore",
    "content": ".DS_Store\n.sass-cache\nstylesheets/.sass-cache"
  },
  {
    "path": "LICENSE",
    "content": "The MIT License\n\nCopyright (c) 2014 Jeff Schram (Crush & Lovely)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE."
  },
  {
    "path": "README.md",
    "content": "![Skyline](http://skyline.is/avatar-7aab8b54.png)\n\n# Skyline\nEvolving CSS Architecture\n\n### Introduction\nSkyline is a starting point for building custom CSS frameworks. The starter kit provides a solid CSS architecture that acts as a scaffolding to support your unique design system. It promotes object-oriented CSS, written in SCSS using BEM notation.\n\nLearn more at http://skyline.is\n\nTake a look at the example pages, with the initial starter styles at [http://crushlovely.github.io/skyline](http://crushlovely.github.io/skyline)\n\n### Credits\nDeveloped by the [Crush & Lovely](http://crushlovely.com) Engineering Team\n* Jeff Schram / [@jeffschram](http://twitter.com/jeffschram) / [jeffschram.com](http://jeffschram.com)\n* with Adam Becker, Jacob Fentress, & Ryan Buttrey\n\nFeel free to contact Jeff on twitter [@jeffschram](http://twitter.com/jeffschram) with questions, comments, etc. And issues and pull requests are always welcome.\n\n\n### Setup\nWe wanted to keep the starter files as lean as possible. This isn't a self-contained app, it has demo images, example HTML, and the Skyline SCSS files in the CSS folder. You'll likely copy the SCSS files into your own app, and use the example HTML files as guides to mark up your own pages.\n\n```\n├── css\n|   ├── base\n|       ├── variables, resets, mixins, global assets like fonts\n|   ├── elements\n|       ├── styles for base elements (p, ul, img, form, etc.)\n|   ├── layout\n|       ├── grids, widths, utilities, etc.\n|   ├── modules\n|       ├── styles for objects/modules you create (.site-header, .hero, .page, .bio, .site-footer, etc.)\n|   ├── README.md (credits and info about Skyline SCSS)\n|\n|   ├── screen.scss (the manifest file that pulls in all the partials and compiles into screen.css)\n|\n├── images\n|   ├── (placeholder images are here for example pages)\n|\n├── example-forms.html\n|\n├── example-grids.html\n|\n├── example-modules.html\n|\n├── index.html\n|\n├── README.md\n\n```\n\n### Skyline's architecture is composed of 4 layers.\nBase contains global settings, variables, resets, and mixins. These make up the foundation of your CSS.\n\nElements contains all the global styling for basic stand-alone elements; such as links, quotes, tables, and text.\n\nLayout contains structural helper classes like .container, which restricts content to a consistent max-width, and a responsive grid system as well.\n\nModules are custom-made components that are used throughout your site. These include global modules like the site header and footer, and other reusable modules like alerts and heroes.\n\n### See it in action\nYou can view the example pages in a browser, make sure you're compiling the SCSS if you want to see any changes you've made to the Skyline files reflected in the examples.\n\n### Documentation\nExtensive docs are in the works, but not yet released. However, Skyline makes it easy by adding detailed documentation in the comments of the scss partials themselves. Descriptions are right next to the actual code, making it simple to learn how it works.\n\n## Copyright\nCopyright (c) 2014 Jeff Schram (Crush & Lovely). See LICENSE for further details.\n"
  },
  {
    "path": "css/README.md",
    "content": "\nBUILT WITH SKYLINE: EVOLVING CSS ARCHITECTURE\n=========================================================\n\n\n\nSKYLINE CREATED BY CRUSH & LOVELY ENGINEERING\n---------------------------------------------------------\n\nJeff Schram         Adam Becker\n@jeffschram         @adambbecker  \njeffschram.com      adambbecker.com\n\n\nJacob Fentress      Ryan Buttrey\n@jfentress          @ryanbuttrey\njacobfentress.com   ryanbuttrey.com\n\n\n\n\nCOLOPHON & GUIDELINES\n---------------------------------------------------------\n\nSkyline is an object-oriented CSS architecture system\nwritten in SCSS with BEM notation and is heavily inspired\nby the concepts found in SMACCS, ITCSS, Bootstrap, &\nAtomic Design.\n\n\n\n\nADDITIONAL CREDITS, INSPIRATION & SHOUT OUTS\n---------------------------------------------------------\n\nHarry Roberts       Chris Coyier        Brad Frost\n@csswizardry        @crishcoyier        @bradfrost\ncsswizardry.com     css-tricks.com      patternlab.io\ninuitcss.com        codepen.io          bradfrostweb.com\n\nJonathan Snook      Nicole Sullivan\n@snook              @stubbornella\nsmaccs.com          stubbornella.org\n\n- For some mixins, naming conventions and OOCSS concepts\n- Check these guys out and learn from their awesomeness\n\n\nNicolas Gallagher\nhttp://nicolasgallagher.com\nhttp://necolas.github.io/normalize.css/\n\n- For the reset\n\n\nHTML5 Boilerplate (@h5bp)\nhtml5boilerplate.com\n\n- For the print stylesheet\n\n\nTwitter Bootstrap (@twbootstrap)\ntwitter.github.com/bootstrap\n\n- For some component ideas, naming conventions and javascript\n\n\n\nQUICK NOTE\n---------------------------------------------------------\n\nA quick note on navigating through the project files:\nWe are using @waypoints to allow you to easily search\nfor certain sections. For instance, to get to the\nTable Of Contents (or toc) just search for \"@toc\"\n"
  },
  {
    "path": "css/base/_dev-helpers.scss",
    "content": "/**\n\n  @dev helpers\n--------------------------------------------------------\n  base/_dev-helpers.scss\n--------------------------------------------------------\n\n  Dev helpers highlight elements and/or show information\n  about the site and its current state (breakpoints, etc.)\n\n  These are made active by adding classes to the HTML\n  element. A JS system to toggle these classes is in\n  the works. \n\n  This partial requires:\n  * base/_vars.scss\n  * base/_mixin-breakpoints.scss\n\n-------------------------------------------------------- */\n\n\n\n\n\n// Dev configuration\n// --------------------------------------------------------\n//\n// Define color variables\n//\n$dev__color__default: $color__grey;\n$dev__color__xs: $color__sky-blue;\n$dev__color__sm: $color__green;\n$dev__color__md: $color__salmon;\n$dev__color__lg: $color__blue;\n$dev__color__xl: $color__purple;\n$dev__color__xxl: $color__brown;\n//\n// Define background opacity \n$dev__bg-opacity: .25;\n\n\n\n/* @highlight elements at breakpoint\n--------------------------------------------------------\n  \n  Highlight an element at certain breakpoints by changing\n  its color;\n\n  Add .dev--highlight to the HTML element to enable this.\n\n  Example: Highlight a title at MD breakpoint\n  <h1 class=\"md-highlight\">I will change color at MD breakpoint</h1>\n\n-------------------------------------------------------- */\n\n.dev--highlight-elements {\n  @include bp-at-least($breakpoint__xs)  { \n    [class*=\"-highlight\"] { color: inherit; } \n    .xs-highlight { color: $dev__color__xs; } \n  }\n  @include bp-at-least($breakpoint__sm)  { \n    [class*=\"-highlight\"] { color: inherit; } \n    .sm-highlight { color: $dev__color__sm; } \n  }\n  @include bp-at-least($breakpoint__md)  { \n    [class*=\"-highlight\"] { color: inherit; } \n    .md-highlight { color: $dev__color__md; } \n  }\n  @include bp-at-least($breakpoint__lg)  { \n    [class*=\"-highlight\"] { color: inherit; } \n    .lg-highlight { color: $dev__color__lg; } \n  }\n  @include bp-at-least($breakpoint__xl)  { \n    [class*=\"-highlight\"] { color: inherit; } \n    .xl-highlight { color: $color__purple; } \n  }\n  @include bp-at-least($breakpoint__xxl) { \n    [class*=\"-highlight\"] { color: inherit; } \n    .xxl-highlight { color: $dev__color__xxl; } \n  }\n}\n\n\n\n\n\n/* @highlight grids in dev mode\n--------------------------------------------------------\n  \n  Indicate grids using responsive widths at certain breakpoints.\n\n  Add .dev--grids to the HTML element to enable this.\n\n  No extra classes are needed on the grids themselves.\n\n-------------------------------------------------------- */\n\n.dev--highlight-grids {  \n  // Grids\n  //\n  .g, .grid {\n    > * {\n      min-height: 4em;\n      background: rgba(193, 199, 208, .5);\n      border: 1px solid rgba(193, 199, 208, .5);\n    }\n    @include bp-at-least($breakpoint__xs) {\n      &[class*=\"xs-\"] > * {\n        border-color: $dev__color__xs;\n        background: rgba($dev__color__xs, $dev__bg-opacity);\n      }\n    }\n    @include bp-at-least($breakpoint__sm) {\n      &[class*=\"sm-\"] > * {\n        border-color: $dev__color__sm;\n        background: rgba($dev__color__sm, $dev__bg-opacity);\n      }\n    }\n    @include bp-at-least($breakpoint__md) {\n      &[class*=\"md-\"] > * {\n        border-color: $dev__color__md;\n        background: rgba($dev__color__md, $dev__bg-opacity);      \n      }\n    }\n    @include bp-at-least($breakpoint__lg) {\n      &[class*=\"lg-\"] > * {\n        border-color: $dev__color__lg;\n        background: rgba($dev__color__lg, $dev__bg-opacity);\n      }\n    }\n    @include bp-at-least($breakpoint__xl) {\n      &[class*=\"xl-\"] > * {\n        border-color: $color__purple;\n        background: rgba($color__purple, $dev__bg-opacity);\n      }\n    }\n    @include bp-at-least($breakpoint__xxl) {\n      &[class*=\"xxl-\"] > * {\n        border-color: $dev__color__xxl;\n        background: rgba($dev__color__xxl, $dev__bg-opacity);\n      }\n    }\n  }\n\n  // Ups\n  .gw, .grid-wrap {\n    @include bp-at-least($breakpoint__xs) {\n      &[class*=\"xs-\"][class*=\"-up\"] > * > * {\n        border-color: $dev__color__xs;\n        background: rgba($dev__color__xs, $dev__bg-opacity);\n      }\n    }\n    @include bp-at-least($breakpoint__sm) {\n      &[class*=\"sm-\"][class*=\"-up\"] > * > * {\n        border-color: $dev__color__sm;\n        background: rgba($dev__color__sm, $dev__bg-opacity);\n      }\n    }\n    @include bp-at-least($breakpoint__md) {\n      &[class*=\"md-\"][class*=\"-up\"] > * > * {\n        border-color: $dev__color__md;\n        background: rgba($dev__color__md, $dev__bg-opacity);      \n      }\n    }\n    @include bp-at-least($breakpoint__lg) {\n      &[class*=\"lg-\"][class*=\"-up\"] > * > * {\n        border-color: $dev__color__lg;\n        background: rgba($dev__color__lg, $dev__bg-opacity);\n      }\n    }\n    @include bp-at-least($breakpoint__xl) {\n      &[class*=\"xl-\"][class*=\"-up\"] > * > * {\n        border-color: $color__purple;\n        background: rgba($color__purple, $dev__bg-opacity);\n      }\n    }\n    @include bp-at-least($breakpoint__xxl) {\n      &[class*=\"xxl-\"][class*=\"-up\"] > * > * { \n        border-color: $dev__color__xxl;\n        background: rgba($dev__color__xxl, $dev__bg-opacity);\n      }\n    }\n  }\n\n}\n\n\n\n\n/* @show the current breakpoint\n--------------------------------------------------------\n  \n  Adds a badge to the bottom right of the body to show\n  the current breakpoint.\n\n  To enable this, add .dev--show-breakpoint to the HTML\n  element\n\n-------------------------------------------------------- */\n\n.dev--show-breakpoint {\n  body:before {\n    content: \"-\";\n    position: fixed;\n    bottom: 0;\n    right: 0;\n    padding: 1em;\n    border: 1px solid $dev__color__default;\n    background: rgba($dev__color__default, $dev__bg-opacity);\n    font-size: .25em;\n    line-height: 1;\n    color: $dev__color__default;\n    @include bp-at-least($breakpoint__xs) {\n      content: \"XS\";\n      color: $dev__color__xs;\n      background: rgba($dev__color__xs, $dev__bg-opacity);\n      border-color: $dev__color__xs;\n    }\n    @include bp-at-least($breakpoint__sm) {\n      content: \"SM\";\n      color: $dev__color__sm;\n      background: rgba($dev__color__sm, $dev__bg-opacity);\n      border-color: $dev__color__sm;\n    }\n    @include bp-at-least($breakpoint__md) {\n      content: \"MD\";\n      color: $dev__color__md;\n      background: rgba($dev__color__md, $dev__bg-opacity);\n      border-color: $dev__color__md;\n    }\n    @include bp-at-least($breakpoint__lg) {\n      content: \"LG\";\n      color: $dev__color__lg;\n      background: rgba($dev__color__lg, $dev__bg-opacity);\n      border-color: $dev__color__lg;\n    }\n    @include bp-at-least($breakpoint__xl) {\n      content: \"XL\";\n      color: $dev__color__xl;\n      background: rgba($dev__color__xl, $dev__bg-opacity);\n      border-color: $dev__color__xl;\n    }\n    @include bp-at-least($breakpoint__xxl) {\n      content: \"XXL\";\n      color: $dev__color__xxl;\n      background: rgba($dev__color__xxl, $dev__bg-opacity);\n      border-color: $dev__color__xxl;\n    }\n  }\n}\n  "
  },
  {
    "path": "css/base/_fonts.scss",
    "content": "/**\n\n  @fonts\n--------------------------------------------------------\n  base/_fonts.scss\n--------------------------------------------------------\n\n  Define the fonts used in this app and declare silent\n  classes to be used in your CSS.\n\n  If you are using a webfont that you're hosting, add \n  the @embed-font() mixin from base/_mixin-font-face-importer.scs \n  before you declare your fonts.\n\n  Usage: Create a font-family named \"interstate-light\" using a font at /fonts/interstate_light-webfont.woff (and other extensions)\n  @include embed-font(\"interstate-light\", \"/fonts/interstate_light-webfont\");\n  \n  If you are using Google Fonts, you can add the\n  import code before you declare your fonts.\n\n  @import url(//fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700);\n\n-------------------------------------------------------- */\n\n\n\n\n\n/* @sans\n--------------------------------------------------------\n\n  This is your basic sans font.\n\n  Usage: use sans regular on a p\n  p {\n    @extend %sans--regular;\n  }\n\n------------------------------------------------------ */\n\n$sans:sans-serif;\n\n%sans--light {\n  font-family: $sans;\n  font-weight: 300;\n  font-style: normal;\n}\n\n%sans--regular {\n  font-family: $sans;\n  font-weight: 400;\n  font-style: normal;\n}\n\n%sans--semi-bold {\n  font-family: $sans;\n  font-weight: 600;\n  font-style: normal;\n}\n\n%sans--bold {\n  font-family: $sans;\n  font-weight: 700;\n  font-style: normal;\n}\n\n\n\n\n\n/* @serif\n--------------------------------------------------------\n\n  This is your basic serif font.\n\n  Usage: use serif regular on a p\n  p {\n    @extend %serif--regular;\n  }\n\n-------------------------------------------------------- */\n\n$serif: georgia, times;\n\n%serif--light {\n  font-family: $serif;\n  font-weight: 300;\n  font-style: normal;\n}\n\n%serif--regular {\n  font-family: $serif;\n  font-weight: 400;\n  font-style: normal;\n}\n\n%serif--italic {\n  font-family: $serif;\n  font-weight: 400;\n  font-style: italic;\n}\n\n%serif--semi-bold {\n  font-family: $serif;\n  font-weight: 600;\n  font-style: italic;\n}"
  },
  {
    "path": "css/base/_mixin-breakpoints.scss",
    "content": "/**\n\n  @breakpoints mixin\n-----------------------------------------------------\n  base/_mixin-breakpoints.scss\n-----------------------------------------------------\n\n  This mixin makes using inline media queries easy.\n  Options include bp-at-least for min-width, bp-until\n  for max-width, and bp-between for min and max widths.\n\n  You can use your breakpoint vars, or any other value.\n\n  Usage: styles at medium breakpoint\n  .some-element {\n    @include bp-at-least($breakpoint__md){\n      your-styles: go-here;\n    }\n  }\n\n  Usage: styles at custom breakpoint\n  .another-element {\n    @include bp-until(83.45em){\n      your-styles: go-here;\n    }\n  }\n\n-----------------------------------------------------  */\n\n// Breakpoint At Least\n@mixin bp-at-least($device-width) {\n  @media screen and (min-width: $device-width) {\n    @content\n  }\n}\n\n// Breakpoint Until\n@mixin bp-until($device-width) {\n  @media screen and (max-width: $device-width - .01) {\n    @content\n  }\n}\n\n// Breakpoint Between\n@mixin bp-between($device-width, $device-width2) {\n  @media screen and (min-width: $device-width) and (max-width: $device-width2) {\n    @content\n  }\n}\n"
  },
  {
    "path": "css/base/_mixin-clearfix.scss",
    "content": "/**\n\n  @clearfix mixin\n---------------------------------------------------------\n  base/_clearfix.scss\n--------------------------------------------------------\n\n  Use @include clearfix(); in your CSS\n\n  Usage: clearfix mixin\n  .element-to-clearfix {\n    @include cleafix();\n  }\n\n\n--------------------------------------------------------- */\n\n@mixin clearfix() {\n  &:before,\n  &:after {\n    content: \" \";\n    display: table;\n  }\n  &:after {\n    clear: both;\n  }\n  // For IE 6/7 (trigger hasLayout)\n  zoom: 1;\n}"
  },
  {
    "path": "css/base/_mixin-font-face-importer.scss",
    "content": "/**\n\n  @font-face importer mixin\n-----------------------------------------------------------\n  _base/_mixin-font-face-importer.scss\n-----------------------------------------------------------\n\n  Use this mixin to embed a font\n\n  $font-name is used in your css in font-family declarations\n  $font-filepath-and-name is the location of your font\n  file and the filename WITHOUT the file extension.  The\n  extensions are added here in the mixin\n\n  Usage:\n  @include embed-font($font-name, $font-filepath-and-name);\n\n--------------------------------------------------------- */\n\n@mixin embed-font($font-name, $font-filepath-and-name){\n  @font-face {\n  \tfont-family: $font-name;\n  \tsrc: url($font-filepath-and-name+\".eot\"); /* IE9 Compat Modes */\n  \tsrc: url($font-filepath-and-name+\".eot?#iefix\") format('embedded-opentype'), /* IE6-IE8 */\n  \t     url($font-filepath-and-name+\".woff\") format('woff'), /* Modern Browsers */\n  \t     url($font-filepath-and-name+\".ttf\")  format('truetype'), /* Safari, Android, iOS */\n  \t     url($font-filepath-and-name+\".svg#svgFontName\") format('svg'); /* Legacy iOS */\n  \t}\n}"
  },
  {
    "path": "css/base/_mixin-gradual-media-queries.scss",
    "content": "/**\n\n  @gradual media queries mixin\n--------------------------------------------------------\n  base/_mixin-gradual-media-queries.scss\n--------------------------------------------------------\n\n The mixin takes arguments of start-width, start-fontsize,\n end-width, and end-fontsize and then creates media queries\n between those start and end points at another argument\n value, increment-width.\n\n Usage: Gradually increase the font size of the html\n html {\n  @include gradual-queries(20em, 80%, 70em, 100%, 10em)\n }\n\n In the above usage, the html fontsize will start out at\n 80% at 20em and end up at 100% at 70em - and the gradual\n changes in the fontsize percentage will be calculated\n at 10em intervals.\n\n See http://codepen.io/jeffschram/pen/IixqA\n\n------------------------------------------------------ */\n\n// FUNCTION TO STRIP UNITS\n@function strip-units($number) {\n  @return $number / ($number * 0 + 1);\n}\n\n// GRADUAL QUERIES MIXIN\n@mixin gradual-queries($start-width, $start-fontsize, $end-width, $end-fontsize, $increment-width){\n  // Define number of increments, $increments\n  $increments: ceil((strip-units($end-width) - strip-units($start-width))/strip-units($increment-width));\n  // Define the difference between fontsizes\n  $fontsize-diff: (strip-units($end-fontsize) - strip-units($start-fontsize));\n  // The amount of difference, incrementally\n  $fontsize-increment: $fontsize-diff/$increments;\n  // Apply adjusted fontsizes\n  @for $i from 0 to $increments {\n   $increment-point: $start-width+$i*$increment-width;\n   @media (min-width: $increment-point){\n     font-size: $start-fontsize+($i*$fontsize-increment);\n   }\n  }\n  @media (min-width: $end-width){\n   font-size: $end-fontsize;\n  }\n}"
  },
  {
    "path": "css/base/_print.scss",
    "content": "/**\n\n  @print\n--------------------------------------------------------\n  base/_print.scss\n--------------------------------------------------------\n\n  Print Stylesheet from http://h5bp.com/r\n\n-----------------------------------------------------  */\n\n\n\n/* ==========================================================================\n   Print styles.\n   Inlined to avoid required HTTP connection: h5bp.com/r\n   CREDIT: HTML5 Boilerplate\n   ========================================================================== */\n\n@media print {\n\n  * {\n    background: transparent !important;\n    color: #000 !important; /* Black prints faster: h5bp.com/s */\n    box-shadow: none !important;\n    text-shadow: none !important;\n  }\n\n  a,\n  a:visited {\n    text-decoration: underline;\n  }\n\n  a[href]:after {\n    content: \" (\" attr(href) \")\";\n  }\n\n  abbr[title]:after {\n    content: \" (\" attr(title) \")\";\n  }\n\n  // Don't show links for images, or javascript/internal links\n  .ir a:after,\n  a[href^=\"javascript:\"]:after,\n  a[href^=\"#\"]:after {\n    content: \"\";\n  }\n\n  pre,\n  blockquote {\n    border: 1px solid #999;\n    page-break-inside: avoid;\n  }\n\n  thead {\n    display: table-header-group; /* h5bp.com/t */\n  }\n\n  tr,\n  img {\n    page-break-inside: avoid;\n  }\n\n  img {\n    max-width: 100% !important;\n  }\n\n  @page {\n    margin: 0.5cm;\n  }\n\n  p,\n  h2,\n  h3 {\n    orphans: 3;\n    widows: 3;\n  }\n\n  h2,\n  h3 {\n    page-break-after: avoid;\n  }\n}"
  },
  {
    "path": "css/base/_reset.scss",
    "content": "/**\n\n  @reset\n---------------------------------------------------------\n  base/_reset.scss\n--------------------------------------------------------\n\n  This reset institutes the border-box box model and then\n  block and margin/padding resets.\n\n  Throughout Skyline, each partial has it's own resets.\n  This allows you to only use what you need.\n\n  Credit goes to Normalize\n  http://normalize.css v2.1.0 http://git.io/normalize\n\n--------------------------------------------------------- */\n\n// Apply the new box model definition & reset to no margin on anything\n* {\n  &,\n  &:before,\n  &:after{\n    -webkit-box-sizing: border-box;\n    -moz-box-sizing: border-box;\n    box-sizing: border-box;\n    padding: 0;\n    margin: 0;\n  }\n}\n\n\n// Apply display block to new HTML5 elements\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nnav,\nsection,\nsummary,\naudio,\ncanvas,\nvideo {\n    display: block;\n}"
  },
  {
    "path": "css/base/_vars.scss",
    "content": "/**\n\n  @variables\n---------------------------------------------------------\n  base/_vars.scss\n--------------------------------------------------------\n\n  Global variables are defined here.  Define your colors,\n  spacing and grid settings.\n\n-----------------------------------------------------  */\n\n\n\n\n\n/* @colors\n--------------------------------------------------------\n\n  All color variables are defined here.\n\n  We use real color names here.  Although naming something\n  like 'brand' is in fact more generic and reusable, we've\n  found that you end up creating variables like $brand-2,\n  $brand-alt, $brand-complimentary etc.  While coding,\n  it's too easy to forget what those mean.\n\n  If the design changes drastically and the brand changes\n  from, let's say, blue to green, just do a global\n  find/replace - that's what text editors are for.\n\n------------------------------------------------------ */\n\n\n// Colors\n//\n$color__black: #515554;\n$color__grey: #b0b3b3;\n$color__grey--light: #cfd2d2;\n$color__offwhite: #f4f4f4;\n$color__white: #fff;\n\n$color__green: #a2bb60;\n$color__salmon: #eb6d58;\n$color__sky-blue: #94c1c8;\n$color__blue: #0D699C;\n$color__purple: #c492bc;\n$color__navy: #151e23;\n$color__brown: #76400b;\n\n\n$color__error: red;\n$color__warning: yellow;\n$color__info: blue;\n$color__success: green;\n\n\n\n\n\n/* @breakpoints\n---------------------------------------------------------\n\n  Define global breakpoints as xs, sm, md, lg, xl, xxl\n\n--------------------------------------------------------- */\n\n// Define breakpoints map to help with some other functions\n// and mixins.  Very fancy :)\n//\n$breakpoints: (\n n:  0,\n xs: 20em,\n sm: 34.375em,\n md: 48em,\n lg: 64em,\n xl: 78.5em,\n xxl: 100em\n);\n\n\n// Define individual variables\n//\n// Extra Small: Small mobile\n$breakpoint__xs: map-get($breakpoints, xs);\n\n// Small: Larger mobile\n$breakpoint__sm: map-get($breakpoints, sm);\n\n// Medium: Tablet\n$breakpoint__md: map-get($breakpoints, md);\n\n// Large: Landscape tablet, beginning desk size\n$breakpoint__lg: map-get($breakpoints, lg);\n\n// Extra Large: Large Desk size\n$breakpoint__xl: map-get($breakpoints, xl);\n\n// Double Extra Large: Huge Desk size\n$breakpoint__xxl: map-get($breakpoints, xxl);\n\n\n\n\n\n/* @global spacing unit\n---------------------------------------------------------\n\n  Define an em value for $unit.  $unit is a helpful little\n  variable that serves to keep your spacing consistent.\n\n  Most often, 1 $unit is equal to your baseline height.  So\n  if your baseline height is 1.125ems (which is 18px), that's\n  the value of 1 $unit.\n\n--------------------------------------------------------- */\n\n$unit: 1.125em;\n"
  },
  {
    "path": "css/elements/_body.scss",
    "content": "/**\n\n  @body\n--------------------------------------------------------\n  elements/_body.scss\n--------------------------------------------------------\n\n  Body should contain the document's default font and\n  background color for the content, if that background\n  color is different than the html.\n\n------------------------------------------------------ */\n\n\nbody {\n  @extend %sans--regular;\n  line-height: 1.5;\n  color: $color__black;\n  background: $color__white;\n}"
  },
  {
    "path": "css/elements/_buttons.scss",
    "content": "/**\n\n  @buttons\n--------------------------------------------------------\n  elements/_buttons.scss\n--------------------------------------------------------\n\n  Buttons are a common UI component in sites/apps.  They\n  are usually either anchor, button, or input elements\n  with a classname of 'btn'.  They provide an easily\n  identified clickable target.\n\n  Buttons commonly have modifying classes that apply\n  specific styles.  Examples of these are .btn--large and\n  .btn--inline\n\n  Example: Buttons using anchors\n  <p><a href=\"#\" class=\"btn\">Regular Button</a></p>\n\n  Example: Buttons using buttons\n  <p><button class=\"btn\">Regular Button</button></p>\n\n------------------------------------------------------ */\n\nbutton {\n  &:focus,\n  &:active {\n    outline: none;\n    box-shadow: none;\n    border: none;\n  }\n}\n\n.btn {\n  -webkit-appearance: none;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  display: inline-block;\n  background: $color__black;\n  color: $color__white;\n  border: none;\n  @extend %sans--regular;\n  font-size: 1.25em;\n  text-transform: uppercase;\n  text-decoration: none;\n  letter-spacing: .225em;\n  padding: 1em 1.25em;\n  &:hover,\n  &:focus,\n  &:active {\n    outline: none;\n    opacity: .85;\n  }\n}\n\n\n\n\n\n/* @btn--secondary\n--------------------------------------------------------\n\n  A btn modifier, secondary\n\n  Example: .btn--secondary\n  <a class=\"btn btn--secondary\">Secondary button</a>\n\n------------------------------------------------------ */\n\n.btn--secondary {\n  background: none;\n  border: 1px solid $color__white;\n  color: $color__white;\n}\n\n\n\n\n\n/* @btn--large\n--------------------------------------------------------\n\n  A btn modifier, large\n\n  Example: .btn--large\n  <a class=\"btn btn--large\">Large button</a>\n\n------------------------------------------------------ */\n\n.btn--large {\n  @include bp-at-least($breakpoint__sm) {\n    font-size: 1.25em;\n    padding: 1.25em 2.75em;\n  }\n}\n\n\n\n\n\n/* @btn--inline\n--------------------------------------------------------\n\n  A btn modifier, if this button is in a paragraph or\n  in anything else that has a defined font-size, this\n  modifier will make the btn inherit the font-size of\n  the partent.\n\n  Example: .btn--inline\n  <p>Here's some text <a class=\"btn btn--inline\">Cool button</a> text keeps going</p>\n\n------------------------------------------------------ */\n\n.btn--inline {\n  font-size: 1em;\n}\n\n\n\n\n\n/* @btn--block\n--------------------------------------------------------\n\n  A btn modifier - makes the button display block, 100%\n  width and aligns the text to the center.  Removes left\n  and right padding since the text is center aligned, it\n  is not needed.  Actually sometimes having the padding\n  on the left and right causes problems if the centered\n  text is quite long - so we just remove it.\n\n  Example: .btn--block\n  <a href=\"#\" class=\"btn btn--block\">Block button</a>\n\n------------------------------------------------------ */\n\n.btn--block {\n  display: block;\n  width: 100%;\n  text-align: center;\n  padding-right: 0;\n  padding-left: 0;\n}\n\n\n\n\n\n/* @btn--icon\n--------------------------------------------------------\n\n  A btn modifier - makes the button display block, 100%\n  width and aligns the text to the center.  Removes left\n  and right padding since the text is center aligned, it\n  is not needed.  Actually sometimes having the padding\n  on the left and right causes problems if the centered\n  text is quite long - so we just remove it.\n\n  Example: .btn--icon\n  <button class=\"btn--icon ss-icon\">Block button</button>\n\n------------------------------------------------------ */\n\n.btn--icon {\n  background: transparent;\n  border: none;\n  padding: 0;\n  font-size: 1em;\n}\n\n"
  },
  {
    "path": "css/elements/_code.scss",
    "content": "/**\n\n  @code\n--------------------------------------------------------\n  elements/_code.scss\n--------------------------------------------------------\n\n  Code elements like <code> and <pre>\n\n  Example: Code in a paragraph\n  <p>This is a cool paragraph about a classname called <code>.franz</code></p>\n\n\n-----------------------------------------------------  */\n\n// Code\n//\ncode {\n  vertical-align: middle;\n  padding: .25em .5em;\n  background: rgba(193, 199, 208, .3);\n}\n\n// Pre\npre {\n\t\n}"
  },
  {
    "path": "css/elements/_forms.scss",
    "content": "/**\n\n  @forms\n---------------------------------------------------------\n  elements/_forms.scss\n--------------------------------------------------------\n\n  Base styles for all forms and form related elements\n\n  Below you'll set styles for all forms, and if you have\n  any specific kinds of forms, like a search form that you\n  create a classname of form--search, put that at the\n  bottom of this partial.\n\n  This scss partial is pretty big.  Here's how it is\n  organized.\n\n  * Base styling on form elements\n\n  * Styles for form & form modules\n\n\n--------------------------------------------------------- */\n\n\n\n\n\n/* @text inputs\n--------------------------------------------------------\n\n  Base styles for inputs\n\n  Example: Text Input\n  <input type=\"text\" name=\"schramburger\" placeholder=\"Your Name\">\n\n  Inputs can use sizing classes, .input--s .input--l\n\n  Example: Text Small Input\n  <input class=\"input--s\" type=\"text\" name=\"schramburger\" placeholder=\"Your Name\">\n\n  Example: Text Input\n  <input class=\"input--l\" type=\"text\" name=\"schramburger\" placeholder=\"Your Name\">\n\n------------------------------------------------------ */\n\n// Input elements\ninput {\n  -webkit-appearance: none;\n  border-radius: 0;\n  @extend %serif--light;\n  width: 100%;\n  padding: 1em;\n  border: 1px solid $color__black;\n  color: $color__black;\n  &:focus {\n    outline: none;\n  }\n  // Size modifiers\n  &.input--s {\n    font-size: .5rem;\n  }\n\n  &.input--l {\n    font-size: 1.5rem;\n  }\n}\n\n// Define the input placeholder color to be reused in the\n// following code\n$input-placeholder: $color__black;\n\n// Placeholders\ninput {\n  &::-webkit-input-placeholder {\n    color: $input-placeholder;\n    @extend %serif--light;\n  }\n  &:-moz-placeholder {\n    color: $input-placeholder;\n    @extend %serif--light;\n  }\n  &::-moz-placeholder {\n    color: $input-placeholder;\n  }\n  &:-ms-input-placeholder {\n    color: $input-placeholder;\n  }\n}\n// Placeholders on focus\ninput:focus {\n  &::-webkit-input-placeholder {\n    opacity: .3;\n  }\n  &:-moz-placeholder {\n    opacity: .3;\n  }\n  &::-moz-placeholder {\n    opacity: .3;\n  }\n  &:-ms-input-placeholder {\n    opacity: .3;\n  }\n}\n\n\n\n\n/* @select inputs\n--------------------------------------------------------\n\n  Base styling for all selects\n\n  Example: Select Input\n  <select name=\"schramburger\">\n    <option value=\"value-1\">Option 1</option>\n    <option value=\"value-2\">Option 2</option>\n    <option value=\"value-3\">Option 3</option>\n    <option value=\"value-4\">Option 4</option>\n  </select>\n\n  Selects can have added sizing classes, .select--s and .select--l\n\n  Example: Small select\n  <select name=\"schramburger\" class=\"select--s\">\n    <option value=\"value-1\">Option 1</option>\n    <option value=\"value-2\">Option 2</option>\n    <option value=\"value-3\">Option 3</option>\n    <option value=\"value-4\">Option 4</option>\n  </select>\n\n  Example: Large select\n  <select name=\"schramburger\" class=\"select--l\">\n    <option value=\"value-1\">Option 1</option>\n    <option value=\"value-2\">Option 2</option>\n    <option value=\"value-3\">Option 3</option>\n    <option value=\"value-4\">Option 4</option>\n  </select>\n\n------------------------------------------------------ */\n\nselect {\n  width: 100%;\n  font-size: 1rem;\n  &.select--sm {\n    font-size: .5rem;\n  }\n  &.select--lg {\n    font-size: 1.5rem;\n  }\n}\n\n\n\n\n\n/* @textareas\n--------------------------------------------------------\n\n  Base styling for textareas\n\n  Textareas can have .textarea--s or .textarea--l classes\n  for different sizes\n\n  Example: Textarea\n  <textarea name=\"schramburger\">Hello, there.</textarea>\n\n  Example: Small Textarea\n  <textarea class=\"textarea--s\" name=\"schramburger\">Hello, there.</textarea>\n\n  Example: Large Textarea\n  <textarea class=\"textarea--l\" name=\"schramburger\">Hello, there.</textarea>\n\n------------------------------------------------------ */\n\ntextarea {\n  width: 100%;\n  min-height: 6em;\n  padding: 1em;\n  border: solid 1px $color__black;\n  @extend %serif--light;\n  &:focus {\n    outline: none;\n  }\n  &.textarea--s {\n    font-size: .5rem;\n  }\n  &.textarea--l {\n    font-size: 1.5rem;\n  }\n}\n\n\n\n\n\n/* @radio inputs\n--------------------------------------------------------\n\n  Base styling for radio inputs.  Radios are surrounded\n  by a label for better click targets.\n\n  Example: Radio\n  <label class=\"label--radio\" for=\"radio-1\"><input id=\"radio-1\" type=\"radio\" value=\"yes\"> Radio label</label>\n\n  Example: Radio with super-long label\n  <label class=\"label--radio\" for=\"radio-3\"><input id=\"radio-3\" type=\"radio\" value=\"yes\"> Radio label Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ratione, accusantium ipsum animi perspiciatis officiis iure voluptatibus corporis. Enim, officia, tempora vitae libero dolore sint voluptatum. Blanditiis odit laudantium minus repellat</label>\n\n\n------------------------------------------------------ */\n\ninput[type=radio] {\n  -webkit-appearance: none;\n  width: 1em;\n  height: 1em;\n  padding: 0;\n  border-radius: 50%;\n  border: 1px solid #444;\n  background: transparent;\n  &:checked {\n    background: #222;\n  }\n}\n\n\n.label--radio {\n  display: inline-block;\n  position: relative;\n  cursor: pointer;\n  padding-left: 1em;\n  input {\n    position: absolute;\n    top: .7em;\n    left: 0;\n  }\n}\n\n\n\n\n\n/* @checkbox inputs\n--------------------------------------------------------\n\n  Base styling for checkbox inputs.  Checkboxes are surrounded\n  by a label for better click targets.\n\n  Example: Checkbox\n  <label class=\"label--checkbox\" for=\"checkbox-1\"><input id=\"checkbox-1\" type=\"checkbox\" value=\"yes\"> Checkbox label</label>\n\n  Example: Checkbox with super-long label\n  <label class=\"label--checkbox\" for=\"checkbox-3\"><input id=\"checkbox-3\" type=\"checkbox\" value=\"yes\"> Checkbox label Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ratione, accusantium ipsum animi perspiciatis officiis iure voluptatibus corporis. Enim, officia, tempora vitae libero dolore sint voluptatum. Blanditiis odit laudantium minus repellat</label>\n\n\n------------------------------------------------------ */\n\ninput[type=checkbox] {\n  -webkit-appearance:none;\n  width: 1em;\n  height: 1em;\n  padding: 0;\n  border: 1px solid #444;\n  background: transparent;\n  &:checked {\n    background: #222;\n  }\n}\n\n.label--checkbox {\n  display: inline-block;\n  position: relative;\n  cursor: pointer;\n  padding-left: 1em;\n  input {\n    position: absolute;\n    top: .7em;\n    left: 0;\n  }\n}\n\n\n\n\n\n/* @textareas\n--------------------------------------------------------\n\n  Base styling for textareas\n\n  Example: Textarea\n  <textarea name=\"schramburger\">Hello, there.</textarea>\n\n------------------------------------------------------ */\n\ntextarea {\n  width: 100%;\n}\n\n\n\n\n\n/* @labels\n--------------------------------------------------------\n\n  Base styling for labels\n\n  Example: label\n  <label>Don't label me, I'm a free spirit</labe>\n\n------------------------------------------------------ */\n\nlabel {\n  font-size: 1em;\n  font-weight: bold;\n}\n\n\n\n\n\n/* @form\n--------------------------------------------------------\n\n  Like the bootstrap convention, apply standard styling\n  on any form with the classname .form\n\n  This allows us to create modifier classnames like\n  .form--inline and .form--horizontal, which will be\n  laid out further below.\n\n------------------------------------------------------ */\n\n.form {\n  display: block;\n  padding: 2em;\n  border: 1px solid #888;\n  background: #eee;\n}\n\n\n\n\n/* @form-header\n--------------------------------------------------------\n\n  A form header usually consists of a title and some\n  copy.\n\n  Example: Form header\n  <header class=\"form__header\">\n    <h2>Contact Us</h2>\n    <p>Use this form to contact us.  We love talking to\n    our customers.</p>\n  </header>\n\n-------------------------------------------------------- */\n\n.form__header {\n  padding-bottom: 1em;\n  margin-bottom: 2em;\n  border-bottom: 1px solid #888;\n}\n\n\n\n\n\n/* @fieldsets\n--------------------------------------------------------\n\n  Fieldsets group together related fields.\n\n  Example: Fieldset\n  <fieldset>\n    <legend>Personal Information</legend>\n    <article class=\"field\">\n      <label class=\"field__label\" for=\"exampleInput1\">Your Name</label>\n      <input class=\"field__input=\"exampleInput1\" type=\"text\" required=\"required\" placeholder=\"Your name\">\n      <span class=\"field__feedback\"></span>\n      <span class=\"field__hint\"></span>\n    </article>\n    <article class=\"field\">\n      <label class=\"field__label\" for=\"exampleInput2\">Your Email</label>\n      <input class=\"field__input=\"exampleInput2\" type=\"email\" required=\"required\" placeholder=\"Your email\">\n      <span class=\"field__feedback\"></span>\n      <span class=\"field__hint\">Must be a valid email address</span>\n    </article>\n  </fieldset>\n\n  Fieldsets are also nested inside other fieldsets.\n\n  Example: Nested Fieldsets\n  <fieldset>\n    <legend>Personal Information</legend>\n    <article class=\"field\">\n      <label class=\"field__label\" for=\"exampleInput31\">Your Name</label>\n      <input class=\"field__input=\"exampleInput31\" type=\"text\" required=\"required\" placeholder=\"Your name\">\n      <span class=\"field__feedback\"></span>\n      <span class=\"field__hint\"></span>\n    </article>\n    <article class=\"field\">\n      <label class=\"field__label\" for=\"exampleInput32\">Your Email</label>\n      <input class=\"field__input=\"exampleInput32\" type=\"email\" required=\"required\" placeholder=\"Your email\">\n      <span class=\"field__feedback\"></span>\n      <span class=\"field__hint\">Must be a valid email address</span>\n    </article>\n    <fieldset>\n      <legend>Address</legend>\n        <article class=\"field\">\n          <label class=\"field__label\" for=\"exampleInput33\">Address 1</label>\n          <input class=\"field__input=\"exampleInput33\" type=\"text\" required=\"required\" placeholder=\"Address 1\">\n          <span class=\"field__feedback\"></span>\n          <span class=\"field__hint\">Must be a valid email address</span>\n        </article>\n        <article class=\"field\">\n          <label class=\"field__label\" for=\"exampleInput34\">Address 2</label>\n          <input class=\"field__input=\"exampleInput34\" type=\"text\" required=\"required\" placeholder=\"Address 2\">\n          <span class=\"field__feedback\"></span>\n          <span class=\"field__hint\">Must be a valid email address</span>\n        </article>\n    </fieldset>\n  </fieldset>\n\n-------------------------------------------------------- */\n\nfieldset {\n  border: none;\n}\n\n\n\n/* @fields\n--------------------------------------------------------\n\n  A field is an article that contains the input and anything\n  related to the input.\n\n  Example: Field for a text input\n  <article class=\"field\">\n    <label class=\"field__label\" for=\"exampleInput1\">Your Name</label>\n    <input class=\"field__input=\"exampleInput1\" type=\"text\" required=\"required\" placeholder=\"Your name\">\n    <span class=\"field__feedback\"></span>\n    <span class=\"field__hint\"></span>\n  </article>\n\n  Example: Field with hint\n  <article class=\"field\">\n    <label class=\"field__label\" for=\"exampleInput2\">Your Email</label>\n    <input class=\"field__input=\"exampleInput2\" type=\"email\" required=\"required\" placeholder=\"Your email\">\n    <span class=\"field__feedback\"></span>\n    <span class=\"field__hint\">Must be a valid email address</span>\n  </article>\n\n  Example: Field with Error\n  <article class=\"field is-error\">\n    <label class=\"field__label\" for=\"exampleInput3\">Your Email</label>\n    <input class=\"field__input=\"exampleInput3\" type=\"email\" required=\"required\" placeholder=\"Your email\">\n    <span class=\"field__feedback\">Sorry, that email is in use.</span>\n    <span class=\"field__hint\"></span>\n  </article>\n\n  Example: Field for a select input\n  <article class=\"field\">\n    <label class=\"field__label\" for=\"exampleInput4\" >Select your favorite</label>\n    <select class=\"field__input input--select\" id=\"exampleInput4\"  name=\"favorite-food\">\n      <option>Pizza</option>\n      <option>Tacos</option>\n      <option>Burgers</option>\n    </select>\n    <span class=\"field__feedback\"></span>\n    <span class=\"field__hint\"></span>\n  </article>\n\n  Example: Field for a textarea input\n  <article class=\"field\">\n    <label class=\"field__label\">Your Name</label>\n    <textarea class=\"field__input\">Hello, there</textarea>\n    <span class=\"field__feedback\"></span>\n    <span class=\"field__hint\"></span>\n  </article>\n\n-------------------------------------------------------- */\n\n.field {\n  position: relative;\n  margin-bottom: 2em;\n}\n\n// Field label\n.field__label {\n  display: block;\n}\n\n// Field hint\n.field__hint {\n  color: #888;\n  font-size: .75em;\n  padding: .25em 0;\n  font-style: italic;\n}\n\n// Field feedback\n.field__feedback {\n  display: none; // hidden by default, shown if inside .is-error\n  font-size: .75em;\n  padding: .25em .75em;\n  background: rgba(218, 35, 0, 0.3);\n  color: white;\n}\n\n// Field error states\n.field.is-error {\n\n  .field__feedback {\n    display: block;\n  }\n  input {\n    border: 1px solid rgba(218, 35, 0, 0.3);\n  }\n\n}\n\n\n\n\n\n/* @input group\n--------------------------------------------------------\n\n  Group containing multiple inputs, helpful for lists\n  of radios or checkboxes.  Shown below in a field...\n\n  Example: Field with input group of radios\n  <article class=\"field\">\n    <label class=\"field__label\">Choose your favorite</label>\n    <div class=\"field__input-group\">\n      <label class=\"label--radio\" for=\"favorite-food-1\"><input id=\"favorite-food-1\" name=\"favorite-food\" type=\"radio\" value=\"pizza\"> Pizza</label>\n      <label class=\"label--radio\" for=\"favorite-food-2\"><input id=\"favorite-food-2\" name=\"favorite-food\" type=\"radio\" value=\"tacos\"> Tacos</label>\n      <label class=\"label--radio\" for=\"favorite-food-3\"><input id=\"favorite-food-3\" name=\"favorite-food\" type=\"radio\" value=\"burgers\"> Burgers</label>\n    </div>\n    <span class=\"field__feedback\"></span>\n    <span class=\"field__hint\"></span>\n  </article>\n\n  Example: Field with input group of checkboxes\n  <article class=\"field\">\n    <label class=\"field__label\">Select your favorites</label>\n    <div class=\"field__input-group\">\n      <label class=\"label--checkbox\" for=\"favorite-food-4\"><input id=\"favorite-food-4\" name=\"favorite-food-alt\" type=\"checkbox\" value=\"pizza\"> Pizza</label>\n      <label class=\"label--checkbox\" for=\"favorite-food-5\"><input id=\"favorite-food-5\" name=\"favorite-food-alt\" type=\"checkbox\" value=\"tacos\"> Tacos</label>\n      <label class=\"label--checkbox\" for=\"favorite-food-6\"><input id=\"favorite-food-6\" name=\"favorite-food-alt\" type=\"checkbox\" value=\"burgers\"> Burgers</label>\n    </div>\n    <span class=\"field__feedback\"></span>\n    <span class=\"field__hint\"></span>\n  </article>\n\n  Example: Field with input group list modifier\n  <article class=\"field\">\n    <label class=\"field__label\">Select your favorites</label>\n    <div class=\"field__input-group--list\">\n      <label class=\"label--checkbox\" for=\"favorite-food-7\"><input id=\"favorite-food-7\" name=\"favorite-food-alt2\" type=\"checkbox\" value=\"pizza\"> Pizza</label>\n      <label class=\"label--checkbox\" for=\"favorite-food-8\"><input id=\"favorite-food-8\" name=\"favorite-food-alt2\" type=\"checkbox\" value=\"tacos\"> Tacos</label>\n      <label class=\"label--checkbox\" for=\"favorite-food-9\"><input id=\"favorite-food-9\" name=\"favorite-food-alt2\" type=\"checkbox\" value=\"burgers\"> Burgers</label>\n    </div>\n    <span class=\"field__feedback\"></span>\n    <span class=\"field__hint\"></span>\n  </article>\n\n------------------------------------------------------ */\n\n.field__input-group {\n  display: block;\n  > * {\n    display: inline-block;\n    margin-right: .5em;\n    &:last-child {\n      margin-right: 0;\n    }\n  }\n}\n\n// List mod\n.field__input-group--list {\n  display: block;\n  > * {\n    display: block;\n    margin: .5em 0;\n    &:last-child {\n      margin-bottom: 0;\n    }\n  }\n}\n\n\n\n\n\n\n\n/* @form action\n--------------------------------------------------------\n\n  Each form has an actions footer at the bottom to\n  submit the form\n\n  Example: Form Actions Footer\n  <footer class=\"form__actions\">\n  <article class=\"field two-fiths\">\n    <label class=\"field__label is-visually-hidden\" for=\"exampleInput7\" >Submit</label>\n    <input class=\"field__input btn btn--block\" type=\"submit\" id=\"exampleInput7\" value=\"Submit\">\n    <span  class=\"field__feedback\"></span>\n    <span  class=\"field__hint\"></span>\n  </article>\n  </footer>\n\n--------------------------------------------------------- */\n\n.form__actions {\n  padding-top: 1em;\n  margin-top: 2em;\n  border-top: 1px solid #888;\n}\n"
  },
  {
    "path": "css/elements/_headings.scss",
    "content": "/**\n\n  @headings\n--------------------------------------------------------\n  elements/_headings.scss\n--------------------------------------------------------\n\n  We set any base styles for any headings that have\n  no classnames.\n\n  Example: Headings\n  <h1>This is an h1 heading</h1>\n  <h2>This is an h2 heading</h2>\n  <h3>This is an h3 heading</h3>\n  <h4>This is an h4 heading</h4>\n  <h5>This is an h5 heading</h5>\n  <h6>This is an h6 heading</h6>\n\n  Additionally, we add classnames so you\n  can apply the styling of, for instance, an h1 to an h2.\n\n  Example: H1 styled like an H3\n  <h1 class=\"h3\">This is an h1 but looks like an h3</h1>\n\n------------------------------------------------------ */\n\n\n// H1\nh1, .h1 {\n  margin-bottom: 1em;\n}\n\n\n// H2\nh2, .h2 {\n  margin-bottom: 1em;\n}\n\n\n\n// H3\nh3, .h3 {\n  margin-bottom: 1em;\n}\n\n\n\n// H4\nh4, .h4 {\n  margin-bottom: 1em;\n}\n\n\n\n// H5\nh5, .h5 {\n  margin-bottom: 1em;\n}\n\n\n\n// H6\nh6, .h6 {\n  margin-bottom: 1em;\n}\n\n\n\n"
  },
  {
    "path": "css/elements/_hr.scss",
    "content": "/**\n\n   @hr\n--------------------------------------------------------\n  elements/_hr.scss\n--------------------------------------------------------\n\n  Horizontal Rule\n\n  Example:\n  <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>\n  <hr>\n  <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>\n\n-------------------------------------------------------- */\n\n\nhr {\n  display: block;\n  height: 1px;\n  border: 0;\n  border-top: 1px solid #ccc;\n  margin: 1em 0;\n  padding: 0;\n}\n\n\n"
  },
  {
    "path": "css/elements/_html.scss",
    "content": "/**\n\n   @html\n--------------------------------------------------------\n  elements/_html.scss\n--------------------------------------------------------\n\n  HTML should contain the site's default background color\n  and font-size\n\n------------------------------------------------------ */\n\nhtml {\n  // Check out base/_mixin-gradual-media-queries.scss\n  // for an explaination of this mixin that gradually\n  // changes the base fontsize.\n  font-size: 80%;\n  @include gradual-queries(20em, 80%, 80em, 100%, 10em);\n}\n\n* {\n  -webkit-text-size-adjust: 100%;\n      -ms-text-size-adjust: 100%;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}"
  },
  {
    "path": "css/elements/_icons.scss",
    "content": "/**\n\n  @icons\n---------------------------------------------------------\n  elements/_icons.scss\n--------------------------------------------------------\n\n  Your icon set may vary. In this partial, you may wish\n  to load in a font icon set and add all the associated\n  css that goes with it. This would be the case if you\n  were using something like Symbolset or IcoMoon for\n  example.\n\n--------------------------------------------------------- */\n\n\n\n\n\n/* @icon\n--------------------------------------------------------\n\n  This is a basic icon element. We set some basic\n  structural styles and display styles to get the ball\n  rolling.\n\n  Example: Open Icon\n  <i class=\"icon icon--open\">&plus;</i>\n\n  Example: Close Icon\n  <i class=\"icon icon--close\">&times;</i>\n\n------------------------------------------------------ */\n\n\n.icon {\n  color: inherit;\n  display: inline-block;\n  font-style: normal;\n  vertical-align: middle;\n  font-size: 1em;\n}"
  },
  {
    "path": "css/elements/_images.scss",
    "content": "/**\n\n  @images\n---------------------------------------------------------\n  elements/_images.scss\n--------------------------------------------------------\n\n  Base styling for images, plus some helpful utility\n  classes that modify images.\n\n  Note: You won't add any styling to these image classes,\n  these are just utility classes\n\n--------------------------------------------------------- */\n\n\n\n\n\n/* @images\n--------------------------------------------------------\n\n  Base Image Style is 100% width by default\n\n  Example: Image\n  <img src=\"http://fillmurray.com/600/300\">\n\n------------------------------------------------------ */\n\nimg {\n  width: 100%;\n  max-width: 100%;\n  height: auto;\n  vertical-align: middle;   // Remove the gap between images and the bottom of their containers: h5bp.com/i/440\n}\n\n\n\n\n\n/* @img--natural\n--------------------------------------------------------\n\n  Natural Images are 100% max-width, but their natural width by default\n\n  Example: Image, Natural Width\n  <img class=\"img--natural\" src=\"http://fillmurray.com/600/300\">\n\n------------------------------------------------------ */\n\n.img--natural {\n  width: auto;\n}\n\n\n\n\n\n/* @img--title\n--------------------------------------------------------\n\n  Title images fit within a heading/title element\n\n  Example: Image inside a title (.img--title)\n  <h1><img class=\"img--title\" src=\"http://fillmurray.com/300/300\"> Title Here versions of Lorem Ipsum.</h1>\n  <h2><img class=\"img--title\" src=\"http://fillmurray.com/300/300\"> Title Here versions of Lorem Ipsum.</h2>\n  <h3><img class=\"img--title\" src=\"http://fillmurray.com/300/300\"> Title Here versions of Lorem Ipsum.</h3>\n\n------------------------------------------------------ */\n\n.img--title {\n  height: 1em;\n  width: auto;\n  vertical-align: top;\n}\n\n\n\n\n\n/* @image placement\n--------------------------------------------------------\n\n  Here are a few helper classes to position images, particularly\n  helpful inside paragraphs.\n\n  Example: Image Right\n  <p><img class=\"img--right\" src=\"http://fillmurray.com/400/300\"> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p><p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\n\n  Example: Image, Natural Width\n  <p><img class=\"img--left\" src=\"http://fillmurray.com/400/300\"> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p><p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\n\n  Example: Image, Center\n  <p><img class=\"img--center\" src=\"http://fillmurray.com/400/300\"> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p><p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\n\n------------------------------------------------------ */\n\n.img--right {\n    width: auto;\n    float: right;\n    margin-bottom: 1*$unit;\n    margin-left: 1*$unit;\n}\n\n.img--left {\n    width: auto;\n    float:left;\n    margin-right: 1*$unit;\n    margin-bottom: 1*$unit;\n}\n\n.img--center {\n    width: auto;\n    display:block;\n    margin-right:auto;\n    margin-bottom: 1*$unit;\n    margin-left:auto;\n}\n\n// if these classes are used on an element that contains an image\n// make the image its natural width\n.img--right,\n.img--left,\n.img--center {\n  img {\n    width: auto;\n  }\n}\n\n\n\n\n\n/* @img--circle\n--------------------------------------------------------\n\n  Popular circle image for bios etc.\n\n  Example: Circle image\n  <img class=\"img--circle\" src=\"http://fillmurray.com/400/400\">\n\n------------------------------------------------------ */\n\n.img--circle {\n  border-radius: 50%;\n}"
  },
  {
    "path": "css/elements/_links.scss",
    "content": "/**\n\n  @links\n--------------------------------------------------------\n  elements/_links.scss\n--------------------------------------------------------\n\n  Links, <a> etc. & Webkit tap highlight\n\n  Example: link\n  <p>Lorem Ipsum is simply <a href=\"#\">dummy text</a> of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>\n\n-------------------------------------------------------- */\n\n\n\n\n/* @anchors\n--------------------------------------------------------\n\n  Anchors will have this base styling\n\n------------------------------------------------------ */\n\na {\n  color: inherit;\n  &:hover,\n  &:focus {\n    opacity: .75;\n  }\n}\n\n\n\n\n\n\n/* @webkit-tap-highlight\n--------------------------------------------------------\n\n  Declare the webkit tap highlight style\n\n------------------------------------------------------ */\n\nbody {\n  -webkit-tap-highlight-color: rba(0, 0, 0, .35);\n}"
  },
  {
    "path": "css/elements/_lists.scss",
    "content": "/**\n\n  @lists\n--------------------------------------------------------\n  elements/_lists.scss\n--------------------------------------------------------\n\n  Structure for lists\n\n  Example: Unordered List\n  <ul>\n    <li>List item here</li>\n    <li>List item here</li>\n    <li>List item here</li>\n    <li>List item here</li>\n    <li>\n      <ul>\n        <li>Nested Item</li>\n        <li>Nested Item</li>\n        <li>Nested Item</li>\n        <li>Nested Item</li>\n      </ul>\n    </li>\n  </ul>\n\n  Example: Ordered List\n  <ol>\n    <li>List item here</li>\n    <li>List item here</li>\n    <li>List item here</li>\n    <li>List item here</li>\n    <li>\n      <ol>\n        <li>Nested Item</li>\n        <li>Nested Item</li>\n        <li>Nested Item</li>\n        <li>Nested Item</li>\n      </ul>\n    </li>\n  </ol>\n\n-------------------------------------------------------- */\n\nul,\nol {\n  padding-left: 0;\n  margin-left: 1*$unit;\n  margin-bottom: 1*$unit;\n  li {\n    line-height: 2;\n  }\n}"
  },
  {
    "path": "css/elements/_quotes.scss",
    "content": "/**\n\n  @quotes\n--------------------------------------------------------\n  elements/_quotes.scss\n--------------------------------------------------------\n\n  Blockquotes and pull quotes\n\n-----------------------------------------------------  */\n\n\n\n\n\n/* @blockquote\n--------------------------------------------------------\n\n  Example:\n  <blockquote>\n    <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>\n    <cite><a href=\"http://foo.com\">The source</a></cite>\n  </blockquote>\n\n-------------------------------------------------------- */\n\nblockquote {\n  // Any custom styles below...\n}\n\n\n\n\n\n\n/* @pull-quote\n--------------------------------------------------------\n\n  Large quotes pulled from body text.\n\n  Example:\n  <blockquote class=\"pull-quote\">\n    <p>This is an awesome pull quote!</p>\n  </blockquote>\n\n-------------------------------------------------------- */\n\n.pull-quote {\n  // Any custom styles below...\n}\n\n\n\n\n"
  },
  {
    "path": "css/elements/_tables.scss",
    "content": "/**\n\n  @tables\n---------------------------------------------------------\n  elements/_tables.scss\n--------------------------------------------------------\n\n  Base styling for tables\n\n--------------------------------------------------------- */\n\n\n/* @table\n--------------------------------------------------------\n  Base table styling\n\n  Example: Table\n  <table>\n    <thead>\n      <tr>\n        <th>Heading</th>\n        <th>Heading</th>\n        <th>Heading</th>\n        <th>Heading</th>\n      </tr>\n    </thead>\n    <tbody>\n      <tr>\n        <td>Test</td>\n        <td>Test</td>\n        <td>Test</td>\n        <td>Test</td>\n      </tr>\n      <tr>\n        <td>Test</td>\n        <td>Test</td>\n        <td>Test</td>\n        <td>Test</td>\n      </tr>\n      <tr>\n        <td>Test</td>\n        <td>Test</td>\n        <td>Test</td>\n        <td>Test</td>\n      </tr>\n      <tr>\n        <td>Test</td>\n        <td>Test</td>\n        <td>Test</td>\n        <td>Test</td>\n      </tr>\n    </tbody>\n  </table>\n\n------------------------------------------------------ */\n\n\ntable {\n  width: 100%;\n  border-collapse: collapse;\n  border: none;\n}\nth {\n  // Add custom styles below...\n\n}\nth,\ntd {\n  // Add custom styles below...\n\n}\n\n\n\n\n\n/* @table--striped\n--------------------------------------------------------\n  Striped tables\n\n  Example: Table, striped\n  <table class=\"table--striped\">\n    <thead>\n      <tr>\n        <th>Heading</th>\n        <th>Heading</th>\n        <th>Heading</th>\n        <th>Heading</th>\n      </tr>\n    </thead>\n    <tbody>\n      <tr>\n        <td>Test</td>\n        <td>Test</td>\n        <td>Test</td>\n        <td>Test</td>\n      </tr>\n      <tr>\n        <td>Test</td>\n        <td>Test</td>\n        <td>Test</td>\n        <td>Test</td>\n      </tr>\n      <tr>\n        <td>Test</td>\n        <td>Test</td>\n        <td>Test</td>\n        <td>Test</td>\n      </tr>\n      <tr>\n        <td>Test</td>\n        <td>Test</td>\n        <td>Test</td>\n        <td>Test</td>\n      </tr>\n    </tbody>\n  </table>\n\n------------------------------------------------------ */\n\n// Striped tables\n.table--striped {\n  tbody tr:nth-of-type(odd){\n    background-color: #eee;  // Or whatever color you want\n  }\n}"
  },
  {
    "path": "css/elements/_text.scss",
    "content": "/**\n\n  @text\n--------------------------------------------------------\n  elements/_text.scss\n--------------------------------------------------------\n\n  Some basic styles to paragraphs and\n  inline styles\n\n-----------------------------------------------------  */\n\n\n\n\n\n/* @paragraphs\n--------------------------------------------------------\n\n  Example: Paragraphs\n  <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>\n  <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>\n\n--------------------------------------------------------  */\n\np {\n  margin-bottom: 1em;\n  line-height: 1.25*$unit;\n}\n\n\n\n\n\n/* @inline\n--------------------------------------------------------\n\n  Common inline elements\n\n  Example: inline elements\n  <p>Lorem Ipsum is <b>bold</b> text of the <strong>strong</strong> printing and typesetting industry. Lorem Ipsum is <i>italic</i> simply dummy text <em>emphasized</em> of the printing and typesetting industry.</p<\n\n-------------------------------------------------------- */\n\nb,\nstrong {\n  // NOTE: use bold font-face if available instead of 'font-weight: bold'\n  font-weight: bold;\n}\n\n\ni,\nem {\n  // NOTE: use italic font-face if available instead of 'font-style: italic'\n  font-style: italic;\n}"
  },
  {
    "path": "css/layout/_container.scss",
    "content": "/**\n\n  @container\n--------------------------------------------------------\n  layout/_container.scss\n--------------------------------------------------------\n\n  The .container class is applied to restrict the\n  max-width of an element, usually a bit of content.\n\n  Often, you will place a .container div within another\n  element that has a background color. This gives you\n  a full-bleed background, but the content is contained\n  within the max-width.\n\n  Example: Container within a section\n  <section class=\"awesome-section-with-background-color\">\n    <div class=\"container\">\n      <p>Your content goes here... </p>\n    </div>\n  </section>\n\n------------------------------------------------------ */\n\n$container__max-width: 70em; // restricts width\n\n.container {\n  @include clearfix();\n  margin-left: auto;\n  margin-right: auto;\n  max-width: $container__max-width;   \n  padding: 0 1.5*$unit;\n  @include bp-at-least($breakpoint__sm) {\n    padding: 0 3*$unit;\n  }\n}\n\n"
  },
  {
    "path": "css/layout/_grids.scss",
    "content": "/**\n\n  @grids\n---------------------------------------------------------\n  layout/_grids.scss\n--------------------------------------------------------\n\n  Skyline uses a simple grid system.  It starts with\n  a wrapper div that can have a classname of .grid-wrap\n  or .gw for short.  Inside of that div, you'll nest\n  your grid units.  These are divs with classname of\n  either .grid or .g for short.\n\n  To specify the responsive behavior of the grid,\n  add width classes from layout/_widths.scss.\n\n  Example: Grid with responsive width classes\n  <div class=\"gw\">\n    <div class=\"g sm-one-whole md-one-half  lg-one-third    xl-one-twelfth\">...</div>\n    <div class=\"g sm-one-half  md-one-half  lg-one-third    xl-one-twelfth\">...</div>\n    <div class=\"g sm-one-half  md-one-third lg-one-third    xl-one-twelfth\">...</div>\n    <div class=\"g sm-one-whole md-one-third lg-one-fifth    xl-one-twelfth\">...</div>\n    <div class=\"g sm-one-half  md-one-third lg-three-fifths xl-one-twelfth\">...</div>\n    <div class=\"g sm-one-half  md-one-half  lg-one-fifth    xl-one-twelfth\">...</div>\n    <div class=\"g sm-one-whole md-one-half  lg-one-sixth    xl-one-twelfth\">...</div>\n    <div class=\"g sm-one-half  md-one-third lg-one-sixth    xl-one-twelfth\">...</div>\n    <div class=\"g sm-one-half  md-one-third lg-one-sixth    xl-one-twelfth\">...</div>\n    <div class=\"g sm-one-whole md-one-third lg-one-sixth    xl-one-twelfth\">...</div>\n    <div class=\"g sm-one-half  md-one-half  lg-one-sixth    xl-one-twelfth\">...</div>\n    <div class=\"g sm-one-half  md-one-half  lg-one-sixth    xl-one-twelfth\">...</div>\n  </div>\n\n  For a grid wrap containing equally-sized grid units, like\n  a gallery of thumbnails for instance, use the responsive ups\n  classes from layout/_widths.scss. With these classes\n  applied to the .grid-wrap/.gw, you won't need to specify\n  widths on the individual grid units, just on the wrapper.\n\n  Example: Grid with responsive ups classes\n  <div class=\"gw two-up sm-three-up md-four-up lg-six-up\">\n    <div class=\"g\">...</div>\n    <div class=\"g\">...</div>\n    <div class=\"g\">...</div>\n    <div class=\"g\">...</div>\n    <div class=\"g\">...</div>\n    <div class=\"g\">...</div>\n    <div class=\"g\">...</div>\n    <div class=\"g\">...</div>\n    <div class=\"g\">...</div>\n    <div class=\"g\">...</div>\n    <div class=\"g\">...</div>\n    <div class=\"g\">...</div>\n  </div>\n  \n  NOTE: see some test styles at the bottom of this partial\n  Remove them if you don't need them.\n\n------------------------------------------------------ */\n\n\n\n\n\n// Grid configuration\n// -----------------------------------------------------\n//\n// Define the point at which grids no longer stack, but float\n// You might use a $breakpoint__* variable from _vars.scss or\n// any other value that works for you.\n$grid__float-at: $breakpoint__xs;\n//\n// Define the width of the gutters between grid units\n// You might use $unit from _vars.scss, or a relative value \n// of $unit, like .5$unit for instance for small gutters.\n$grid__gutter-width: $unit;\n//\n// Define the amount of space at the bottom of a grid unit\n// when they are stacking (before they start to float)\n// You might choose $unit again.\n$grid__bottom-spacing-when-stacking: $unit;\n//\n// Define the amount of space at the bottom of a grid unit\n// when they are floating. It's often a good idea to make\n// this value equal to the gutter width.\n$grid__bottom-spacing-when-floating: $grid__gutter-width;\n\n\n\n// Grid Wrap\n.grid-wrap,\n.gw {\n  @include clearfix();\n  display: block;\n  // Sometimes, ul are used for grid wraps\n  list-style-type: none;\n  margin-bottom: -1*$grid__bottom-spacing-when-stacking;\n  @include bp-at-least($grid__float-at) {\n    margin: 0 0 -1*$grid__bottom-spacing-when-floating -1*$grid__gutter-width;\n  }\n}\n\n\n// Grid\n.grid,\n.g {\n  @include clearfix();\n  min-height: 1px;\n  position: relative;\n  padding-bottom: $grid__bottom-spacing-when-stacking;\n  display: block;\n  width: 100%;\n  @include bp-at-least($grid__float-at) {\n    padding: 0 0 $grid__bottom-spacing-when-floating $grid__gutter-width;\n    float: left;\n  }\n}\n\n"
  },
  {
    "path": "css/layout/_hide.scss",
    "content": "/**\n\n  @hide\n---------------------------------------------------------\n  layout/_hide.scss\n--------------------------------------------------------\n\n  Utility state classes to hide things in different ways\n\n--------------------------------------------------------- */\n\n// The classic, display: none\n.is-hidden {\n  display: none !important;\n  visibility: hidden !important;\n}\n\n\n// Use this if you still need js access to this element\n// it's visually hidden but still in the DOM\n.is-visually-hidden {\n  position: absolute;\n  left: -9999%;\n  height: 0;\n  padding: 0;\n  margin: 0;\n  opacity: 0;\n}\n\n\n// Responsive hiders\n@include bp-at-least($breakpoint__xs) {\n  .hide__xs {\n    display: none;\n  }\n}\n@include bp-at-least($breakpoint__sm) {\n  .hide__sm {\n    display: none;\n  }\n}\n@include bp-at-least($breakpoint__md) {\n  .hide__md {\n    display: none;\n  }\n}\n@include bp-at-least($breakpoint__lg) {\n  .hide__lg {\n    display: none;\n  }\n}\n@include bp-at-least($breakpoint__xl) {\n  .hide__xl {\n    display: none;\n  }\n}\n"
  },
  {
    "path": "css/layout/_media.scss",
    "content": "/**\n\n  @media\n--------------------------------------------------------\n  layout/_media.scss\n--------------------------------------------------------\n\n  The 'media' object is a common pattern in OOCSS.\n  It consists of a wrapper element with a classname of\n  .media and then two child elements, one that contains\n  an image or video that is floated, and the other\n  contains text.\n\n  This used commonly in bios, or comments where you\n  have an avatar to one site, and the comment next to it.\n\n  Source: http://www.stubbornella.org/content/2010/06/25/the-media-object-saves-hundreds-of-lines-of-code/\n\n-----------------------------------------------------  */\n\n\n/* @media objects\n---------------------------------------------------------\n\n  Example: Media object, left\n  <article class=\"media\">\n    <div class=\"media__left one-fifth\">\n      <img src=\"http://fillmurray.com/300/300\">\n    </div>\n    <div class=\"media__body\">\n      <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>\n    </div>\n  </article>\n\n  Example: Media object, right\n  <article class=\"media\">\n    <div class=\"media__right one-fifth\">\n      <img src=\"http://fillmurray.com/300/300\">\n    </div>\n    <div class=\"media__body\">\n      <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>\n    </div>\n  </article>\n\n---------------------------------------------------------  */\n\n// The main media object\n.media{\n  display: block;\n  @include clearfix();\n  margin-bottom: 1em;  // you might end up changing this, either globally or per module\n}\n\n\n\n// Child elements, to the left or right\n.media__left {\n  float: left;\n  margin-right: 1em;  // you might end up changing this, either globally or per module\n}\n.media__right {\n  float: right;\n  margin-left: 1em;\n}\n\n// The images inside those left/right elements should be block\n.media__left img,\n.media__right img {\n  display:block;\n}\n\n\n\n// The body of the media element\n.media__body {\n  overflow: hidden;\n}\n.media__body,\n.media__body > :last-child {\n  margin-bottom: 0;\n}"
  },
  {
    "path": "css/layout/_ups.scss",
    "content": "/**\n\n  @ups\n--------------------------------------------------------\n  layout/_ups.scss\n--------------------------------------------------------\n\n  UPS?\n\n  Yep, ups.  These are global classes that will set\n  their direct children to a specific width.  You will\n  mainly use these in grids, and maybe with tabs or\n  navigations.\n\n  For instance: four-up will set each child to 25%\n\n  Set the ups configuration variables below in this partial\n  to specify how many or how few classes you want available\n  in your project.\n\n  Example: Ups and grids\n  <div class=\"gw two-up\">\n    <div class=\"g\"><img src=\"http://fillmurray.com/500/300\"></div>\n    <div class=\"g\"><img src=\"http://fillmurray.com/500/300\"></div>\n  </div><!--/gw-->\n  <div class=\"gw three-up\">\n    <div class=\"g\"><img src=\"http://fillmurray.com/500/300\"></div>\n    <div class=\"g\"><img src=\"http://fillmurray.com/500/300\"></div>\n    <div class=\"g\"><img src=\"http://fillmurray.com/500/300\"></div>\n  </div><!--/gw-->\n\n  Ups work like widths in that they have responsive behavior.  If\n  you prepend an up class with a responsive prefix, like (s for small\n  or m for medium) the behaviour will only kick in at those\n  viewports.\n\n  For example, if you want your gallery to be two-up at the smallest\n  viewport, four-up at medium, six-up at large, and eight-up on the largest then use\n  this.\n\n  Example: Responsive Ups\n  <div class=\"gw two-up m-four-up l-six-up xl-eight-up\">\n    <div class=\"g\"><img src=\"http://fillmurray.com/500/300\"></div>\n    <div class=\"g\"><img src=\"http://fillmurray.com/500/300\"></div>\n    <div class=\"g\"><img src=\"http://fillmurray.com/500/300\"></div>\n    <div class=\"g\"><img src=\"http://fillmurray.com/500/300\"></div>\n    <div class=\"g\"><img src=\"http://fillmurray.com/500/300\"></div>\n    <div class=\"g\"><img src=\"http://fillmurray.com/500/300\"></div>\n    <div class=\"g\"><img src=\"http://fillmurray.com/500/300\"></div>\n    <div class=\"g\"><img src=\"http://fillmurray.com/500/300\"></div>\n    <div class=\"g\"><img src=\"http://fillmurray.com/500/300\"></div>\n    <div class=\"g\"><img src=\"http://fillmurray.com/500/300\"></div>\n    <div class=\"g\"><img src=\"http://fillmurray.com/500/300\"></div>\n    <div class=\"g\"><img src=\"http://fillmurray.com/500/300\"></div>\n    <div class=\"g\"><img src=\"http://fillmurray.com/500/300\"></div>\n    <div class=\"g\"><img src=\"http://fillmurray.com/500/300\"></div>\n    <div class=\"g\"><img src=\"http://fillmurray.com/500/300\"></div>\n    <div class=\"g\"><img src=\"http://fillmurray.com/500/300\"></div>\n  </div><!--/gw-->\n  \n  \n\n-----------------------------------------------------  */\n\n\n\n\n// Ups configuration \n// Define the number of ups you want to use at each\n// breakpoint. The breakpoints below match the values that\n// you defined in base/_vars.scss \n//\n$ups__number-of-ups-at-breakpoint: (\n  n:   12,\n  xs:  12,\n  sm:  12,\n  md:  12,\n  lg:  12,\n  xl:  12,\n  xxl: 12\n);\n\n\n\n// ----------------------------------------------------\n// Function to make easy-to-read class from number\n// ----------------------------------------------------\n\n// Define english for each integer\n// NOTE: this is also defined in layout/_widths.scss but\n// we're redefining it to avoid making _widths.scss a\n// dependency. In a future release, this will be included\n// in something like base/_definitions.scss.\n//\n$english-by-number: (\n  1:  \"one\",\n  2:  \"two\",\n  3:  \"three\",\n  4:  \"four\",\n  5:  \"five\",\n  6:  \"six\",\n  7:  \"seven\",\n  8:  \"eight\",\n  9:  \"nine\",\n  10: \"ten\",\n  11: \"eleven\",\n  12: \"twelve\"\n);\n\n\n// Mixin to return easy-to-read up class from 2 numbers\n// Accepts a $numerator, $denominator, and optional breakpoint\n// \n@mixin easy-to-read-up($n, $breakpoint:\"\") {\n  // Define optional prefix\n  //\n  $breakpoint-prefix: \".\";\n  @if ($breakpoint != \"n\") {  \n    @if map-has-key($ups__number-of-ups-at-breakpoint, $breakpoint) {\n      $breakpoint-prefix: \".#{unquote($breakpoint)}-\";\n    }\n  }\n  \n  // Define english and delimiter '-' for first part of class\n  //\n  $up-first-part: \"#{map-get($english-by-number, $n)}-\";\n  \n  // Here's the class\n  #{$breakpoint-prefix}#{$up-first-part}up > * { width: (100 / $n)*1%; }\n}\n\n// Loop through all breakpoints in $ups__number-of-ups-at-breakpoint\n@each $breakpoint, $num-ups in $ups__number-of-ups-at-breakpoint {\n  @if ($num-ups > 0) {  \n    @if ($breakpoint != \"n\") {\n      /* \n        \n        Responsive ups at $breakpoint__#{$breakpoint}\n      \n      ---------------------------------------------------- */  \n      @include bp-at-least ( map-get($breakpoints, $breakpoint) ) {\n        @for $i from 1 through $num-ups {\n          @include easy-to-read-up($i, $breakpoint);\n        }\n      }\n    }\n    @else {\n      /*\n        \n        Widths at default Viewport \n      \n      ---------------------------------------------------- */  \n      @for $i from 1 through $num-ups {\n        @include easy-to-read-up($i, $breakpoint);\n      }\n    }\n  }\n}\n"
  },
  {
    "path": "css/layout/_widths.scss",
    "content": "/**\n\n  @widths\n---------------------------------------------------------\n  layout/_widths.scss\n--------------------------------------------------------\n\n  Global Width Classes like .one-third or .seven-twelfths\n  and responsive widths like .sm-one-third or .xl-one-half\n\n  If you append the width class with a size indicator, the\n  size will only be applied if the viewport is at least\n  at that breakpoint size.\n\n  Set the widths configuration variables below in this partial\n  to specify how many or how few classes you want available\n  in your project.\n\n  Requires:\n  * base/_vars.scss and the breakpoint mixin from\n  * base/_mixin-breakpoints.scss\n\n---------------------------------------------------------  */\n\n\n// Widths configuration\n// ------------------------------------------------------\n// Define the number of divisions you want to use at each\n// breakpoint. The breakpoints below match the values that\n// you defined in base/_vars.scss \n//\n// For example, if you define xs: 12, below... you'll end up\n// with a media query for the xs breakpoint and 12 sets of\n// easy-to-read width classes. Not 12 classes, but 12 SETS\n// of classes like .one-third, .two-thirds, .three-thirds etc.\n// This generates a lot of CSS (16kb compressed, non-gzipped), \n// all of it useful but why not specify the number of columns \n// you really need.\n//\n// NOTE: by default, we have 12 divisions for each breakpoint, which\n// is the largest amount possible. Pare this down to what you need.\n// You can use 0 [* TODO *] if you don't want any responsive width classes\n// for any given breakpoint.\n//\n$widths__number-of-divisions-at-breakpoint: (\n  n:   12,\n  xs:  0,\n  sm:  12,\n  md:  12,\n  lg:  12,\n  xl:  12,\n  xxl: 12\n);\n\n\n// 100% width classes:\n// ------------------------------------------------------\n// I would like all 100% width classes like .two-halves\n// and .five-fifths. If you say false, you'll still get \n// .one-whole classes because those are super useful\n//\n$widths__generate-all-100-percent-widths: true; // true or false\n\n\n// Generate common denominator widths:\n// ------------------------------------------------------\n// I would like to keep all width classes, even if the % value is \n// equal to another fraction like .four-eights or .two-sixths.\n// Setting this to 'false' generates less code, but forces you\n// to remember your fractions.\n//\n$widths__generate-common-denominator-widths: true; // true or false\n\n\n\n\n\n// That's it - you're done\n// ------------------------------------------------------\n// NOTE: there's nothing else to edit after this line. All that\n// follows are the functions/mixins that generate the code.\n\n\n// ----------------------------------------------------\n// Function to make easy-to-read class from number\n// ----------------------------------------------------\n\n// Define english for each integer\n//\n$english-by-number: (\n  1:  \"one\",\n  2:  \"two\",\n  3:  \"three\",\n  4:  \"four\",\n  5:  \"five\",\n  6:  \"six\",\n  7:  \"seven\",\n  8:  \"eight\",\n  9:  \"nine\",\n  10: \"ten\",\n  11: \"eleven\",\n  12: \"twelve\"\n);\n\n// Define english 'nth' for the denominators of\n// our fractions\n//\n$english-nth-by-number: (\n  1:  \"whole\",\n  2:  \"half\",\n  3:  \"third\",\n  4:  \"fourth\",\n  5:  \"fifth\",\n  6:  \"sixth\",\n  7:  \"seventh\",\n  8:  \"eighth\",\n  9:  \"ninth\",\n  10: \"tenth\",\n  11: \"eleventh\",\n  12: \"twelfth\"\n);\n\n// Euclid's Algorithm to find GCD of Fraction\n// used to determine if a fraction can be reduced \n//\n// first, this assumes that $b > $a and they are non zero.\n// It will always be so in our \n// case - so we're not going to add conditionals to check for this\n\n@function gcd($a, $b) {\n  @if ($b == 0) { @return $a; }\n  @else {\n    $remainder: $a%$b;\n    @return gcd($b, $remainder);\n  }  \n}\n\n\n// Mixin to return easy-to-read width class from 2 numbers\n// Accepts a $numerator, $denominator, and optional breakpoint\n// \n@mixin easy-to-read-width($numerator, $denominator, $breakpoint:\"\") {\n  // Define optional prefix\n  //\n  $breakpoint-prefix: \".\";\n  @if ($breakpoint != \"n\") {  \n    @if map-has-key($widths__number-of-divisions-at-breakpoint, $breakpoint) {\n      $breakpoint-prefix: \".#{unquote($breakpoint)}-\";\n    }\n  }\n  \n  // Define english and delimiter '-' for first part of class\n  //\n  $width-first-part: \"#{map-get($english-by-number, $numerator)}-\";\n  \n  // Define english nth for second part\n  //\n  $width-second-part: \"#{map-get($english-nth-by-number, $denominator)}\";\n  @if ($numerator > 1) {\n    $width-second-part: \"#{$width-second-part}s\";\n  }\n  @if ($width-second-part == \"halfs\") {\n    $width-second-part: \"halves\";\n  }\n  \n  // Here's the class\n  // Return the class based on settings defined above\n  //\n  // If $widths__generate-all-100-percent-widths is false and $numerator/$denominator = 1. Only do this\n  // for denominators above 1 so we still get .one-whole\n  //\n  @if ($widths__generate-all-100-percent-widths != true and $numerator/$denominator == 1 and $denominator > 1) {\n    // We don't return the width in this situation\n  }\n  // If $widths__generate-common-denominator-widths is false\n  //\n  @elseif ($widths__generate-common-denominator-widths != true and gcd($numerator, $denominator) > 1) {\n    // We don't return the width in this situation\n  }\n  @else {\n    #{$breakpoint-prefix}#{$width-first-part}#{$width-second-part} { width: ($numerator/$denominator)*100%; }\n  }\n}\n\n// Loop through all breakpoints in $widths__number-of-divisions-at-breakpoint\n@each $breakpoint, $num-divisions in $widths__number-of-divisions-at-breakpoint {\n  @if ($num-divisions > 0) {  \n    @if ($breakpoint != \"n\") {\n      /* \n        \n        Responsive widths at $breakpoint__#{$breakpoint}\n      \n      ---------------------------------------------------- */  \n      @include bp-at-least ( map-get($breakpoints, $breakpoint) ) {\n        @for $i from 1 through $num-divisions {\n          @for $j from 1 through $i {\n            @include easy-to-read-width($j, $i, $breakpoint);\n          }\n        }\n      }\n    }\n    @else {\n      /*\n        \n        Widths at default Viewport \n      \n      ---------------------------------------------------- */  \n      @for $i from 1 through $num-divisions {\n        @for $j from 1 through $i {\n          @include easy-to-read-width($j, $i, $breakpoint);\n        }\n      }\n    }\n  }\n}\n\n// ----------------------------------------------------\n// End function to make easy-to-read class from number\n// ----------------------------------------------------"
  },
  {
    "path": "css/modules/_alerts.scss",
    "content": "/**\n\n  @alerts\n---------------------------------------------------------\n  modules/_alerts.scss\n--------------------------------------------------------\n\n  Alerts are UI elements that give important info\n\n  Example: Error\n  <div class=\"alert alert--error\">\n    <a href=\"#\" class=\"btn__close\">&times;</a>\n    <p>Uh oh - something went wrong</p>\n  </div>\n\n  Example: Warning\n  <div class=\"alert alert--warning\">\n    <a href=\"#\" class=\"btn__close\">&times;</a>\n    <p>Shake it fast, but watch yourself.</p>\n  </div>\n\n  Example: Success\n  <div class=\"alert alert--success\">\n    <a href=\"#\" class=\"btn__close\">&times;</a>\n    <p>The secret to my success is that I learn, 25 hours a day!</p>\n  </div>\n\n  Example: Info\n  <div class=\"alert alert--info\">\n    <a href=\"#\" class=\"btn__close\">&times;</a>\n    <p>Did you ever know that you're my hero?</p>\n  </div>\n\n  NOTE: The code below uses declared color units, if you'd\n        prefer, declare those as variables in _vars.scss\n\n------------------------------------------------------ */\n\n\n.alert {\n  position: relative;\n  border-width: 1px;\n  border-style: solid;\n  margin-bottom: 2*$unit;\n  padding: .5rem 4rem .5rem .5rem;\n  line-height: 1.25;\n\n  // text\n  p {\n    margin: 0;\n  }\n\n  // Close buttons in alert\n  .btn__close {\n    position: absolute;\n    top: 50%;\n    margin-top: -.75em;\n    right: 1em;\n    opacity: .5;\n    -webkit-transition: all .3s;\n    transition: all .3s;\n    text-decoration: none;\n    &:hover {\n      opacity: 1;\n    }\n  }\n\n}\n\n\n\n\n// Error alert\n//\n.alert--error {\n  color: #e04646;\n  border-color: #e04646;\n  background: #ffe6e6;\n  // Color of close button\n  .btn__close {\n    color: #e04646;\n  }\n  // Color of line {\n  &:after {\n    border-color: #e04646;\n  }\n}\n\n\n\n// Warning alert\n//\n.alert--warning {\n  color: #b29804;\n  border-color: #b29804;\n  background: #fcf7d8;\n  // Color of close button\n  .btn__close {\n    color: #b29804;\n  }\n  // Color of line {\n  &:after {\n    border-color: #b29804;\n  }\n}\n\n\n\n// Info alert\n//\n.alert--info {\n  color: #537df6;\n  border-color: #537df6;\n  background: #e8f3ff;\n  // Color of close button\n  .btn__close {\n    color: #537df6;\n  }\n  // Color of line\n  &:after {\n    border-color: #537df6;\n  }\n}\n\n\n\n// Success alert\n//\n.alert--success {\n  color: #0ca129;\n  border-color: #0ca129;\n  background: #dafce1;\n  // Color of close button\n  .btn__close {\n    color: #0ca129;\n  }\n  // Color of line\n  &:after {\n    border-color: #0ca129;\n  }\n}"
  },
  {
    "path": "css/modules/_blocks.scss",
    "content": "/**\n\n  @blocks\n--------------------------------------------------------\n  modules/_blocks.scss\n--------------------------------------------------------\n\n  Blocks contain sections of content.  Blocks can have\n  different visual styling, but usually have the same\n  structure; one spacing unit margin at the bottom,\n  and some have borders, and padding, etc.\n\n-----------------------------------------------------  */\n\n// Blocks add bottom margin\n//\n.block {\n  margin-bottom: 2*$unit;\n  // These blocks don't contain visual styling by default, but you can add your own\n}\n\n\n// Block with top and bottom margin\n//\n.block--ends {\n  margin-top: 2*$unit;\n  margin-bottom: 2*$unit;\n}\n\n"
  },
  {
    "path": "css/modules/_callouts.scss",
    "content": "/**\n\n  @callouts\n--------------------------------------------------------\n  modules/_callouts.scss\n--------------------------------------------------------\n\n  Callouts, are sections of featured content that usually \n  contain an icon, a title, and some text. These are \n  usually in a row, and call attention to highlighted features.\n\n  Example: Callout\n  <article class=\"callout\">\n    <img class=\"callout__media\" src=\"images/fpo-icon.png\">\n    <h3 class=\"callout__title\">Feature</h3>\n    <p>This callout is very impressive, and should command your attention</p>\n  </article>\n\n-----------------------------------------------------  */\n\n.callout {\n  text-align: center;\n}\n\n.callout__media {\n  display: block;\n  margin: 0 auto 1*$unit;\n  max-height: 3em;\n  width: auto;\n}\n\n.callout__title {\n  font-size: 1.5em;\n}"
  },
  {
    "path": "css/modules/_heroes.scss",
    "content": "/**\n\n  @heroes\n--------------------------------------------------------\n  modules/_heroes.scss\n--------------------------------------------------------\n\n  Just your everyday, normal hero.  Contains a div that has\n  the media (video or image) in the background, and a div\n  for the main content.\n\n  Example: Hero\n  <div class=\"hero\">\n    <div class=\"hero__main\">\n      <h1 class=\"hero__leadin\">This is the leadin</h1>\n      <h2 class=\"hero__name\">Name Here</h2>\n    <div class=\"hero__media\"><img src=\"http://fillmurray.com/1000/400\"></div>\n  </div>\n------------------------------------------------------ */\n\n\n.hero {\n  position: relative;\n  overflow: hidden;\n  margin-bottom: 2*$unit;\n}\n\n.hero__media {\n  position: relative;\n  z-index: 200;\n}\n\n.hero__main {\n  position: absolute;\n  z-index: 210;\n  width: 100%;\n  top: 50%;\n  text-align: center;\n  color: $color__white;\n  -webkit-transform: translateY(-50%);\n  transform: translateY(-50%);\n  font-size: .75em;\n  @include bp-at-least($breakpoint__sm) {\n    font-size: 1em;\n  }\n  @include bp-at-least($breakpoint__lg) {\n    font-size: 1.25em;\n  }\n}"
  },
  {
    "path": "css/modules/_modals.scss",
    "content": "/**\n\n  @modals\n---------------------------------------------------------\n  modules/_modals.scss\n--------------------------------------------------------\n\n  These are very basic modals, which simply cover the entire\n  viewport from top to bottom, left to right.  Feel free\n  to edit the styles of modals to suit your needs.\n\n--------------------------------------------------------- */\n\n// Main modal box\n//\n.modal {\n  position: fixed;\n  z-index: 200; // modals live in level 2\n  top: 0; bottom: 0; left: 0; right: 0;\n  height: 100%;\n  background: rgba(255, 255, 255, .96);\n  display: none; // is shown with js\n}\n\n\n// The content within the modal\n//\n.modal__container {\n  position: absolute;\n  top: 0; bottom: 0; left: 0; right: 0;\n  display: table;\n  height: 100%;\n  padding: 1*$unit;\n}\n\n\n// The close button\n//\n.modal__close {\n  position: absolute;\n  top: 0;\n  right: 0;\n  margin: .33*$unit .33*$unit 0 0;\n  font-size: 3em;\n  border: none;\n  background: none;\n  display: block;\n  &:hover, &:focus {\n    outline: none;\n    border: none;\n    opacity: .85;\n  }\n  &:active {\n    opacity: .6;\n  }\n\n}\n\n// modal body\n.modal__body {\n  display: table-cell;\n  height: 100%;\n  width: 100%;\n  vertical-align: middle;\n\n  p {\n    margin-bottom: 1em;\n    font-size: 1.5em;\n  }\n}"
  },
  {
    "path": "css/modules/_pages.scss",
    "content": "/**\n\n  @pages\n--------------------------------------------------------\n  modules/_pages.scss\n--------------------------------------------------------\n\n  Pages contain content and can have styled headers\n  and footers if you choose.\n\n-----------------------------------------------------  */\n\n// The page wrap\n//\n.page {\n  // Add styles to the wrapper if you prefer\n}\n\n\n// The header\n//\n.page__header {\n  padding: 1*$unit 0;\n  margin-bottom: 1*$unit;\n  background: rgba(0,0,0,.025);\n  border-bottom: 1px solid $color__grey--light;\n}\n\n\n// The footer\n//\n.page__footer {\n\n}"
  },
  {
    "path": "css/modules/_site-footer.scss",
    "content": "/**\n\n  @site-footer\n--------------------------------------------------------\n  modules/_site-footer.scss\n--------------------------------------------------------\n\n  The site's global footer\n\n------------------------------------------------------ */\n\n\n.site-footer {\n  padding: 1*$unit 0;\n  border-top: 1px solid $color__grey--light;\n}\n\n\n// Credits\n.site-credits {\n  display: block;\n  clear: both;\n}"
  },
  {
    "path": "css/modules/_site-header.scss",
    "content": "/**\n\n  @site-header\n--------------------------------------------------------\n  modules/_site-header.scss\n--------------------------------------------------------\n\n  Site-wide header\n\n------------------------------------------------------ */\n\n.site-header {\n  @include clearfix();\n  padding: 1*$unit 0;\n  border-bottom: 1px solid $color__grey--light;\n}\n\n\n\n\n\n/* @branding\n--------------------------------------------------------\n\n  The logo & (optional) wordmark\n\n  Example: Branding logo\n  <a class=\"branding\" href=\"/\">\n    <img class=\"branding__logo img--title\" src=\"images/logo.svg\" alt=\"My Company\">\n    <h1 class=\"branding__wordmark\">My Company</h1>\n  </a>\n\n------------------------------------------------------ */\n\n.branding {\n  margin: 0 auto 1*$unit;\n  text-decoration: none;\n  display: block;\n  text-align: center;\n  @include bp-at-least($breakpoint__md) {\n    margin: 0;\n    float: left;\n    text-align: left;\n  }\n}\n\n.branding__logo {\n  height: 3*$unit;\n  width: 3*$unit;\n  @include bp-at-least($breakpoint__md) {\n    float: left;\n    margin-right: 1*$unit;\n  }\n}\n\n.branding__wordmark {\n  font-size: 1.5*$unit;\n  white-space: nowrap;\n  line-height: 2*$unit;\n  margin: 0;\n}\n\n\n\n\n\n/*\n\n  @site-nav\n--------------------------------------------------------\n\n  The main site navigation.\n\n-----------------------------------------------------  */\n\n.site-nav {\n  text-align: center;\n  @include bp-at-least($breakpoint__md) {\n    float: right;\n  }\n  a {\n    display: inline-block;\n    height: 3*$unit;\n    line-height: 3*$unit;\n    padding: 0 .5em;\n    margin-left: .5*$unit;\n    &:first-child {\n      margin-left: 0;\n    }\n  }\n\n}"
  },
  {
    "path": "css/modules/_site-main.scss",
    "content": "/**\n\n  @site-main\n--------------------------------------------------------\n  modules/_site-main.scss\n--------------------------------------------------------\n\n  The site's main content\n\n------------------------------------------------------ */\n\n.site-main {\n  display: block; // <main> element still needs block declaration\n}"
  },
  {
    "path": "css/modules/_site.scss",
    "content": "/**\n\n   @site\n--------------------------------------------------------\n  modules/_site.scss\n--------------------------------------------------------\n\n  We use the naming convention of .site-* for global\n  modules like the header, main, and footer.\n\n  Sometimes it's beneficial to have a wrapping element\n  around the site, directly following the <body>. In\n  this case, we call that .site.\n\n------------------------------------------------------ */\n\n.site {\n\n}"
  },
  {
    "path": "css/modules/_thumbnails.scss",
    "content": "/**\n\n  @thumbnails\n--------------------------------------------------------\n  modules/_thumbnails.scss\n--------------------------------------------------------\n\n  Thumbnails are usually found within a grid or gallery,\n  as a teaser or preview of more content. The common\n  use is to have an image on top of a title and text\n  below, while the entire thumbnail is an anchor link.\n\n  Example: Thumbnail\n  <a class=\"thumbnail\" href=\"/some/article\">\n    <img class=\"thumbnail__media\" src=\"http://fillmurray.com/400/200\">\n    <div class=\"thumbnail__caption\">\n      <h2>A caption title here</h2>\n      <p>Some more text follows to tease the rest of\n      the content</p>\n    </div>\n  </a>\n\n-----------------------------------------------------  */\n\n.thumbnail {\n  display: block;\n  padding: .5*$unit;\n  background: rgba(0, 0, 0, .1);\n  border: 1px solid rgba(0, 0, 0, .15);\n  text-decoration: none;\n}\n\n.thumbnail__media {\n  margin-bottom: .5*$unit;\n}\n\n.thumbnail__caption {\n  font-size: 85%;\n  h1, h2, h3, h4, h5, h5 {\n   margin-bottom: .25*$unit;\n  }\n}"
  },
  {
    "path": "css/modules/_video-embeds.scss",
    "content": "/**\n\n  @video\n--------------------------------------------------------\n  modules/_video-embeds.scss\n--------------------------------------------------------\n\n  Video Embeds\n\n-----------------------------------------------------  */\n\n.video-embed {\n  display: block;\n  width: 100%;\n  height: 0;\n  position: relative;\n  padding-top: 66.666%;\n  iframe {\n    position: absolute;\n    top: 0;\n    bottom: 0;\n    left: 0;\n    right: 0;\n    height: 100% !important;\n    width: 100% !important;\n  }\n}"
  },
  {
    "path": "css/screen.css",
    "content": "/****\n\n  MAIN STYLESHEET for [* Site Name Here *]\n\n---------------------------------------------------------\n\n  BUILT WITH SKYLINE: EVOLVING CSS ARCHITECTURE\n\n  See README.md for info and credits\n\n\n\n---------------------------------------------------------\n\n  TABLE OF CONTENTS\n  @toc\n\n  - Base ............ foundations, mixins, functions, vars\n  - Elements ........ single elements\n  - Layout .......... layout objects like grids, containers  \n  - Modules ......... objects created by combining elements\n\n---------------------------------------------------------  */\n/***\n\n  @base\n---------------------------------------------------------\n\n  Your CSS begins with some global variables, a reset which\n  is basically Normalize, some mixins, and a print stylesheet.\n\n-----------------------------------------------------  */\n/**\n\n  @variables\n---------------------------------------------------------\n  base/_vars.scss\n--------------------------------------------------------\n\n  Global variables are defined here.  Define your colors,\n  spacing and grid settings.\n\n-----------------------------------------------------  */\n/* @colors\n--------------------------------------------------------\n\n  All color variables are defined here.\n\n  We use real color names here.  Although naming something\n  like 'brand' is in fact more generic and reusable, we've\n  found that you end up creating variables like $brand-2,\n  $brand-alt, $brand-complimentary etc.  While coding,\n  it's too easy to forget what those mean.\n\n  If the design changes drastically and the brand changes\n  from, let's say, blue to green, just do a global\n  find/replace - that's what text editors are for.\n\n------------------------------------------------------ */\n/* @breakpoints\n---------------------------------------------------------\n\n  Define global breakpoints as xs, sm, md, lg, xl, xxl\n\n--------------------------------------------------------- */\n/* @global spacing unit\n---------------------------------------------------------\n\n  Define an em value for $unit.  $unit is a helpful little\n  variable that serves to keep your spacing consistent.\n\n  Most often, 1 $unit is equal to your baseline height.  So\n  if your baseline height is 1.125ems (which is 18px), that's\n  the value of 1 $unit.\n\n--------------------------------------------------------- */\n/**\n\n  @reset\n---------------------------------------------------------\n  base/_reset.scss\n--------------------------------------------------------\n\n  This reset institutes the border-box box model and then\n  block and margin/padding resets.\n\n  Throughout Skyline, each partial has it's own resets.\n  This allows you to only use what you need.\n\n  Credit goes to Normalize\n  http://normalize.css v2.1.0 http://git.io/normalize\n\n--------------------------------------------------------- */\n*, *:before, *:after {\n  -webkit-box-sizing: border-box;\n  -moz-box-sizing: border-box;\n  box-sizing: border-box;\n  padding: 0;\n  margin: 0; }\n\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nnav,\nsection,\nsummary,\naudio,\ncanvas,\nvideo {\n  display: block; }\n\n/**\n\n  @breakpoints mixin\n-----------------------------------------------------\n  base/_mixin-breakpoints.scss\n-----------------------------------------------------\n\n  This mixin makes using inline media queries easy.\n  Options include bp-at-least for min-width, bp-until\n  for max-width, and bp-between for min and max widths.\n\n  You can use your breakpoint vars, or any other value.\n\n  Usage: styles at medium breakpoint\n  .some-element {\n    @include bp-at-least($breakpoint__md){\n      your-styles: go-here;\n    }\n  }\n\n  Usage: styles at custom breakpoint\n  .another-element {\n    @include bp-until(83.45em){\n      your-styles: go-here;\n    }\n  }\n\n-----------------------------------------------------  */\n/**\n\n  @clearfix mixin\n---------------------------------------------------------\n  base/_clearfix.scss\n--------------------------------------------------------\n\n  Use @include clearfix(); in your CSS\n\n  Usage: clearfix mixin\n  .element-to-clearfix {\n    @include cleafix();\n  }\n\n\n--------------------------------------------------------- */\n/**\n\n  @font-face importer mixin\n-----------------------------------------------------------\n  _base/_mixin-font-face-importer.scss\n-----------------------------------------------------------\n\n  Use this mixin to embed a font\n\n  $font-name is used in your css in font-family declarations\n  $font-filepath-and-name is the location of your font\n  file and the filename WITHOUT the file extension.  The\n  extensions are added here in the mixin\n\n  Usage:\n  @include embed-font($font-name, $font-filepath-and-name);\n\n--------------------------------------------------------- */\n/**\n\n  @gradual media queries mixin\n--------------------------------------------------------\n  base/_mixin-gradual-media-queries.scss\n--------------------------------------------------------\n\n The mixin takes arguments of start-width, start-fontsize,\n end-width, and end-fontsize and then creates media queries\n between those start and end points at another argument\n value, increment-width.\n\n Usage: Gradually increase the font size of the html\n html {\n  @include gradual-queries(20em, 80%, 70em, 100%, 10em)\n }\n\n In the above usage, the html fontsize will start out at\n 80% at 20em and end up at 100% at 70em - and the gradual\n changes in the fontsize percentage will be calculated\n at 10em intervals.\n\n See http://codepen.io/jeffschram/pen/IixqA\n\n------------------------------------------------------ */\n/**\n\n  @fonts\n--------------------------------------------------------\n  base/_fonts.scss\n--------------------------------------------------------\n\n  Define the fonts used in this app and declare silent\n  classes to be used in your CSS.\n\n  If you are using a webfont that you're hosting, add \n  the @embed-font() mixin from base/_mixin-font-face-importer.scs \n  before you declare your fonts.\n\n  Usage: Create a font-family named \"interstate-light\" using a font at /fonts/interstate_light-webfont.woff (and other extensions)\n  @include embed-font(\"interstate-light\", \"/fonts/interstate_light-webfont\");\n  \n  If you are using Google Fonts, you can add the\n  import code before you declare your fonts.\n\n  @import url(//fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700);\n\n-------------------------------------------------------- */\n/* @sans\n--------------------------------------------------------\n\n  This is your basic sans font.\n\n  Usage: use sans regular on a p\n  p {\n    @extend %sans--regular;\n  }\n\n------------------------------------------------------ */\nbody, .btn {\n  font-family: sans-serif;\n  font-weight: 400;\n  font-style: normal; }\n\n/* @serif\n--------------------------------------------------------\n\n  This is your basic serif font.\n\n  Usage: use serif regular on a p\n  p {\n    @extend %serif--regular;\n  }\n\n-------------------------------------------------------- */\ninput, input::-webkit-input-placeholder, input:-moz-placeholder, textarea {\n  font-family: georgia, times;\n  font-weight: 300;\n  font-style: normal; }\n\n/**\n\n  @dev helpers\n--------------------------------------------------------\n  base/_dev-helpers.scss\n--------------------------------------------------------\n\n  Dev helpers highlight elements and/or show information\n  about the site and its current state (breakpoints, etc.)\n\n  These are made active by adding classes to the HTML\n  element. A JS system to toggle these classes is in\n  the works. \n\n  This partial requires:\n  * base/_vars.scss\n  * base/_mixin-breakpoints.scss\n\n-------------------------------------------------------- */\n/* @highlight elements at breakpoint\n--------------------------------------------------------\n  \n  Highlight an element at certain breakpoints by changing\n  its color;\n\n  Add .dev--highlight to the HTML element to enable this.\n\n  Example: Highlight a title at MD breakpoint\n  <h1 class=\"md-highlight\">I will change color at MD breakpoint</h1>\n\n-------------------------------------------------------- */\n@media screen and (min-width: 20em) {\n  .dev--highlight-elements [class*=\"-highlight\"] {\n    color: inherit; }\n  .dev--highlight-elements .xs-highlight {\n    color: #94c1c8; } }\n@media screen and (min-width: 34.375em) {\n  .dev--highlight-elements [class*=\"-highlight\"] {\n    color: inherit; }\n  .dev--highlight-elements .sm-highlight {\n    color: #a2bb60; } }\n@media screen and (min-width: 48em) {\n  .dev--highlight-elements [class*=\"-highlight\"] {\n    color: inherit; }\n  .dev--highlight-elements .md-highlight {\n    color: #eb6d58; } }\n@media screen and (min-width: 64em) {\n  .dev--highlight-elements [class*=\"-highlight\"] {\n    color: inherit; }\n  .dev--highlight-elements .lg-highlight {\n    color: #0d699c; } }\n@media screen and (min-width: 78.5em) {\n  .dev--highlight-elements [class*=\"-highlight\"] {\n    color: inherit; }\n  .dev--highlight-elements .xl-highlight {\n    color: #c492bc; } }\n@media screen and (min-width: 100em) {\n  .dev--highlight-elements [class*=\"-highlight\"] {\n    color: inherit; }\n  .dev--highlight-elements .xxl-highlight {\n    color: #76400b; } }\n\n/* @highlight grids in dev mode\n--------------------------------------------------------\n  \n  Indicate grids using responsive widths at certain breakpoints.\n\n  Add .dev--grids to the HTML element to enable this.\n\n  No extra classes are needed on the grids themselves.\n\n-------------------------------------------------------- */\n.dev--highlight-grids .g > *, .dev--highlight-grids .grid > * {\n  min-height: 4em;\n  background: rgba(193, 199, 208, 0.5);\n  border: 1px solid rgba(193, 199, 208, 0.5); }\n@media screen and (min-width: 20em) {\n  .dev--highlight-grids .g[class*=\"xs-\"] > *, .dev--highlight-grids .grid[class*=\"xs-\"] > * {\n    border-color: #94c1c8;\n    background: rgba(148, 193, 200, 0.25); } }\n@media screen and (min-width: 34.375em) {\n  .dev--highlight-grids .g[class*=\"sm-\"] > *, .dev--highlight-grids .grid[class*=\"sm-\"] > * {\n    border-color: #a2bb60;\n    background: rgba(162, 187, 96, 0.25); } }\n@media screen and (min-width: 48em) {\n  .dev--highlight-grids .g[class*=\"md-\"] > *, .dev--highlight-grids .grid[class*=\"md-\"] > * {\n    border-color: #eb6d58;\n    background: rgba(235, 109, 88, 0.25); } }\n@media screen and (min-width: 64em) {\n  .dev--highlight-grids .g[class*=\"lg-\"] > *, .dev--highlight-grids .grid[class*=\"lg-\"] > * {\n    border-color: #0d699c;\n    background: rgba(13, 105, 156, 0.25); } }\n@media screen and (min-width: 78.5em) {\n  .dev--highlight-grids .g[class*=\"xl-\"] > *, .dev--highlight-grids .grid[class*=\"xl-\"] > * {\n    border-color: #c492bc;\n    background: rgba(196, 146, 188, 0.25); } }\n@media screen and (min-width: 100em) {\n  .dev--highlight-grids .g[class*=\"xxl-\"] > *, .dev--highlight-grids .grid[class*=\"xxl-\"] > * {\n    border-color: #76400b;\n    background: rgba(118, 64, 11, 0.25); } }\n@media screen and (min-width: 20em) {\n  .dev--highlight-grids .gw[class*=\"xs-\"][class*=\"-up\"] > * > *, .dev--highlight-grids .grid-wrap[class*=\"xs-\"][class*=\"-up\"] > * > * {\n    border-color: #94c1c8;\n    background: rgba(148, 193, 200, 0.25); } }\n@media screen and (min-width: 34.375em) {\n  .dev--highlight-grids .gw[class*=\"sm-\"][class*=\"-up\"] > * > *, .dev--highlight-grids .grid-wrap[class*=\"sm-\"][class*=\"-up\"] > * > * {\n    border-color: #a2bb60;\n    background: rgba(162, 187, 96, 0.25); } }\n@media screen and (min-width: 48em) {\n  .dev--highlight-grids .gw[class*=\"md-\"][class*=\"-up\"] > * > *, .dev--highlight-grids .grid-wrap[class*=\"md-\"][class*=\"-up\"] > * > * {\n    border-color: #eb6d58;\n    background: rgba(235, 109, 88, 0.25); } }\n@media screen and (min-width: 64em) {\n  .dev--highlight-grids .gw[class*=\"lg-\"][class*=\"-up\"] > * > *, .dev--highlight-grids .grid-wrap[class*=\"lg-\"][class*=\"-up\"] > * > * {\n    border-color: #0d699c;\n    background: rgba(13, 105, 156, 0.25); } }\n@media screen and (min-width: 78.5em) {\n  .dev--highlight-grids .gw[class*=\"xl-\"][class*=\"-up\"] > * > *, .dev--highlight-grids .grid-wrap[class*=\"xl-\"][class*=\"-up\"] > * > * {\n    border-color: #c492bc;\n    background: rgba(196, 146, 188, 0.25); } }\n@media screen and (min-width: 100em) {\n  .dev--highlight-grids .gw[class*=\"xxl-\"][class*=\"-up\"] > * > *, .dev--highlight-grids .grid-wrap[class*=\"xxl-\"][class*=\"-up\"] > * > * {\n    border-color: #76400b;\n    background: rgba(118, 64, 11, 0.25); } }\n\n/* @show the current breakpoint\n--------------------------------------------------------\n  \n  Adds a badge to the bottom right of the body to show\n  the current breakpoint.\n\n  To enable this, add .dev--show-breakpoint to the HTML\n  element\n\n-------------------------------------------------------- */\n.dev--show-breakpoint body:before {\n  content: \"-\";\n  position: fixed;\n  bottom: 0;\n  right: 0;\n  padding: 1em;\n  border: 1px solid #b0b3b3;\n  background: rgba(176, 179, 179, 0.25);\n  font-size: .25em;\n  line-height: 1;\n  color: #b0b3b3; }\n  @media screen and (min-width: 20em) {\n    .dev--show-breakpoint body:before {\n      content: \"XS\";\n      color: #94c1c8;\n      background: rgba(148, 193, 200, 0.25);\n      border-color: #94c1c8; } }\n  @media screen and (min-width: 34.375em) {\n    .dev--show-breakpoint body:before {\n      content: \"SM\";\n      color: #a2bb60;\n      background: rgba(162, 187, 96, 0.25);\n      border-color: #a2bb60; } }\n  @media screen and (min-width: 48em) {\n    .dev--show-breakpoint body:before {\n      content: \"MD\";\n      color: #eb6d58;\n      background: rgba(235, 109, 88, 0.25);\n      border-color: #eb6d58; } }\n  @media screen and (min-width: 64em) {\n    .dev--show-breakpoint body:before {\n      content: \"LG\";\n      color: #0d699c;\n      background: rgba(13, 105, 156, 0.25);\n      border-color: #0d699c; } }\n  @media screen and (min-width: 78.5em) {\n    .dev--show-breakpoint body:before {\n      content: \"XL\";\n      color: #c492bc;\n      background: rgba(196, 146, 188, 0.25);\n      border-color: #c492bc; } }\n  @media screen and (min-width: 100em) {\n    .dev--show-breakpoint body:before {\n      content: \"XXL\";\n      color: #76400b;\n      background: rgba(118, 64, 11, 0.25);\n      border-color: #76400b; } }\n\n/**\n\n  @print\n--------------------------------------------------------\n  base/_print.scss\n--------------------------------------------------------\n\n  Print Stylesheet from http://h5bp.com/r\n\n-----------------------------------------------------  */\n/* ==========================================================================\n   Print styles.\n   Inlined to avoid required HTTP connection: h5bp.com/r\n   CREDIT: HTML5 Boilerplate\n   ========================================================================== */\n@media print {\n  * {\n    background: transparent !important;\n    color: #000 !important;\n    /* Black prints faster: h5bp.com/s */\n    box-shadow: none !important;\n    text-shadow: none !important; }\n\n  a,\n  a:visited {\n    text-decoration: underline; }\n\n  a[href]:after {\n    content: \" (\" attr(href) \")\"; }\n\n  abbr[title]:after {\n    content: \" (\" attr(title) \")\"; }\n\n  .ir a:after,\n  a[href^=\"javascript:\"]:after,\n  a[href^=\"#\"]:after {\n    content: \"\"; }\n\n  pre,\n  blockquote {\n    border: 1px solid #999;\n    page-break-inside: avoid; }\n\n  thead {\n    display: table-header-group;\n    /* h5bp.com/t */ }\n\n  tr,\n  img {\n    page-break-inside: avoid; }\n\n  img {\n    max-width: 100% !important; }\n\n  @page {\n    margin: 0.5cm; }\n  p,\n  h2,\n  h3 {\n    orphans: 3;\n    widows: 3; }\n\n  h2,\n  h3 {\n    page-break-after: avoid; } }\n/***\n\n  @elements\n---------------------------------------------------------\n\n  Global styling of elements.\n\n---------------------------------------------------------  */\n/**\n\n  @body\n--------------------------------------------------------\n  elements/_body.scss\n--------------------------------------------------------\n\n  Body should contain the document's default font and\n  background color for the content, if that background\n  color is different than the html.\n\n------------------------------------------------------ */\nbody {\n  line-height: 1.5;\n  color: #515554;\n  background: white; }\n\n/**\n\n  @buttons\n--------------------------------------------------------\n  elements/_buttons.scss\n--------------------------------------------------------\n\n  Buttons are a common UI component in sites/apps.  They\n  are usually either anchor, button, or input elements\n  with a classname of 'btn'.  They provide an easily\n  identified clickable target.\n\n  Buttons commonly have modifying classes that apply\n  specific styles.  Examples of these are .btn--large and\n  .btn--inline\n\n  Example: Buttons using anchors\n  <p><a href=\"#\" class=\"btn\">Regular Button</a></p>\n\n  Example: Buttons using buttons\n  <p><button class=\"btn\">Regular Button</button></p>\n\n------------------------------------------------------ */\nbutton:focus, button:active {\n  outline: none;\n  box-shadow: none;\n  border: none; }\n\n.btn {\n  -webkit-appearance: none;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  display: inline-block;\n  background: #515554;\n  color: white;\n  border: none;\n  font-size: 1.25em;\n  text-transform: uppercase;\n  text-decoration: none;\n  letter-spacing: .225em;\n  padding: 1em 1.25em; }\n  .btn:hover, .btn:focus, .btn:active {\n    outline: none;\n    opacity: .85; }\n\n/* @btn--secondary\n--------------------------------------------------------\n\n  A btn modifier, secondary\n\n  Example: .btn--secondary\n  <a class=\"btn btn--secondary\">Secondary button</a>\n\n------------------------------------------------------ */\n.btn--secondary {\n  background: none;\n  border: 1px solid white;\n  color: white; }\n\n/* @btn--large\n--------------------------------------------------------\n\n  A btn modifier, large\n\n  Example: .btn--large\n  <a class=\"btn btn--large\">Large button</a>\n\n------------------------------------------------------ */\n@media screen and (min-width: 34.375em) {\n  .btn--large {\n    font-size: 1.25em;\n    padding: 1.25em 2.75em; } }\n\n/* @btn--inline\n--------------------------------------------------------\n\n  A btn modifier, if this button is in a paragraph or\n  in anything else that has a defined font-size, this\n  modifier will make the btn inherit the font-size of\n  the partent.\n\n  Example: .btn--inline\n  <p>Here's some text <a class=\"btn btn--inline\">Cool button</a> text keeps going</p>\n\n------------------------------------------------------ */\n.btn--inline {\n  font-size: 1em; }\n\n/* @btn--block\n--------------------------------------------------------\n\n  A btn modifier - makes the button display block, 100%\n  width and aligns the text to the center.  Removes left\n  and right padding since the text is center aligned, it\n  is not needed.  Actually sometimes having the padding\n  on the left and right causes problems if the centered\n  text is quite long - so we just remove it.\n\n  Example: .btn--block\n  <a href=\"#\" class=\"btn btn--block\">Block button</a>\n\n------------------------------------------------------ */\n.btn--block {\n  display: block;\n  width: 100%;\n  text-align: center;\n  padding-right: 0;\n  padding-left: 0; }\n\n/* @btn--icon\n--------------------------------------------------------\n\n  A btn modifier - makes the button display block, 100%\n  width and aligns the text to the center.  Removes left\n  and right padding since the text is center aligned, it\n  is not needed.  Actually sometimes having the padding\n  on the left and right causes problems if the centered\n  text is quite long - so we just remove it.\n\n  Example: .btn--icon\n  <button class=\"btn--icon ss-icon\">Block button</button>\n\n------------------------------------------------------ */\n.btn--icon {\n  background: transparent;\n  border: none;\n  padding: 0;\n  font-size: 1em; }\n\n/**\n\n  @code\n--------------------------------------------------------\n  elements/_code.scss\n--------------------------------------------------------\n\n  Code elements like <code> and <pre>\n\n  Example: Code in a paragraph\n  <p>This is a cool paragraph about a classname called <code>.franz</code></p>\n\n\n-----------------------------------------------------  */\ncode {\n  vertical-align: middle;\n  padding: .25em .5em;\n  background: rgba(193, 199, 208, 0.3); }\n\n/**\n\n  @forms\n---------------------------------------------------------\n  elements/_forms.scss\n--------------------------------------------------------\n\n  Base styles for all forms and form related elements\n\n  Below you'll set styles for all forms, and if you have\n  any specific kinds of forms, like a search form that you\n  create a classname of form--search, put that at the\n  bottom of this partial.\n\n  This scss partial is pretty big.  Here's how it is\n  organized.\n\n  * Base styling on form elements\n\n  * Styles for form & form modules\n\n\n--------------------------------------------------------- */\n/* @text inputs\n--------------------------------------------------------\n\n  Base styles for inputs\n\n  Example: Text Input\n  <input type=\"text\" name=\"schramburger\" placeholder=\"Your Name\">\n\n  Inputs can use sizing classes, .input--s .input--l\n\n  Example: Text Small Input\n  <input class=\"input--s\" type=\"text\" name=\"schramburger\" placeholder=\"Your Name\">\n\n  Example: Text Input\n  <input class=\"input--l\" type=\"text\" name=\"schramburger\" placeholder=\"Your Name\">\n\n------------------------------------------------------ */\ninput {\n  -webkit-appearance: none;\n  border-radius: 0;\n  width: 100%;\n  padding: 1em;\n  border: 1px solid #515554;\n  color: #515554; }\n  input:focus {\n    outline: none; }\n  input.input--s {\n    font-size: .5rem; }\n  input.input--l {\n    font-size: 1.5rem; }\n\ninput::-webkit-input-placeholder {\n  color: #515554; }\ninput:-moz-placeholder {\n  color: #515554; }\ninput::-moz-placeholder {\n  color: #515554; }\ninput:-ms-input-placeholder {\n  color: #515554; }\n\ninput:focus::-webkit-input-placeholder {\n  opacity: .3; }\ninput:focus:-moz-placeholder {\n  opacity: .3; }\ninput:focus::-moz-placeholder {\n  opacity: .3; }\ninput:focus:-ms-input-placeholder {\n  opacity: .3; }\n\n/* @select inputs\n--------------------------------------------------------\n\n  Base styling for all selects\n\n  Example: Select Input\n  <select name=\"schramburger\">\n    <option value=\"value-1\">Option 1</option>\n    <option value=\"value-2\">Option 2</option>\n    <option value=\"value-3\">Option 3</option>\n    <option value=\"value-4\">Option 4</option>\n  </select>\n\n  Selects can have added sizing classes, .select--s and .select--l\n\n  Example: Small select\n  <select name=\"schramburger\" class=\"select--s\">\n    <option value=\"value-1\">Option 1</option>\n    <option value=\"value-2\">Option 2</option>\n    <option value=\"value-3\">Option 3</option>\n    <option value=\"value-4\">Option 4</option>\n  </select>\n\n  Example: Large select\n  <select name=\"schramburger\" class=\"select--l\">\n    <option value=\"value-1\">Option 1</option>\n    <option value=\"value-2\">Option 2</option>\n    <option value=\"value-3\">Option 3</option>\n    <option value=\"value-4\">Option 4</option>\n  </select>\n\n------------------------------------------------------ */\nselect {\n  width: 100%;\n  font-size: 1rem; }\n  select.select--sm {\n    font-size: .5rem; }\n  select.select--lg {\n    font-size: 1.5rem; }\n\n/* @textareas\n--------------------------------------------------------\n\n  Base styling for textareas\n\n  Textareas can have .textarea--s or .textarea--l classes\n  for different sizes\n\n  Example: Textarea\n  <textarea name=\"schramburger\">Hello, there.</textarea>\n\n  Example: Small Textarea\n  <textarea class=\"textarea--s\" name=\"schramburger\">Hello, there.</textarea>\n\n  Example: Large Textarea\n  <textarea class=\"textarea--l\" name=\"schramburger\">Hello, there.</textarea>\n\n------------------------------------------------------ */\ntextarea {\n  width: 100%;\n  min-height: 6em;\n  padding: 1em;\n  border: solid 1px #515554; }\n  textarea:focus {\n    outline: none; }\n  textarea.textarea--s {\n    font-size: .5rem; }\n  textarea.textarea--l {\n    font-size: 1.5rem; }\n\n/* @radio inputs\n--------------------------------------------------------\n\n  Base styling for radio inputs.  Radios are surrounded\n  by a label for better click targets.\n\n  Example: Radio\n  <label class=\"label--radio\" for=\"radio-1\"><input id=\"radio-1\" type=\"radio\" value=\"yes\"> Radio label</label>\n\n  Example: Radio with super-long label\n  <label class=\"label--radio\" for=\"radio-3\"><input id=\"radio-3\" type=\"radio\" value=\"yes\"> Radio label Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ratione, accusantium ipsum animi perspiciatis officiis iure voluptatibus corporis. Enim, officia, tempora vitae libero dolore sint voluptatum. Blanditiis odit laudantium minus repellat</label>\n\n\n------------------------------------------------------ */\ninput[type=radio] {\n  -webkit-appearance: none;\n  width: 1em;\n  height: 1em;\n  padding: 0;\n  border-radius: 50%;\n  border: 1px solid #444;\n  background: transparent; }\n  input[type=radio]:checked {\n    background: #222; }\n\n.label--radio {\n  display: inline-block;\n  position: relative;\n  cursor: pointer;\n  padding-left: 1em; }\n  .label--radio input {\n    position: absolute;\n    top: .7em;\n    left: 0; }\n\n/* @checkbox inputs\n--------------------------------------------------------\n\n  Base styling for checkbox inputs.  Checkboxes are surrounded\n  by a label for better click targets.\n\n  Example: Checkbox\n  <label class=\"label--checkbox\" for=\"checkbox-1\"><input id=\"checkbox-1\" type=\"checkbox\" value=\"yes\"> Checkbox label</label>\n\n  Example: Checkbox with super-long label\n  <label class=\"label--checkbox\" for=\"checkbox-3\"><input id=\"checkbox-3\" type=\"checkbox\" value=\"yes\"> Checkbox label Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ratione, accusantium ipsum animi perspiciatis officiis iure voluptatibus corporis. Enim, officia, tempora vitae libero dolore sint voluptatum. Blanditiis odit laudantium minus repellat</label>\n\n\n------------------------------------------------------ */\ninput[type=checkbox] {\n  -webkit-appearance: none;\n  width: 1em;\n  height: 1em;\n  padding: 0;\n  border: 1px solid #444;\n  background: transparent; }\n  input[type=checkbox]:checked {\n    background: #222; }\n\n.label--checkbox {\n  display: inline-block;\n  position: relative;\n  cursor: pointer;\n  padding-left: 1em; }\n  .label--checkbox input {\n    position: absolute;\n    top: .7em;\n    left: 0; }\n\n/* @textareas\n--------------------------------------------------------\n\n  Base styling for textareas\n\n  Example: Textarea\n  <textarea name=\"schramburger\">Hello, there.</textarea>\n\n------------------------------------------------------ */\ntextarea {\n  width: 100%; }\n\n/* @labels\n--------------------------------------------------------\n\n  Base styling for labels\n\n  Example: label\n  <label>Don't label me, I'm a free spirit</labe>\n\n------------------------------------------------------ */\nlabel {\n  font-size: 1em;\n  font-weight: bold; }\n\n/* @form\n--------------------------------------------------------\n\n  Like the bootstrap convention, apply standard styling\n  on any form with the classname .form\n\n  This allows us to create modifier classnames like\n  .form--inline and .form--horizontal, which will be\n  laid out further below.\n\n------------------------------------------------------ */\n.form {\n  display: block;\n  padding: 2em;\n  border: 1px solid #888;\n  background: #eee; }\n\n/* @form-header\n--------------------------------------------------------\n\n  A form header usually consists of a title and some\n  copy.\n\n  Example: Form header\n  <header class=\"form__header\">\n    <h2>Contact Us</h2>\n    <p>Use this form to contact us.  We love talking to\n    our customers.</p>\n  </header>\n\n-------------------------------------------------------- */\n.form__header {\n  padding-bottom: 1em;\n  margin-bottom: 2em;\n  border-bottom: 1px solid #888; }\n\n/* @fieldsets\n--------------------------------------------------------\n\n  Fieldsets group together related fields.\n\n  Example: Fieldset\n  <fieldset>\n    <legend>Personal Information</legend>\n    <article class=\"field\">\n      <label class=\"field__label\" for=\"exampleInput1\">Your Name</label>\n      <input class=\"field__input=\"exampleInput1\" type=\"text\" required=\"required\" placeholder=\"Your name\">\n      <span class=\"field__feedback\"></span>\n      <span class=\"field__hint\"></span>\n    </article>\n    <article class=\"field\">\n      <label class=\"field__label\" for=\"exampleInput2\">Your Email</label>\n      <input class=\"field__input=\"exampleInput2\" type=\"email\" required=\"required\" placeholder=\"Your email\">\n      <span class=\"field__feedback\"></span>\n      <span class=\"field__hint\">Must be a valid email address</span>\n    </article>\n  </fieldset>\n\n  Fieldsets are also nested inside other fieldsets.\n\n  Example: Nested Fieldsets\n  <fieldset>\n    <legend>Personal Information</legend>\n    <article class=\"field\">\n      <label class=\"field__label\" for=\"exampleInput31\">Your Name</label>\n      <input class=\"field__input=\"exampleInput31\" type=\"text\" required=\"required\" placeholder=\"Your name\">\n      <span class=\"field__feedback\"></span>\n      <span class=\"field__hint\"></span>\n    </article>\n    <article class=\"field\">\n      <label class=\"field__label\" for=\"exampleInput32\">Your Email</label>\n      <input class=\"field__input=\"exampleInput32\" type=\"email\" required=\"required\" placeholder=\"Your email\">\n      <span class=\"field__feedback\"></span>\n      <span class=\"field__hint\">Must be a valid email address</span>\n    </article>\n    <fieldset>\n      <legend>Address</legend>\n        <article class=\"field\">\n          <label class=\"field__label\" for=\"exampleInput33\">Address 1</label>\n          <input class=\"field__input=\"exampleInput33\" type=\"text\" required=\"required\" placeholder=\"Address 1\">\n          <span class=\"field__feedback\"></span>\n          <span class=\"field__hint\">Must be a valid email address</span>\n        </article>\n        <article class=\"field\">\n          <label class=\"field__label\" for=\"exampleInput34\">Address 2</label>\n          <input class=\"field__input=\"exampleInput34\" type=\"text\" required=\"required\" placeholder=\"Address 2\">\n          <span class=\"field__feedback\"></span>\n          <span class=\"field__hint\">Must be a valid email address</span>\n        </article>\n    </fieldset>\n  </fieldset>\n\n-------------------------------------------------------- */\nfieldset {\n  border: none; }\n\n/* @fields\n--------------------------------------------------------\n\n  A field is an article that contains the input and anything\n  related to the input.\n\n  Example: Field for a text input\n  <article class=\"field\">\n    <label class=\"field__label\" for=\"exampleInput1\">Your Name</label>\n    <input class=\"field__input=\"exampleInput1\" type=\"text\" required=\"required\" placeholder=\"Your name\">\n    <span class=\"field__feedback\"></span>\n    <span class=\"field__hint\"></span>\n  </article>\n\n  Example: Field with hint\n  <article class=\"field\">\n    <label class=\"field__label\" for=\"exampleInput2\">Your Email</label>\n    <input class=\"field__input=\"exampleInput2\" type=\"email\" required=\"required\" placeholder=\"Your email\">\n    <span class=\"field__feedback\"></span>\n    <span class=\"field__hint\">Must be a valid email address</span>\n  </article>\n\n  Example: Field with Error\n  <article class=\"field is-error\">\n    <label class=\"field__label\" for=\"exampleInput3\">Your Email</label>\n    <input class=\"field__input=\"exampleInput3\" type=\"email\" required=\"required\" placeholder=\"Your email\">\n    <span class=\"field__feedback\">Sorry, that email is in use.</span>\n    <span class=\"field__hint\"></span>\n  </article>\n\n  Example: Field for a select input\n  <article class=\"field\">\n    <label class=\"field__label\" for=\"exampleInput4\" >Select your favorite</label>\n    <select class=\"field__input input--select\" id=\"exampleInput4\"  name=\"favorite-food\">\n      <option>Pizza</option>\n      <option>Tacos</option>\n      <option>Burgers</option>\n    </select>\n    <span class=\"field__feedback\"></span>\n    <span class=\"field__hint\"></span>\n  </article>\n\n  Example: Field for a textarea input\n  <article class=\"field\">\n    <label class=\"field__label\">Your Name</label>\n    <textarea class=\"field__input\">Hello, there</textarea>\n    <span class=\"field__feedback\"></span>\n    <span class=\"field__hint\"></span>\n  </article>\n\n-------------------------------------------------------- */\n.field {\n  position: relative;\n  margin-bottom: 2em; }\n\n.field__label {\n  display: block; }\n\n.field__hint {\n  color: #888;\n  font-size: .75em;\n  padding: .25em 0;\n  font-style: italic; }\n\n.field__feedback {\n  display: none;\n  font-size: .75em;\n  padding: .25em .75em;\n  background: rgba(218, 35, 0, 0.3);\n  color: white; }\n\n.field.is-error .field__feedback {\n  display: block; }\n.field.is-error input {\n  border: 1px solid rgba(218, 35, 0, 0.3); }\n\n/* @input group\n--------------------------------------------------------\n\n  Group containing multiple inputs, helpful for lists\n  of radios or checkboxes.  Shown below in a field...\n\n  Example: Field with input group of radios\n  <article class=\"field\">\n    <label class=\"field__label\">Choose your favorite</label>\n    <div class=\"field__input-group\">\n      <label class=\"label--radio\" for=\"favorite-food-1\"><input id=\"favorite-food-1\" name=\"favorite-food\" type=\"radio\" value=\"pizza\"> Pizza</label>\n      <label class=\"label--radio\" for=\"favorite-food-2\"><input id=\"favorite-food-2\" name=\"favorite-food\" type=\"radio\" value=\"tacos\"> Tacos</label>\n      <label class=\"label--radio\" for=\"favorite-food-3\"><input id=\"favorite-food-3\" name=\"favorite-food\" type=\"radio\" value=\"burgers\"> Burgers</label>\n    </div>\n    <span class=\"field__feedback\"></span>\n    <span class=\"field__hint\"></span>\n  </article>\n\n  Example: Field with input group of checkboxes\n  <article class=\"field\">\n    <label class=\"field__label\">Select your favorites</label>\n    <div class=\"field__input-group\">\n      <label class=\"label--checkbox\" for=\"favorite-food-4\"><input id=\"favorite-food-4\" name=\"favorite-food-alt\" type=\"checkbox\" value=\"pizza\"> Pizza</label>\n      <label class=\"label--checkbox\" for=\"favorite-food-5\"><input id=\"favorite-food-5\" name=\"favorite-food-alt\" type=\"checkbox\" value=\"tacos\"> Tacos</label>\n      <label class=\"label--checkbox\" for=\"favorite-food-6\"><input id=\"favorite-food-6\" name=\"favorite-food-alt\" type=\"checkbox\" value=\"burgers\"> Burgers</label>\n    </div>\n    <span class=\"field__feedback\"></span>\n    <span class=\"field__hint\"></span>\n  </article>\n\n  Example: Field with input group list modifier\n  <article class=\"field\">\n    <label class=\"field__label\">Select your favorites</label>\n    <div class=\"field__input-group--list\">\n      <label class=\"label--checkbox\" for=\"favorite-food-7\"><input id=\"favorite-food-7\" name=\"favorite-food-alt2\" type=\"checkbox\" value=\"pizza\"> Pizza</label>\n      <label class=\"label--checkbox\" for=\"favorite-food-8\"><input id=\"favorite-food-8\" name=\"favorite-food-alt2\" type=\"checkbox\" value=\"tacos\"> Tacos</label>\n      <label class=\"label--checkbox\" for=\"favorite-food-9\"><input id=\"favorite-food-9\" name=\"favorite-food-alt2\" type=\"checkbox\" value=\"burgers\"> Burgers</label>\n    </div>\n    <span class=\"field__feedback\"></span>\n    <span class=\"field__hint\"></span>\n  </article>\n\n------------------------------------------------------ */\n.field__input-group {\n  display: block; }\n  .field__input-group > * {\n    display: inline-block;\n    margin-right: .5em; }\n    .field__input-group > *:last-child {\n      margin-right: 0; }\n\n.field__input-group--list {\n  display: block; }\n  .field__input-group--list > * {\n    display: block;\n    margin: .5em 0; }\n    .field__input-group--list > *:last-child {\n      margin-bottom: 0; }\n\n/* @form action\n--------------------------------------------------------\n\n  Each form has an actions footer at the bottom to\n  submit the form\n\n  Example: Form Actions Footer\n  <footer class=\"form__actions\">\n  <article class=\"field two-fiths\">\n    <label class=\"field__label is-visually-hidden\" for=\"exampleInput7\" >Submit</label>\n    <input class=\"field__input btn btn--block\" type=\"submit\" id=\"exampleInput7\" value=\"Submit\">\n    <span  class=\"field__feedback\"></span>\n    <span  class=\"field__hint\"></span>\n  </article>\n  </footer>\n\n--------------------------------------------------------- */\n.form__actions {\n  padding-top: 1em;\n  margin-top: 2em;\n  border-top: 1px solid #888; }\n\n/**\n\n  @headings\n--------------------------------------------------------\n  elements/_headings.scss\n--------------------------------------------------------\n\n  We set any base styles for any headings that have\n  no classnames.\n\n  Example: Headings\n  <h1>This is an h1 heading</h1>\n  <h2>This is an h2 heading</h2>\n  <h3>This is an h3 heading</h3>\n  <h4>This is an h4 heading</h4>\n  <h5>This is an h5 heading</h5>\n  <h6>This is an h6 heading</h6>\n\n  Additionally, we add classnames so you\n  can apply the styling of, for instance, an h1 to an h2.\n\n  Example: H1 styled like an H3\n  <h1 class=\"h3\">This is an h1 but looks like an h3</h1>\n\n------------------------------------------------------ */\nh1, .h1 {\n  margin-bottom: 1em; }\n\nh2, .h2 {\n  margin-bottom: 1em; }\n\nh3, .h3 {\n  margin-bottom: 1em; }\n\nh4, .h4 {\n  margin-bottom: 1em; }\n\nh5, .h5 {\n  margin-bottom: 1em; }\n\nh6, .h6 {\n  margin-bottom: 1em; }\n\n/**\n\n   @hr\n--------------------------------------------------------\n  elements/_hr.scss\n--------------------------------------------------------\n\n  Horizontal Rule\n\n  Example:\n  <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>\n  <hr>\n  <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>\n\n-------------------------------------------------------- */\nhr {\n  display: block;\n  height: 1px;\n  border: 0;\n  border-top: 1px solid #ccc;\n  margin: 1em 0;\n  padding: 0; }\n\n/**\n\n   @html\n--------------------------------------------------------\n  elements/_html.scss\n--------------------------------------------------------\n\n  HTML should contain the site's default background color\n  and font-size\n\n------------------------------------------------------ */\nhtml {\n  font-size: 80%; }\n  @media (min-width: 20em) {\n    html {\n      font-size: 80%; } }\n  @media (min-width: 30em) {\n    html {\n      font-size: 83.33333%; } }\n  @media (min-width: 40em) {\n    html {\n      font-size: 86.66667%; } }\n  @media (min-width: 50em) {\n    html {\n      font-size: 90%; } }\n  @media (min-width: 60em) {\n    html {\n      font-size: 93.33333%; } }\n  @media (min-width: 70em) {\n    html {\n      font-size: 96.66667%; } }\n  @media (min-width: 80em) {\n    html {\n      font-size: 100%; } }\n\n* {\n  -webkit-text-size-adjust: 100%;\n  -ms-text-size-adjust: 100%;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale; }\n\n/**\n\n  @images\n---------------------------------------------------------\n  elements/_images.scss\n--------------------------------------------------------\n\n  Base styling for images, plus some helpful utility\n  classes that modify images.\n\n  Note: You won't add any styling to these image classes,\n  these are just utility classes\n\n--------------------------------------------------------- */\n/* @images\n--------------------------------------------------------\n\n  Base Image Style is 100% width by default\n\n  Example: Image\n  <img src=\"http://fillmurray.com/600/300\">\n\n------------------------------------------------------ */\nimg {\n  width: 100%;\n  max-width: 100%;\n  height: auto;\n  vertical-align: middle; }\n\n/* @img--natural\n--------------------------------------------------------\n\n  Natural Images are 100% max-width, but their natural width by default\n\n  Example: Image, Natural Width\n  <img class=\"img--natural\" src=\"http://fillmurray.com/600/300\">\n\n------------------------------------------------------ */\n.img--natural {\n  width: auto; }\n\n/* @img--title\n--------------------------------------------------------\n\n  Title images fit within a heading/title element\n\n  Example: Image inside a title (.img--title)\n  <h1><img class=\"img--title\" src=\"http://fillmurray.com/300/300\"> Title Here versions of Lorem Ipsum.</h1>\n  <h2><img class=\"img--title\" src=\"http://fillmurray.com/300/300\"> Title Here versions of Lorem Ipsum.</h2>\n  <h3><img class=\"img--title\" src=\"http://fillmurray.com/300/300\"> Title Here versions of Lorem Ipsum.</h3>\n\n------------------------------------------------------ */\n.img--title {\n  height: 1em;\n  width: auto;\n  vertical-align: top; }\n\n/* @image placement\n--------------------------------------------------------\n\n  Here are a few helper classes to position images, particularly\n  helpful inside paragraphs.\n\n  Example: Image Right\n  <p><img class=\"img--right\" src=\"http://fillmurray.com/400/300\"> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p><p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\n\n  Example: Image, Natural Width\n  <p><img class=\"img--left\" src=\"http://fillmurray.com/400/300\"> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p><p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\n\n  Example: Image, Center\n  <p><img class=\"img--center\" src=\"http://fillmurray.com/400/300\"> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p><p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>\n\n------------------------------------------------------ */\n.img--right {\n  width: auto;\n  float: right;\n  margin-bottom: 1.125em;\n  margin-left: 1.125em; }\n\n.img--left {\n  width: auto;\n  float: left;\n  margin-right: 1.125em;\n  margin-bottom: 1.125em; }\n\n.img--center {\n  width: auto;\n  display: block;\n  margin-right: auto;\n  margin-bottom: 1.125em;\n  margin-left: auto; }\n\n.img--right img,\n.img--left img,\n.img--center img {\n  width: auto; }\n\n/* @img--circle\n--------------------------------------------------------\n\n  Popular circle image for bios etc.\n\n  Example: Circle image\n  <img class=\"img--circle\" src=\"http://fillmurray.com/400/400\">\n\n------------------------------------------------------ */\n.img--circle {\n  border-radius: 50%; }\n\n/**\n\n  @icons\n---------------------------------------------------------\n  elements/_icons.scss\n--------------------------------------------------------\n\n  Your icon set may vary. In this partial, you may wish\n  to load in a font icon set and add all the associated\n  css that goes with it. This would be the case if you\n  were using something like Symbolset or IcoMoon for\n  example.\n\n--------------------------------------------------------- */\n/* @icon\n--------------------------------------------------------\n\n  This is a basic icon element. We set some basic\n  structural styles and display styles to get the ball\n  rolling.\n\n  Example: Open Icon\n  <i class=\"icon icon--open\">&plus;</i>\n\n  Example: Close Icon\n  <i class=\"icon icon--close\">&times;</i>\n\n------------------------------------------------------ */\n.icon {\n  color: inherit;\n  display: inline-block;\n  font-style: normal;\n  vertical-align: middle;\n  font-size: 1em; }\n\n/**\n\n  @links\n--------------------------------------------------------\n  elements/_links.scss\n--------------------------------------------------------\n\n  Links, <a> etc. & Webkit tap highlight\n\n  Example: link\n  <p>Lorem Ipsum is simply <a href=\"#\">dummy text</a> of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>\n\n-------------------------------------------------------- */\n/* @anchors\n--------------------------------------------------------\n\n  Anchors will have this base styling\n\n------------------------------------------------------ */\na {\n  color: inherit; }\n  a:hover, a:focus {\n    opacity: .75; }\n\n/* @webkit-tap-highlight\n--------------------------------------------------------\n\n  Declare the webkit tap highlight style\n\n------------------------------------------------------ */\nbody {\n  -webkit-tap-highlight-color: rba(0, 0, 0, 0.35); }\n\n/**\n\n  @lists\n--------------------------------------------------------\n  elements/_lists.scss\n--------------------------------------------------------\n\n  Structure for lists\n\n  Example: Unordered List\n  <ul>\n    <li>List item here</li>\n    <li>List item here</li>\n    <li>List item here</li>\n    <li>List item here</li>\n    <li>\n      <ul>\n        <li>Nested Item</li>\n        <li>Nested Item</li>\n        <li>Nested Item</li>\n        <li>Nested Item</li>\n      </ul>\n    </li>\n  </ul>\n\n  Example: Ordered List\n  <ol>\n    <li>List item here</li>\n    <li>List item here</li>\n    <li>List item here</li>\n    <li>List item here</li>\n    <li>\n      <ol>\n        <li>Nested Item</li>\n        <li>Nested Item</li>\n        <li>Nested Item</li>\n        <li>Nested Item</li>\n      </ul>\n    </li>\n  </ol>\n\n-------------------------------------------------------- */\nul,\nol {\n  padding-left: 0;\n  margin-left: 1.125em;\n  margin-bottom: 1.125em; }\n  ul li,\n  ol li {\n    line-height: 2; }\n\n/**\n\n  @quotes\n--------------------------------------------------------\n  elements/_quotes.scss\n--------------------------------------------------------\n\n  Blockquotes and pull quotes\n\n-----------------------------------------------------  */\n/* @blockquote\n--------------------------------------------------------\n\n  Example:\n  <blockquote>\n    <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>\n    <cite><a href=\"http://foo.com\">The source</a></cite>\n  </blockquote>\n\n-------------------------------------------------------- */\n/* @pull-quote\n--------------------------------------------------------\n\n  Large quotes pulled from body text.\n\n  Example:\n  <blockquote class=\"pull-quote\">\n    <p>This is an awesome pull quote!</p>\n  </blockquote>\n\n-------------------------------------------------------- */\n/**\n\n  @text\n--------------------------------------------------------\n  elements/_text.scss\n--------------------------------------------------------\n\n  Some basic styles to paragraphs and\n  inline styles\n\n-----------------------------------------------------  */\n/* @paragraphs\n--------------------------------------------------------\n\n  Example: Paragraphs\n  <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>\n  <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>\n\n--------------------------------------------------------  */\np {\n  margin-bottom: 1em;\n  line-height: 1.40625em; }\n\n/* @inline\n--------------------------------------------------------\n\n  Common inline elements\n\n  Example: inline elements\n  <p>Lorem Ipsum is <b>bold</b> text of the <strong>strong</strong> printing and typesetting industry. Lorem Ipsum is <i>italic</i> simply dummy text <em>emphasized</em> of the printing and typesetting industry.</p<\n\n-------------------------------------------------------- */\nb,\nstrong {\n  font-weight: bold; }\n\ni,\nem {\n  font-style: italic; }\n\n  /***\n\n  @layout\n---------------------------------------------------------\n\n  A large portion of CSS is structural layout. You will use\n  these helpers to create the scaffolding that will support\n  the elements that make up your site.\n\n---------------------------------------------------------  */\n/**\n\n  @container\n--------------------------------------------------------\n  layout/_container.scss\n--------------------------------------------------------\n\n  The .container class is applied to restrict the\n  max-width of an element, usually a bit of content.\n\n  Often, you will place a .container div within another\n  element that has a background color. This gives you\n  a full-bleed background, but the content is contained\n  within the max-width.\n\n  Example: Container within a section\n  <section class=\"awesome-section-with-background-color\">\n    <div class=\"container\">\n      <p>Your content goes here... </p>\n    </div>\n  </section>\n\n------------------------------------------------------ */\n.container {\n  zoom: 1;\n  margin-left: auto;\n  margin-right: auto;\n  max-width: 70em;\n  padding: 0 1.6875em; }\n  .container:before, .container:after {\n    content: \" \";\n    display: table; }\n  .container:after {\n    clear: both; }\n  @media screen and (min-width: 34.375em) {\n    .container {\n      padding: 0 3.375em; } }\n\n/**\n\n  @grids\n---------------------------------------------------------\n  layout/_grids.scss\n--------------------------------------------------------\n\n  Skyline uses a simple grid system.  It starts with\n  a wrapper div that can have a classname of .grid-wrap\n  or .gw for short.  Inside of that div, you'll nest\n  your grid units.  These are divs with classname of\n  either .grid or .g for short.\n\n  To specify the responsive behavior of the grid,\n  add width classes from layout/_widths.scss.\n\n  Example: Grid with responsive width classes\n  <div class=\"gw\">\n    <div class=\"g sm-one-whole md-one-half  lg-one-third    xl-one-twelfth\">...</div>\n    <div class=\"g sm-one-half  md-one-half  lg-one-third    xl-one-twelfth\">...</div>\n    <div class=\"g sm-one-half  md-one-third lg-one-third    xl-one-twelfth\">...</div>\n    <div class=\"g sm-one-whole md-one-third lg-one-fifth    xl-one-twelfth\">...</div>\n    <div class=\"g sm-one-half  md-one-third lg-three-fifths xl-one-twelfth\">...</div>\n    <div class=\"g sm-one-half  md-one-half  lg-one-fifth    xl-one-twelfth\">...</div>\n    <div class=\"g sm-one-whole md-one-half  lg-one-sixth    xl-one-twelfth\">...</div>\n    <div class=\"g sm-one-half  md-one-third lg-one-sixth    xl-one-twelfth\">...</div>\n    <div class=\"g sm-one-half  md-one-third lg-one-sixth    xl-one-twelfth\">...</div>\n    <div class=\"g sm-one-whole md-one-third lg-one-sixth    xl-one-twelfth\">...</div>\n    <div class=\"g sm-one-half  md-one-half  lg-one-sixth    xl-one-twelfth\">...</div>\n    <div class=\"g sm-one-half  md-one-half  lg-one-sixth    xl-one-twelfth\">...</div>\n  </div>\n\n  For a grid wrap containing equally-sized grid units, like\n  a gallery of thumbnails for instance, use the responsive ups\n  classes from layout/_widths.scss. With these classes\n  applied to the .grid-wrap/.gw, you won't need to specify\n  widths on the individual grid units, just on the wrapper.\n\n  Example: Grid with responsive ups classes\n  <div class=\"gw two-up sm-three-up md-four-up lg-six-up\">\n    <div class=\"g\">...</div>\n    <div class=\"g\">...</div>\n    <div class=\"g\">...</div>\n    <div class=\"g\">...</div>\n    <div class=\"g\">...</div>\n    <div class=\"g\">...</div>\n    <div class=\"g\">...</div>\n    <div class=\"g\">...</div>\n    <div class=\"g\">...</div>\n    <div class=\"g\">...</div>\n    <div class=\"g\">...</div>\n    <div class=\"g\">...</div>\n  </div>\n  \n  NOTE: see some test styles at the bottom of this partial\n  Remove them if you don't need them.\n\n------------------------------------------------------ */\n.grid-wrap,\n.gw {\n  zoom: 1;\n  display: block;\n  list-style-type: none;\n  margin-bottom: -1.125em; }\n  .grid-wrap:before, .grid-wrap:after,\n  .gw:before,\n  .gw:after {\n    content: \" \";\n    display: table; }\n  .grid-wrap:after,\n  .gw:after {\n    clear: both; }\n  @media screen and (min-width: 20em) {\n    .grid-wrap,\n    .gw {\n      margin: 0 0 -1.125em -1.125em; } }\n\n.grid,\n.g {\n  zoom: 1;\n  min-height: 1px;\n  position: relative;\n  padding-bottom: 1.125em;\n  display: block;\n  width: 100%; }\n  .grid:before, .grid:after,\n  .g:before,\n  .g:after {\n    content: \" \";\n    display: table; }\n  .grid:after,\n  .g:after {\n    clear: both; }\n  @media screen and (min-width: 20em) {\n    .grid,\n    .g {\n      padding: 0 0 1.125em 1.125em;\n      float: left; } }\n\n/**\n\n  @hide\n---------------------------------------------------------\n  layout/_hide.scss\n--------------------------------------------------------\n\n  Utility state classes to hide things in different ways\n\n--------------------------------------------------------- */\n.is-hidden {\n  display: none !important;\n  visibility: hidden !important; }\n\n.is-visually-hidden {\n  position: absolute;\n  left: -9999%;\n  height: 0;\n  padding: 0;\n  margin: 0;\n  opacity: 0; }\n\n@media screen and (min-width: 20em) {\n  .hide__xs {\n    display: none; } }\n@media screen and (min-width: 34.375em) {\n  .hide__sm {\n    display: none; } }\n@media screen and (min-width: 48em) {\n  .hide__md {\n    display: none; } }\n@media screen and (min-width: 64em) {\n  .hide__lg {\n    display: none; } }\n@media screen and (min-width: 78.5em) {\n  .hide__xl {\n    display: none; } }\n/**\n\n  @media\n--------------------------------------------------------\n  layout/_media.scss\n--------------------------------------------------------\n\n  The 'media' object is a common pattern in OOCSS.\n  It consists of a wrapper element with a classname of\n  .media and then two child elements, one that contains\n  an image or video that is floated, and the other\n  contains text.\n\n  This used commonly in bios, or comments where you\n  have an avatar to one site, and the comment next to it.\n\n  Source: http://www.stubbornella.org/content/2010/06/25/the-media-object-saves-hundreds-of-lines-of-code/\n\n-----------------------------------------------------  */\n/* @media objects\n---------------------------------------------------------\n\n  Example: Media object, left\n  <article class=\"media\">\n    <div class=\"media__left one-fifth\">\n      <img src=\"http://fillmurray.com/300/300\">\n    </div>\n    <div class=\"media__body\">\n      <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>\n    </div>\n  </article>\n\n  Example: Media object, right\n  <article class=\"media\">\n    <div class=\"media__right one-fifth\">\n      <img src=\"http://fillmurray.com/300/300\">\n    </div>\n    <div class=\"media__body\">\n      <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>\n    </div>\n  </article>\n\n---------------------------------------------------------  */\n.media {\n  display: block;\n  zoom: 1;\n  margin-bottom: 1em; }\n  .media:before, .media:after {\n    content: \" \";\n    display: table; }\n  .media:after {\n    clear: both; }\n\n.media__left {\n  float: left;\n  margin-right: 1em; }\n\n.media__right {\n  float: right;\n  margin-left: 1em; }\n\n.media__left img,\n.media__right img {\n  display: block; }\n\n.media__body {\n  overflow: hidden; }\n\n.media__body,\n.media__body > :last-child {\n  margin-bottom: 0; }\n\n/**\n\n  @ups\n--------------------------------------------------------\n  layout/_ups.scss\n--------------------------------------------------------\n\n  UPS?\n\n  Yep, ups.  These are global classes that will set\n  their direct children to a specific width.  You will\n  mainly use these in grids, and maybe with tabs or\n  navigations.\n\n  For instance: four-up will set each child to 25%\n\n  Set the ups configuration variables below in this partial\n  to specify how many or how few classes you want available\n  in your project.\n\n  Example: Ups and grids\n  <div class=\"gw two-up\">\n    <div class=\"g\"><img src=\"http://fillmurray.com/500/300\"></div>\n    <div class=\"g\"><img src=\"http://fillmurray.com/500/300\"></div>\n  </div><!--/gw-->\n  <div class=\"gw three-up\">\n    <div class=\"g\"><img src=\"http://fillmurray.com/500/300\"></div>\n    <div class=\"g\"><img src=\"http://fillmurray.com/500/300\"></div>\n    <div class=\"g\"><img src=\"http://fillmurray.com/500/300\"></div>\n  </div><!--/gw-->\n\n  Ups work like widths in that they have responsive behavior.  If\n  you prepend an up class with a responsive prefix, like (s for small\n  or m for medium) the behaviour will only kick in at those\n  viewports.\n\n  For example, if you want your gallery to be two-up at the smallest\n  viewport, four-up at medium, six-up at large, and eight-up on the largest then use\n  this.\n\n  Example: Responsive Ups\n  <div class=\"gw two-up m-four-up l-six-up xl-eight-up\">\n    <div class=\"g\"><img src=\"http://fillmurray.com/500/300\"></div>\n    <div class=\"g\"><img src=\"http://fillmurray.com/500/300\"></div>\n    <div class=\"g\"><img src=\"http://fillmurray.com/500/300\"></div>\n    <div class=\"g\"><img src=\"http://fillmurray.com/500/300\"></div>\n    <div class=\"g\"><img src=\"http://fillmurray.com/500/300\"></div>\n    <div class=\"g\"><img src=\"http://fillmurray.com/500/300\"></div>\n    <div class=\"g\"><img src=\"http://fillmurray.com/500/300\"></div>\n    <div class=\"g\"><img src=\"http://fillmurray.com/500/300\"></div>\n    <div class=\"g\"><img src=\"http://fillmurray.com/500/300\"></div>\n    <div class=\"g\"><img src=\"http://fillmurray.com/500/300\"></div>\n    <div class=\"g\"><img src=\"http://fillmurray.com/500/300\"></div>\n    <div class=\"g\"><img src=\"http://fillmurray.com/500/300\"></div>\n    <div class=\"g\"><img src=\"http://fillmurray.com/500/300\"></div>\n    <div class=\"g\"><img src=\"http://fillmurray.com/500/300\"></div>\n    <div class=\"g\"><img src=\"http://fillmurray.com/500/300\"></div>\n    <div class=\"g\"><img src=\"http://fillmurray.com/500/300\"></div>\n  </div><!--/gw-->\n  \n  \n\n-----------------------------------------------------  */\n/*\n  \n  Widths at default Viewport \n\n---------------------------------------------------- */\n.one-up > * {\n  width: 100%; }\n\n.two-up > * {\n  width: 50%; }\n\n.three-up > * {\n  width: 33.33333%; }\n\n.four-up > * {\n  width: 25%; }\n\n.five-up > * {\n  width: 20%; }\n\n.six-up > * {\n  width: 16.66667%; }\n\n.seven-up > * {\n  width: 14.28571%; }\n\n.eight-up > * {\n  width: 12.5%; }\n\n.nine-up > * {\n  width: 11.11111%; }\n\n.ten-up > * {\n  width: 10%; }\n\n.eleven-up > * {\n  width: 9.09091%; }\n\n.twelve-up > * {\n  width: 8.33333%; }\n\n/* \n  \n  Responsive ups at $breakpoint__xs\n\n---------------------------------------------------- */\n@media screen and (min-width: 20em) {\n  .xs-one-up > * {\n    width: 100%; }\n\n  .xs-two-up > * {\n    width: 50%; }\n\n  .xs-three-up > * {\n    width: 33.33333%; }\n\n  .xs-four-up > * {\n    width: 25%; }\n\n  .xs-five-up > * {\n    width: 20%; }\n\n  .xs-six-up > * {\n    width: 16.66667%; }\n\n  .xs-seven-up > * {\n    width: 14.28571%; }\n\n  .xs-eight-up > * {\n    width: 12.5%; }\n\n  .xs-nine-up > * {\n    width: 11.11111%; }\n\n  .xs-ten-up > * {\n    width: 10%; }\n\n  .xs-eleven-up > * {\n    width: 9.09091%; }\n\n  .xs-twelve-up > * {\n    width: 8.33333%; } }\n/* \n  \n  Responsive ups at $breakpoint__sm\n\n---------------------------------------------------- */\n@media screen and (min-width: 34.375em) {\n  .sm-one-up > * {\n    width: 100%; }\n\n  .sm-two-up > * {\n    width: 50%; }\n\n  .sm-three-up > * {\n    width: 33.33333%; }\n\n  .sm-four-up > * {\n    width: 25%; }\n\n  .sm-five-up > * {\n    width: 20%; }\n\n  .sm-six-up > * {\n    width: 16.66667%; }\n\n  .sm-seven-up > * {\n    width: 14.28571%; }\n\n  .sm-eight-up > * {\n    width: 12.5%; }\n\n  .sm-nine-up > * {\n    width: 11.11111%; }\n\n  .sm-ten-up > * {\n    width: 10%; }\n\n  .sm-eleven-up > * {\n    width: 9.09091%; }\n\n  .sm-twelve-up > * {\n    width: 8.33333%; } }\n/* \n  \n  Responsive ups at $breakpoint__md\n\n---------------------------------------------------- */\n@media screen and (min-width: 48em) {\n  .md-one-up > * {\n    width: 100%; }\n\n  .md-two-up > * {\n    width: 50%; }\n\n  .md-three-up > * {\n    width: 33.33333%; }\n\n  .md-four-up > * {\n    width: 25%; }\n\n  .md-five-up > * {\n    width: 20%; }\n\n  .md-six-up > * {\n    width: 16.66667%; }\n\n  .md-seven-up > * {\n    width: 14.28571%; }\n\n  .md-eight-up > * {\n    width: 12.5%; }\n\n  .md-nine-up > * {\n    width: 11.11111%; }\n\n  .md-ten-up > * {\n    width: 10%; }\n\n  .md-eleven-up > * {\n    width: 9.09091%; }\n\n  .md-twelve-up > * {\n    width: 8.33333%; } }\n/* \n  \n  Responsive ups at $breakpoint__lg\n\n---------------------------------------------------- */\n@media screen and (min-width: 64em) {\n  .lg-one-up > * {\n    width: 100%; }\n\n  .lg-two-up > * {\n    width: 50%; }\n\n  .lg-three-up > * {\n    width: 33.33333%; }\n\n  .lg-four-up > * {\n    width: 25%; }\n\n  .lg-five-up > * {\n    width: 20%; }\n\n  .lg-six-up > * {\n    width: 16.66667%; }\n\n  .lg-seven-up > * {\n    width: 14.28571%; }\n\n  .lg-eight-up > * {\n    width: 12.5%; }\n\n  .lg-nine-up > * {\n    width: 11.11111%; }\n\n  .lg-ten-up > * {\n    width: 10%; }\n\n  .lg-eleven-up > * {\n    width: 9.09091%; }\n\n  .lg-twelve-up > * {\n    width: 8.33333%; } }\n/* \n  \n  Responsive ups at $breakpoint__xl\n\n---------------------------------------------------- */\n@media screen and (min-width: 78.5em) {\n  .xl-one-up > * {\n    width: 100%; }\n\n  .xl-two-up > * {\n    width: 50%; }\n\n  .xl-three-up > * {\n    width: 33.33333%; }\n\n  .xl-four-up > * {\n    width: 25%; }\n\n  .xl-five-up > * {\n    width: 20%; }\n\n  .xl-six-up > * {\n    width: 16.66667%; }\n\n  .xl-seven-up > * {\n    width: 14.28571%; }\n\n  .xl-eight-up > * {\n    width: 12.5%; }\n\n  .xl-nine-up > * {\n    width: 11.11111%; }\n\n  .xl-ten-up > * {\n    width: 10%; }\n\n  .xl-eleven-up > * {\n    width: 9.09091%; }\n\n  .xl-twelve-up > * {\n    width: 8.33333%; } }\n/* \n  \n  Responsive ups at $breakpoint__xxl\n\n---------------------------------------------------- */\n@media screen and (min-width: 100em) {\n  .xxl-one-up > * {\n    width: 100%; }\n\n  .xxl-two-up > * {\n    width: 50%; }\n\n  .xxl-three-up > * {\n    width: 33.33333%; }\n\n  .xxl-four-up > * {\n    width: 25%; }\n\n  .xxl-five-up > * {\n    width: 20%; }\n\n  .xxl-six-up > * {\n    width: 16.66667%; }\n\n  .xxl-seven-up > * {\n    width: 14.28571%; }\n\n  .xxl-eight-up > * {\n    width: 12.5%; }\n\n  .xxl-nine-up > * {\n    width: 11.11111%; }\n\n  .xxl-ten-up > * {\n    width: 10%; }\n\n  .xxl-eleven-up > * {\n    width: 9.09091%; }\n\n  .xxl-twelve-up > * {\n    width: 8.33333%; } }\n/**\n\n  @widths\n---------------------------------------------------------\n  layout/_widths.scss\n--------------------------------------------------------\n\n  Global Width Classes like .one-third or .seven-twelfths\n  and responsive widths like .sm-one-third or .xl-one-half\n\n  If you append the width class with a size indicator, the\n  size will only be applied if the viewport is at least\n  at that breakpoint size.\n\n  Set the widths configuration variables below in this partial\n  to specify how many or how few classes you want available\n  in your project.\n\n  Requires:\n  * base/_vars.scss and the breakpoint mixin from\n  * base/_mixin-breakpoints.scss\n\n---------------------------------------------------------  */\n/*\n  \n  Widths at default Viewport \n\n---------------------------------------------------- */\n.one-whole {\n  width: 100%; }\n\n.one-half {\n  width: 50%; }\n\n.two-halves {\n  width: 100%; }\n\n.one-third {\n  width: 33.33333%; }\n\n.two-thirds {\n  width: 66.66667%; }\n\n.three-thirds {\n  width: 100%; }\n\n.one-fourth {\n  width: 25%; }\n\n.two-fourths {\n  width: 50%; }\n\n.three-fourths {\n  width: 75%; }\n\n.four-fourths {\n  width: 100%; }\n\n.one-fifth {\n  width: 20%; }\n\n.two-fifths {\n  width: 40%; }\n\n.three-fifths {\n  width: 60%; }\n\n.four-fifths {\n  width: 80%; }\n\n.five-fifths {\n  width: 100%; }\n\n.one-sixth {\n  width: 16.66667%; }\n\n.two-sixths {\n  width: 33.33333%; }\n\n.three-sixths {\n  width: 50%; }\n\n.four-sixths {\n  width: 66.66667%; }\n\n.five-sixths {\n  width: 83.33333%; }\n\n.six-sixths {\n  width: 100%; }\n\n.one-seventh {\n  width: 14.28571%; }\n\n.two-sevenths {\n  width: 28.57143%; }\n\n.three-sevenths {\n  width: 42.85714%; }\n\n.four-sevenths {\n  width: 57.14286%; }\n\n.five-sevenths {\n  width: 71.42857%; }\n\n.six-sevenths {\n  width: 85.71429%; }\n\n.seven-sevenths {\n  width: 100%; }\n\n.one-eighth {\n  width: 12.5%; }\n\n.two-eighths {\n  width: 25%; }\n\n.three-eighths {\n  width: 37.5%; }\n\n.four-eighths {\n  width: 50%; }\n\n.five-eighths {\n  width: 62.5%; }\n\n.six-eighths {\n  width: 75%; }\n\n.seven-eighths {\n  width: 87.5%; }\n\n.eight-eighths {\n  width: 100%; }\n\n.one-ninth {\n  width: 11.11111%; }\n\n.two-ninths {\n  width: 22.22222%; }\n\n.three-ninths {\n  width: 33.33333%; }\n\n.four-ninths {\n  width: 44.44444%; }\n\n.five-ninths {\n  width: 55.55556%; }\n\n.six-ninths {\n  width: 66.66667%; }\n\n.seven-ninths {\n  width: 77.77778%; }\n\n.eight-ninths {\n  width: 88.88889%; }\n\n.nine-ninths {\n  width: 100%; }\n\n.one-tenth {\n  width: 10%; }\n\n.two-tenths {\n  width: 20%; }\n\n.three-tenths {\n  width: 30%; }\n\n.four-tenths {\n  width: 40%; }\n\n.five-tenths {\n  width: 50%; }\n\n.six-tenths {\n  width: 60%; }\n\n.seven-tenths {\n  width: 70%; }\n\n.eight-tenths {\n  width: 80%; }\n\n.nine-tenths {\n  width: 90%; }\n\n.ten-tenths {\n  width: 100%; }\n\n.one-eleventh {\n  width: 9.09091%; }\n\n.two-elevenths {\n  width: 18.18182%; }\n\n.three-elevenths {\n  width: 27.27273%; }\n\n.four-elevenths {\n  width: 36.36364%; }\n\n.five-elevenths {\n  width: 45.45455%; }\n\n.six-elevenths {\n  width: 54.54545%; }\n\n.seven-elevenths {\n  width: 63.63636%; }\n\n.eight-elevenths {\n  width: 72.72727%; }\n\n.nine-elevenths {\n  width: 81.81818%; }\n\n.ten-elevenths {\n  width: 90.90909%; }\n\n.eleven-elevenths {\n  width: 100%; }\n\n.one-twelfth {\n  width: 8.33333%; }\n\n.two-twelfths {\n  width: 16.66667%; }\n\n.three-twelfths {\n  width: 25%; }\n\n.four-twelfths {\n  width: 33.33333%; }\n\n.five-twelfths {\n  width: 41.66667%; }\n\n.six-twelfths {\n  width: 50%; }\n\n.seven-twelfths {\n  width: 58.33333%; }\n\n.eight-twelfths {\n  width: 66.66667%; }\n\n.nine-twelfths {\n  width: 75%; }\n\n.ten-twelfths {\n  width: 83.33333%; }\n\n.eleven-twelfths {\n  width: 91.66667%; }\n\n.twelve-twelfths {\n  width: 100%; }\n\n/* \n  \n  Responsive widths at $breakpoint__sm\n\n---------------------------------------------------- */\n@media screen and (min-width: 34.375em) {\n  .sm-one-whole {\n    width: 100%; }\n\n  .sm-one-half {\n    width: 50%; }\n\n  .sm-two-halves {\n    width: 100%; }\n\n  .sm-one-third {\n    width: 33.33333%; }\n\n  .sm-two-thirds {\n    width: 66.66667%; }\n\n  .sm-three-thirds {\n    width: 100%; }\n\n  .sm-one-fourth {\n    width: 25%; }\n\n  .sm-two-fourths {\n    width: 50%; }\n\n  .sm-three-fourths {\n    width: 75%; }\n\n  .sm-four-fourths {\n    width: 100%; }\n\n  .sm-one-fifth {\n    width: 20%; }\n\n  .sm-two-fifths {\n    width: 40%; }\n\n  .sm-three-fifths {\n    width: 60%; }\n\n  .sm-four-fifths {\n    width: 80%; }\n\n  .sm-five-fifths {\n    width: 100%; }\n\n  .sm-one-sixth {\n    width: 16.66667%; }\n\n  .sm-two-sixths {\n    width: 33.33333%; }\n\n  .sm-three-sixths {\n    width: 50%; }\n\n  .sm-four-sixths {\n    width: 66.66667%; }\n\n  .sm-five-sixths {\n    width: 83.33333%; }\n\n  .sm-six-sixths {\n    width: 100%; }\n\n  .sm-one-seventh {\n    width: 14.28571%; }\n\n  .sm-two-sevenths {\n    width: 28.57143%; }\n\n  .sm-three-sevenths {\n    width: 42.85714%; }\n\n  .sm-four-sevenths {\n    width: 57.14286%; }\n\n  .sm-five-sevenths {\n    width: 71.42857%; }\n\n  .sm-six-sevenths {\n    width: 85.71429%; }\n\n  .sm-seven-sevenths {\n    width: 100%; }\n\n  .sm-one-eighth {\n    width: 12.5%; }\n\n  .sm-two-eighths {\n    width: 25%; }\n\n  .sm-three-eighths {\n    width: 37.5%; }\n\n  .sm-four-eighths {\n    width: 50%; }\n\n  .sm-five-eighths {\n    width: 62.5%; }\n\n  .sm-six-eighths {\n    width: 75%; }\n\n  .sm-seven-eighths {\n    width: 87.5%; }\n\n  .sm-eight-eighths {\n    width: 100%; }\n\n  .sm-one-ninth {\n    width: 11.11111%; }\n\n  .sm-two-ninths {\n    width: 22.22222%; }\n\n  .sm-three-ninths {\n    width: 33.33333%; }\n\n  .sm-four-ninths {\n    width: 44.44444%; }\n\n  .sm-five-ninths {\n    width: 55.55556%; }\n\n  .sm-six-ninths {\n    width: 66.66667%; }\n\n  .sm-seven-ninths {\n    width: 77.77778%; }\n\n  .sm-eight-ninths {\n    width: 88.88889%; }\n\n  .sm-nine-ninths {\n    width: 100%; }\n\n  .sm-one-tenth {\n    width: 10%; }\n\n  .sm-two-tenths {\n    width: 20%; }\n\n  .sm-three-tenths {\n    width: 30%; }\n\n  .sm-four-tenths {\n    width: 40%; }\n\n  .sm-five-tenths {\n    width: 50%; }\n\n  .sm-six-tenths {\n    width: 60%; }\n\n  .sm-seven-tenths {\n    width: 70%; }\n\n  .sm-eight-tenths {\n    width: 80%; }\n\n  .sm-nine-tenths {\n    width: 90%; }\n\n  .sm-ten-tenths {\n    width: 100%; }\n\n  .sm-one-eleventh {\n    width: 9.09091%; }\n\n  .sm-two-elevenths {\n    width: 18.18182%; }\n\n  .sm-three-elevenths {\n    width: 27.27273%; }\n\n  .sm-four-elevenths {\n    width: 36.36364%; }\n\n  .sm-five-elevenths {\n    width: 45.45455%; }\n\n  .sm-six-elevenths {\n    width: 54.54545%; }\n\n  .sm-seven-elevenths {\n    width: 63.63636%; }\n\n  .sm-eight-elevenths {\n    width: 72.72727%; }\n\n  .sm-nine-elevenths {\n    width: 81.81818%; }\n\n  .sm-ten-elevenths {\n    width: 90.90909%; }\n\n  .sm-eleven-elevenths {\n    width: 100%; }\n\n  .sm-one-twelfth {\n    width: 8.33333%; }\n\n  .sm-two-twelfths {\n    width: 16.66667%; }\n\n  .sm-three-twelfths {\n    width: 25%; }\n\n  .sm-four-twelfths {\n    width: 33.33333%; }\n\n  .sm-five-twelfths {\n    width: 41.66667%; }\n\n  .sm-six-twelfths {\n    width: 50%; }\n\n  .sm-seven-twelfths {\n    width: 58.33333%; }\n\n  .sm-eight-twelfths {\n    width: 66.66667%; }\n\n  .sm-nine-twelfths {\n    width: 75%; }\n\n  .sm-ten-twelfths {\n    width: 83.33333%; }\n\n  .sm-eleven-twelfths {\n    width: 91.66667%; }\n\n  .sm-twelve-twelfths {\n    width: 100%; } }\n/* \n  \n  Responsive widths at $breakpoint__md\n\n---------------------------------------------------- */\n@media screen and (min-width: 48em) {\n  .md-one-whole {\n    width: 100%; }\n\n  .md-one-half {\n    width: 50%; }\n\n  .md-two-halves {\n    width: 100%; }\n\n  .md-one-third {\n    width: 33.33333%; }\n\n  .md-two-thirds {\n    width: 66.66667%; }\n\n  .md-three-thirds {\n    width: 100%; }\n\n  .md-one-fourth {\n    width: 25%; }\n\n  .md-two-fourths {\n    width: 50%; }\n\n  .md-three-fourths {\n    width: 75%; }\n\n  .md-four-fourths {\n    width: 100%; }\n\n  .md-one-fifth {\n    width: 20%; }\n\n  .md-two-fifths {\n    width: 40%; }\n\n  .md-three-fifths {\n    width: 60%; }\n\n  .md-four-fifths {\n    width: 80%; }\n\n  .md-five-fifths {\n    width: 100%; }\n\n  .md-one-sixth {\n    width: 16.66667%; }\n\n  .md-two-sixths {\n    width: 33.33333%; }\n\n  .md-three-sixths {\n    width: 50%; }\n\n  .md-four-sixths {\n    width: 66.66667%; }\n\n  .md-five-sixths {\n    width: 83.33333%; }\n\n  .md-six-sixths {\n    width: 100%; }\n\n  .md-one-seventh {\n    width: 14.28571%; }\n\n  .md-two-sevenths {\n    width: 28.57143%; }\n\n  .md-three-sevenths {\n    width: 42.85714%; }\n\n  .md-four-sevenths {\n    width: 57.14286%; }\n\n  .md-five-sevenths {\n    width: 71.42857%; }\n\n  .md-six-sevenths {\n    width: 85.71429%; }\n\n  .md-seven-sevenths {\n    width: 100%; }\n\n  .md-one-eighth {\n    width: 12.5%; }\n\n  .md-two-eighths {\n    width: 25%; }\n\n  .md-three-eighths {\n    width: 37.5%; }\n\n  .md-four-eighths {\n    width: 50%; }\n\n  .md-five-eighths {\n    width: 62.5%; }\n\n  .md-six-eighths {\n    width: 75%; }\n\n  .md-seven-eighths {\n    width: 87.5%; }\n\n  .md-eight-eighths {\n    width: 100%; }\n\n  .md-one-ninth {\n    width: 11.11111%; }\n\n  .md-two-ninths {\n    width: 22.22222%; }\n\n  .md-three-ninths {\n    width: 33.33333%; }\n\n  .md-four-ninths {\n    width: 44.44444%; }\n\n  .md-five-ninths {\n    width: 55.55556%; }\n\n  .md-six-ninths {\n    width: 66.66667%; }\n\n  .md-seven-ninths {\n    width: 77.77778%; }\n\n  .md-eight-ninths {\n    width: 88.88889%; }\n\n  .md-nine-ninths {\n    width: 100%; }\n\n  .md-one-tenth {\n    width: 10%; }\n\n  .md-two-tenths {\n    width: 20%; }\n\n  .md-three-tenths {\n    width: 30%; }\n\n  .md-four-tenths {\n    width: 40%; }\n\n  .md-five-tenths {\n    width: 50%; }\n\n  .md-six-tenths {\n    width: 60%; }\n\n  .md-seven-tenths {\n    width: 70%; }\n\n  .md-eight-tenths {\n    width: 80%; }\n\n  .md-nine-tenths {\n    width: 90%; }\n\n  .md-ten-tenths {\n    width: 100%; }\n\n  .md-one-eleventh {\n    width: 9.09091%; }\n\n  .md-two-elevenths {\n    width: 18.18182%; }\n\n  .md-three-elevenths {\n    width: 27.27273%; }\n\n  .md-four-elevenths {\n    width: 36.36364%; }\n\n  .md-five-elevenths {\n    width: 45.45455%; }\n\n  .md-six-elevenths {\n    width: 54.54545%; }\n\n  .md-seven-elevenths {\n    width: 63.63636%; }\n\n  .md-eight-elevenths {\n    width: 72.72727%; }\n\n  .md-nine-elevenths {\n    width: 81.81818%; }\n\n  .md-ten-elevenths {\n    width: 90.90909%; }\n\n  .md-eleven-elevenths {\n    width: 100%; }\n\n  .md-one-twelfth {\n    width: 8.33333%; }\n\n  .md-two-twelfths {\n    width: 16.66667%; }\n\n  .md-three-twelfths {\n    width: 25%; }\n\n  .md-four-twelfths {\n    width: 33.33333%; }\n\n  .md-five-twelfths {\n    width: 41.66667%; }\n\n  .md-six-twelfths {\n    width: 50%; }\n\n  .md-seven-twelfths {\n    width: 58.33333%; }\n\n  .md-eight-twelfths {\n    width: 66.66667%; }\n\n  .md-nine-twelfths {\n    width: 75%; }\n\n  .md-ten-twelfths {\n    width: 83.33333%; }\n\n  .md-eleven-twelfths {\n    width: 91.66667%; }\n\n  .md-twelve-twelfths {\n    width: 100%; } }\n/* \n  \n  Responsive widths at $breakpoint__lg\n\n---------------------------------------------------- */\n@media screen and (min-width: 64em) {\n  .lg-one-whole {\n    width: 100%; }\n\n  .lg-one-half {\n    width: 50%; }\n\n  .lg-two-halves {\n    width: 100%; }\n\n  .lg-one-third {\n    width: 33.33333%; }\n\n  .lg-two-thirds {\n    width: 66.66667%; }\n\n  .lg-three-thirds {\n    width: 100%; }\n\n  .lg-one-fourth {\n    width: 25%; }\n\n  .lg-two-fourths {\n    width: 50%; }\n\n  .lg-three-fourths {\n    width: 75%; }\n\n  .lg-four-fourths {\n    width: 100%; }\n\n  .lg-one-fifth {\n    width: 20%; }\n\n  .lg-two-fifths {\n    width: 40%; }\n\n  .lg-three-fifths {\n    width: 60%; }\n\n  .lg-four-fifths {\n    width: 80%; }\n\n  .lg-five-fifths {\n    width: 100%; }\n\n  .lg-one-sixth {\n    width: 16.66667%; }\n\n  .lg-two-sixths {\n    width: 33.33333%; }\n\n  .lg-three-sixths {\n    width: 50%; }\n\n  .lg-four-sixths {\n    width: 66.66667%; }\n\n  .lg-five-sixths {\n    width: 83.33333%; }\n\n  .lg-six-sixths {\n    width: 100%; }\n\n  .lg-one-seventh {\n    width: 14.28571%; }\n\n  .lg-two-sevenths {\n    width: 28.57143%; }\n\n  .lg-three-sevenths {\n    width: 42.85714%; }\n\n  .lg-four-sevenths {\n    width: 57.14286%; }\n\n  .lg-five-sevenths {\n    width: 71.42857%; }\n\n  .lg-six-sevenths {\n    width: 85.71429%; }\n\n  .lg-seven-sevenths {\n    width: 100%; }\n\n  .lg-one-eighth {\n    width: 12.5%; }\n\n  .lg-two-eighths {\n    width: 25%; }\n\n  .lg-three-eighths {\n    width: 37.5%; }\n\n  .lg-four-eighths {\n    width: 50%; }\n\n  .lg-five-eighths {\n    width: 62.5%; }\n\n  .lg-six-eighths {\n    width: 75%; }\n\n  .lg-seven-eighths {\n    width: 87.5%; }\n\n  .lg-eight-eighths {\n    width: 100%; }\n\n  .lg-one-ninth {\n    width: 11.11111%; }\n\n  .lg-two-ninths {\n    width: 22.22222%; }\n\n  .lg-three-ninths {\n    width: 33.33333%; }\n\n  .lg-four-ninths {\n    width: 44.44444%; }\n\n  .lg-five-ninths {\n    width: 55.55556%; }\n\n  .lg-six-ninths {\n    width: 66.66667%; }\n\n  .lg-seven-ninths {\n    width: 77.77778%; }\n\n  .lg-eight-ninths {\n    width: 88.88889%; }\n\n  .lg-nine-ninths {\n    width: 100%; }\n\n  .lg-one-tenth {\n    width: 10%; }\n\n  .lg-two-tenths {\n    width: 20%; }\n\n  .lg-three-tenths {\n    width: 30%; }\n\n  .lg-four-tenths {\n    width: 40%; }\n\n  .lg-five-tenths {\n    width: 50%; }\n\n  .lg-six-tenths {\n    width: 60%; }\n\n  .lg-seven-tenths {\n    width: 70%; }\n\n  .lg-eight-tenths {\n    width: 80%; }\n\n  .lg-nine-tenths {\n    width: 90%; }\n\n  .lg-ten-tenths {\n    width: 100%; }\n\n  .lg-one-eleventh {\n    width: 9.09091%; }\n\n  .lg-two-elevenths {\n    width: 18.18182%; }\n\n  .lg-three-elevenths {\n    width: 27.27273%; }\n\n  .lg-four-elevenths {\n    width: 36.36364%; }\n\n  .lg-five-elevenths {\n    width: 45.45455%; }\n\n  .lg-six-elevenths {\n    width: 54.54545%; }\n\n  .lg-seven-elevenths {\n    width: 63.63636%; }\n\n  .lg-eight-elevenths {\n    width: 72.72727%; }\n\n  .lg-nine-elevenths {\n    width: 81.81818%; }\n\n  .lg-ten-elevenths {\n    width: 90.90909%; }\n\n  .lg-eleven-elevenths {\n    width: 100%; }\n\n  .lg-one-twelfth {\n    width: 8.33333%; }\n\n  .lg-two-twelfths {\n    width: 16.66667%; }\n\n  .lg-three-twelfths {\n    width: 25%; }\n\n  .lg-four-twelfths {\n    width: 33.33333%; }\n\n  .lg-five-twelfths {\n    width: 41.66667%; }\n\n  .lg-six-twelfths {\n    width: 50%; }\n\n  .lg-seven-twelfths {\n    width: 58.33333%; }\n\n  .lg-eight-twelfths {\n    width: 66.66667%; }\n\n  .lg-nine-twelfths {\n    width: 75%; }\n\n  .lg-ten-twelfths {\n    width: 83.33333%; }\n\n  .lg-eleven-twelfths {\n    width: 91.66667%; }\n\n  .lg-twelve-twelfths {\n    width: 100%; } }\n/* \n  \n  Responsive widths at $breakpoint__xl\n\n---------------------------------------------------- */\n@media screen and (min-width: 78.5em) {\n  .xl-one-whole {\n    width: 100%; }\n\n  .xl-one-half {\n    width: 50%; }\n\n  .xl-two-halves {\n    width: 100%; }\n\n  .xl-one-third {\n    width: 33.33333%; }\n\n  .xl-two-thirds {\n    width: 66.66667%; }\n\n  .xl-three-thirds {\n    width: 100%; }\n\n  .xl-one-fourth {\n    width: 25%; }\n\n  .xl-two-fourths {\n    width: 50%; }\n\n  .xl-three-fourths {\n    width: 75%; }\n\n  .xl-four-fourths {\n    width: 100%; }\n\n  .xl-one-fifth {\n    width: 20%; }\n\n  .xl-two-fifths {\n    width: 40%; }\n\n  .xl-three-fifths {\n    width: 60%; }\n\n  .xl-four-fifths {\n    width: 80%; }\n\n  .xl-five-fifths {\n    width: 100%; }\n\n  .xl-one-sixth {\n    width: 16.66667%; }\n\n  .xl-two-sixths {\n    width: 33.33333%; }\n\n  .xl-three-sixths {\n    width: 50%; }\n\n  .xl-four-sixths {\n    width: 66.66667%; }\n\n  .xl-five-sixths {\n    width: 83.33333%; }\n\n  .xl-six-sixths {\n    width: 100%; }\n\n  .xl-one-seventh {\n    width: 14.28571%; }\n\n  .xl-two-sevenths {\n    width: 28.57143%; }\n\n  .xl-three-sevenths {\n    width: 42.85714%; }\n\n  .xl-four-sevenths {\n    width: 57.14286%; }\n\n  .xl-five-sevenths {\n    width: 71.42857%; }\n\n  .xl-six-sevenths {\n    width: 85.71429%; }\n\n  .xl-seven-sevenths {\n    width: 100%; }\n\n  .xl-one-eighth {\n    width: 12.5%; }\n\n  .xl-two-eighths {\n    width: 25%; }\n\n  .xl-three-eighths {\n    width: 37.5%; }\n\n  .xl-four-eighths {\n    width: 50%; }\n\n  .xl-five-eighths {\n    width: 62.5%; }\n\n  .xl-six-eighths {\n    width: 75%; }\n\n  .xl-seven-eighths {\n    width: 87.5%; }\n\n  .xl-eight-eighths {\n    width: 100%; }\n\n  .xl-one-ninth {\n    width: 11.11111%; }\n\n  .xl-two-ninths {\n    width: 22.22222%; }\n\n  .xl-three-ninths {\n    width: 33.33333%; }\n\n  .xl-four-ninths {\n    width: 44.44444%; }\n\n  .xl-five-ninths {\n    width: 55.55556%; }\n\n  .xl-six-ninths {\n    width: 66.66667%; }\n\n  .xl-seven-ninths {\n    width: 77.77778%; }\n\n  .xl-eight-ninths {\n    width: 88.88889%; }\n\n  .xl-nine-ninths {\n    width: 100%; }\n\n  .xl-one-tenth {\n    width: 10%; }\n\n  .xl-two-tenths {\n    width: 20%; }\n\n  .xl-three-tenths {\n    width: 30%; }\n\n  .xl-four-tenths {\n    width: 40%; }\n\n  .xl-five-tenths {\n    width: 50%; }\n\n  .xl-six-tenths {\n    width: 60%; }\n\n  .xl-seven-tenths {\n    width: 70%; }\n\n  .xl-eight-tenths {\n    width: 80%; }\n\n  .xl-nine-tenths {\n    width: 90%; }\n\n  .xl-ten-tenths {\n    width: 100%; }\n\n  .xl-one-eleventh {\n    width: 9.09091%; }\n\n  .xl-two-elevenths {\n    width: 18.18182%; }\n\n  .xl-three-elevenths {\n    width: 27.27273%; }\n\n  .xl-four-elevenths {\n    width: 36.36364%; }\n\n  .xl-five-elevenths {\n    width: 45.45455%; }\n\n  .xl-six-elevenths {\n    width: 54.54545%; }\n\n  .xl-seven-elevenths {\n    width: 63.63636%; }\n\n  .xl-eight-elevenths {\n    width: 72.72727%; }\n\n  .xl-nine-elevenths {\n    width: 81.81818%; }\n\n  .xl-ten-elevenths {\n    width: 90.90909%; }\n\n  .xl-eleven-elevenths {\n    width: 100%; }\n\n  .xl-one-twelfth {\n    width: 8.33333%; }\n\n  .xl-two-twelfths {\n    width: 16.66667%; }\n\n  .xl-three-twelfths {\n    width: 25%; }\n\n  .xl-four-twelfths {\n    width: 33.33333%; }\n\n  .xl-five-twelfths {\n    width: 41.66667%; }\n\n  .xl-six-twelfths {\n    width: 50%; }\n\n  .xl-seven-twelfths {\n    width: 58.33333%; }\n\n  .xl-eight-twelfths {\n    width: 66.66667%; }\n\n  .xl-nine-twelfths {\n    width: 75%; }\n\n  .xl-ten-twelfths {\n    width: 83.33333%; }\n\n  .xl-eleven-twelfths {\n    width: 91.66667%; }\n\n  .xl-twelve-twelfths {\n    width: 100%; } }\n/* \n  \n  Responsive widths at $breakpoint__xxl\n\n---------------------------------------------------- */\n@media screen and (min-width: 100em) {\n  .xxl-one-whole {\n    width: 100%; }\n\n  .xxl-one-half {\n    width: 50%; }\n\n  .xxl-two-halves {\n    width: 100%; }\n\n  .xxl-one-third {\n    width: 33.33333%; }\n\n  .xxl-two-thirds {\n    width: 66.66667%; }\n\n  .xxl-three-thirds {\n    width: 100%; }\n\n  .xxl-one-fourth {\n    width: 25%; }\n\n  .xxl-two-fourths {\n    width: 50%; }\n\n  .xxl-three-fourths {\n    width: 75%; }\n\n  .xxl-four-fourths {\n    width: 100%; }\n\n  .xxl-one-fifth {\n    width: 20%; }\n\n  .xxl-two-fifths {\n    width: 40%; }\n\n  .xxl-three-fifths {\n    width: 60%; }\n\n  .xxl-four-fifths {\n    width: 80%; }\n\n  .xxl-five-fifths {\n    width: 100%; }\n\n  .xxl-one-sixth {\n    width: 16.66667%; }\n\n  .xxl-two-sixths {\n    width: 33.33333%; }\n\n  .xxl-three-sixths {\n    width: 50%; }\n\n  .xxl-four-sixths {\n    width: 66.66667%; }\n\n  .xxl-five-sixths {\n    width: 83.33333%; }\n\n  .xxl-six-sixths {\n    width: 100%; }\n\n  .xxl-one-seventh {\n    width: 14.28571%; }\n\n  .xxl-two-sevenths {\n    width: 28.57143%; }\n\n  .xxl-three-sevenths {\n    width: 42.85714%; }\n\n  .xxl-four-sevenths {\n    width: 57.14286%; }\n\n  .xxl-five-sevenths {\n    width: 71.42857%; }\n\n  .xxl-six-sevenths {\n    width: 85.71429%; }\n\n  .xxl-seven-sevenths {\n    width: 100%; }\n\n  .xxl-one-eighth {\n    width: 12.5%; }\n\n  .xxl-two-eighths {\n    width: 25%; }\n\n  .xxl-three-eighths {\n    width: 37.5%; }\n\n  .xxl-four-eighths {\n    width: 50%; }\n\n  .xxl-five-eighths {\n    width: 62.5%; }\n\n  .xxl-six-eighths {\n    width: 75%; }\n\n  .xxl-seven-eighths {\n    width: 87.5%; }\n\n  .xxl-eight-eighths {\n    width: 100%; }\n\n  .xxl-one-ninth {\n    width: 11.11111%; }\n\n  .xxl-two-ninths {\n    width: 22.22222%; }\n\n  .xxl-three-ninths {\n    width: 33.33333%; }\n\n  .xxl-four-ninths {\n    width: 44.44444%; }\n\n  .xxl-five-ninths {\n    width: 55.55556%; }\n\n  .xxl-six-ninths {\n    width: 66.66667%; }\n\n  .xxl-seven-ninths {\n    width: 77.77778%; }\n\n  .xxl-eight-ninths {\n    width: 88.88889%; }\n\n  .xxl-nine-ninths {\n    width: 100%; }\n\n  .xxl-one-tenth {\n    width: 10%; }\n\n  .xxl-two-tenths {\n    width: 20%; }\n\n  .xxl-three-tenths {\n    width: 30%; }\n\n  .xxl-four-tenths {\n    width: 40%; }\n\n  .xxl-five-tenths {\n    width: 50%; }\n\n  .xxl-six-tenths {\n    width: 60%; }\n\n  .xxl-seven-tenths {\n    width: 70%; }\n\n  .xxl-eight-tenths {\n    width: 80%; }\n\n  .xxl-nine-tenths {\n    width: 90%; }\n\n  .xxl-ten-tenths {\n    width: 100%; }\n\n  .xxl-one-eleventh {\n    width: 9.09091%; }\n\n  .xxl-two-elevenths {\n    width: 18.18182%; }\n\n  .xxl-three-elevenths {\n    width: 27.27273%; }\n\n  .xxl-four-elevenths {\n    width: 36.36364%; }\n\n  .xxl-five-elevenths {\n    width: 45.45455%; }\n\n  .xxl-six-elevenths {\n    width: 54.54545%; }\n\n  .xxl-seven-elevenths {\n    width: 63.63636%; }\n\n  .xxl-eight-elevenths {\n    width: 72.72727%; }\n\n  .xxl-nine-elevenths {\n    width: 81.81818%; }\n\n  .xxl-ten-elevenths {\n    width: 90.90909%; }\n\n  .xxl-eleven-elevenths {\n    width: 100%; }\n\n  .xxl-one-twelfth {\n    width: 8.33333%; }\n\n  .xxl-two-twelfths {\n    width: 16.66667%; }\n\n  .xxl-three-twelfths {\n    width: 25%; }\n\n  .xxl-four-twelfths {\n    width: 33.33333%; }\n\n  .xxl-five-twelfths {\n    width: 41.66667%; }\n\n  .xxl-six-twelfths {\n    width: 50%; }\n\n  .xxl-seven-twelfths {\n    width: 58.33333%; }\n\n  .xxl-eight-twelfths {\n    width: 66.66667%; }\n\n  .xxl-nine-twelfths {\n    width: 75%; }\n\n  .xxl-ten-twelfths {\n    width: 83.33333%; }\n\n  .xxl-eleven-twelfths {\n    width: 91.66667%; }\n\n  .xxl-twelve-twelfths {\n    width: 100%; } }\n/***\n\n  @modules\n---------------------------------------------------------\n\n  Reusable objects that are combinations\n  of elements and other modules.\n\n  When you create a new module, make sure the partial is\n  in the modules directory, and you import it below\n\n  Comment out any partial you don't need for this app.\n\n---------------------------------------------------------  */\n/**\n\n   @site\n--------------------------------------------------------\n  modules/_site.scss\n--------------------------------------------------------\n\n  We use the naming convention of .site-* for global\n  modules like the header, main, and footer.\n\n  Sometimes it's beneficial to have a wrapping element\n  around the site, directly following the <body>. In\n  this case, we call that .site.\n\n------------------------------------------------------ */\n/**\n\n  @site-header\n--------------------------------------------------------\n  modules/_site-header.scss\n--------------------------------------------------------\n\n  Site-wide header\n\n------------------------------------------------------ */\n.site-header {\n  zoom: 1;\n  padding: 1.125em 0;\n  border-bottom: 1px solid #cfd2d2; }\n  .site-header:before, .site-header:after {\n    content: \" \";\n    display: table; }\n  .site-header:after {\n    clear: both; }\n\n/* @branding\n--------------------------------------------------------\n\n  The logo & (optional) wordmark\n\n  Example: Branding logo\n  <a class=\"branding\" href=\"/\">\n    <img class=\"branding__logo img--title\" src=\"images/logo.svg\" alt=\"My Company\">\n    <h1 class=\"branding__wordmark\">My Company</h1>\n  </a>\n\n------------------------------------------------------ */\n.branding {\n  margin: 0 auto 1.125em;\n  text-decoration: none;\n  display: block;\n  text-align: center; }\n  @media screen and (min-width: 48em) {\n    .branding {\n      margin: 0;\n      float: left;\n      text-align: left; } }\n\n.branding__logo {\n  height: 3.375em;\n  width: 3.375em; }\n  @media screen and (min-width: 48em) {\n    .branding__logo {\n      float: left;\n      margin-right: 1.125em; } }\n\n.branding__wordmark {\n  font-size: 1.6875em;\n  white-space: nowrap;\n  line-height: 2.25em;\n  margin: 0; }\n\n/*\n\n  @site-nav\n--------------------------------------------------------\n\n  The main site navigation.\n\n-----------------------------------------------------  */\n.site-nav {\n  text-align: center; }\n  @media screen and (min-width: 48em) {\n    .site-nav {\n      float: right; } }\n  .site-nav a {\n    display: inline-block;\n    height: 3.375em;\n    line-height: 3.375em;\n    padding: 0 .5em;\n    margin-left: 0.5625em; }\n    .site-nav a:first-child {\n      margin-left: 0; }\n\n/**\n\n  @site-main\n--------------------------------------------------------\n  modules/_site-main.scss\n--------------------------------------------------------\n\n  The site's main content\n\n------------------------------------------------------ */\n.site-main {\n  display: block; }\n\n/**\n\n  @site-footer\n--------------------------------------------------------\n  modules/_site-footer.scss\n--------------------------------------------------------\n\n  The site's global footer\n\n------------------------------------------------------ */\n.site-footer {\n  padding: 1.125em 0;\n  border-top: 1px solid #cfd2d2; }\n\n.site-credits {\n  display: block;\n  clear: both; }\n\n/**\n\n  @pages\n--------------------------------------------------------\n  modules/_pages.scss\n--------------------------------------------------------\n\n  Pages contain content and can have styled headers\n  and footers if you choose.\n\n-----------------------------------------------------  */\n.page__header {\n  padding: 1.125em 0;\n  margin-bottom: 1.125em;\n  background: rgba(0, 0, 0, 0.025);\n  border-bottom: 1px solid #cfd2d2; }\n\n/**\n\n  @alerts\n---------------------------------------------------------\n  modules/_alerts.scss\n--------------------------------------------------------\n\n  Alerts are UI elements that give important info\n\n  Example: Error\n  <div class=\"alert alert--error\">\n    <a href=\"#\" class=\"btn__close\">&times;</a>\n    <p>Uh oh - something went wrong</p>\n  </div>\n\n  Example: Warning\n  <div class=\"alert alert--warning\">\n    <a href=\"#\" class=\"btn__close\">&times;</a>\n    <p>Shake it fast, but watch yourself.</p>\n  </div>\n\n  Example: Success\n  <div class=\"alert alert--success\">\n    <a href=\"#\" class=\"btn__close\">&times;</a>\n    <p>The secret to my success is that I learn, 25 hours a day!</p>\n  </div>\n\n  Example: Info\n  <div class=\"alert alert--info\">\n    <a href=\"#\" class=\"btn__close\">&times;</a>\n    <p>Did you ever know that you're my hero?</p>\n  </div>\n\n  NOTE: The code below uses declared color units, if you'd\n        prefer, declare those as variables in _vars.scss\n\n------------------------------------------------------ */\n.alert {\n  position: relative;\n  border-width: 1px;\n  border-style: solid;\n  margin-bottom: 2.25em;\n  padding: .5rem 4rem .5rem .5rem;\n  line-height: 1.25; }\n  .alert p {\n    margin: 0; }\n  .alert .btn__close {\n    position: absolute;\n    top: 50%;\n    margin-top: -.75em;\n    right: 1em;\n    opacity: .5;\n    -webkit-transition: all .3s;\n    transition: all .3s;\n    text-decoration: none; }\n    .alert .btn__close:hover {\n      opacity: 1; }\n\n.alert--error {\n  color: #e04646;\n  border-color: #e04646;\n  background: #ffe6e6; }\n  .alert--error .btn__close {\n    color: #e04646; }\n  .alert--error:after {\n    border-color: #e04646; }\n\n.alert--warning {\n  color: #b29804;\n  border-color: #b29804;\n  background: #fcf7d8; }\n  .alert--warning .btn__close {\n    color: #b29804; }\n  .alert--warning:after {\n    border-color: #b29804; }\n\n.alert--info {\n  color: #537df6;\n  border-color: #537df6;\n  background: #e8f3ff; }\n  .alert--info .btn__close {\n    color: #537df6; }\n  .alert--info:after {\n    border-color: #537df6; }\n\n.alert--success {\n  color: #0ca129;\n  border-color: #0ca129;\n  background: #dafce1; }\n  .alert--success .btn__close {\n    color: #0ca129; }\n  .alert--success:after {\n    border-color: #0ca129; }\n\n/**\n\n  @blocks\n--------------------------------------------------------\n  modules/_blocks.scss\n--------------------------------------------------------\n\n  Blocks contain sections of content.  Blocks can have\n  different visual styling, but usually have the same\n  structure; one spacing unit margin at the bottom,\n  and some have borders, and padding, etc.\n\n-----------------------------------------------------  */\n.block {\n  margin-bottom: 2.25em; }\n\n.block--ends {\n  margin-top: 2.25em;\n  margin-bottom: 2.25em; }\n\n/**\n\n  @callouts\n--------------------------------------------------------\n  modules/_callouts.scss\n--------------------------------------------------------\n\n  Callouts, are sections of featured content that usually \n  contain an icon, a title, and some text. These are \n  usually in a row, and call attention to highlighted features.\n\n  Example: Callout\n  <article class=\"callout\">\n    <img class=\"callout__media\" src=\"images/fpo-icon.png\">\n    <h3 class=\"callout__title\">Feature</h3>\n    <p>This callout is very impressive, and should command your attention</p>\n  </article>\n\n-----------------------------------------------------  */\n.callout {\n  text-align: center; }\n\n.callout__media {\n  display: block;\n  margin: 0 auto 1.125em;\n  max-height: 3em;\n  width: auto; }\n\n.callout__title {\n  font-size: 1.5em; }\n\n/**\n\n  @heroes\n--------------------------------------------------------\n  modules/_heroes.scss\n--------------------------------------------------------\n\n  Just your everyday, normal hero.  Contains a div that has\n  the media (video or image) in the background, and a div\n  for the main content.\n\n  Example: Hero\n  <div class=\"hero\">\n    <div class=\"hero__main\">\n      <h1 class=\"hero__leadin\">This is the leadin</h1>\n      <h2 class=\"hero__name\">Name Here</h2>\n    <div class=\"hero__media\"><img src=\"http://fillmurray.com/1000/400\"></div>\n  </div>\n------------------------------------------------------ */\n.hero {\n  position: relative;\n  overflow: hidden;\n  margin-bottom: 2.25em; }\n\n.hero__media {\n  position: relative;\n  z-index: 200; }\n\n.hero__main {\n  position: absolute;\n  z-index: 210;\n  width: 100%;\n  top: 50%;\n  text-align: center;\n  color: white;\n  -webkit-transform: translateY(-50%);\n  transform: translateY(-50%);\n  font-size: .75em; }\n  @media screen and (min-width: 34.375em) {\n    .hero__main {\n      font-size: 1em; } }\n  @media screen and (min-width: 64em) {\n    .hero__main {\n      font-size: 1.25em; } }\n\n/**\n\n  @modals\n---------------------------------------------------------\n  modules/_modals.scss\n--------------------------------------------------------\n\n  These are very basic modals, which simply cover the entire\n  viewport from top to bottom, left to right.  Feel free\n  to edit the styles of modals to suit your needs.\n\n--------------------------------------------------------- */\n.modal {\n  position: fixed;\n  z-index: 200;\n  top: 0;\n  bottom: 0;\n  left: 0;\n  right: 0;\n  height: 100%;\n  background: rgba(255, 255, 255, 0.96);\n  display: none; }\n\n.modal__container {\n  position: absolute;\n  top: 0;\n  bottom: 0;\n  left: 0;\n  right: 0;\n  display: table;\n  height: 100%;\n  padding: 1.125em; }\n\n.modal__close {\n  position: absolute;\n  top: 0;\n  right: 0;\n  margin: 0.37125em 0.37125em 0 0;\n  font-size: 3em;\n  border: none;\n  background: none;\n  display: block; }\n  .modal__close:hover, .modal__close:focus {\n    outline: none;\n    border: none;\n    opacity: .85; }\n  .modal__close:active {\n    opacity: .6; }\n\n.modal__body {\n  display: table-cell;\n  height: 100%;\n  width: 100%;\n  vertical-align: middle; }\n  .modal__body p {\n    margin-bottom: 1em;\n    font-size: 1.5em; }\n\n/**\n\n  @thumbnails\n--------------------------------------------------------\n  modules/_thumbnails.scss\n--------------------------------------------------------\n\n  Thumbnails are usually found within a grid or gallery,\n  as a teaser or preview of more content. The common\n  use is to have an image on top of a title and text\n  below, while the entire thumbnail is an anchor link.\n\n  Example: Thumbnail\n  <a class=\"thumbnail\" href=\"/some/article\">\n    <img class=\"thumbnail__media\" src=\"http://fillmurray.com/400/200\">\n    <div class=\"thumbnail__caption\">\n      <h2>A caption title here</h2>\n      <p>Some more text follows to tease the rest of\n      the content</p>\n    </div>\n  </a>\n\n-----------------------------------------------------  */\n.thumbnail {\n  display: block;\n  padding: 0.5625em;\n  background: rgba(0, 0, 0, 0.1);\n  border: 1px solid rgba(0, 0, 0, 0.15);\n  text-decoration: none; }\n\n.thumbnail__media {\n  margin-bottom: 0.5625em; }\n\n.thumbnail__caption {\n  font-size: 85%; }\n  .thumbnail__caption h1, .thumbnail__caption h2, .thumbnail__caption h3, .thumbnail__caption h4, .thumbnail__caption h5, .thumbnail__caption h5 {\n    margin-bottom: 0.28125em; }\n\n/**\n\n  @video\n--------------------------------------------------------\n  modules/_video-embeds.scss\n--------------------------------------------------------\n\n  Video Embeds\n\n-----------------------------------------------------  */\n.video-embed {\n  display: block;\n  width: 100%;\n  height: 0;\n  position: relative;\n  padding-top: 66.666%; }\n  .video-embed iframe {\n    position: absolute;\n    top: 0;\n    bottom: 0;\n    left: 0;\n    right: 0;\n    height: 100% !important;\n    width: 100% !important; }\n"
  },
  {
    "path": "css/screen.scss",
    "content": "/****\n\n  MAIN STYLESHEET for [* Site Name Here *]\n\n---------------------------------------------------------\n\n  BUILT WITH SKYLINE: EVOLVING CSS ARCHITECTURE\n\n  See README.md for info and credits\n\n\n  TABLE OF CONTENTS\n  @toc\n\n  - Base ............ foundations, mixins, functions, vars\n  - Elements ........ single elements\n  - Layout .......... layout objects like grids, containers\n  - Modules ......... objects created by combining elements\n\n---------------------------------------------------------  */\n\n\n\n\n\n\n\n/***\n\n  @base\n---------------------------------------------------------\n\n  Your CSS begins with some global variables, a reset which\n  is basically Normalize, some mixins, and a print stylesheet.\n\n-----------------------------------------------------  */\n\n  // Vars\n  //\n  @import \"base/vars\";\n\n  // Reset\n  //\n  @import \"base/reset\";\n\n  // Mixins\n  //\n  @import \"base/mixin-breakpoints\";\n\n  @import \"base/mixin-clearfix\";\n\n  @import \"base/mixin-font-face-importer\";\n\n  @import \"base/mixin-gradual-media-queries\";\n\n  // Global\n  //\n  @import \"base/fonts\";\n\n  // Development Helpers\n  //\n  @import \"base/dev-helpers\";\n\n\n\n  // Print\n  //\n  @import \"base/print\";\n\n\n\n\n\n/***\n\n  @elements\n---------------------------------------------------------\n\n  Global styling of elements.\n\n---------------------------------------------------------  */\n\n\n\n  @import \"elements/body\";\n\n  @import \"elements/buttons\";\n\n  @import \"elements/code\";\n\n  @import \"elements/forms\";\n\n  @import \"elements/headings\";\n\n  @import \"elements/hr\";\n\n  @import \"elements/html\";\n\n  @import \"elements/images\";\n\n  @import \"elements/icons\";\n\n  @import \"elements/links\";\n\n  @import \"elements/lists\";\n\n  @import \"elements/quotes\";\n\n  @import \"elements/text\";\n\n\n\n\n\n\n\n/***\n\n  @layout\n---------------------------------------------------------\n\n  A large portion of CSS is structural layout. You will use\n  these helpers to create the scaffolding that will support\n  the elements and modules that make up your site.\n\n---------------------------------------------------------  */\n\n  @import \"layout/container\";\n\n  @import \"layout/grids\";\n\n  @import \"layout/hide\";\n\n  @import \"layout/media\";\n\n  @import \"layout/ups\";\n\n  @import \"layout/widths\";\n\n\n\n\n\n/***\n\n  @modules\n---------------------------------------------------------\n\n  Reusable objects that are combinations\n  of elements and other modules.\n\n  When you create a new module, make sure the partial is\n  in the modules directory, and you import it below.\n\n  Comment out any partial you don't need for this app.\n\n---------------------------------------------------------  */\n\n\n  // Site Modules\n  //\n  @import \"modules/site\";\n\n  @import \"modules/site-header\";\n\n  @import \"modules/site-main\";\n\n  @import \"modules/site-footer\";\n\n\n  // Page Template Module\n  //\n  @import \"modules/pages\";\n\n\n  // Component Modules\n  //\n  @import \"modules/alerts\";\n\n  @import \"modules/blocks\";\n\n  @import \"modules/callouts\";\n\n  @import \"modules/heroes\";\n\n  @import \"modules/modals\";\n\n  @import \"modules/thumbnails\";\n\n  @import \"modules/video-embeds\";\n"
  },
  {
    "path": "example-forms.html",
    "content": "<!DOCTYPE html>\n<html>\n\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"chrome=1\">\n  <title>***YOUR-TITLE-HERE***</title>\n\n  <!-- Styles -->\n  <link rel=\"stylesheet\" href=\"css/screen.css\">\n\n  <!-- Canonical Meta -->\n  <link rel=\"canonical\" href=\"**YOUR-URL-HERE***\">\n\n  <!-- Viewport Meta-->\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n\n  <!-- SEO Meta -->\n  <meta name=\"description\" content=\"***YOUR-CONTENT-HERE-***\">\n  <meta name=\"keywords\" content=\"***YOUR-CONTENT-HERE-***\">\n  <meta name=\"robots\" content=\"INDEX,FOLLOW\">\n\n  <!-- Favicons -->\n  <link rel=\"shortcut icon\" type=\"image/ico\" href=\"/favicon.ico\">\n  <link rel=\"apple-touch-icon\" href=\"/apple-touch-icon-precomposed.png\">\n  <meta name=\"apple-mobile-web-app-title\" content=\"Unsung\">\n\n  <!-- Facebook -->\n  <meta property=\"og:image\" content=\"***YOUR-URUL-HERE-***/images/avatar.png\">\n  <meta property=\"og:title\" content=\"***YOUR-TITLE-HERE-***\">\n  <meta property=\"og:site_name\" content=\"***YOUR-SITE'S-NAME-HERE-***\">\n  <meta property=\"og:url\" content=\"***YOUR-URL-HERE-***\">\n  <meta property=\"og:description\" content=\"***YOUR-CONTENT-HERE-***\">\n\n  <!-- Windows 8 Pin app to start screen -->\n  <meta name=\"msapplication-TileColor\" content=\"#272727\">\n  <meta name=\"msapplication-TileImage\" content=\"***YOUR-URL-HERE-***/apple-touch-icon-precomposed.png\">\n\n\n  </head>\n\n\n  <body>\n\n    <div class=\"site\">\n\n      <header class=\"site-header\" role=\"banner\">\n        <div class=\"container\">\n          <a class=\"branding\" href=\"index.html\">\n            <img class=\"branding__logo\" src=\"images/fpo-logo.png\" alt=\"Site Name\">\n            <h1 class=\"branding__wordmark\">Site Name</h1>\n          </a>\n          <nav class=\"site-nav\">\n            <a href=\"index.html\">Home</a>\n            <a href=\"example-grids.html\">Grids</a>\n            <a href=\"example-modules.html\">Modules</a>\n            <a href=\"example-forms.html\">Forms</a>\n            <a href=\"http://skyline.is\">Skyline</a>\n          </nav>\n        </div>\n      </header>\n\n      <main class=\"site-main\" role=\"main\">\n\n        <section class=\"block--ends container\">\n          <h1>Example Form</h1>\n          <p>Here's an example form to give you a head start.</p>\n        </section>\n\n        <section class=\"block container\">\n          <h2>A basic form example</h2>\n\n          <form class=\"form\">\n            <header class=\"form__header\">\n              <h1>Title of this form</h1>\n            </header>\n            <fieldset>\n              <legend>Personal Information</legend>\n              <article class=\"field\">\n                <label class=\"field__label\" for=\"exampleInput1\">Your Name</label>\n                <input class=\"field__input\" id=\"exampleInputA\" type=\"text\" required=\"required\" placeholder=\"Your name\">\n                <span class=\"field__feedback\"></span>\n                <span class=\"field__hint\"></span>\n              </article>\n              <article class=\"field\">\n                <label class=\"field__label\" for=\"exampleInputB\">Your Email</label>\n                <input class=\"field__input\" id=\"exampleInput2\" type=\"email\" required=\"required\" placeholder=\"Your email\">\n                <span class=\"field__feedback\"></span>\n                <span class=\"field__hint\">Must be a valid email address</span>\n              </article>\n            </fieldset>\n            <fieldset>\n              <article class=\"field\">\n                <label class=\"field__label\">Choose your favorite</label>\n                <div class=\"field__input-group\">\n                  <label class=\"label--radio\" for=\"favorite-food-1\"><input id=\"favorite-food-1\" name=\"favorite-food\" type=\"radio\" value=\"pizza\"> Pizza</label>\n                  <label class=\"label--radio\" for=\"favorite-food-2\"><input id=\"favorite-food-2\" name=\"favorite-food\" type=\"radio\" value=\"tacos\"> Tacos</label>\n                  <label class=\"label--radio\" for=\"favorite-food-3\"><input id=\"favorite-food-3\" name=\"favorite-food\" type=\"radio\" value=\"burgers\"> Burgers</label>\n                </div>\n                <span class=\"field__feedback\"></span>\n                <span class=\"field__hint\"></span>\n              </article>\n              <article class=\"field\">\n                <label class=\"field__label\">Select one</label>\n                <select name=\"schramburger\">\n                  <option value=\"value-1\">Option 1</option>\n                  <option value=\"value-2\">Option 2</option>\n                  <option value=\"value-3\">Option 3</option>\n                  <option value=\"value-4\">Option 4</option>\n                </select>\n              </article>\n            </fieldset>\n            <fieldset>\n              <article class=\"field\">\n                <label class=\"field__label\">Your message</label>\n                <textarea class=\"field__input\">Hello, there</textarea>\n                <span class=\"field__feedback\"></span>\n                <span class=\"field__hint\"></span>\n              </article>\n            </fieldset>\n            <footer class=\"form__actions\">\n              <input type=\"submit\" class=\"btn btn--block\" value=\"Submit\">\n            </footer>\n          </form>\n        </section>\n\n        <section class=\"block container\">\n          <p><em>You'll find more examples in the comments of the modules/_forms.scss partial.</em></p>\n        </section>\n\n      </main>\n\n      <footer class=\"site-footer\">\n        <div class=\"container\">\n          <a class=\"branding\" href=\"/\">Site Name</a>\n          <nav class=\"site-nav\">\n            <a href=\"index.html\">Home</a>\n            <a href=\"example-grids.html\">Grids</a>\n            <a href=\"example-modules.html\">Modules</a>\n            <a href=\"example-forms.html\">Forms</a>\n            <a href=\"http://skyline.is\">Skyline</a>\n          </nav>\n          <small class=\"site-credits\">&copy; 2014 Site Name</small>\n        </div>\n      </footer>\n\n    </div><!--/.site-->\n\n  </body>\n\n\n</html>\n"
  },
  {
    "path": "example-grids.html",
    "content": "<!DOCTYPE html>\n<html class=\"dev--highlight-grids dev--highlight-elements dev--show-breakpoint\">\n\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"chrome=1\">\n  <title>***YOUR-TITLE-HERE***</title>\n\n  <!-- Styles -->\n  <link rel=\"stylesheet\" href=\"css/screen.css\">\n\n  <!-- Canonical Meta -->\n  <link rel=\"canonical\" href=\"**YOUR-URL-HERE***\">\n\n  <!-- Viewport Meta-->\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n\n  <!-- SEO Meta -->\n  <meta name=\"description\" content=\"***YOUR-CONTENT-HERE-***\">\n  <meta name=\"keywords\" content=\"***YOUR-CONTENT-HERE-***\">\n  <meta name=\"robots\" content=\"INDEX,FOLLOW\">\n\n  <!-- Favicons -->\n  <link rel=\"shortcut icon\" type=\"image/ico\" href=\"/favicon.ico\">\n  <link rel=\"apple-touch-icon\" href=\"/apple-touch-icon-precomposed.png\">\n  <meta name=\"apple-mobile-web-app-title\" content=\"Unsung\">\n\n  <!-- Facebook -->\n  <meta property=\"og:image\" content=\"***YOUR-URUL-HERE-***/images/avatar.png\">\n  <meta property=\"og:title\" content=\"***YOUR-TITLE-HERE-***\">\n  <meta property=\"og:site_name\" content=\"***YOUR-SITE'S-NAME-HERE-***\">\n  <meta property=\"og:url\" content=\"***YOUR-URL-HERE-***\">\n  <meta property=\"og:description\" content=\"***YOUR-CONTENT-HERE-***\">\n\n  <!-- Windows 8 Pin app to start screen -->\n  <meta name=\"msapplication-TileColor\" content=\"#272727\">\n  <meta name=\"msapplication-TileImage\" content=\"***YOUR-URL-HERE-***/apple-touch-icon-precomposed.png\">\n\n\n  </head>\n\n\n  <body>\n\n    <div class=\"site\">\n\n      <header class=\"site-header\" role=\"banner\">\n        <div class=\"container\">\n          <a class=\"branding\" href=\"index.html\">\n            <img class=\"branding__logo\" src=\"images/fpo-logo.png\" alt=\"Site Name\">\n            <h1 class=\"branding__wordmark\">Site Name</h1>\n          </a>\n          <nav class=\"site-nav\">\n            <a href=\"index.html\">Home</a>\n            <a href=\"example-grids.html\">Grids</a>\n            <a href=\"example-modules.html\">Modules</a>\n            <a href=\"example-forms.html\">Forms</a>\n            <a href=\"http://skyline.is\">Skyline</a>\n          </nav>\n        </div>\n      </header>\n\n      <main class=\"site-main\" role=\"main\">\n\n        <section class=\"block--ends container\">\n          <h1>Skyline uses a simple, but powerful responsive grid system.</h1>\n          <ol>\n            <li>Grid layout is achieved by using a wrapping div called a 'grid-wrapper', and shortened to the classname <code>.gw</code>.</li>\n            <li>Within the grid-wrapper, grid units are added, and shortened to the classname <code>.g</code>.</li>\n            <li>These grid units then have responsive classnames added to them, which specify their widths at different viewports.</li>\n            <li>Responsive width classes start with a two-letter prefix (xs, sm, md, lg, xl) and follow with the width, written in easy-to-read fractions (one-half, two-thirds, seven-elevenths, etc.).\n          </ol>\n          <p><em>NOTE: The HTML element on this page has the classes <code>.dev--highlight-elements .dev--highlight-grids .dev--show-breakpoint</code> from <code>base/_dev-helpers.scss</code>. These enable some helper classes that highlight elements at breakpoints</em></p>\n        </section>\n\n        <section class=\"block container\">\n          <h1>A basic grid example</h1>\n          <p>Each grid unit below has the following classes: <code>sm-one-half md-one-third lg-one-sixth xl-one-twelfth</code>. These classes determine the grid unit's width at these viewports:</p>\n          <ul>\n            <li><b>Default</b>: grid units are 100%</li>\n            <li><b class=\"sm-highlight\">At SM</b>: one-half</li>\n            <li><b class=\"md-highlight\">At MD</b>: one-third</li>\n            <li><b class=\"lg-highlight\">At LG</b>: one-sixth</li>\n            <li><b class=\"xl-highlight\">At XL</b>: one-twelfth</li>\n          </ul>\n          <div class=\"gw\">\n            <div class=\"g sm-one-half md-one-third lg-one-sixth xl-one-twelfth\"><div class=\"gx\"></div></div>\n            <div class=\"g sm-one-half md-one-third lg-one-sixth xl-one-twelfth\"><div class=\"gx\"></div></div>\n            <div class=\"g sm-one-half md-one-third lg-one-sixth xl-one-twelfth\"><div class=\"gx\"></div></div>\n            <div class=\"g sm-one-half md-one-third lg-one-sixth xl-one-twelfth\"><div class=\"gx\"></div></div>\n            <div class=\"g sm-one-half md-one-third lg-one-sixth xl-one-twelfth\"><div class=\"gx\"></div></div>\n            <div class=\"g sm-one-half md-one-third lg-one-sixth xl-one-twelfth\"><div class=\"gx\"></div></div>\n            <div class=\"g sm-one-half md-one-third lg-one-sixth xl-one-twelfth\"><div class=\"gx\"></div></div>\n            <div class=\"g sm-one-half md-one-third lg-one-sixth xl-one-twelfth\"><div class=\"gx\"></div></div>\n            <div class=\"g sm-one-half md-one-third lg-one-sixth xl-one-twelfth\"><div class=\"gx\"></div></div>\n            <div class=\"g sm-one-half md-one-third lg-one-sixth xl-one-twelfth\"><div class=\"gx\"></div></div>\n            <div class=\"g sm-one-half md-one-third lg-one-sixth xl-one-twelfth\"><div class=\"gx\"></div></div>\n            <div class=\"g sm-one-half md-one-third lg-one-sixth xl-one-twelfth\"><div class=\"gx\"></div></div>\n          </div>\n        </section>\n\n        <section class=\"block container\">\n          <h1>An example of a grid units with unique sizes</h1>\n          <p>The grid units below use different combinations of responsive width classes for a more complex grid.</p>\n          <div class=\"gw\">\n            <div class=\"g sm-one-whole md-one-half  lg-one-third    xl-one-twelfth\"><div class=\"gx\"></div></div>\n            <div class=\"g sm-one-half  md-one-half  lg-one-third    xl-one-twelfth\"><div class=\"gx\"></div></div>\n            <div class=\"g sm-one-half  md-one-third lg-one-third    xl-one-twelfth\"><div class=\"gx\"></div></div>\n            <div class=\"g sm-one-whole md-one-third lg-one-fifth    xl-three-twelfths\"><div class=\"gx\"></div></div>\n            <div class=\"g sm-one-half  md-one-third lg-three-fifths xl-three-twelfths\"><div class=\"gx\"></div></div>\n            <div class=\"g sm-one-half  md-one-half  lg-one-fifth    xl-one-twelfth\"><div class=\"gx\"></div></div>\n            <div class=\"g sm-one-whole md-one-half  lg-one-sixth    xl-one-twelfth\"><div class=\"gx\"></div></div>\n            <div class=\"g sm-one-half  md-one-third lg-one-sixth    xl-one-twelfth\"><div class=\"gx\"></div></div>\n            <div class=\"g sm-one-half  md-one-third lg-one-sixth    xl-one-eighth\"><div class=\"gx\"></div></div>\n            <div class=\"g sm-one-whole md-one-third lg-one-sixth    xl-three-eighths\"><div class=\"gx\"></div></div>\n            <div class=\"g sm-one-half  md-one-half  lg-one-sixth    xl-three-eighths\"><div class=\"gx\"></div></div>\n            <div class=\"g sm-one-half  md-one-half  lg-one-sixth    xl-one-eighth\"><div class=\"gx\"></div></div>\n          </div>\n        </section>\n\n        <section class=\"block container\">\n          <h1>An example of a ludicrous grid</h1>\n          <p>Just to illustrate the flexibility of this grid system, here's an example of a ludicrously complex grid.</p>\n          <div class=\"gw\">\n            <div class=\"g xs-one-whole  sm-one-third    md-one-seventh    lg-one-twelfth    xl-one-twelfth\"><div class=\"gx\"></div></div>\n            <div class=\"g xs-one-third  sm-two-thirds   md-one-seventh    lg-five-twelfths  xl-one-twelfth\"><div class=\"gx\"></div></div>\n            <div class=\"g xs-two-thirds sm-one-whole    md-three-sevenths lg-one-half       xl-one-twelfth\"><div class=\"gx\"></div></div>\n            <div class=\"g xs-one-half   sm-one-fourth   md-one-seventh    lg-one-sixth      xl-one-half\"><div class=\"gx\"></div></div>\n            <div class=\"g xs-one-half   sm-one-half     md-one-seventh    lg-four-sixths    xl-three-twelfths\"><div class=\"gx\"></div></div>\n            <div class=\"g xs-one-fourth sm-one-eighth   md-one-half       lg-one-twelfth    xl-two-eighths\"><div class=\"gx\"></div></div>\n            <div class=\"g xs-one-half   sm-one-eighth   md-one-half       lg-one-twelfth    xl-one-eighth\"><div class=\"gx\"></div></div>\n            <div class=\"g xs-one-fourth sm-one-sixth    md-three-eighths  lg-one-eleventh   xl-five-eighths\"><div class=\"gx\"></div></div>\n            <div class=\"g xs-one-sixth  sm-three-sixths md-two-eighths    lg-five-elevenths xl-one-whole\"><div class=\"gx\"></div></div>\n            <div class=\"g xs-two-sixths sm-two-sixths   md-three-eighths  lg-five-elevenths xl-one-half\"><div class=\"gx\"></div></div>\n            <div class=\"g xs-one-sixth  sm-one-half     md-one-ninth      lg-one-half       xl-one-eighth\"><div class=\"gx\"></div></div>\n            <div class=\"g xs-two-sixths sm-six-twelfths md-eight-ninths   lg-one-half       xl-three-eighths\"><div class=\"gx\"></div></div>\n          </div>\n        </section>\n\n\n        <section class=\"block container\">\n          <h1>Grid example using ups</h1>\n          <p>For a grid wrap containing equally-sized grid units, like a gallery of thumbnails for instance, use the responsive ups classes from <code>layout/_ups.scss</code>. With these classes applied to the .grid wrapper, you won't need to specify widths on each individual grid unit.</p>\n          <ul>\n            <li><b>Default</b>: 100%</li>\n            <li><b class=\"xs-highlight\">At XS</b>: two-up</li>\n            <li><b class=\"sm-highlight\">At SM</b>: three-up</li>\n            <li><b class=\"md-highlight\">At MD</b>: four-up</li>\n            <li><b class=\"lg-highlight\">At LG</b>: six-up</li>\n            <li><b class=\"xl-highlight\">At XL</b>: twelve-up</li>\n          </ul>\n          <div class=\"gw xs-two-up sm-three-up md-four-up lg-six-up xl-twelve-up\">\n            <div class=\"g\"><div class=\"gx\"></div></div>\n            <div class=\"g\"><div class=\"gx\"></div></div>\n            <div class=\"g\"><div class=\"gx\"></div></div>\n            <div class=\"g\"><div class=\"gx\"></div></div>\n            <div class=\"g\"><div class=\"gx\"></div></div>\n            <div class=\"g\"><div class=\"gx\"></div></div>\n            <div class=\"g\"><div class=\"gx\"></div></div>\n            <div class=\"g\"><div class=\"gx\"></div></div>\n            <div class=\"g\"><div class=\"gx\"></div></div>\n            <div class=\"g\"><div class=\"gx\"></div></div>\n            <div class=\"g\"><div class=\"gx\"></div></div>\n            <div class=\"g\"><div class=\"gx\"></div></div>\n          </div>\n        </section>\n\n        <section class=\"block container\">\n          <h1>A nested grid example</h1>\n          <p>Grids can be nested within grids</p>\n          <div class=\"gw\">\n            <div class=\"g sm-one-half\">\n              <div class=\"gx\">\n                <div class=\"gw\">\n                  <div class=\"g sm-one-third\"><div class=\"gx\"></div></div>\n                  <div class=\"g sm-one-third\"><div class=\"gx\"></div></div>\n                  <div class=\"g sm-one-third\"><div class=\"gx\"></div></div>\n                </div>\n              </div>\n            </div>\n            <div class=\"g sm-one-half\">\n              <div class=\"gx\">\n                <div class=\"gw\">\n                  <div class=\"g sm-one-half\"><div class=\"gx\"></div></div>\n                  <div class=\"g sm-one-half\"><div class=\"gx\"></div></div>\n                </div>\n              </div>\n            </div>\n             <div class=\"g sm-one-half\">\n              <div class=\"gx\">\n                <div class=\"gw\">\n                  <div class=\"g sm-one-fourth\"><div class=\"gx\"></div></div>\n                  <div class=\"g sm-one-fourth\"><div class=\"gx\"></div></div>\n                  <div class=\"g sm-one-fourth\"><div class=\"gx\"></div></div>\n                  <div class=\"g sm-one-fourth\"><div class=\"gx\"></div></div>\n                </div>\n              </div>\n            </div>\n            <div class=\"g sm-one-half\">\n              <div class=\"gx\">\n                <div class=\"gw\">\n                  <div class=\"g sm-one-fifth\"><div class=\"gx\"></div></div>\n                  <div class=\"g sm-one-fifth\"><div class=\"gx\"></div></div>\n                  <div class=\"g sm-one-fifth\"><div class=\"gx\"></div></div>\n                  <div class=\"g sm-one-fifth\"><div class=\"gx\"></div></div>\n                  <div class=\"g sm-one-fifth\"><div class=\"gx\"></div></div>\n                </div>\n              </div>\n            </div>\n          </div>\n        </section>\n\n        <section class=\"block container\">\n          <h1>A double-nested grid example</h1>\n          <p>It's unusual, but sure - you can nest a nested grid.</p>\n          <div class=\"gw\">\n            <div class=\"g sm-one-half\">\n              <div class=\"gx\">\n                <div class=\"gw\">\n                  <div class=\"g sm-one-half\">\n                    <div class=\"gx\">\n                      <div class=\"gw\">\n                        <div class=\"g sm-one-half\">\n                          <div class=\"gx\"></div>\n                        </div>\n                        <div class=\"g sm-one-half\">\n                          <div class=\"gx\"></div>\n                        </div>\n                      </div>\n                    </div>\n                  </div>\n                  <div class=\"g sm-one-half\">\n                    <div class=\"gx\">\n                      <div class=\"gw\">\n                        <div class=\"g sm-one-half\">\n                          <div class=\"gx\"></div>\n                        </div>\n                        <div class=\"g sm-one-half\">\n                          <div class=\"gx\"></div>\n                        </div>\n                      </div>\n                    </div>\n                  </div>\n                </div>\n              </div>\n            </div>\n            <div class=\"g sm-one-half\">\n              <div class=\"gx\">\n                <div class=\"gw\">\n                  <div class=\"g sm-one-half\">\n                    <div class=\"gx\">\n                      <div class=\"gw\">\n                        <div class=\"g sm-one-half\">\n                          <div class=\"gx\"></div>\n                        </div>\n                        <div class=\"g sm-one-half\">\n                          <div class=\"gx\"></div>\n                        </div>\n                      </div>\n                    </div>\n                  </div>\n                  <div class=\"g sm-one-half\">\n                    <div class=\"gx\">\n                      <div class=\"gw\">\n                        <div class=\"g sm-one-half\">\n                          <div class=\"gx\"></div>\n                        </div>\n                        <div class=\"g sm-one-half\">\n                          <div class=\"gx\"></div>\n                        </div>\n                      </div>\n                    </div>\n                  </div>\n                </div>\n              </div>\n            </div>\n          </div>\n        </section>\n\n      </main>\n\n      <footer class=\"site-footer\">\n        <div class=\"container\">\n          <a class=\"branding\" href=\"/\">Site Name</a>\n          <nav class=\"site-nav\">\n            <a href=\"index.html\">Home</a>\n            <a href=\"example-grids.html\">Grids</a>\n            <a href=\"example-modules.html\">Modules</a>\n            <a href=\"example-forms.html\">Forms</a>\n            <a href=\"http://skyline.is\">Skyline</a>\n          </nav>\n          <small class=\"site-credits\">&copy; 2014 Site Name</small>\n        </div>\n      </footer>\n\n    </div><!--/.site-->\n\n\n  </body>\n\n\n</html>\n"
  },
  {
    "path": "example-modules.html",
    "content": "<!DOCTYPE html>\n<html>\n\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"chrome=1\">\n  <title>***YOUR-TITLE-HERE***</title>\n\n  <!-- Styles -->\n  <link rel=\"stylesheet\" href=\"css/screen.css\">\n\n  <!-- Canonical Meta -->\n  <link rel=\"canonical\" href=\"**YOUR-URL-HERE***\">\n\n  <!-- Viewport Meta-->\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n\n  <!-- SEO Meta -->\n  <meta name=\"description\" content=\"***YOUR-CONTENT-HERE-***\">\n  <meta name=\"keywords\" content=\"***YOUR-CONTENT-HERE-***\">\n  <meta name=\"robots\" content=\"INDEX,FOLLOW\">\n\n  <!-- Favicons -->\n  <link rel=\"shortcut icon\" type=\"image/ico\" href=\"/favicon.ico\">\n  <link rel=\"apple-touch-icon\" href=\"/apple-touch-icon-precomposed.png\">\n  <meta name=\"apple-mobile-web-app-title\" content=\"Unsung\">\n\n  <!-- Facebook -->\n  <meta property=\"og:image\" content=\"***YOUR-URUL-HERE-***/images/avatar.png\">\n  <meta property=\"og:title\" content=\"***YOUR-TITLE-HERE-***\">\n  <meta property=\"og:site_name\" content=\"***YOUR-SITE'S-NAME-HERE-***\">\n  <meta property=\"og:url\" content=\"***YOUR-URL-HERE-***\">\n  <meta property=\"og:description\" content=\"***YOUR-CONTENT-HERE-***\">\n\n  <!-- Windows 8 Pin app to start screen -->\n  <meta name=\"msapplication-TileColor\" content=\"#272727\">\n  <meta name=\"msapplication-TileImage\" content=\"***YOUR-URL-HERE-***/apple-touch-icon-precomposed.png\">\n\n\n  </head>\n\n\n  <body>\n\n    <div class=\"site\">\n\n      <header class=\"site-header\" role=\"banner\">\n        <div class=\"container\">\n          <a class=\"branding\" href=\"index.html\">\n            <img class=\"branding__logo\" src=\"images/fpo-logo.png\" alt=\"Site Name\">\n            <h1 class=\"branding__wordmark\">Site Name</h1>\n          </a>\n          <nav class=\"site-nav\">\n            <a href=\"index.html\">Home</a>\n            <a href=\"example-grids.html\">Grids</a>\n            <a href=\"example-modules.html\">Modules</a>\n            <a href=\"example-forms.html\">Forms</a>\n            <a href=\"http://skyline.is\">Skyline</a>\n          </nav>\n        </div>\n      </header>\n\n      <main class=\"site-main\" role=\"main\">\n\n        <div class=\"page\">\n\n          <section class=\"page__header\">\n            <div class=\"container\">\n              <h1>Example Modules</h1>\n              <p>Reusable components to jumpt start development.</p>\n              <p>This whole page here is in a <code>.page</code> module. This is a module created for basic pages with a wrapping <code>.page</code> div, and a <code>.page__header</code> and optional <code>.page__footer</code>.</p>\n              <p>Note that these components use basic inline javascript for some UI actions. Since Skyline focuses on CSS, you are free to use any javascript libraries you wish.</p>\n            </div>\n          </section>\n\n          <section class=\"block container\">\n            <h3>Alerts</h3>\n            <p>Alerts are UI elements that give important info.</p>\n            <div class=\"alert alert--error\" id=\"alert-1\">\n              <a href=\"#\" class=\"btn__close\" onclick=\"document.getElementById('alert-1').style.display = 'none'; return false;\">&times;</a>\n              <p>ERROR: Uh oh - something went wrong</p>\n            </div>\n            <div class=\"alert alert--warning\" id=\"alert-2\">\n              <a href=\"#\" class=\"btn__close\" onclick=\"document.getElementById('alert-2').style.display = 'none'; return false;\">&times;</a>\n              <p>WARNING: Shake it fast, but watch yourself.</p>\n            </div>\n            <div class=\"alert alert--success\" id=\"alert-3\">\n              <a href=\"#\" class=\"btn__close\" onclick=\"document.getElementById('alert-3').style.display = 'none'; return false;\">&times;</a>\n              <p>SUCCESS: The secret to my success is that I learn, 25 hours a day!</p>\n            </div>\n            <div class=\"alert alert--info\" id=\"alert-4\">\n              <a href=\"#\" class=\"btn__close\" onclick=\"document.getElementById('alert-4').style.display = 'none'; return false;\">&times;</a>\n              <p>INFO: All the planets can fit in the space between the earth and moon.</p>\n            </div>\n          </section>\n\n          <section class=\"block container\">\n            <hr>\n            <h3>Callouts</h3>\n            <p>Callouts are those sections of featured content that usually contain an icon, a title, and some text.  These are usually in a row, and call attention to highlighted features.</p>\n            <p style=\"margin-bottom: 4em;\">We're putting these into a small 2 up, medium 4 up grid</p>\n            <div class=\"gw sm-two-up md-four-up\">\n              <div class=\"g\">\n                <article class=\"callout\">\n                  <img class=\"callout__media\" src=\"images/fpo-icon.png\">\n                  <h3 class=\"callout__title\">Feature</h3>\n                  <p>This callout is very impressive, and should command your attention</p>\n                </article>\n              </div>\n              <div class=\"g\">\n                <article class=\"callout\">\n                  <img class=\"callout__media\" src=\"images/fpo-icon.png\">\n                  <h3 class=\"callout__title\">Feature</h3>\n                  <p>This callout is very impressive, and should command your attention</p>\n                </article>\n              </div>\n              <div class=\"g\">\n                <article class=\"callout\">\n                  <img class=\"callout__media\" src=\"images/fpo-icon.png\">\n                  <h3 class=\"callout__title\">Feature</h3>\n                  <p>This callout is very impressive, and should command your attention</p>\n                </article>\n              </div>\n              <div class=\"g\">\n                <article class=\"callout\">\n                  <img class=\"callout__media\" src=\"images/fpo-icon.png\">\n                  <h3 class=\"callout__title\">Feature</h3>\n                  <p>This callout is very impressive, and should command your attention</p>\n                </article>\n              </div>\n            </div><!--/gw-->\n          </section>\n\n\n          <section class=\"block container\">\n            <hr>\n            <h3>Thumbnails</h3>\n            <p>Thumbnails are usually found within a grid or gallery, as a teaser or preview of more content. The common use is to have an image on top of a title and text below, while the entire thumbnail is an anchor link.</p>\n            <p style=\"margin-bottom: 4em;\">We're putting these into a small 2 up, medium 4 up grid</p>\n            <div class=\"gw sm-two-up md-four-up\">\n              <div class=\"g\">\n                <a class=\"thumbnail\" href=\"/some/article\">\n                  <img class=\"thumbnail__media\" src=\"images/fpo-500x300.jpg\">\n                  <div class=\"thumbnail__caption\">\n                    <h2>A caption title here</h2>\n                    <p>Some more text follows to tease the rest of\n                    the content</p>\n                  </div>\n                </a>\n              </div>\n              <div class=\"g\">\n                <a class=\"thumbnail\" href=\"/some/article\">\n                  <img class=\"thumbnail__media\" src=\"images/fpo-500x300.jpg\">\n                  <div class=\"thumbnail__caption\">\n                    <h2>A caption title here</h2>\n                    <p>Some more text follows to tease the rest of\n                    the content</p>\n                  </div>\n                </a>\n              </div>\n              <div class=\"g\">\n                <a class=\"thumbnail\" href=\"/some/article\">\n                  <img class=\"thumbnail__media\" src=\"images/fpo-500x300.jpg\">\n                  <div class=\"thumbnail__caption\">\n                    <h2>A caption title here</h2>\n                    <p>Some more text follows to tease the rest of\n                    the content</p>\n                  </div>\n                </a>\n              </div>\n              <div class=\"g\">\n                <a class=\"thumbnail\" href=\"/some/article\">\n                  <img class=\"thumbnail__media\" src=\"images/fpo-500x300.jpg\">\n                  <div class=\"thumbnail__caption\">\n                    <h2>A caption title here</h2>\n                    <p>Some more text follows to tease the rest of\n                    the content</p>\n                  </div>\n                </a>\n              </div>\n            </div><!--/gw-->\n          </section>\n\n\n          <section class=\"block container\">\n            <hr>\n            <h3>Modals</h3>\n            <p>Click the button below to see our basic starter modal.</p>\n            <button class=\"btn\" onclick=\"document.getElementById('modal').style.display = 'block'; return false;\">Show Modal</button>\n            <div id=\"modal\" class=\"modal\">\n              <div class=\"modal__container\">\n                <div class=\"modal__body\" style=\"text-align: center;\">\n                  <h2>Modal content</h2>\n                  <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Veniam sint illo asperiores deleniti doloribus, voluptatibus distinctio dolorem ipsam non soluta officia architecto totam sit adipisci explicabo minima ad aliquam. Doloribus?</p>\n                </div>\n              </div>\n              <a href=\"#\" class=\"modal__close\" onclick=\"document.getElementById('modal').style.display = 'none'; return false;\">&times;</a>\n            </div>\n          </section>\n\n        </div><!--/.page-->\n\n      </main>\n\n      <footer class=\"site-footer\">\n        <div class=\"container\">\n          <a class=\"branding\" href=\"/\">Site Name</a>\n          <nav class=\"site-nav\">\n            <a href=\"index.html\">Home</a>\n            <a href=\"example-grids.html\">Grids</a>\n            <a href=\"example-modules.html\">Modules</a>\n            <a href=\"example-forms.html\">Forms</a>\n            <a href=\"http://skyline.is\">Skyline</a>\n          </nav>\n          <small class=\"site-credits\">&copy; 2014 Site Name</small>\n        </div>\n      </footer>\n\n    </div><!--/.site-->\n\n  </body>\n\n\n</html>\n"
  },
  {
    "path": "index.html",
    "content": "<!DOCTYPE html>\n<html>\n\n<head>\n  <meta charset=\"utf-8\">\n  <meta http-equiv=\"X-UA-Compatible\" content=\"chrome=1\">\n  <title>***YOUR-TITLE-HERE***</title>\n\n  <!-- Styles -->\n  <link rel=\"stylesheet\" href=\"css/screen.css\">\n\n  <!-- Canonical Meta -->\n  <link rel=\"canonical\" href=\"**YOUR-URL-HERE***\">\n\n  <!-- Viewport Meta-->\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n\n  <!-- SEO Meta -->\n  <meta name=\"description\" content=\"***YOUR-CONTENT-HERE-***\">\n  <meta name=\"keywords\" content=\"***YOUR-CONTENT-HERE-***\">\n  <meta name=\"robots\" content=\"INDEX,FOLLOW\">\n\n  <!-- Favicons -->\n  <link rel=\"shortcut icon\" type=\"image/ico\" href=\"/favicon.ico\">\n  <link rel=\"apple-touch-icon\" href=\"/apple-touch-icon-precomposed.png\">\n  <meta name=\"apple-mobile-web-app-title\" content=\"***YOUR-SITE'S-NAME-HERE-***\">\n\n  <!-- Facebook -->\n  <meta property=\"og:image\" content=\"***YOUR-URL-HERE-***/images/avatar.png\">\n  <meta property=\"og:title\" content=\"***YOUR-TITLE-HERE-***\">\n  <meta property=\"og:site_name\" content=\"***YOUR-SITE'S-NAME-HERE-***\">\n  <meta property=\" og:url\" content=\"***YOUR-URL-HERE-***\">\n  <meta property=\"og:description\" content=\"***YOUR-CONTENT-HERE-***\">\n\n  <!-- Windows 8 Pin app to start screen -->\n  <meta name=\"msapplication-TileColor\" content=\"****BRAND-COLOR-HERE***\">\n  <meta name=\"msapplication-TileImage\" content=\"***YOUR-URL-HERE-***/apple-touch-icon-precomposed.png\">\n\n  </head>\n\n\n  <body>\n\n    <div class=\"site\">\n\n      <header class=\"site-header\" role=\"banner\">\n        <div class=\"container\">\n          <a class=\"branding\" href=\"/\">\n            <img class=\"branding__logo\" src=\"images/fpo-logo.png\" alt=\"Site Name\">\n            <h1 class=\"branding__wordmark\">Site Name</h1>\n          </a>\n          <nav class=\"site-nav\">\n            <a href=\"index.html\">Home</a>\n            <a href=\"example-grids.html\">Grids</a>\n            <a href=\"example-modules.html\">Modules</a>\n            <a href=\"example-forms.html\">Forms</a>\n            <a href=\"http://skyline.is\">Skyline</a>\n          </nav>\n        </div>\n      </header>\n\n      <main class=\"site-main\" role=\"main\">\n\n        <article class=\"hero block\">\n          <main class=\"hero__main\">\n            <h1>I am a hero</h1>\n            <p>With a main element with text, and a background image.</p>\n            <p><a class=\"btn btn--secondary\" href=\"#\">Call To Action</a></p>\n          </main>\n          <img class=\"hero__media\" src=\"images/fpo-1300x500.jpg\">\n        </article>\n\n        <section class=\"block container\">\n          <div class=\"gw sm-two-up lg-four-up\">\n            <div class=\"g\">\n              <article class=\"callout\">\n                <img class=\"callout__media\" src=\"images/fpo-icon.png\">\n                <h3 class=\"callout__title\">Feature</h3>\n                <p>This callout is very impressive, and should command your attention</p>\n              </article>\n            </div>\n            <div class=\"g\">\n              <article class=\"callout\">\n                <img class=\"callout__media\" src=\"images/fpo-icon.png\">\n                <h3 class=\"callout__title\">Feature</h3>\n                <p>This callout is very impressive, and should command your attention</p>\n              </article>\n            </div>\n            <div class=\"g\">\n              <article class=\"callout\">\n                <img class=\"callout__media\" src=\"images/fpo-icon.png\">\n                <h3 class=\"callout__title\">Feature</h3>\n                <p>This callout is very impressive, and should command your attention</p>\n              </article>\n            </div>\n            <div class=\"g\">\n              <article class=\"callout\">\n                <img class=\"callout__media\" src=\"images/fpo-icon.png\">\n                <h3 class=\"callout__title\">Feature</h3>\n                <p>This callout is very impressive, and should command your attention</p>\n              </article>\n            </div>\n          </div>\n        </section>\n\n        <section class=\"block container\">\n          <h1>Here's a simple block section with some text</h1>\n          <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Temporibus, ipsam, minima, rerum asperiores eos amet beatae rem autem dignissimos excepturi molestias dolores delectus itaque aperiam corporis quibusdam deleniti cumque maxime.</p>\n          <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Temporibus, ipsam, minima, rerum asperiores eos amet beatae rem autem dignissimos excepturi molestias dolores delectus itaque aperiam corporis quibusdam deleniti cumque maxime.</p>\n          <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Temporibus, ipsam, minima, rerum asperiores eos amet beatae rem autem dignissimos excepturi molestias dolores delectus itaque aperiam corporis quibusdam deleniti cumque maxime.</p>\n        </section>\n\n        <section class=\"block container\">\n          <div class=\"gw\">\n            <div class=\"g md-one-half lg-three-fifths xl-four-sevenths\">\n              <h2>This is a grid example.  This div has responsive width classes.</h2>\n              <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Temporibus, ipsam, minima, rerum asperiores eos amet beatae rem autem dignissimos excepturi molestias dolores delectus itaque aperiam corporis quibusdam deleniti cumque maxime.</p>\n              <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Temporibus, ipsam, minima, rerum asperiores eos amet beatae rem autem dignissimos excepturi molestias dolores delectus itaque aperiam corporis quibusdam deleniti cumque maxime.</p>\n            </div>\n            <div class=\"g md-one-half lg-two-fifths xl-three-sevenths\">\n              <h2>This is a grid example.  This div also has responsive width classes.</h2>\n              <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Temporibus, ipsam, minima, rerum asperiores eos amet beatae rem autem dignissimos excepturi molestias dolores delectus itaque aperiam corporis quibusdam deleniti cumque maxime.</p>\n              <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Temporibus, ipsam, minima, rerum asperiores eos amet beatae rem autem dignissimos excepturi molestias dolores delectus itaque aperiam corporis quibusdam deleniti cumque maxime.</p>\n            </div>\n          </div>\n        </section>\n\n        <section class=\"block container\">\n          <p><em>Skyline is intended for IE9+ with optional legacy support in the works</em></p>\n        </section>\n\n      </main>\n\n      <footer class=\"site-footer\">\n        <div class=\"container\">\n          <a class=\"branding\" href=\"/\">Site Name Here</a>\n          <nav class=\"site-nav\">\n            <a href=\"index.html\">Home</a>\n            <a href=\"example-grids.html\">Grids</a>\n            <a href=\"example-modules.html\">Modules</a>\n            <a href=\"example-forms.html\">Forms</a>\n            <a href=\"http://skyline.is\">Skyline</a>\n          </nav>\n          <small class=\"site-credits\">&copy; 2014 Site Name</small>\n        </div>\n      </footer>\n\n    </div><!--/.site-->\n\n  </body>\n\n\n</html>\n"
  }
]