Skip to content

Latest commit

 

History

History
109 lines (91 loc) · 3.64 KB

rhe-layouts.md

File metadata and controls

109 lines (91 loc) · 3.64 KB
layout
component

RHE Layouts

<style> body { padding: 32px; background: #e7e7e7; } header h1 { margin-top: 0; } section { margin: 32px 0; } section section { padding: 32px; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.2); } section section > h3 { margin-top: 0; } section section > h4 { margin-top: 32px; } pre { padding: 8px; /* border: 1px solid #dedede; */ } .rhe-l-grid > * { background: #e0d7ee; padding: 8px; } :not(pre)>code[class*=language-], pre[class*=language-] { background: #f2f2f2; } </style>

Grid

<section>
  <h3>Pure Grid</h3>
  <div class="rhe-l-grid rhe-m-gutters rhe-m-all-6-col rhe-m-all-4-col-on-md rhe-m-all-3-col-on-lg">
    <div>Item</div>
    <div>Item</div>
    <div>Item</div>
    <div>Item</div>
    <div>Item</div>
  </div>

  <h4>Code</h4>
  <pre><code class="lang-markup">&lt;div class="rhe-l-grid rhe-m-gutters rhe-m-all-6-col rhe-m-all-4-col-on-md rhe-m-all-3-col-on-lg"&gt;

<div>Item</div> <div>Item</div> <div>Item</div> <div>Item</div> <div>Item</div> </div>

<section>
  <h3>Bootstrap-style Columns</h3>
  <div class="rhe-l-grid rhe-m-gutters">
    <div class="rhe-l-grid__item">Default Item</div>
    <div class="rhe-l-grid__item rhe-m-2-col"><code>rhe-m-2-col</code></div>
    <div class="rhe-l-grid__item rhe-m-10-col"><code>rhe-m-10-col</code></div>
    <div class="rhe-l-grid__item rhe-m-4-col"><code>rhe-m-4-col</code></div>
    <div class="rhe-l-grid__item rhe-m-4-col"><code>rhe-m-4-col</code></div>
    <div class="rhe-l-grid__item rhe-m-4-col"><code>rhe-m-4-col</code></div>
    <div class="rhe-l-grid__item rhe-m-6-col rhe-m-3-col-on-md"><code>rhe-m-6-col rhe-m-3-col-on-md</code></div>
    <div class="rhe-l-grid__item rhe-m-6-col rhe-m-3-col-on-md rhe-m-startat-7-col-on-md"><code>rhe-m-6-col rhe-m-3-col-on-md rhe-m-startat-7-col-on-md</code></div>
    <div class="rhe-l-grid__item rhe-m-6-col rhe-m-3-col-on-md"><code>rhe-m-6-col rhe-m-3-col-on-md</code></div>
  </div>

  <h4>Code</h4>
  <pre><code class="lang-markup">&lt;div class="rhe-l-grid rhe-m-gutters"&gt;

<div class="rhe-l-grid__item">Default Item</div> <div class="rhe-l-grid__item rhe-m-2-col"><code>rhe-m-2-col</code></div> <div class="rhe-l-grid__item rhe-m-10-col"><code>rhe-m-10-col</code></div> <div class="rhe-l-grid__item rhe-m-4-col"><code>rhe-m-4-col</code></div> <div class="rhe-l-grid__item rhe-m-4-col"><code>rhe-m-4-col</code></div> <div class="rhe-l-grid__item rhe-m-4-col"><code>rhe-m-4-col</code></div> <div class="rhe-l-grid__item rhe-m-6-col rhe-m-3-col-on-md"><code>rhe-m-6-col rhe-m-3-col-on-md</code></div> <div class="rhe-l-grid__item rhe-m-6-col rhe-m-3-col-on-md rhe-m-startat-7-col-on-md"><code>rhe-m-6-col rhe-m-3-col-on-md rhe-m-startat-7-col-on-md</code></div> <div class="rhe-l-grid__item rhe-m-6-col rhe-m-3-col-on-md"><code>rhe-m-6-col rhe-m-3-col-on-md</code></div> </div>

</section>