Style Guide

Examples
Default styling
Button
.button--primary
Primary
Button
.button--action
Action
Button
.button--danger
Danger
Button
.button--bordered
Bordered
Button
:disabled
Disabled
Button
Markup
<a href="#" class="button [modifier class]">Button</a> <button class="button [modifier class]">Button</button>
Source: build/doc/doc.css, line 3210
Example
Header
Header
Header
Header
Header
Cell
Cell
Cell
Cell
Cell
Markup
<div class="table">
<div class="table__row table__row--header">
<div class="table__cell">Header</div>
<div class="table__cell">Header</div>
<div class="table__cell">Header</div>
<div class="table__cell">Header</div>
<div class="table__cell">Header</div>
</div>
<div class="table__row">
<div class="table__cell">Cell</div>
<div class="table__cell">Cell</div>
<div class="table__cell">Cell</div>
<div class="table__cell">Cell</div>
<div class="table__cell">Cell</div>
</div>
</div>
Source: build/doc/doc.css, line 4213
Examples
Default styling
  • List
  • List
  • List
.checkList
Checklist
  • List
  • List
  • List
Markup
<ul class="[modifier class]">
<li>List</li>
<li>List</li>
<li>List</li>
</ul>
Source: build/doc/doc.css, line 9927
Example
Header Header Header Header Header
Cell Cell Cell Cell Cell
Markup
<table>
<tr>
<th>Header</th>
<th>Header</th>
<th>Header</th>
<th>Header</th>
<th>Header</th>
</tr>
<tr>
<td>Cell</td>
<td>Cell</td>
<td>Cell</td>
<td>Cell</td>
<td>Cell</td>
</tr>
</table>
Source: build/doc/doc.css, line 4155