Typography 2.0
Headings and Paragraphs 2.1
Default styling
Heading level 1
Heading level 2
Heading level 3
Heading level 4
This a common paragraph. Lesser divided saw yielding stars wherein. Void fly forth you'll bring. Divide creeping. Subdue third female shall them she'd she'd isn't fourth.
This a common paragraph. Lesser divided saw yielding stars wherein. Void fly forth you'll bring. Divide creeping. Subdue third female shall them she'd she'd isn't fourth.
<h1>Heading level 1</h1> <h2>Heading level 2</h2> <h3>Heading level 3</h3> <h4>Heading level 4</h4> <p>This a common paragraph. Lesser divided saw yielding stars wherein. Void fly forth you'll bring. Divide creeping. Subdue third female shall them she'd she'd isn't fourth.</p> <p>This a common paragraph. Lesser divided saw yielding stars wherein. Void fly forth you'll bring. Divide creeping. Subdue third female shall them she'd she'd isn't fourth.</p>
Emphasis 2.2
Basic Emphasis 2.2.1
Default styling
<strong>Emphasize in bold</strong><br /> <em>Emphasize in cursive</em><br /> <small>Small text</small><br /> <a href="#">Normal link</a><br /> <abbr title="HyperText Markup Language">HTML</abbr>
Emphasis Classes 2.2.2
Default styling
Success
Warning
Danger or error
Muted
<p class="text-success">Success</p> <p class="text-warning">Warning</p> <p class="text-danger">Danger or error</p> <p class="text-muted">Muted</p>
Lists 2.3
Default Lists 2.3.1
Default styling
- One
- Two
- Two Point One
- Two Point Three
- Three
- Four
- One
- Two
- Three
- Three.One
- Three.Two
- Four
<ul> <li>One</li> <li>Two <ul> <li>Two Point One</li> <li>Two Point Three</li> </ul> </li> <li>Three</li> <li>Four</li> </ul> <ol> <li>One</li> <li>Two</li> <li>Three <ol> <li>Three.One</li> <li>Three.Two</li> </ol> </li> <li>Four</li> </ol>
Unstyled Lists 2.3.2
Please note that this modification only affects one level.
Default styling
- One
- Two
- Three
- Four
<ul class="list-unstyled"> <li>One</li> <li>Two</li> <li>Three</li> <li>Four</li> </ul>
Inline Lists 2.3.3
Please note that this modification only affects one level.
Default styling
Inline list
- One
- Two
- Three
<h3>Inline list</h3> <ul class="list-inline"> <li>One</li> <li>Two</li> <li>Three</li> </ul>
Definition Lists 2.3.4
Default styling
- Defintion title
- Definition text
- Defintion title
- Definition text
<dl> <dt>Defintion title</dt> <dd>Definition text</dd> <dt>Defintion title</dt> <dd>Definition text</dd> </dl>
Text Utilities 2.4
Default styling
Text left
Text center
Text right
Justified text.
This text will never wrap to a new line.
This text will always wrap to a new line (it is default behavior but sometimes - if you want to override 'nowrap' behavior - it may be useful).
<p class="text-left">Text left</p> <p class="text-center">Text center</p> <p class="text-right">Text right</p> <p class="text-justify">Justified text.</p> <p class="text-nowrap">This text will never wrap to a new line.</p> <p class="text-wrap">This text will always wrap to a new line (it is default behavior but sometimes - if you want to override 'nowrap' behavior - it may be useful).</p>
Icon Set 2.5
You can download all icons in single file.
Default styling
<script> window.addEventListener('DOMContentLoaded', () => { const icons = window.iconList || []; const container = document.getElementById('iconset-container'); const iconsListItems = icons.map(icon => { return `<li> <span class="icon icon--${icon}" aria-hidden="true"></span> <p><a href="dist/images/icons/${icon}.svg" download>${icon}</a></p> </li>`; }); container.innerHTML = `<ul class="iconset">${iconsListItems.join('')}</ul>`; }); </script> <div id="iconset-container"> <!-- Content is generated by javascript above. --> </div>
Icon Size 2.5.1
Default styling
Normal icon (default font size)
Medium icon
Large icon
Extra large icon
<span class="icon icon--candidate {$modifiers}" aria-hidden="true"></span>
Icon Alignment 2.5.2
You can use .icon--left or .icon--right to create space between text and icon and .icon--middle for vertical alignment.
Default styling
John Doe
John Doe
Vijay Kumar
<p><span class="icon icon--candidate icon--left" aria-hidden="true"></span> John Doe</p> <p>John Doe <span class="icon icon--candidate icon--right" aria-hidden="true"></span></p> <p><span class="icon icon--candidate icon--left icon--large icon--middle" aria-hidden="true"></span> Vijay Kumar</p>