style.css 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. table thead tr
  2. {
  3. border-bottom: 1px solid #fff;
  4. -moz-box-shadow: 0px 1px 2px #ddd;
  5. -webkit-box-shadow: 0px 1px 2px #ddd;
  6. box-shadow: 0px 1px 2px #ddd;
  7. }
  8. table th
  9. {
  10. background: #F7F7F7; /* old browsers */
  11. background: -moz-linear-gradient(top, #F7F7F7 0%, #EAEAEA 100%); /* firefox */
  12. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#F7F7F7), color-stop(100%,#EAEAEA)); /* webkit */
  13. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F7F7F7', endColorstr='#EAEAEA',GradientType=0 ); /* ie */
  14. }
  15. table tr { border: 1px solid #eee;}
  16. table td, table th { border: 0; }
  17. tr:nth-of-type(odd) { background-color:#f8f8f8; }
  18. table tr.header { border-bottom: 1px solid #ddd; }
  19. table tr.header td { background: #eee; }
  20. /* Column Sorting Table Headers */
  21. table th a.sort_by {padding-right: 20px;}
  22. table th a.down {background: url(../images/bullet_arrow_down.png) right no-repeat;}
  23. table th a.up {background: url(../images/bullet_arrow_up.png) right no-repeat;}
  24. /* Special Links */
  25. a.delete, a.edit {margin: 0 .5em;}
  26. /* Form Reset (IE7+) */
  27. input[type=text],input[type=email],input[type=password],input[type=url],input[type=tel],html>body textarea
  28. {
  29. border: 1px solid;
  30. border-color: #888 #bbb #e2e2e2;
  31. }