Bootstrap - Typography
We have styled all Bootstrap elements just as you want!
We have used 'golden ratio' for the default typography for this template. This sets perfect typography with great aesthetic look for your admin template.
Headings
All HTML headings, <h1>
through <h6>
, are available. .h1
through .h6
classes are also available, for when you want to match the font styling of a heading but still want your text to be displayed inline.
h1. Options Heading
h2. Options Heading
h3. Options Heading
h4. Options Heading
h5. Options Heading
h6. Options Heading
h1. Options Heading
h2. Options Heading
h3. Options Heading
h4. Options Heading
h5. Options Heading
h6. Options Heading
<div class="col-md-6"> <h1>h1. Options Heading</h1> <h2>h2. Options Heading</h2> <h3>h3. Options Heading</h3> <h4>h4. Options Heading</h4> <h5>h5. Options Heading</h5> <h6>h6. Options Heading</h6></div><!-- /.col-md-6 --><div class="col-md-6 text-right"> <h1>h1. Options Heading</h1> <h2>h2. Options Heading</h2> <h3>h3. Options Heading</h3> <h4>h4. Options Heading</h4> <h5>h5. Options Heading</h5> <h6>h6. Options Heading</h6></div><!-- /.col-md-6 -->
Headings with sub-title
Create lighter, secondary text in any heading with a generic <small>
tag or the .small
class.
h1. Options heading Secondary text
h2. Options heading Secondary text
h3. Options heading Secondary text
h4. Options heading Secondary text
h5. Options heading Secondary text
h6. Options heading Secondary text
h1. Options heading Secondary text
h2. Options heading Secondary text
h3. Options heading Secondary text
h4. Options heading Secondary text
h5. Options heading Secondary text
h6. Options heading Secondary text
<div class="col-md-6"> <h1>h1. Options heading <small>Secondary text</small></h1> <h2>h2. Options heading <small>Secondary text</small></h2> <h3>h3. Options heading <small>Secondary text</small></h3> <h4>h4. Options heading <small>Secondary text</small></h4> <h5>h5. Options heading <small>Secondary text</small></h5> <h6>h6. Options heading <small>Secondary text</small></h6></div><!-- /.col-md-6 --><div class="col-md-6 text-right"> <h1>h1. Options heading <small>Secondary text</small></h1> <h2>h2. Options heading <small>Secondary text</small></h2> <h3>h3. Options heading <small>Secondary text</small></h3> <h4>h4. Options heading <small>Secondary text</small></h4> <h5>h5. Options heading <small>Secondary text</small></h5> <h6>h6. Options heading <small>Secondary text</small></h6></div><!-- /.col-md-6 -->
Body Text
Options's global default font-size is 14px, (which you can change in Sass file easily) with a line-height ratio of 1.75 (again, you can change a variable in Sass file). This is applied to the body
and all paragraphs. In addition, p
(paragraphs) receive a bottom margin of half their computed line-height. This paragraph itself is a example of body text.
Lead Text
Just add lead
class to any paragraph and make it stand-out. This paragraph itself is a example of lead text.
<p class="lead">Options's global default font-size is 14px, (which you can change in Sass file easily) with a line-height ratio of 1.75 (again, you can change a variable in Sass file). This is applied to the <code class="language-html">body</code> and all paragraphs. In addition, <code class="language-html">p</code> (paragraphs) receive a bottom margin of half their computed line-height. This paragraph itself is a example of lead text.</p>
Marked Text
For highlighting a run of text due to its relevance in another context, use the <mark>
tag.
You can use the mark tag to highlighttext.
<p>You can use the mark tag to <mark>highlight</mark> text.</p>
Deleted Text
For indicating blocks of text that have been deleted use the <del>
tag.
This line of text is meant to be treated as deleted text.
<p><del>This line of text is meant to be treated as deleted text.</del></p>
Strikethrough Text
For indicating blocks of text that are no longer relevant use the <s>
tag.
This line of text is meant to be treated as no longer accurate.
<p><s>This line of text is meant to be treated as no longer accurate.</s></p>
Inserted Text
For indicating additions to the document use the <ins>
tag.
This line of text is meant to be treated as an addition to the document.
<p><ins>This line of text is meant to be treated as an addition to the document.</ins></p>
Underlined Text
To underline text use the <u>
tag.
This line of text will render as underlined
<p><u>This line of text will render as underlined</u></p>
Bold Text
For emphasizing a snippet of text with a heavier font-weight, use the <strong>
tag.
The following snippet of text is rendered as bold text.
<p>The following snippet of text is <strong>rendered as bold text.</strong></p>
Italic Text
For emphasizing a snippet of text with italics, use the <em>
tag.
The following snippet of text is rendered as italicized text.
<p>The following snippet of text is <em>rendered as italicized text.</em></p>
Alignment Classes
Easily realign text to components with 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
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>
Basic Abbreviation
Stylized implementation of HTML's <abbr>
element for abbreviations and acronyms to show the expanded version on hover. Abbreviations with a title attribute have a light dotted bottom border and a help cursor on hover, providing additional context on hover and to users of assistive technologies.
An abbreviation of the word attribute is attr.
<p>An abbreviation of the word attribute is <abbr title="attribute">attr</abbr>.</p>
Initialism Abbreviation
Add .initialism
to an abbreviation for a slightly smaller font-size.
HTMLis the best thing since sliced bread.
<p><abbr title="HyperText Markup Language" class="initialism">HTML</abbr> is the best thing since sliced bread.</p>
Addresses
Present contact information for the nearest ancestor or the entire body of work. Preserve formatting by ending all lines with <br>
.
1355 Market Street, Suite 900
San Francisco, CA 94103
P:(123) 456-7890 Full Name
first.last@example.com
<address> <strong>Twitter, Inc.</strong><br> 1355 Market Street, Suite 900<br> San Francisco, CA 94103<br> <abbr title="Phone">P:</abbr> (123) 456-7890</address><address> <strong>Full Name</strong><br> <a href="mailto:#">first.last@example.com</a></address>
Default Blockquote
Wrap <blockquote>
around any HTML as the quote. For straight quotes, we recommend a <p>
.
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.
<blockquote> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p></blockquote>
Blockquote with footer
Add a <footer>
for identifying the source. Wrap the name of the source work in <cite>
.
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.
<blockquote> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p> <footer>Someone famous in <cite title="Source Title">Source Title</cite></footer></blockquote>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.
<blockquote class="blockquote-reverse"> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p> <footer>Someone famous in <cite title="Source Title">Source Title</cite></footer></blockquote>
Unordered Lists
A list of items in which the order does not explicitly matter.
- Lorem ipsum dolor sit amet
- Consectetur adipiscing elit
- Integer molestie lorem at massa
- Facilisis in pretium nisl aliquet
- Nulla volutpat aliquam velit
- Phasellus iaculis neque
- Purus sodales ultricies
- Vestibulum laoreet porttitor sem
- Ac tristique libero volutpat at
- Faucibus porta lacus fringilla vel
- Aenean sit amet erat nunc
- Eget porttitor lorem
<ul> <li>Lorem ipsum dolor sit amet</li> <li>Consectetur adipiscing elit</li> <li>Integer molestie lorem at massa</li> <li>Facilisis in pretium nisl aliquet</li> <li>Nulla volutpat aliquam velit <ul> <li>Phasellus iaculis neque</li> <li>Purus sodales ultricies</li> <li>Vestibulum laoreet porttitor sem</li> <li>Ac tristique libero volutpat at</li> </ul> </li> <li>Faucibus porta lacus fringilla vel</li> <li>Aenean sit amet erat nunc</li> <li>Eget porttitor lorem</li></ul>
Ordered Lists
A list of items in which the order does explicitly matter.
- Lorem ipsum dolor sit amet
- Consectetur adipiscing elit
- Integer molestie lorem at massa
- Facilisis in pretium nisl aliquet
- Nulla volutpat aliquam velit
- Phasellus iaculis neque
- Purus sodales ultricies
- Vestibulum laoreet porttitor sem
- Ac tristique libero volutpat at
- Faucibus porta lacus fringilla vel
- Aenean sit amet erat nunc
- Eget porttitor lorem
<ol> <li>Lorem ipsum dolor sit amet</li> <li>Consectetur adipiscing elit</li> <li>Integer molestie lorem at massa</li> <li>Facilisis in pretium nisl aliquet</li> <li>Nulla volutpat aliquam velit <ol> <li>Phasellus iaculis neque</li> <li>Purus sodales ultricies</li> <li>Vestibulum laoreet porttitor sem</li> <li>Ac tristique libero volutpat at</li> </ol> </li> <li>Faucibus porta lacus fringilla vel</li> <li>Aenean sit amet erat nunc</li> <li>Eget porttitor lorem</li></ol>
Unstyled Lists
Remove the default list-style
and left margin on list items (immediate children only). This only applies to immediate children list items, meaning you will need to add the class for any nested lists as well.
- Lorem ipsum dolor sit amet
- Consectetur adipiscing elit
- Integer molestie lorem at massa
- Facilisis in pretium nisl aliquet
- Nulla volutpat aliquam velit
- Phasellus iaculis neque
- Purus sodales ultricies
- Vestibulum laoreet porttitor sem
- Ac tristique libero volutpat at
- Faucibus porta lacus fringilla vel
- Aenean sit amet erat nunc
- Eget porttitor lorem
<ul class="list-unstyled"> <li>Lorem ipsum dolor sit amet</li> <li>Consectetur adipiscing elit</li> <li>Integer molestie lorem at massa</li> <li>Facilisis in pretium nisl aliquet</li> <li>Nulla volutpat aliquam velit <ul> <li>Phasellus iaculis neque</li> <li>Purus sodales ultricies</li> <li>Vestibulum laoreet porttitor sem</li> <li>Ac tristique libero volutpat at</li> </ul> </li> <li>Faucibus porta lacus fringilla vel</li> <li>Aenean sit amet erat nunc</li> <li>Eget porttitor lorem</li></ul>
Inline Lists
Place all list items on a single line with display: inline-block;
and some light padding.
- Lorem ipsum
- Phasellus iaculis
- Nulla volutpat
<ul class="list-inline"> <li>Lorem ipsum</li> <li>Phasellus iaculis</li> <li>Nulla volutpat</li></ul>
Description List
A list of terms with their associated descriptions.
- Description lists
- A description list is perfect for defining terms.
- Euismod
- Vestibulum id ligula porta felis euismod semper eget lacinia odio sem nec elit.
- Donec id elit non mi porta gravida at eget metus.
- Malesuada porta
- Etiam porta sem malesuada magna mollis euismod.
<dl> <dt>Description lists</dt> <dd>A description list is perfect for defining terms.</dd> <dt>Euismod</dt> <dd>Vestibulum id ligula porta felis euismod semper eget lacinia odio sem nec elit.</dd> <dd>Donec id elit non mi porta gravida at eget metus.</dd> <dt>Malesuada porta</dt> <dd>Etiam porta sem malesuada magna mollis euismod.</dd></dl>
Horizontal Description List
Make terms and descriptions in <dl>
line up side-by-side. Starts off stacked like default <dl>
s, but when the navbar expands, so do these.
- Description lists
- A description list is perfect for defining terms.
- Euismod
- Vestibulum id ligula porta felis euismod semper eget lacinia odio sem nec elit.
- Donec id elit non mi porta gravida at eget metus.
- Malesuada porta
- Etiam porta sem malesuada magna mollis euismod.
- Felis euismod semper eget lacinia
- Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.
<dl class="dl-horizontal"> <dt>Description lists</dt> <dd>A description list is perfect for defining terms.</dd> <dt>Euismod</dt> <dd>Vestibulum id ligula porta felis euismod semper eget lacinia odio sem nec elit.</dd> <dd>Donec id elit non mi porta gravida at eget metus.</dd> <dt>Malesuada porta</dt> <dd>Etiam porta sem malesuada magna mollis euismod.</dd> <dt>Felis euismod semper eget lacinia</dt> <dd>Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.</dd></dl>