table.css 1011 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /*
  2. Tables
  3. */
  4. table {
  5. width: 100%;
  6. margin: 0;
  7. border-spacing: 0;
  8. }
  9. table thead tr th {
  10. font-weight: 400;
  11. font-size: 10pt;
  12. letter-spacing: 0.03em;
  13. color: rgb(128,128,128);
  14. background-color: rgb(64,64,64);
  15. text-align: center;
  16. }
  17. table tbody tr {
  18. vertical-align: top;
  19. }
  20. table tbody tr td {
  21. font-size: 10pt;
  22. font-weight: 400;
  23. text-overflow: ellipsis;
  24. color: rgb(180,180,180);
  25. }
  26. table.results tbody tr td {
  27. border-bottom: solid 1px rgb(64,64,64);
  28. }
  29. table.results tbody tr td.highlight { background-color: rgba(0,128,240,0.1); }
  30. table.results tbody tr td.matched { background-color: rgba(240,240,0,0.05); }
  31. table.results tbody tr.unlisted { display: none; }
  32. #list tbody td {
  33. line-height: 32px;
  34. padding: 0 8px;
  35. }
  36. #list tbody tr:hover {
  37. background-color: rgba(255,255,255,0.05);
  38. }
  39. #list tbody tr:hover td a.button{
  40. color: rgb(255,255,255);
  41. background-color: rgb(64,64,64);
  42. }
  43. #list tbody tr:hover td {
  44. color: rgb(255,255,255);
  45. }