_headings.scss 958 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. // This file is part of the DITA Open Toolkit project.
  2. //
  3. // Copyright 2016 Roger Sheen
  4. //
  5. // See the accompanying LICENSE file for applicable license.
  6. // Sass partial for heading (title) styles
  7. /* Set heading sizes, getting smaller for deeper nesting */
  8. .topictitle1 {
  9. font-size: 1.34em;
  10. margin-bottom: 0.1em;
  11. margin-top: 0;
  12. }
  13. .topictitle2 {
  14. font-size: 1.17em;
  15. margin-bottom: 0.45em;
  16. margin-top: 1pc;
  17. }
  18. .topictitle3 {
  19. font-size: 1.17em;
  20. font-weight: bold;
  21. margin-bottom: 0.17em;
  22. margin-top: 1pc;
  23. }
  24. .topictitle4 {
  25. font-size: 1.17em;
  26. font-weight: bold;
  27. margin-top: 0.83em;
  28. }
  29. .topictitle5 {
  30. font-size: 1.17em;
  31. font-weight: bold;
  32. }
  33. .topictitle6 {
  34. font-size: 1.17em;
  35. font-style: italic;
  36. }
  37. .sectiontitle {
  38. color: $text-color;
  39. font-size: 1.17em;
  40. font-weight: bold;
  41. margin-bottom: 0;
  42. margin-top: 1em;
  43. }
  44. .section {
  45. margin-bottom: 1em;
  46. margin-top: 1em;
  47. }
  48. .example {
  49. margin-bottom: 1em;
  50. margin-top: 1em;
  51. }