Guest User

Untitled

a guest
Jun 20th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. .statisticsTable {
  2. border:2px solid #990000;
  3. width:100%;
  4. }
  5. .statisticsTable tr {
  6. font-weight : bold;
  7. font-size : 9pt;
  8. font-family : Arial,Helvetica,sans-serif,Verdana,Geneva;
  9. color: #ffffff;
  10. background-color:#990000;
  11.  
  12. }
  13.  
  14. <table class="statisticsTable">
  15. <tr><td colspan="7" class="tableHeaderText">HUB Statistics</td></tr>
  16. <tr>
  17. <th colspan="2">HUB</th>
  18. <th >House Houlds Evaluated</th>
  19. <th >Total Debt Owed</th>
  20. </tr>
  21.  
  22. <tr class="<s:if test="#status.even">even</s:if><s:else>odd</s:else>">
  23. <td rowspan=3 valign=top>213-65-6425</td>
  24. <td >All</td>
  25. <td >t1</td>
  26. <td >t2</td>
  27.  
  28. .statisticsTable tr.even, .statisticsTable tr.odd {
  29. font-weight: normal;
  30. font-size: DEFAULT; /* what ever your default is */
  31. font-family: DEFAULT; /* what ever your default is */
  32. /* I would use the font shorthand property */
  33. color: DEFAULT;
  34. background: DEFAULT;
  35. }
  36.  
  37. .statisticsTable tr:not(.even, .odd) {
  38. font: bold 9pt Arial,Helvetica,sans-serif,Verdana,Geneva;
  39. color: #fff;
  40. background:#990000;
  41. }
Add Comment
Please, Sign In to add comment