HeadingBlock.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /**
  2. * HeadingBlock.css - 标题块样式
  3. */
  4. .heading-block-wrapper {
  5. position: relative;
  6. padding-left: 0;
  7. }
  8. .heading-block {
  9. position: relative;
  10. display: flex;
  11. align-items: baseline;
  12. gap: 0.25em;
  13. margin: 0;
  14. padding: 5px 0;
  15. color: #262626;
  16. font-weight: 600;
  17. line-height: 1.4;
  18. }
  19. .heading-number {
  20. flex: 0 0 auto;
  21. color: #1455d9;
  22. font-weight: 600;
  23. font-variant-numeric: tabular-nums;
  24. }
  25. .heading-collapse-toggle {
  26. flex: 0 0 1em;
  27. width: 1em;
  28. padding: 0;
  29. border: 0;
  30. background: transparent;
  31. color: #1455d9;
  32. cursor: pointer;
  33. font-size: 0.58em;
  34. line-height: 1;
  35. }
  36. .heading-collapse-toggle:hover {
  37. color: #1455d9;
  38. }
  39. .heading-list-marker {
  40. flex: 0 0 auto;
  41. color: #1455d9;
  42. font-weight: 600;
  43. font-variant-numeric: tabular-nums;
  44. }
  45. .heading-1 {
  46. font-size: 20px;
  47. margin-bottom: 12px;
  48. }
  49. .heading-1 .rich-text-editor {
  50. font-size: 20px !important;
  51. line-height: 1.4 !important;
  52. }
  53. .heading-2 {
  54. font-size: 18px;
  55. margin-bottom: 10px;
  56. }
  57. .heading-2 .rich-text-editor {
  58. font-size: 18px !important;
  59. line-height: 1.4 !important;
  60. }
  61. .heading-3 {
  62. font-size: 16px;
  63. margin-bottom: 8px;
  64. }
  65. .heading-3 .rich-text-editor {
  66. font-size: 16px !important;
  67. line-height: 1.4 !important;
  68. }
  69. .heading-4 {
  70. font-size: 15px;
  71. margin-bottom: 7px;
  72. }
  73. .heading-4 .rich-text-editor {
  74. font-size: 15px !important;
  75. line-height: 1.4 !important;
  76. }
  77. .heading-5 {
  78. font-size: 14px;
  79. margin-bottom: 6px;
  80. }
  81. .heading-5 .rich-text-editor,
  82. .heading-6 .rich-text-editor {
  83. font-size: 14px !important;
  84. line-height: 1.4 !important;
  85. }
  86. .heading-6 {
  87. font-size: 14px;
  88. margin-bottom: 6px;
  89. }