Utilities


You can align text using the .text-right and .text-center classes

I am centered

Wuhoo! I'm over here

<p class="text-center">I am centered</p>
<p class="text-right">Wuhoo! I'm over here</p>

The .box class makes your element look like a fancy, umm box.

Look at me!

This is some text underneath the heading

<div class="box">
  <h3>Look at me!</h3>
  <p>This is some text underneath the heading</p>
</div>