Colors:

Backgrounds:

Layout:

Sidebar position:

Show top menu on:

Show CSS Reset

Tables

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