style.scss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. #changeIntro {
  2. position: relative;
  3. padding: 25px 32px 32px 32px;
  4. min-height: 100%;
  5. h1 {
  6. font-size: 22px;
  7. margin-bottom: 20px;
  8. }
  9. table {
  10. caption {
  11. text-align: left;
  12. font-size: 16px;
  13. margin-bottom: 10px;
  14. }
  15. tbody {
  16. tr {
  17. th, td {
  18. padding: 0;
  19. text-align: left;
  20. font-size: 14px;
  21. font-weight: normal;
  22. }
  23. }
  24. }
  25. tfoot {
  26. border: 1px solid var(--border-strong);
  27. border-width: 0 1px 1px 1px;
  28. background: var(--bg-elevated);
  29. tr {
  30. td {
  31. text-align: center;
  32. padding: 8px;
  33. button, a {
  34. padding: 6px 20px;
  35. }
  36. .btn-delete {
  37. background-color: #e6f4fa;
  38. color: var(--text-primary);
  39. border: 1px solid #b3b3b3;
  40. -webkit-box-shadow: inset 0 -1px 0 0 #b3b3b3;
  41. box-shadow: inset 0 -1px 0 0 #b3b3b3;
  42. &:hover {
  43. background-color: #c6e7f3;
  44. }
  45. }
  46. }
  47. }
  48. }
  49. }
  50. dl {
  51. background-color: var(--bg-subtle);
  52. border: 1px solid var(--border-strong);
  53. line-height: 1.5;
  54. padding: 15px 16px 12px 16px;
  55. dt, dd {
  56. font-size: 14px;
  57. }
  58. dt {
  59. font-weight: bold;
  60. margin-bottom: 7px;
  61. }
  62. dd {
  63. ol {
  64. list-style: disc;
  65. padding: 0 20px;
  66. }
  67. }
  68. }
  69. blockquote {
  70. line-height: 1.9;
  71. }
  72. }