style.scss 662 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. #myPosts {
  2. padding: 0 32px 32px 32px;
  3. h1 {
  4. font-size: 22px;
  5. margin-bottom: 10px;
  6. }
  7. table {
  8. border: 1px solid #ccc;
  9. caption {
  10. text-align: left;
  11. font-size: 16px;
  12. margin-bottom: 10px;
  13. }
  14. tr {
  15. th, td {
  16. font-size: 14px;
  17. text-align: center;
  18. border: 1px solid #ccc;
  19. padding: 6px 13px;
  20. }
  21. }
  22. thead {
  23. tr {
  24. th {
  25. background: #f9f9f9;
  26. font-weight: bold;
  27. }
  28. }
  29. }
  30. tbody {
  31. tr {
  32. td {
  33. font-weight: normal;
  34. }
  35. }
  36. }
  37. tfoot {
  38. background: #fbfbfb;
  39. tr {
  40. td {
  41. text-align: center;
  42. padding: 8px;
  43. button, a {
  44. padding: 6px 20px;
  45. }
  46. }
  47. }
  48. }
  49. }
  50. }