Index: pages/utilities.html |
=================================================================== |
--- a/pages/utilities.html |
+++ b/pages/utilities.html |
@@ -25,8 +25,58 @@ |
<p class="text-left">Text aligned left</p> |
<p class="text-start">Text aligned to the start of the container</p> |
<p class="text-right">Text aligned right</p> |
<p class="text-end">Text aligned to the end of the container</p> |
+ |
+<h2 id="unstyled">Unstyled</h2> |
+ |
+<h3 id="unstyled-lists">Unstyled lists</h3> |
+ |
+<h4 id="unstyled-list-parent"><pre>.unstylied</pre> applied to parent</h4> |
ire
2017/11/27 08:40:02
The <code> element is better for inline "code"
ire
2017/11/27 08:40:02
Type: "unstylied"
juliandoucette
2017/11/27 13:32:09
Good catch.
juliandoucette
2017/11/27 13:32:09
You mean typo?
ire
2017/11/27 18:07:55
Haha yes I did mean typo :P
|
+ |
+<div class="unstyled"> |
+ <ul> |
+ <li>Level 1 item 1</li> |
+ <li> |
+ Level 1 item 2 |
+ <ul> |
+ <li>Level 2 item 1</li> |
+ <li>Level 2 item 2</li> |
+ </ul> |
+ </li> |
+ <li>Level 1 item 3</li> |
+ </ul> |
+</div> |
+ |
+<h4 id="unstyled-list-parent"><pre>.unstylied</pre> applied to list</h4> |
+ |
+<ul class="unstyled"> |
+ <li>Level 1 item 1</li> |
+ <li> |
+ Level 1 item 2 |
+ <ul> |
+ <li>Level 2 item 1</li> |
+ <li>Level 2 item 2</li> |
+ </ul> |
+ </li> |
+ <li>Level 1 item 3</li> |
+</ul> |
+ |
+<h4 id="unstyled-list-parent"><pre>.unstylied</pre> applied to list item</h4> |
+ |
+<div> |
+ <ul> |
+ <li>Level 1 item 1</li> |
+ <li class="unstyled"> |
+ Level 1 item 2 |
+ <ul> |
+ <li>Level 2 item 1</li> |
+ <li>Level 2 item 2</li> |
+ </ul> |
+ </li> |
+ <li>Level 1 item 3</li> |
+ </ul> |
+</div> |