table.less 568 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. table.vamtam-styled {
  2. width: 100%;
  3. border-collapse: collapse;
  4. border-spacing: 0;
  5. border: none;
  6. th, td, caption {
  7. padding: 5px;
  8. border: 0;
  9. }
  10. caption {
  11. border-bottom: none;
  12. }
  13. thead {
  14. th {
  15. border-bottom: solid 1px var( --vamtam-accent-color-1 );
  16. }
  17. }
  18. tbody {
  19. tr {
  20. border-bottom: solid 1px var( --vamtam-accent-color-7 );
  21. &:last-child td {
  22. border: 0;
  23. }
  24. }
  25. }
  26. td {
  27. padding: 12px 0px;
  28. vertical-align: middle;
  29. p {
  30. margin: 0px;
  31. }
  32. }
  33. tfoot {
  34. font-size: 12px;
  35. font-style: normal;
  36. color: rgba( 0, 0, 0, .3 );
  37. }
  38. }