custom-styles.css 575 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /* 行距预设样式 */
  2. .line-height-single {
  3. line-height: 1.0 !important;
  4. }
  5. .line-height-one-half {
  6. line-height: 1.5 !important;
  7. }
  8. .line-height-double {
  9. line-height: 2.0 !important;
  10. }
  11. /* 段落间距预设样式 */
  12. .spacing-before-none {
  13. margin-top: 0pt !important;
  14. }
  15. .spacing-before-small {
  16. margin-top: 5pt !important;
  17. }
  18. .spacing-before-medium {
  19. margin-top: 10pt !important;
  20. }
  21. .spacing-after-none {
  22. margin-bottom: 0pt !important;
  23. }
  24. .spacing-after-small {
  25. margin-bottom: 5pt !important;
  26. }
  27. .spacing-after-medium {
  28. margin-bottom: 10pt !important;
  29. }