Typography

Headings

All HTML headings, <h2> through <h6> are available.

h1. Heading 1

h2. Heading 2

h3. Heading 3

h4. Heading 4

h5. Heading 5
h6. Heading 6

All HTML headings, <h1> through <h6> are also available in an alternative format.

h2. Heading 2

h3. Heading 3

h4. Heading 4

h5. Heading 5
h6. Heading 6
<h2 class="title--alt">h2. Alt Heading 2</h2>
<h3 class="title--alt">h3. Alt Heading 3</h3>
<h4 class="title--alt">h4. Alt Heading 4</h4>
<h5 class="title--alt">h5. Alt Heading 5</h5>
<h6 class="title--alt">h6. Alt Heading 6</h6>

Body copy

The Museum's global default font-size is 16px, with a line-height of 25px. This is applied to the <body> and all paragraphs. In addition, <p> (paragraphs) receive a bottom margin of 20px by default.

Nullam quis risus eget urna mollis ornare vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nullam id dolor id nibh ultricies vehicula.

Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec ullamcorper nulla non metus auctor fringilla. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Donec ullamcorper nulla non metus auctor fringilla.

Maecenas sed diam eget risus varius blandit sit amet non magna. Donec id elit non mi porta gravida at eget metus. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit.

<p>...</p>

Emphasis

Make use of HTML's default emphasis tags with lightweight styles.

<small>

For de-emphasizing inline or blocks of text, use the small tag.

This line of text is meant to be treated as fine print.

<p>
<small>This line of text is meant to be treated as fine print.</small>
</p>

Bold

For emphasizing a snippet of text with important

The following snippet of text is rendered as bold text.

<strong>rendered as bold text</strong>

Italics

For emphasizing a snippet of text with stress

The following snippet of text is rendered as italicized text.

<em>rendered as italicized text</em>

Blockquotes

For quoting blocks of content from another source within your document.

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 options

Style and content changes for simple variations on a standard blockquote.

Naming a source

Add class author to the p tag for identifying the source. .

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.

Someone Famous

<blockquote>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
<p class="author">Someone Famous</p>
</blockquote>

Messages

Nullam quis risus eget urna mollis ornare vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nullam id dolor id nibh ultricies vehicula.

Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec ullamcorper nulla non metus auctor fringilla. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Donec ullamcorper nulla non metus auctor fringilla.

Maecenas sed diam eget risus varius blandit sit amet non magna. Donec id elit non mi porta gravida at eget metus. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit.

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.

<div class="error">
  <p>Nullam quis risus eget urna mollis ornare vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nullam id dolor id nibh ultricies vehicula.</p>
  <p>Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec ullamcorper nulla non metus auctor fringilla. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Donec ullamcorper nulla non metus auctor fringilla.</p>
  >Maecenas sed diam eget risus varius blandit sit amet non magna. Donec id elit non mi porta gravida at eget metus. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit.</p>
</div>
<div class="failure">
  <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
</div>
<div class="notice">
  <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
</div>
<div class="messages">
  <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
</div>
<div class="warning">
  <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
</div>
<div class="success">
  <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p>
</div>

Button Group

Can be used to style inline documents. Remember you can team this up with the btn sizing to make button smaller or larger

<span class="btn-group">
  <a href="#.pdf" class="btn btn-default">Document description and title [PDF – 140KB]</a>
  <a href="#.txt" class="btn btn-default"><span class="visuallyhidden visuallyhidden-temp">Accessible Document description and title </span>[TXT – 40KB]</a>
</span>
<span class="btn-group">
  <a href="#.pdf" class="btn btn-default btn-xs">Document description and title [PDF – 140KB]</a>
  <a href="#.txt" class="btn btn-default btn-xs"><span class="visuallyhidden visuallyhidden-temp">Accessible Document description and title </span>[TXT – 40KB]</a>
</span>

Button Size

Change the size of the buttons by adding a class to each button/link

<p>
  <span class="btn-group">
    <a href="#" class="btn btn-default btn-xs">Button1</a>
    <a href="#" class="btn btn-default btn-xs">Button2</a>
  </span>
</p>
<p>
  <span class="btn-group">
    <a href="#" class="btn btn-default btn-sm">Button1</a>
    <a href="#" class="btn btn-default btn-sm">Button2</a>
  </span>
</p>
<p>
  <span class="btn-group">
    <a href="#" class="btn btn-default">Button1</a>
    <a href="#" class="btn btn-default">Button2</a>
  </span>
</p>
<p>
  <span class="btn-group">
    <a href="#" class="btn btn-default btn-lg">Button1</a>
    <a href="#" class="btn btn-default btn-lg">Button2</a>
  </span>
</p>
<p>
  <a href="#" class="btn btn-default btn-xs">Button1</a>
</p>
<p>
  <a href="#" class="btn btn-default btn-sm">Button1</a>
</p>
<p>
  <a href="#" class="btn btn-default">Button1</a>
</p>
<p>
  <a href="#" class="btn btn-default btn-lg">Button1</a>
</p>