R O G A N

Typography

Heading Style

Default Heading .h1

Default Heading .h2

Default Heading .h3

Default Heading .h4

Default Heading .h5
Default Heading .h6
Display Heading Styles

Traditional heading elements are designed to work best in the meat of your page content. When you need a heading to stand out, consider using a display heading—a larger, slightly more opinionated heading style.

Display 1

Display 2

Display 3

Display 4

Inline text elements

Styling for common inline HTML5 elements.

You can use the mark tag to highlight text. class="mark"


This line of text is meant to be treated as deleted text. class="del"


This line of text is meant to be treated as no longer accurate. class="s"


This line of text is meant to be treated as an addition to the document. class="ins"


This line of text will render as underlined class="u"


This line of text is meant to be treated as fine print. class="small"


This line rendered as bold text. class="strong"


This line rendered as italicized text. class="em"

Text alignment

Easily realign text to components with text alignment classes.

Left aligned text. class="text-left"


Center aligned text. class="text-center"


Right aligned text. class="text-right"


Ambitioni dedisse scripsisse iudicaretur. Cras mattis iudicium purus sit amet fermentum. Donec sed odio operae, eu vulputate felis rhoncus. Praeterea iter est quasdam res quas ex communi. At nos hinc posthac, sitientis piros Afros. Petierunt uti sibi concilium totius Galliae in diem certam indicere. Cras mattis iudicium purus sit amet fermentum. class="text-justify"

Text wrapping and overflow

For longer content, you can add a .text-truncate class to truncate the text with an ellipsis. Requires display: inline-block or display: block.

Praeterea iter est quasdam res quas ex communi.
Praeterea iter est quasdam res quas ex communi.
	
<!-- Block level -->
<div class="row">
	<div class="col-2 text-truncate">
		Praeterea iter est quasdam res quas ex communi.
	</div>
</div>

<!-- Inline level -->
<span class="d-inline-block text-truncate" style="max-width: 150px;">
	Praeterea iter est quasdam res quas ex communi.
</span>
	
	
Text transform

Transform text in components with text capitalization 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>