Card

A card is a simple, helpful component similar to Foundation Panels that enables you to outline sections of your page easily. This allows you to view your page sections as you add content to them or add emphasis to a section. The width is controlled by the grid columns you put them inside.

EXAMPLE

Show Code

<!-- Example Card -->
<div class="card">
    <!-- Card content goes here -->
    <h5>This is a card.</h5>
    <p>Content goes here.</p>
</div>
This is a card.

Content goes here.

Ghosting Card

EXAMPLE

Show Code

<!-- Example Card -->
<div class="bg-off-black padding-medium ghost-children">
    <div class="card">
        <!-- Card content goes here -->
        <h5>This is a card.</h5>
        <p>Content goes here.</p>
    </div>
</div>
This is a card.

Content goes here.