Colors:

Backgrounds:

Layout:

Sidebar position:

Show top menu on:

Show CSS Reset

Tables

// Basic
<table class="table">
...
</table>
id Name Email
134 Summer Throssell summert@example.com
135 Anthony Pound anthonyp@example.com
136 Erin Church erinc@example.com
137 Declan Pamphlett declanp@example.com
// Zebra-stripe
<table class="table table-striped">
...
</table>
id Name Email
134 Summer Throssell summert@example.com
135 Anthony Pound anthonyp@example.com
136 Erin Church erinc@example.com
137 Declan Pamphlett declanp@example.com
// Bordered
<table class="table table-bordered">
...
</table>
id Name Email
134 Summer Throssell summert@example.com
135 Anthony Pound anthonyp@example.com
136 Erin Church erinc@example.com
137 Declan Pamphlett declanp@example.com
// Condensed
<table class="table table-condensed">
...
</table>
id Name Email
134 Summer Throssell summert@example.com
135 Anthony Pound anthonyp@example.com
136 Erin Church erinc@example.com
137 Declan Pamphlett declanp@example.com
// Combined
<table class="table table-striped table-bordered table-condensed">
...
</table>
id Name Email
134 Summer Throssell summert@example.com
135 Anthony Pound anthonyp@example.com
136 Erin Church erinc@example.com
137 Declan Pamphlett declanp@example.com
// turn a table row into a clickable link
<table class="table table-striped" data-provides="rowlink">
 <tbody>
  <tr>
   <td>
    <a href="#">...<a>
   ...
   <td>
  <tr>
 ...
 </tbody>
 ...
</table>
id Name Email
134 Summer Throssell summert@example.com
135 Anthony Pound anthonyp@example.com
136 Erin Church erinc@example.com
137 Declan Pamphlett declanp@example.com
Sidebar switch