Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added changes and example for unstyled list #57

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions css/kickstart.css
Original file line number Diff line number Diff line change
Expand Up @@ -137,12 +137,12 @@ padding:5px 0;
margin:0;
}

ul.list-unstyled{
ul.unstyled{
padding:0;
margin:0 0 20px 0;
}

ul.list-unstyled li{
ul.unstyled li{
padding:5px 0;
margin:0;
list-style-type:none;
Expand Down
28 changes: 25 additions & 3 deletions elements.html
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,7 @@ <h3 id="lists">Lists</h3>
<li><a href="#list-ol">OL</a></li>
<li><a href="#list-checks">UL.icons</a></li>
<li><a href="#list-alt">UL.alt</a></li>
<li><a href="#list-unstyled">UL.unstyled</a></li>
</ul>

<div id="list-example" class="tab-content">
Expand All @@ -260,7 +261,7 @@ <h4>Unordered List</h4>
</ul>
</div>

<div class="col_3">
<div class="col_2">
<h4>Ordered List</h4>
<ol>
<li>Apple</li>
Expand All @@ -270,7 +271,7 @@ <h4>Ordered List</h4>
</ol>
</div>

<div class="col_3">
<div class="col_2">
<h4>UL.icons</h4>
<ul class="icons">
<li><i class="icon-ok"></i>Apple</li>
Expand All @@ -280,7 +281,7 @@ <h4>UL.icons</h4>
</ul>
</div>

<div class="col_3">
<div class="col_2">
<h4>UL.alt</h4>
<ul class="alt">
<li>Apple</li>
Expand All @@ -289,6 +290,16 @@ <h4>UL.alt</h4>
<li>Pear</li>
</ul>
</div>

<div class="col_2">
<h4>UL.unstyled</h4>
<ul class="unstyled">
<li>Apple</li>
<li>Banana</li>
<li>Orange</li>
<li>Pear</li>
</ul>
</div>
</div>

<div id="list-ul" class="tab-content">
Expand Down Expand Up @@ -332,6 +343,17 @@ <h4>UL.alt</h4>
&lt;li&gt;Banana&lt;/li&gt;
&lt;li&gt;Orange&lt;/li&gt;
&lt;li&gt;Pear&lt;/li&gt;
&lt;/ul&gt;</pre>
</div>

<div id="list-unstyled" class="tab-content">
<pre>
&lt;!-- List Unstyled Style --&gt;
&lt;ul class=&quot;unstyled&quot;&gt;
&lt;li&gt;Apple&lt;/li&gt;
&lt;li&gt;Banana&lt;/li&gt;
&lt;li&gt;Orange&lt;/li&gt;
&lt;li&gt;Pear&lt;/li&gt;
&lt;/ul&gt;</pre>
</div>

Expand Down