From 1da1994ba4fa40ed868ab289e910ec9a0d177458 Mon Sep 17 00:00:00 2001 From: Quy Ton Date: Tue, 15 Jan 2013 18:16:44 -0800 Subject: [PATCH] Add text alignment classes info to docs --- docs/base-css.html | 13 +++++++++++++ docs/templates/pages/base-css.mustache | 13 +++++++++++++ 2 files changed, 26 insertions(+) diff --git a/docs/base-css.html b/docs/base-css.html index f283f962e1..3294336b6e 100644 --- a/docs/base-css.html +++ b/docs/base-css.html @@ -170,6 +170,19 @@

Heads up! Feel free to use <b> and <i> in HTML5. <b> is meant to highlight words or phrases without conveying additional importance while <i> is mostly for voice, technical terms, etc.

+

Alignment classes

+

Easily realign text to components with text alignment classes.

+
+

Left aligned text.

+

Center aligned text.

+

Right aligned 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>
+
+

Emphasis classes

Convey meaning through color with a handful of emphasis utility classes.

diff --git a/docs/templates/pages/base-css.mustache b/docs/templates/pages/base-css.mustache index 71d8d464d5..4ec1eee296 100644 --- a/docs/templates/pages/base-css.mustache +++ b/docs/templates/pages/base-css.mustache @@ -104,6 +104,19 @@

{{_i}}Heads up!{{/i}} {{_i}}Feel free to use <b> and <i> in HTML5. <b> is meant to highlight words or phrases without conveying additional importance while <i> is mostly for voice, technical terms, etc.{{/i}}

+

{{_i}}Alignment classes{{/i}}

+

{{_i}}Easily realign text to components with text alignment classes.{{/i}}

+
+

Left aligned text.

+

Center aligned text.

+

Right aligned 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>
+
+

{{_i}}Emphasis classes{{/i}}

{{_i}}Convey meaning through color with a handful of emphasis utility classes.{{/i}}