A Pen by Fabricio Quagliariello on CodePen.
Created
September 6, 2014 02:33
-
-
Save fmquaglia/2e083d4ad417c5001f18 to your computer and use it in GitHub Desktop.
A Pen by Fabricio Quagliariello.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<table id="myTable" class="tablesorter"> | |
<thead> | |
<tr> | |
<th>Last Name</th> | |
<th>First Name</th> | |
<th>Email</th> | |
<th>Due</th> | |
<th>Web Site</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>Smith</td> | |
<td>John</td> | |
<td>[email protected]</td> | |
<td>$50.00</td> | |
<td>http://www.jsmith.com</td> | |
</tr> | |
<tr> | |
<td>Bach</td> | |
<td>Frank</td> | |
<td>[email protected]</td> | |
<td>$50.00</td> | |
<td>http://www.frank.com</td> | |
</tr> | |
<tr> | |
<td>Doe</td> | |
<td>Jason</td> | |
<td>[email protected]</td> | |
<td>$100.00</td> | |
<td>http://www.jdoe.com</td> | |
</tr> | |
<tr> | |
<td>Conway</td> | |
<td>Tim</td> | |
<td>[email protected]</td> | |
<td>$50.00</td> | |
<td>http://www.timconway.com</td> | |
</tr> | |
</tbody> | |
</table> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function() | |
{ | |
$("#myTable").tablesorter().addClass('te-amo'); | |
} | |
); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* tables */ | |
body { | |
padding: 20px; | |
} | |
table.tablesorter { | |
font-family:arial; | |
background-color: #CDCDCD; | |
margin:10px 0pt 15px; | |
font-size: 8pt; | |
width: 100%; | |
text-align: left; | |
} | |
table.tablesorter thead tr th, table.tablesorter tfoot tr th { | |
background-color: #e6EEEE; | |
border: 1px solid #FFF; | |
font-size: 8pt; | |
padding: 4px; | |
} | |
table.tablesorter thead tr .header { | |
background-image: url(bg.gif); | |
background-repeat: no-repeat; | |
background-position: center right; | |
cursor: pointer; | |
} | |
table.tablesorter tbody td { | |
color: #3D3D3D; | |
padding: 4px; | |
background-color: #FFF; | |
vertical-align: top; | |
} | |
table.tablesorter tbody tr.odd td { | |
background-color:#F0F0F6; | |
} | |
table.tablesorter thead tr .headerSortUp { | |
background-image: url(asc.gif); | |
} | |
table.tablesorter thead tr .headerSortDown { | |
background-image: url(desc.gif); | |
} | |
table.tablesorter thead tr .headerSortDown, table.tablesorter thead tr .headerSortUp { | |
background-color: #8dbdd8; | |
} | |
.te-amo { | |
border: 10px solid red; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment