The eHealth theme includes three additional class types to add a small arrow to any side of an alert box, to help make clear what the alert refers to:

These are bootstrap style, so they require three classes to work:
.arrow for the base styles.arrow-dir-XX for the direction of the arrow (up, rt, dn or lt).arrow-pos-X for the position along the respective edge (t, r, b, l or c), meaning top, right, bottom, left or center (avoid pointless combinations, such as b with up or dn)The arrow automatically takes on the colour of the alert box.
So the red alert box with an arrow pointing up in the center (from the image above) is:
    <div class="alert alert-danger arrow arrow-dir-up arrow-pos-c"></div>
Sometimes it is helpful to only pull an element on certain screen sizes. The following helper classes allow to do exactly that:
.pull-right-xs and .pull-left-xs.pull-right-sm and .pull-left-sm.pull-right-md and .pull-left-md.pull-right-lg and .pull-left-lgIn order to have an element be pulled right or left on multiple screen sizes there are additional utility classes defined as follows:
.pull-*-sm-min and .pull-*-sm-max.pull-*-md-min and .pull-*-md-maxSo .pull-right-sm-min is basically a shortcut for not having to apply all of
.pull-right-sm, .pull-right-md, and .pull-right-lg together on the same
element.
These classes add a larger margin of 35px
.more-top
.more-bottom
.more-left
.more-right
These classes add a margin of 15px
.add-top
.add-bottom
.add-left
.add-right
These classes remove any margin
.remove-top
.remove-bottom
.remove-left 
.remove-right