闭社主体 forked from https://github.com/tootsuite/mastodon
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
989 B

  1. .table {
  2. width: 100%;
  3. max-width: 100%;
  4. border-spacing: 0;
  5. border-collapse: collapse;
  6. margin-bottom: 20px;
  7. th, td {
  8. padding: 8px;
  9. line-height: 18px;
  10. vertical-align: top;
  11. border-top: 1px solid #282c37;
  12. text-align: left;
  13. }
  14. & > thead > tr > th {
  15. vertical-align: bottom;
  16. border-bottom: 2px solid #282c37;
  17. border-top: 0;
  18. font-weight: 500;
  19. }
  20. & > tbody > tr > th {
  21. font-weight: 500;
  22. }
  23. & > tbody > tr:nth-child(odd) > td, & > tbody > tr:nth-child(odd) > th {
  24. background: lighten(#1a1c23, 2%);
  25. }
  26. a {
  27. color: #2b90d9;
  28. text-decoration: underline;
  29. &:hover {
  30. text-decoration: none;
  31. }
  32. }
  33. }
  34. samp {
  35. font-family: 'Roboto Mono', monospace;
  36. }
  37. a.table-action-link {
  38. text-decoration: none;
  39. display: inline-block;
  40. margin-right: 5px;
  41. padding: 0 10px;
  42. color: rgba(255, 255, 255, 0.7);
  43. font-weight: 500;
  44. &:hover {
  45. color: #fff;
  46. }
  47. i.fa {
  48. font-weight: 400;
  49. margin-right: 5px;
  50. }
  51. }