table.css 561 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /* for search results and anime/manga/kdrama lists */
  2. span.alt_titles {
  3. font-size: 90%;
  4. opacity: 0.7;
  5. }
  6. table {
  7. border-collapse: collapse;
  8. width: 898px;
  9. max-width: 898px;
  10. table-layout: fixed;
  11. }
  12. tr {
  13. height: 45px;
  14. }
  15. tr:first-child { /* th row */
  16. height: 25px;
  17. }
  18. th {
  19. vertical-align: middle;
  20. }
  21. th:nth-child(2) {
  22. width: 240px;
  23. }
  24. th:nth-child(3) {
  25. width: 50px;
  26. }
  27. td {
  28. border: 0px solid #bbb;
  29. border-top-width: 1px;
  30. vertical-align: middle;
  31. white-space: nowrap;
  32. overflow: hidden;
  33. }
  34. td:nth-child(2) {
  35. padding-left: 25px;
  36. }
  37. td a {
  38. display: block;
  39. }