Description.
<div class="grid--one-two">
<main class="grid__item">Grid column 1. Example text to show how the coluns breaks on smaller screens.</main>
<aside class="grid__item">Grid column 2. Example text to show how the coluns breaks on smaller screens.</aside>
</div>
Goes from one grid__item on small screens to three grid__item's on larger screens.
<div class="grid--three">
<div class="grid__item">Grid column 1. Example text to show how the coluns breaks on smaller screens.</div>
<div class="grid__item">Grid column 2. Example text to show how the coluns breaks on smaller screens.</div>
<div class="grid__item">Grid column 3. Example text to show how the coluns breaks on smaller screens.</div>
</div>
Similar to three column grid, but without gutter and space on all sizes except really small displays.
<div class="grid--three--nogutter">
<div class="grid__item">Grid column 1. Example text to show how the coluns breaks on smaller screens.</div>
<div class="grid__item">Grid column 2. Example text to show how the coluns breaks on smaller screens.</div>
<div class="grid__item">Grid column 3. Example text to show how the coluns breaks on smaller screens.</div>
</div>
Special grid for three tiles on one row.
<div class="container grid-tile">
<div class="section__main tile-wrapper">
<article class="tile green grid__item">
Tile one
</article>
<article class="tile green grid__item">
Tile two
</article>
<article class="tile green grid__item">
Tile three
</article>
</div>
</div>
Two column grid that breaks down to one column on smaller sceens
<div class="grid--two">
<div class="grid__item">Grid column 1. Example text to show how the coluns breaks on smaller screens.</div>
<div class="grid__item">Grid column 2. Example text to show how the coluns breaks on smaller screens.</div>
</div>
Description.
<div class="grid--two-one">
<main class="grid__item">Grid column 1. Example text to show how the coluns breaks on smaller screens.</main>
<aside class="grid__item">Grid column 2. Example text to show how the coluns breaks on smaller screens.</aside>
</div>