Fork me on GitHub

consola.css
A CSS micro-framework for a console like style

NPM Bower NPM Downloads license Code Climate

Typography

Headings

All styles of HTML headings, <h1> through <h6>, are also available as classes .h1 through .h6

.h1 .h2 .h3 .h4 .h5 .h6

<span class="h1">.h1</span>
<span class="h2">.h2</span>
<span class="h3">.h3</span>
<span class="h4">.h4</span>
<span class="h5">.h5</span>
<span class="h6">.h6</span>

Inline text elements

Marked text

Some marked text
Some <mark>marked</mark> text

Deleted text

Some deleted text
Some <del>deleted</del> text

Strikethrough text

Some strikethrough text
Some <s>strikethrough</s> text

Underlined text

Some underlined text
Some <u>underlined</u> text

Small text

Some small text
Some <small>small</small> text

Bold

Some bold text
Some <strong>bold</strong> text

Italics

Some italicized text
Some <em>italicized</em> text

Alignment classes

Left aligned text.

Center aligned text.

Right aligned text.

Justified text.

No wrap text.

<p class="text-left">Left aligned text.</p>
<p class="text-center">Center aligned text.</p>
<p class="text-right">Right aligned text.</p>
<p class="text-justify">Justified text.</p>
<p class="text-nowrap">No wrap text.</p>

Transformation classes

Lowercased text.

Uppercased text.

Capitalized text.

<p class="text-lowercase">Lowercased text.</p>
<p class="text-uppercase">Uppercased text.</p>
<p class="text-capitalize">Capitalized text.</p>

Lists

Ordered

  1. Apples
  2. Bananas
  3. Oranges
<ol>
    <li>Apples</li>
    <li>Bananas</li>
    <li>Oranges</li>
</ol>

Unorderd

  • Apples
  • Bananas
  • Citrus
    • Limes
    • Oranges
    • Grapefruit
<ul>
    <li>Apples</li>
    <li>Bananas</li>
    <li>Citrus
        <ul>
            <li>Limes</li>
            <li>Oranges</li>
            <li>Grapefruit</li>
        </ul>
    </li>
</ul>

Unorderd Dash

  • Apples
  • Bananas
  • Citrus
    • Limes
    • Oranges
    • Grapefruit
<ul class="list-dash">
    <li>Apples</li>
    <li>Bananas</li>
    <li>Citrus
        <ul>
            <li>Limes</li>
            <li>Oranges</li>
            <li>Grapefruit</li>
        </ul>
    </li>
</ul>

Unstyled

  • Apples
  • Bananas
  • Oranges
<ul class="list-unstyled">
    <li>Apples</li>
    <li>Bananas</li>
    <li>Oranges</li>
</ul>